:root {
  --forest: #1B3A2B;
  --forest-light: #2F5741;
  --forest-pale: #E7EEE6;
  --gold: #D4A017;
  --gold-soft: #F0C556;
  --cream: #FAF6EC;
  --terracotta: #A24F21;
  --terracotta-soft: #D98A54;
  --charcoal: #24261F;
  --line: rgba(27, 58, 43, 0.14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  /* Offset the sticky navigation bar so section content is not hidden */
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.display {
  font-family: 'Fraunces', serif;
}

.impact {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- decorative scatter (peppercorn / cardamom dots) ---------- */
.scatter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dot {
  position: absolute;
  border-radius: 50%;
}

.pod {
  position: absolute;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

/* ---------- NAV ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.92);
  backdrop-filter: blur(100px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  display: flex;
  width: 25%;
  height: 10%;
  align-items: center;
  gap: 10px;
}

.logo svg {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--forest);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--gold);
}

.logo-sub {
  font-size: 9.5px;
  letter-spacing: 3px;
  color: var(--terracotta);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: -2px;
}

nav.links {
  display: flex;
  gap: 34px;
}

nav.links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

nav.links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

nav.links a:hover::after {
  width: 100%;
}

/* ---------- NAVIGATION DROPDOWN ---------- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 10px;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  width: 240px;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(27, 58, 43, 0.16);
  border: 1px solid var(--line);
  padding: 16px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}

.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--terracotta);
  letter-spacing: 1px;
  margin-bottom: 6px;
  padding-left: 8px;
  display: block;
}

.dropdown-item {
  display: block;
  font-size: 13.5px !important;
  font-weight: 600;
  color: var(--forest) !important;
  padding: 8px 12px !important;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}

.dropdown-item:hover {
  background: var(--forest-pale);
  color: var(--forest-light) !important;
}

/* Disable the bottom line animation for dropdown links */
nav.links a.dropdown-item::after {
  display: none !important;
}

.dropdown-divider {
  height: 1px;
  background: var(--line);
  margin: 2px 0;
}

.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border: 1px solid var(--forest);
  transition: background .2s ease, color .2s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--forest);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: #1B3A2B;
  color: var(--cream);
  padding: 110px 0 130px;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  top: -6%;
  left: -6%;
  width: 112%;
  height: 112%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.hero-bg-slideshow {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0.7;
  /* Opacity of 70% only */
  will-change: transform;
  animation: continuousEaseInOut 14s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

@keyframes continuousEaseInOut {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.08) translate3d(-4%, -2.5%, 0);
  }

  100% {
    transform: scale(1.03) translate3d(2%, 1.5%, 0);
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 48, 31, 0.88) 0%, rgba(22, 48, 31, 0.65) 38%, rgba(22, 48, 31, 0.08) 60%, transparent 75%);
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 580px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
}

.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  text-transform: uppercase;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0.5px;
  color: #fff;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(250, 246, 236, 0.82);
  max-width: 480px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 15px 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  border-radius: 2px;
  display: inline-block;
  transition: transform .2s ease, background .2s ease;
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(250, 246, 236, 0.4);
  color: var(--cream);
  padding: 15px 28px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  display: inline-block;
  transition: border-color .2s ease, background .2s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}

.hero-bowls {
  position: relative;
  height: 420px;
}

.bowl {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.bowl-pepper {
  width: 260px;
  height: 260px;
  top: 10px;
  left: 10px;
  background: radial-gradient(circle at 32% 28%, #4a3a28, #2a2015 70%);
  border: 8px solid #6b4a2f;
}

.bowl-cardamom {
  width: 220px;
  height: 220px;
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at 32% 28%, #8fae62, #5f7d3c 75%);
  border: 8px solid #6b4a2f;
}

.bowl svg {
  width: 100%;
  height: 100%;
}

/* ---------- SECTION HEADINGS ---------- */
.kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.kicker::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--terracotta);
}

h2.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 38px;
  color: var(--forest);
  line-height: 1.15;
}

.section-lede {
  font-size: 15.5px;
  line-height: 1.75;
  color: #4b4d43;
  max-width: 620px;
  margin-top: 16px;
}

/* ---------- ABOUT ---------- */
section.about {
  padding: 110px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.strength-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.strength-item:first-child {
  border-top: 1px solid var(--line);
}

.strength-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--forest-pale);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}

.strength-item p {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  padding-top: 6px;
}

.heritage-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 4px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.heritage-card .scatter {
  opacity: 0.5;
}

.heritage-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 74px;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.heritage-card p {
  position: relative;
  z-index: 2;
  font-size: 14.5px;
  color: rgba(250, 246, 236, 0.78);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.6;
}

.heritage-tag {
  position: relative;
  z-index: 2;
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ---------- PRODUCTS ---------- */
section.products {
  padding: 110px 0;
  background: var(--forest-pale);
}

.products-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.products-head .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.product-card+.product-card {
  margin-top: 36px;
}

.product-visual {
  position: relative;
  display: flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: radial-gradient(circle at 30% 20%, rgba(212, 160, 23, 0.12), transparent 10%);
}



.product-visual .ring {
  width: 230px;
  height: 230px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(250, 246, 236, 0.3);
}

.product-visual .ring-inner {
  width: 150%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pepper-fill {
  background: radial-gradient(circle at 32% 28%, #4a3a28, #241b12 75%);
}

.cardamom-fill {
  background: radial-gradient(circle at 32% 28%, #9fbf74, #5f7d3c 80%);
}

.product-body {
  padding: 48px 50px;
}

.product-body .kicker {
  margin-bottom: 10px;
}

.product-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--forest);
}

.product-body p {
  font-size: 14.5px;
  line-height: 1.75;
  color: #4b4d43;
  margin-top: 14px;
  max-width: 440px;
}

.spec-label {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-top: 28px;
  margin-bottom: 12px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--forest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: default;
  transition: background .2s ease, color .2s ease;
}

.pill:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ---------- QUALITY PROCESS ---------- */
section.quality {
  padding: 110px 0;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.process-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--forest);
  font-weight: 700;
}

.process-step p {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ---------- QUALITY IMAGE GALLERY ---------- */
.quality-gallery-header {
  margin-top: 64px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--line);
  padding-bottom: 16px;
}

.gallery-subtitle {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
}

.gallery-desc {
  font-size: 14px;
  color: var(--terracotta);
  font-weight: 600;
}

.quality-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.gallery-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(27, 58, 43, 0.08);
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
}

.gallery-card.wide-card {
  grid-column: span 2;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 58, 43, 0.16);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 58, 43, 0.1) 0%, rgba(27, 58, 43, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0.9;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(27, 58, 43, 0.2) 0%, rgba(27, 58, 43, 0.92) 100%);
}

.gallery-badge {
  align-self: flex-start;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.gallery-info {
  color: #fff;
}

.gallery-info h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-info p {
  font-size: 13px;
  color: var(--gold-soft);
  font-weight: 500;
}

.gallery-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-card:hover .gallery-zoom-icon {
  background: var(--gold);
  color: var(--forest);
  transform: scale(1.1);
}

/* ---------- LIGHTBOX MODAL ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 25, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lightbox-figure img {
  width: 100%;
  max-height: 60vh;
  object-fit: cover;
  background: var(--forest);
}

.lightbox-caption {
  padding: 24px 30px;
  background: var(--cream);
}

.lightbox-caption h4 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 8px;
}

.lightbox-caption p {
  font-size: 15px;
  line-height: 1.6;
  color: #4b4d43;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: var(--terracotta);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 40%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.85);
  color: var(--forest);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  transform: scale(1.1);
}

/* ---------- PACKAGING ---------- */
section.packaging {
  padding: 110px 0;
  background: var(--forest-pale);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.pack-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pack-card:hover {
  transform: translateY(-4px);
  background-color: #1B3A2B;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(27, 58, 43, 0.1);
}

.pack-card .strength-icon {
  background: var(--forest);
  color: var(--cream);
}

.pack-card p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--charcoal);
}

.pack-card:hover p {
  color: #ffffff;
}

.pack-card:hover .strength-icon {
  color: var(--cream);
  background: var(--gold);
}

.pack-note {
  margin-top: 30px;
  font-size: 14px;
  color: var(--forest);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- EXPORT MAP ---------- */
section.export {
  padding: 110px 0;
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.export .kicker {
  color: var(--gold-soft);
}

.export .kicker::before {
  background: var(--gold-soft);
}

.export h2.section-title {
  color: #fff;
}

.export .section-lede {
  color: rgba(250, 246, 236, 0.75);
}

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 20px;
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-top: 40px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.14);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.region-item .dotmark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.region-item:hover,
.region-item.active {
  color: var(--gold-soft);
  transform: translateX(6px);
}

.region-item:hover .dotmark,
.region-item.active .dotmark {
  background: var(--gold-soft);
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--gold-soft);
}

.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Globe Pin Hover & Tooltip Styling */
.globe-pin {
  cursor: pointer;
}

.globe-pin .pin-dot {
  transition: r 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), fill 0.3s ease, filter 0.3s ease;
}

.globe-pin:hover .pin-dot,
.globe-pin.active .pin-dot {
  r: 8.5px;
  fill: var(--gold-soft);
  filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.9));
}

.globe-pin.origin-pin:hover .pin-dot,
.globe-pin.origin-pin.active .pin-dot {
  r: 9px;
  fill: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

/* Pulsing effect around dots */
.pin-pulse {
  fill: #D4A017;
  opacity: 0.4;
  transform-origin: center;
  animation: pulseGlobeDot 2.2s infinite ease-out;
}

.origin-pulse {
  fill: #ffffff;
}

@keyframes pulseGlobeDot {
  0% {
    r: 5px;
    opacity: 0.6;
  }

  50% {
    r: 13px;
    opacity: 0.2;
  }

  100% {
    r: 18px;
    opacity: 0;
  }
}

/* Tooltip group styling */
.pin-tooltip {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

.globe-pin:hover .pin-tooltip,
.globe-pin.active .pin-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.pin-tooltip rect {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.certs {
  display: flex;
  gap: 16px;
  margin-top: 44px;
}

.cert-badge {
  border: 1px solid rgba(250, 246, 236, 0.3);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---------- CONTACT ---------- */
section.contact {
  padding: 110px 0;
}

.contact-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.contact-head .kicker {
  justify-content: center;
}

.contact-head .section-lede {
  margin-left: auto;
  margin-right: auto;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-card {
  background: var(--terracotta);
  color: #fff;
  border-radius: 4px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.inquiry-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 56px;
}

.inquiry-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--forest);
  margin-top: 8px;
}

.inquiry-sub {
  font-size: 14px;
  color: #5a5c50;
  margin-top: 10px;
  margin-bottom: 30px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--charcoal);
  resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}

.inquiry-note {
  font-size: 13px;
  color: var(--forest-light);
  font-weight: 600;
  margin-top: 14px;
  min-height: 18px;
}

.inquiry-note.error {
  color: #B0592B;
}

.captcha-field label {
  color: var(--terracotta);
}

.contact-card .scatter {
  opacity: 0.15;
}

.contact-card h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}

.contact-card .tagline {
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  margin-top: 14px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.contact-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list .row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.6;
}

.contact-list .row strong {
  display: block;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.95;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-list a {
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.social-row a:hover {
  background: rgba(255, 255, 255, 0.15);
}

footer {
  background: #122519;
  color: rgba(250, 246, 236, 0.6);
  padding: 28px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .logo-text {
  font-size: 18px;
  color: var(--cream);
}


/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.whatsapp-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-icon-wrap svg {
  display: block;
  width: 28px;
  height: 28px;
}

.whatsapp-text {
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27, 58, 43, 0.12);
  color: var(--forest);
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
  transition: transform 0.3s ease, opacity 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon-wrap {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:hover .whatsapp-text {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateX(-4px);
  background: #fff;
}

.addr {
  text-shadow: 1px 1px 2px rgb(19, 77, 1);
  font-weight: bold;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 16px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---------- FAQ SECTION ---------- */
section.faq {
  padding: 110px 0;
  background: var(--forest-pale);
  position: relative;
  border-top: 1px solid rgba(27, 58, 43, 0.08);
  border-bottom: 1px solid rgba(27, 58, 43, 0.08);
}

.faq-head {
  max-width: 720px;
  margin: 0 auto 50px;
}

.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(27, 58, 43, 0.08);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(27, 58, 43, 0.02);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 8px 24px rgba(27, 58, 43, 0.06);
}

.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(27, 58, 43, 0.08);
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  font-family: 'Fraunces', serif;
  font-size: 17.5px;
  font-weight: 600;
  color: var(--forest);
  gap: 20px;
  transition: color 0.25s ease;
}

.faq-trigger span {
  line-height: 1.4;
}

.faq-trigger:hover {
  color: var(--terracotta);
}

.faq-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(27, 58, 43, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.faq-trigger:hover .faq-icon-wrap {
  background: rgba(176, 89, 43, 0.08);
  color: var(--terracotta);
}

.faq-item.active .faq-icon-wrap {
  background: var(--gold);
  color: #fff;
  transform: rotate(180deg);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.faq-content-inner {
  padding: 0 28px 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b4d43;
  font-family: 'Inter', sans-serif;
}

.faq-content-inner strong {
  color: var(--forest);
}

/* Responsive styles for WhatsApp Button */
@media (max-width: 768px) {
  section.faq {
    padding: 70px 0;
  }

  .faq-head {
    margin-bottom: 36px;
  }

  .faq-trigger {
    padding: 18px 20px;
    font-size: 15.5px;
  }

  .faq-content-inner {
    padding: 0 20px 20px;
    font-size: 13.5px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon-wrap {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon-wrap svg {
    width: 24px;
    height: 24px;
  }
}

/* ---------- PRODUCT DETAILS MODAL ---------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s ease;
}

.product-modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 25, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-modal-wrapper {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1040px;
  height: 90vh;
  max-height: 820px;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(15px);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal.active .product-modal-wrapper {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(27, 58, 43, 0.08);
  color: var(--forest);
  border: none;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.product-modal-close:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: rotate(90deg);
}

.product-modal-container {
  flex: 1;
  overflow-y: auto;
  padding: 40px 48px;
}

/* Breadcrumbs */
.product-modal-breadcrumb {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest-light);
  margin-bottom: 24px;
}

.product-modal-breadcrumb a {
  color: var(--forest);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.product-modal-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bc-sep {
  margin: 0 6px;
  color: var(--gold);
}

.product-modal-breadcrumb .active {
  color: var(--terracotta);
  font-weight: 700;
}

/* Content Layout Grid */
.product-modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: start;
}

/* Left Column */
.product-modal-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.product-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-gallery-main {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(27, 58, 43, 0.05);
}

.pm-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pm-gallery-main:hover img {
  transform: scale(1.04);
}

.pm-gallery-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(27, 58, 43, 0.85);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.pm-gallery-main:hover .pm-gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.pm-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.pm-thumb {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pm-thumb:hover {
  transform: translateY(-2px);
}

.pm-thumb.active {
  border-color: var(--gold);
}

/* Specifications Table */
.pm-subheading {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.pm-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pm-specs-table tr {
  border-bottom: 1px solid rgba(27, 58, 43, 0.08);
}

.pm-specs-table tr:last-child {
  border-bottom: none;
}

.pm-specs-table td {
  padding: 10px 12px;
  font-size: 14px;
}

.pm-specs-table td.spec-name {
  font-weight: 600;
  color: var(--forest-light);
  width: 45%;
}

.pm-specs-table td.spec-val {
  color: var(--charcoal);
  font-weight: 500;
}

.pm-specs-table tr:nth-child(even) {
  background: rgba(27, 58, 43, 0.02);
}

/* Right Column */
.product-modal-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pm-overview {
  display: flex;
  flex-direction: column;
}

.pm-overview .pm-kicker {
  margin-bottom: 8px;
}

.pm-title {
  font-size: 32px;
  line-height: 1.15;
  color: var(--forest);
  font-weight: 600;
  margin-bottom: 12px;
}

.pm-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--forest-light);
  background: var(--forest-pale);
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
}

.pm-meta-item strong {
  color: var(--forest);
}

.pm-description {
  font-size: 14.5px;
  line-height: 1.7;
  color: #4b4d43;
}

/* Section and Lists */
.pm-section {
  display: flex;
  flex-direction: column;
}

/* Features */
.pm-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pm-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(27, 58, 43, 0.03);
}

.pm-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.pm-feature-content h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 3px;
}

.pm-feature-content p {
  font-size: 12px;
  line-height: 1.4;
  color: #606256;
}

/* Packaging & Applications */
.pm-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pm-pills-row .pm-pill {
  background: var(--forest-pale);
  color: var(--forest-light);
  border: 1px solid rgba(27, 58, 43, 0.12);
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
}

/* Quality Certifications */
.pm-qa-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.pm-qa-badge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
  text-align: center;
  position: relative;
}

.pm-qa-svg {
  transition: transform 0.2s ease;
}

.pm-qa-badge-wrapper:hover .pm-qa-svg {
  transform: translateY(-3px);
}

.pm-qa-label {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--forest-light);
  line-height: 1.2;
}

/* Documents */
.pm-docs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.pm-docs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest);
}

.pm-doc-icon {
  color: var(--terracotta);
  flex-shrink: 0;
}

/* Actions block */
.pm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 12px;
}

.pm-actions button,
.pm-actions a {
  flex: 1 1 calc(50% - 12px);
  min-width: 170px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pm-actions .btn-primary {
  background: var(--gold);
  color: var(--forest);
  border: 1px solid var(--gold);
}

.pm-actions .btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.pm-actions .btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}

.pm-actions .btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

.pm-actions .btn-email {
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
}

.pm-actions .btn-email:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
}

.pm-actions .btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}

.pm-actions .btn-ghost:hover {
  background: rgba(27, 58, 43, 0.06);
  transform: translateY(-2px);
}

/* Fullscreen Spec Image Zoom Overlay */
.pm-zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pm-zoom-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.pm-zoom-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 25, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.pm-zoom-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.15);
  color: #fff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pm-zoom-overlay-close:hover {
  background: var(--terracotta);
  transform: rotate(90deg);
}

.pm-zoom-overlay img {
  position: relative;
  z-index: 2;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.97);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pm-zoom-overlay.active img {
  transform: scale(1);
}

/* ---------- CERTIFICATION MODAL STYLING ---------- */
.cert-modal .product-modal-wrapper {
  max-width: 900px;
  max-height: 580px;
}

.cert-modal-grid {
  grid-template-columns: 0.8fr 1.2fr !important;
}

.cert-modal-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--forest-pale);
  padding: 40px 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 20px rgba(27, 58, 43, 0.03);
}

.cert-badge-showcase {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  border: 2px dashed rgba(212, 160, 23, 0.3);
  box-shadow: 0 10px 25px rgba(27, 58, 43, 0.08);
}

.cert-badge-showcase svg {
  width: 110px;
  height: 110px;
}

.cert-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cert-status-badge .status-dot {
  width: 7px;
  height: 7px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #25D366;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.cert-details-block {
  margin-top: 24px;
}

.cert-details-block .pm-subheading {
  font-size: 16px;
  margin-bottom: 8px;
}

.cert-actions {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 20px;
}

.cert-actions button {
  flex: 1 1 calc(50% - 12px);
  min-width: 150px;
}

/* ---------- CERTIFICATIONS LOGOS ROW & GRID ---------- */
.certs-logos-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}

.cert-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(27, 58, 43, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cert-logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-logo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(27, 58, 43, 0.1);
  border-color: var(--gold);
}

.quality-certs-showcase {
  margin-top: 54px;
  margin-bottom: 54px;
  background: var(--forest-pale);
  padding: 48px 32px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
}

.quality-certs-showcase .gallery-subtitle {
  margin-bottom: 6px;
  font-family: Georgia, serif;
  color: var(--forest);
  font-size: 22px;
  font-weight: 700;
}

.quality-certs-showcase .gallery-desc {
  margin-bottom: 36px;
  color: var(--terracotta);
  font-size: 13.5px;
  font-weight: 600;
}

.certs-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.cert-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 16px;
  box-shadow: 0 4px 12px rgba(27, 58, 43, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none !important;
}

.cert-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(27, 58, 43, 0.1);
  border-color: var(--gold);
}

.cert-logo-img-wrapper {
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(27, 58, 43, 0.08);
  padding: 8px;
  margin-bottom: 14px;
}

.cert-logo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cert-logo-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 6px 0;
  letter-spacing: 0.3px;
}

.cert-logo-card p {
  font-size: 11px;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0;
}

/* QA Badges & Logos inside Modals */
.pm-qa-badge-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
}

.cert-modal-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 880px) {
  .nav-inner {
    padding: 12px 20px;
  }

  .logo-text {
    font-size: 21px;
  }

  .logo-sub {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .nav-cta {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
  }

  .burger span {
    width: 100%;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .burger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active span:nth-child(2) {
    opacity: 0;
  }

  .burger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  nav.links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 246, 236, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    gap: 14px;
    border-bottom: 2px solid var(--line);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease, visibility 0.3s ease;
  }

  nav.links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  nav.links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
    padding: 8px 0;
    border-bottom: 1px solid rgba(27, 58, 43, 0.08);
  }

  .hero {
    padding: 70px 0 90px;
    min-height: 480px;
  }

  .hero-bg-wrapper {
    top: -8%;
    left: -8%;
    width: 116%;
    height: 116%;
  }

  .hero-bg-slideshow {
    animation: mobileContinuousEaseInOut 12s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate;
  }

  .hero-slide {
    object-position: 75% center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(22, 48, 31, 0.92) 0%, rgba(22, 48, 31, 0.72) 60%, rgba(22, 48, 31, 0.4) 100%);
  }

  @keyframes mobileContinuousEaseInOut {
    0% {
      transform: scale(1) translate3d(0, 0, 0);
    }

    50% {
      transform: scale(1.08) translate3d(-3%, -2%, 0);
    }

    100% {
      transform: scale(1.02) translate3d(2%, 1%, 0);
    }
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-bowls {
    height: 260px;
    margin-top: 20px;
  }

  .bowl-pepper {
    width: 170px;
    height: 170px;
  }

  .bowl-cardamom {
    width: 140px;
    height: 140px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }

  .process-row::before {
    display: none;
  }

  .quality-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card.wide-card {
    grid-column: span 1;
  }

  .quality-gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .export-grid {
    grid-template-columns: 1fr;
  }

  .region-grid {
    grid-template-columns: 1fr;
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 40px 28px;
  }

  .inquiry-card {
    padding: 40px 28px;
  }


  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* ---------- PRODUCT DETAILS MODAL MOBILE DRAWER ---------- */
  .product-modal-wrapper {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    border: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .product-modal.active .product-modal-wrapper {
    transform: translateY(0);
  }

  .product-modal-container {
    padding: 24px 20px 48px;
  }

  .product-modal-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .product-modal-content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pm-gallery-main {
    height: 240px;
  }

  .pm-title {
    font-size: 26px;
  }

  .pm-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pm-docs-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pm-actions {
    flex-direction: column;
    gap: 10px;
  }

  .pm-actions button,
  .pm-actions a {
    width: 100%;
    flex: 1 1 100%;
  }

  /* Mobile Dropdown Customization */
  .nav-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
  }

  .dropdown-arrow {
    display: none;
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 12px;
    background: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: none;
  }

  .dropdown-section-title {
    padding-left: 0;
  }

  .dropdown-item {
    padding: 6px 12px !important;
    font-size: 14px !important;
    border-left: 2px solid var(--line);
    border-radius: 0;
  }

  .dropdown-item:hover {
    background: rgba(27, 58, 43, 0.05);
    border-left-color: var(--gold);
  }

  .dropdown-divider {
    display: none;
  }

  /* Mobile Certifications Modal */
  .cert-modal-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .cert-modal-left {
    padding: 24px;
  }

  .cert-badge-showcase {
    width: 100px;
    height: 100px;
  }

  .cert-badge-showcase svg {
    width: 80px;
    height: 80px;
  }

  /* Mobile Certifications Grid */
  .quality-certs-showcase {
    padding: 32px 16px;
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .certs-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cert-logo-card {
    padding: 16px 8px;
  }

  .cert-logo-img-wrapper {
    width: 68px;
    height: 68px;
    margin-bottom: 10px;
  }
}

/* ---------- OTHER SPICES SECTION ---------- */
.other-spices {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.other-spices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.other-spice-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(27, 58, 43, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.other-spice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(27, 58, 43, 0.1);
  border-color: var(--gold);
}

.other-spice-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--forest-pale);
}

.other-spice-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-spice-card:hover .other-spice-img {
  transform: scale(1.06);
}

.other-spice-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(27, 58, 43, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(250, 246, 236, 0.15);
}

.other-spice-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.other-spice-body h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--forest);
  margin: 0 0 6px 0;
}

.other-spice-meta {
  font-size: 12px;
  color: var(--terracotta);
  margin-bottom: 12px;
  font-weight: 600;
}

.other-spice-desc {
  font-size: 13.5px;
  color: #4b4d43;
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.btn-other-inquire {
  width: 100%;
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 10px 0;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-other-inquire:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.other-spices-footer {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.other-spices-footer p {
  font-size: 14px;
  color: var(--forest);
  font-weight: 600;
}

/* Mobile responsive rules for other spices section */
@media (max-width: 880px) {
  .other-spices {
    padding: 60px 0;
  }

  .other-spices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
  }

  .other-spice-body {
    padding: 16px;
  }

  .other-spice-body h3 {
    font-size: 16px;
  }

  .other-spice-desc {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .other-spices-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PRODUCT IMAGE CAROUSEL ---------- */
.product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  background: #1b261e;
  padding: 0 !important;
  /* Reset padding to go full-bleed */
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(27, 58, 43, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(250, 246, 236, 0.15);
  color: var(--cream);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.carousel-control:hover {
  background: var(--forest);
  border-color: var(--gold);
}

.carousel-control.prev {
  left: 16px;
}

.carousel-control.next {
  right: 16px;
}

.carousel-control.prev:active {
  transform: translateY(-50%) scale(0.9);
}

.carousel-control.next:active {
  transform: translateY(-50%) scale(0.9);
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicators .indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(250, 246, 236, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(27, 58, 43, 0.1);
}

.carousel-indicators .indicator.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Mobile responsive rules */
@media (max-width: 880px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-carousel {
    height: 280px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .certs-logos-row {
    gap: 8px;
  }

  .cert-logo-item {
    width: 46px;
    height: 46px;
    padding: 5px;
  }

  .carousel-control {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .carousel-control.prev {
    left: 8px;
  }

  .carousel-control.next {
    right: 8px;
  }
}