/* SANAY INDUSTRIES - Multi-page Moxie-style */
:root {
  --cream: #FFFBE3;
  --lime: #EBFC68;
  --lime-dark: #d4e850;
  --teal: #0E5E6F;
  --dark: #1A1A1A;
  --dark2: #111111;
  --white: #ffffff;
  --gray: #555;
  --topbar-h: 40px;
  --header-h: 80px;
  --bottom-nav-h: 64px;
  --font-h: 'Poppins', sans-serif;
  --font-b: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; image-rendering: auto; }
.product-photo,
.export-box img,
.gallery-grid-clean .gal-item img,
.cat-img img,
.variety-img img {
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1200px, 92%); margin: 0 auto; }
.site-main { min-height: 50vh; }

/* TOP BAR - scrolls away on scroll; only header stays sticky */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--topbar-h);
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  transition: transform 0.35s ease;
}
body.header-sticky .topbar {
  transform: translateY(-100%);
  pointer-events: none;
}
.topbar-inner { height: 100%; display: flex; align-items: center; gap: 16px; }
.topbar-social { display: flex; gap: 12px; flex-shrink: 0; }
.topbar-social a { color: var(--white); opacity: 0.85; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; }
.topbar-social a:hover { color: var(--lime); }
.topbar-marquee { overflow: hidden; flex: 1; }
.topbar-marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: scrollL 30s linear infinite; }
.topbar-marquee-track span { flex-shrink: 0; }
@keyframes scrollL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HEADER home: transparent + black text; scroll: white bg */
.site-header {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0; z-index: 999;
  height: var(--header-h);
  background-color: transparent;
  box-shadow: none;
  transition: background-color 0.35s, box-shadow 0.35s, top 0.35s ease;
}
.site-header .header-inner,
.site-header .container { background: transparent; }
body.header-sticky .site-header { top: 0; }

/* Home starting state: no bg colour */
.page-home .site-header { background-color: transparent; box-shadow: none; }
.page-home .site-header .desktop-nav a,
.page-home .site-header .menu-btn { color: var(--dark); }

/* Home scrolled: white bg */
.page-home .site-header.scrolled,
body.header-sticky.page-home .site-header {
  background-color: #FFFBE3;
  /* box-shadow: 0 1px 12px rgba(0,0,0,0.07); */
}

/* Inner pages always white */
.page-inner .site-header {
  background-color: #FFFBE3;
  /* box-shadow: 0 1px 12px rgba(0,0,0,0.06); */
}
.page-inner .site-header .desktop-nav a,
.page-inner .site-header .menu-btn { color: var(--dark); }

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 58px; width: auto; max-height: calc(var(--header-h) - 16px); }
.desktop-nav { display: flex; gap: 2px; flex-wrap: wrap; justify-content: flex-end; }
.desktop-nav a {
  font-family: var(--font-b); font-weight: 500; font-size: 0.9rem;
  padding: 10px 14px; color: var(--dark);
  transition: color 0.3s, opacity 0.3s;
  letter-spacing: 0.2px;
}
.desktop-nav a:hover { opacity: 0.65; }
.desktop-nav a.active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.menu-btn {
  display: none; background: none; border: none; font-size: 1.45rem;
  color: var(--dark); cursor: pointer; transition: color 0.3s;
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  transform: translateX(100%); transition: transform 0.4s;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-h); font-size: 1.15rem; font-weight: 600; }
.menu-close { position: absolute; top: calc(var(--topbar-h) + 16px); right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; transition: top 0.35s; }
body.header-sticky .menu-close { top: 16px; }

/* BUTTONS */
.btn-lime {
  display: inline-block; font-family: var(--font-h); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--lime); color: var(--dark);
  padding: 14px 28px; border: none; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-lime.btn-sm { padding: 11px 18px; font-size: 0.72rem; width: 100%; text-align: center; }
.link-arrow { font-family: var(--font-h); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; }
.link-arrow.light { color: var(--cream); }
.text-center { text-align: center; }
.mt-4 { margin-top: 24px; }

/* HERO + WAVE header overlays hero; wave glued to bottom */
.page-home .hero-wave-block {
  margin-top: var(--topbar-h);
}
.hero-wave-block {
  display: block;
  line-height: 0;
  font-size: 0;
  position: relative;
  background: var(--cream);
  padding-bottom: 24px;
}
.hero-clean {
  position: relative;
  height: 520px;
  min-height: 280px;
  margin: 0;
  padding: 0;
  background: var(--dark);
  overflow: visible;
  z-index: 1;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 0;
}
.hero-slides-mobile { display: none; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none; background: var(--dark);
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-media {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* Hero prev / next */
.hero-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 12;
  width: 46px; height: 46px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0.45;
  transition: opacity 0.3s, background 0.3s;
  backdrop-filter: blur(4px);
}
.hero-nav:hover { opacity: 0.85; background: rgba(255,255,255,0.38); }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }

/* WAVE MARQUEE — straddles hero bottom border, no gap */
.wave-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 10;
  height: 48px;
  margin: 0;
  padding: 0;
  background: transparent;
  line-height: 0;
  pointer-events: none;
}
.wave-band-shape {
  display: block;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0;
}
.wave-marquee-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  line-height: normal;
  z-index: 2;
  pointer-events: auto;
}
.wave-marquee-text::before,
.wave-marquee-text::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
}
.wave-marquee-text::before { left: 0; background: linear-gradient(90deg, var(--lime), transparent); }
.wave-marquee-text::after { right: 0; background: linear-gradient(270deg, var(--lime), transparent); }
.wave-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: waveScroll 18s linear infinite;
}
.wave-item {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: lowercase;
  color: var(--dark);
  flex-shrink: 0;
  letter-spacing: 0.25px;
}
.wave-item::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--dark);
  margin: 0 20px;
  vertical-align: middle;
  transform: rotate(45deg);
  opacity: 0.55;
}
@keyframes waveScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* TAGLINE — flush under wave overlap */
.tagline-strip {
  background: var(--cream);
  text-align: center;
  padding: 20px 20px 44px;
  margin: 0;
  position: relative;
  z-index: 4;
}
.tagline-text {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--dark);
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
.tagline-text strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-h);
  font-size: 0.72em;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: rgba(26,26,26,0.88);
}

.brand-nowrap {
  white-space: nowrap;
  display: inline;
}

/* PAGE BANNER (inner pages) */
.page-banner {
  padding: calc(var(--topbar-h) + var(--header-h) + 48px) 0 48px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: padding-top 0.35s;
}
body.header-sticky .page-banner {
  padding-top: calc(var(--header-h) + 48px);
}
.page-banner h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400; text-transform: uppercase; letter-spacing: 1px;
}
.page-banner h1 em { font-style: italic; font-weight: 700; }
.page-banner p { color: var(--gray); margin-top: 10px; font-size: 1rem; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--dark2); color: var(--cream); }
.section-heading {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 400; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-heading em { font-style: italic; font-weight: 700; }
.section-heading.light { color: var(--cream); }
.section-heading.center { text-align: center; }
.section-lead { color: var(--gray); margin-bottom: 36px; text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-lead.light { color: rgba(255,251,227,0.7); }
.lead { font-size: 1.05rem; margin-bottom: 20px; font-weight: 500; }

/* CAROUSEL */
.carousel-wrap { display: flex; align-items: center; gap: 12px; }
.carousel-viewport { overflow: hidden; flex: 1; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.45s ease; }
.car-btn {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  border: 1px solid var(--dark); background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.car-btn:hover { background: var(--lime); border-color: var(--lime); }
.car-btn.light { border-color: rgba(255,255,255,0.4); color: var(--white); }

.cat-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  background: var(--white);
  text-align: left;
  transition: transform 0.35s, box-shadow 0.35s;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.cat-card-link:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }
.cat-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
  padding: 0;
  margin: 0;
  display: block;
  line-height: 0;
}
.cat-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
}
.cat-card-link:hover .cat-img img { transform: scale(1.02); }
.cat-body {
  padding: 16px 18px 18px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cat-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); display: block; margin-bottom: 6px; }
.cat-body h3 { font-family: var(--font-h); font-size: 1rem; margin-bottom: 8px; }
.cat-body p { font-size: 0.82rem; color: var(--gray); margin-bottom: 14px; line-height: 1.6; flex: 1; }
.cat-cta {
  font-family: var(--font-h); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px;
  background: var(--lime);
  width: 100%;
  color: var(--dark);
  border-radius: 8px;
  margin-top: auto;
  border: none;
  line-height: 1.3;
}
.cat-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.section-favourites {
  background: var(--cream);
  padding: 48px 0 64px;
}
.section-favourites .section-heading { margin-bottom: 8px; }
.section-favourites .section-lead { margin-bottom: 28px; font-size: 0.92rem; }

/* Category carousel — buttons outside track, no overlap */
.cat-carousel {
  position: relative;
  gap: 0;
  padding: 0 56px;
  align-items: stretch;
}
.cat-carousel .cat-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  container-type: inline-size;
}
.cat-carousel .carousel-track {
  gap: 16px;
  padding: 4px 2px 14px;
}
.cat-carousel .carousel-track .cat-card {
  flex: 0 0 calc((100cqw - 48px) / 4);
  display: flex;
  flex-direction: column;
}
.cat-carousel .cat-car-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 12;
  flex-shrink: 0;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}
.cat-carousel .car-prev { left: 0; }
.cat-carousel .car-next { right: 0; }
#homeCat::after {
  content: '';
  flex: 0 0 16px;
  min-width: 16px;
}

/* Mobile app-style product scroll */
.favourites-scroll {
  display: flex;
  align-items: stretch;
}
.favourites-scroll .carousel-viewport {
  overflow: hidden;
  flex: 1;
}

.section-products-range {
  background: var(--cream);
  padding: 48px 0 0;
}
.section-products-range .section-favourites { padding: 0; background: transparent; }
.export-range-block {
  margin-top: 56px;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.export-range-block .section-heading { margin-bottom: 8px; }
.export-range-block .section-lead { margin-bottom: 28px; }
.export-carousel-wrap {
  margin-top: 28px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 20px 12px;
}
.export-viewport { --export-gap: 12px; overflow: hidden; flex: 1; }
.export-track {
  display: flex;
  gap: var(--export-gap);
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}
.export-box {
  flex: 0 0 var(--export-item-size, 120px);
  width: var(--export-item-size, 120px);
  min-height: calc(var(--export-item-size, 120px) * 1.12);
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.export-box:hover {
  border-color: var(--lime);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.export-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.product-card-link:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.variety-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.variety-card { background: var(--white); border: 1px solid rgba(0,0,0,0.06); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.variety-card:hover { transform: translateY(-6px); box-shadow: 0 14px 36px rgba(0,0,0,0.1); }
.variety-img {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--cream);
  overflow: hidden;
}
.variety-img-btn {
  display: block;
  width: 100%;
  border: none;
  background: none;
  padding: 0;
  cursor: zoom-in;
}
.variety-img img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.35s;
}
.variety-card:hover .variety-img img { transform: scale(1.03); }
.variety-body { padding: 22px; }
.variety-body h3 { font-family: var(--font-h); font-size: 1rem; margin-bottom: 8px; }
.variety-body p { font-size: 0.85rem; color: var(--gray); margin-bottom: 16px; }
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.chip { padding: 10px 22px; background: var(--white); border: 1px solid rgba(0,0,0,0.1); font-family: var(--font-h); font-weight: 600; font-size: 0.82rem; transition: background 0.2s; }
.chip:hover { background: var(--lime); border-color: var(--lime); }
.max-w { max-width: 780px; margin-left: auto; margin-right: auto; }
.mt-section { margin-top: 48px; }

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; margin-top: 32px; }
.product-grid.light .light-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.product-card { overflow: hidden; transition: transform 0.3s; }
.product-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.product-card:hover { transform: translateY(-4px); }
.product-grid .product-img {
  aspect-ratio: unset;
  background: var(--cream);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  line-height: 0;
  min-height: 200px;
}
.product-grid .product-img img {
  width: 100%;
  height: auto;
  max-height: 260px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-family: var(--font-h); font-size: 1rem; margin-bottom: 8px; }
.product-body p { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; flex: 1; }
.product-grid .cat-cta {
  border-radius: 8px;
  margin-top: auto;
  display: flex;
}
.product-img { aspect-ratio: 4/3; background: var(--cream); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.section-dark .product-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.section-dark .product-body h3 { color: var(--cream); }
.section-dark .product-body p { color: rgba(255,251,227,0.65); }

/* PLAYBOOK / WHY CHOOSE */
.section-playbook {
  position: relative;
  background: var(--dark2);
  padding: 72px 0 80px;
  overflow: hidden;
}
.section-playbook::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(235,252,104,0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(235,252,104,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.section-playbook .container { position: relative; z-index: 1; }
.section-why-choose .why-eyebrow {
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--lime);
  margin-bottom: 8px;
}
.section-playbook .section-heading { margin-bottom: 10px; }
.section-playbook .section-lead {
  margin-bottom: 40px;
  max-width: 620px;
}
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.play-card {
  position: relative;
  border: 1px solid rgba(255,251,227,0.12);
  border-radius: 12px;
  padding: 28px 22px 26px;
  text-align: left;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.play-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.play-card:hover {
  border-color: rgba(235,252,104,0.45);
  background: rgba(235,252,104,0.07);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
}
.play-card:hover::before { transform: scaleX(1); }
.play-card i {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: none;
  border-radius: 10px;
  flex-shrink: 0;
}
.play-card h3 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  color: var(--cream);
  letter-spacing: 0.6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 1.35;
}
.play-card p {
  font-size: 0.86rem;
  color: rgba(255,251,227,0.72);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* SPLIT BANNER */
.split-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.split-left {
  background: var(--dark2); color: var(--cream);
  padding: 60px 48px; display: flex; flex-direction: column; justify-content: center;
}
.split-left h2 { font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2rem); text-transform: uppercase; margin-bottom: 16px; }
.split-left h2 em { font-style: italic; font-weight: 700; }
.split-left p { margin-bottom: 24px; opacity: 0.8; }
.split-right { overflow: hidden; }
.split-right img { width: 100%; height: 100%; object-fit: cover; }

/* ABOUT TEASER / SANAY STORY */
.section-about-teaser { background: var(--cream); }
.story-section {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  background: var(--cream);
}
.story-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.story-bg-lines {
  width: 100%;
  height: 100%;
  display: block;
}
.story-section .container { position: relative; z-index: 1; }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.story-content h2 em { font-style: italic; font-weight: 700; }
.story-lead {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.75;
  margin-bottom: 14px;
}
.story-content p { margin-bottom: 14px; color: var(--gray); font-size: 0.95rem; line-height: 1.75; }
.story-highlights {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  gap: 2px;
}
.story-highlights li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  font-size: 0.9rem;
  color: var(--gray);
}
.story-highlights i {
  flex-shrink: 0;
  color: var(--dark);
  font-size: 0.7rem;
}
.about-teaser-img img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

/* EXPORT CAROUSEL — 7 per row desktop, 4 mobile, full-page slide */
.section-export { padding-top: 48px; }

/* ABOUT PAGE */
.about-page-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.about-content p { margin-bottom: 16px; color: var(--gray); }
.about-side-img img { border-radius: 4px; }
.why-list { list-style: none; max-width: 700px; margin: 32px auto 0; }
.why-list li { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-family: var(--font-h); font-weight: 600; display: flex; gap: 12px; align-items: center; }
.why-list i { color: var(--lime); background: var(--dark); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 32px; }
.stats div { text-align: center; padding: 16px 8px; background: var(--white); }
.stats strong { display: block; font-family: var(--font-h); font-size: 2rem; }
.stats span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); }

/* INNER PAGES */
.inner-page-section { padding: 56px 0; }
.page-cta {
  background: var(--cream);
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.page-cta-dark { background: var(--dark2); color: var(--cream); border-top: none; }
.page-cta .section-lead { margin-bottom: 24px; }

.info-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.info-pills span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 40px;
}
.info-pills i { color: var(--dark); font-size: 0.9rem; }

.timeline-modern { max-width: 640px; }
.timeline-modern .tl-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
}
.timeline-modern .tl-icon span { line-height: 1; }
.timeline-modern .tl-body { padding-bottom: 28px; }

.stats-lime div {
  background: var(--lime);
  border-radius: 6px;
  padding: 18px 10px;
}
.stats-lime strong { color: var(--dark); font-size: 1.75rem; }
.stats-inline { margin-bottom: 36px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  max-width: 900px;
}
.why-grid li {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9rem;
  font-weight: 500;
}

.qc-card {
  border-radius: 6px;
  border-left: 3px solid var(--lime);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s;
}
.qc-card:hover { transform: translateX(4px); }

.export-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.export-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 14px;
  border: 1px solid rgba(235,252,104,0.25);
  border-radius: 8px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.export-type-card:hover {
  background: rgba(235,252,104,0.08);
  border-color: var(--lime);
}
.export-type-card i { font-size: 1.4rem; color: var(--lime); }
.export-type-card span {
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
}

.testi-modern .testi-card {
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}
.countries span {
  border-radius: 40px;
  font-size: 0.8rem;
}
.mfg-img { border-radius: 6px; }
.quality-img { border-radius: 6px; }
.about-side-img img { border-radius: 6px; width: 100%; object-fit: cover; }

/* TIMELINE */
.timeline { max-width: 700px; margin: 40px auto; }
.tl-item { display: flex; gap: 20px; }
.tl-icon { width: 50px; height: 50px; flex-shrink: 0; background: var(--lime); display: flex; align-items: center; justify-content: center; }
.tl-body { padding-bottom: 36px; border-left: 2px solid var(--lime); margin-left: -26px; padding-left: 46px; }
.tl-item:last-child .tl-body { border-left: none; }
.tl-step { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gray); }
.tl-body h3 { font-family: var(--font-h); font-size: 1.05rem; margin: 4px 0 6px; }
.tl-body p { font-size: 0.9rem; color: var(--gray); }
.mfg-img-wrap { margin-top: 40px; }
.mfg-img { width: 100%; max-height: 400px; object-fit: cover; }

/* QUALITY */
.quality-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.quality-img { width: 100%; margin-top: 20px; }
.quality-cards { display: grid; gap: 12px; }
.qc-card { display: flex; gap: 14px; background: var(--white); padding: 18px 20px; align-items: flex-start; }
.qc-card i { font-size: 1.3rem; color: var(--dark); width: 30px; flex-shrink: 0; margin-top: 2px; }
.qc-card h4 { font-family: var(--font-h); font-size: 0.9rem; margin-bottom: 4px; }
.qc-card p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* EXPORTS */
.export-types { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 32px 0; }
.export-type span {
  display: block; padding: 12px 24px;
  border: 1px solid rgba(235,252,104,0.3);
  color: var(--cream); font-family: var(--font-h); font-weight: 600; font-size: 0.85rem;
}
.countries-title { color: var(--cream); font-family: var(--font-h); margin: 24px 0 16px; }
.countries { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.countries span { background: rgba(235,252,104,0.12); color: var(--cream); padding: 8px 18px; font-size: 0.82rem; font-weight: 600; }

/* GALLERY — clean aligned grid, small thumbs, no crop */
.gallery-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  align-items: start;
}
.gallery-grid-clean .gal-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  min-height: 0;
}
.gallery-grid-clean .gal-item img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
}
.gallery-grid-clean .gal-zoom {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: 6px;
}
.gallery-grid-clean .gal-item:hover .gal-zoom { opacity: 1; }
.section-gallery-page {
  padding-top: 40px;
  background: var(--cream);
}

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid.full { grid-template-columns: repeat(3, 1fr); }
.gal-item { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gal-zoom {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.5rem; opacity: 0; transition: opacity 0.3s;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover .gal-zoom { opacity: 1; }

/* TESTIMONIALS */
.testi-wrap { overflow: hidden; margin-top: 28px; }
.testi-track { display: flex; transition: transform 0.5s; }
.testi-card { flex: 0 0 100%; text-align: center; padding: 40px 20px; background: var(--white); }
.testi-card .stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 4px; }
.testi-card p { font-style: italic; color: var(--gray); margin-bottom: 14px; }
.testi-card strong { display: block; font-family: var(--font-h); }
.testi-card span { font-size: 0.85rem; color: var(--gray); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-list { list-style: none; margin-top: 24px; }
.contact-list li { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-list i { color: var(--dark); width: 24px; margin-top: 4px; }
.contact-list strong { display: block; font-family: var(--font-h); font-size: 0.85rem; }
.contact-list p { margin: 0; color: var(--gray); font-size: 0.9rem; }
.contact-form { background: var(--white); padding: 32px; }
.contact-form input, .contact-form textarea {
  width: 100%; border: 1px solid #ddd; padding: 12px 16px;
  font-family: var(--font-b); font-size: 0.95rem; background: var(--cream);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.contact-form textarea { margin-bottom: 14px; resize: vertical; }
.contact-form .btn-lime { width: 100%; }

/* HOME CONTACT — premium two-column */
.section-contact-premium {
  background: var(--cream);
  padding: 72px 0;
}
.contact-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.contact-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 6px;
}
.contact-premium-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-premium-lead {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 28px;
  max-width: 420px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-icon-phone { background: #5c4033; }
.contact-icon-email { background: #6b4c3b; }
.contact-icon-address { background: #c45c7a; }
.contact-icon-hours { background: #6b5b95; }
.contact-info-card strong {
  display: block;
  font-family: var(--font-h);
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.contact-info-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray);
}
.contact-info-card a { color: inherit; }
.contact-info-card a:hover { color: var(--dark); }
.contact-premium-side-img {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}
.contact-premium-side-img img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
}
.contact-premium-form-wrap {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.contact-form-hero {
  height: 180px;
  overflow: hidden;
}
.contact-form-hero img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  background-color: #FFFBE3;
}
.contact-form-banner {
  background: var(--dark2);
  color: var(--lime);
  text-align: center;
  padding: 16px 20px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0.5px;
}
.contact-premium-form {
  padding: 24px 24px 28px;
}
.contact-premium-form input:not([type="checkbox"]):not([type="radio"]),
.contact-premium-form select,
.contact-premium-form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  background: var(--cream);
  margin-bottom: 14px;
}
.contact-premium-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.contact-premium-form textarea { resize: vertical; min-height: 120px; }
.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--gray);
  margin-bottom: 18px;
  cursor: pointer;
  text-align: left;
}
.contact-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--dark2);
  cursor: pointer;
}
.contact-privacy span {
  flex: 1;
  min-width: 0;
}
.btn-contact-send {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  background: var(--dark2);
  color: var(--cream);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s;
}
.btn-contact-send:hover { background: #2a2a2a; }
.home-cta .btn-lime { margin-top: 8px; }

/* CHATBOT */
.chatbot-widget {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 2500;
}
.chatbot-fab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: none;
  border-radius: 50px;
  background: var(--dark2);
  color: var(--cream);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  transition: transform 0.25s, background 0.25s;
}
.chatbot-fab:hover { background: #2a2a2a; transform: translateY(-2px); }
.chatbot-fab i { font-size: 1.1rem; color: var(--lime); }
.chatbot-fab.hidden { display: none; }
.chatbot-panel {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 120px));
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--dark2);
  color: var(--cream);
}
.chatbot-header strong { display: block; font-size: 0.95rem; }
.chatbot-header span { font-size: 0.72rem; opacity: 0.75; }
.chatbot-close {
  width: 32px; height: 32px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
  max-height: 280px;
}
.chat-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.5;
}
.chat-msg p { margin: 0; }
.chat-msg.bot {
  align-self: flex-start;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--dark);
}
.chat-msg.user {
  align-self: flex-end;
  background: var(--lime);
  color: var(--dark);
}
.chat-msg.typing p {
  display: flex;
  gap: 4px;
  align-items: center;
}
.chat-msg.typing span {
  width: 6px; height: 6px;
  background: var(--gray);
  border-radius: 50%;
  animation: chatDot 1.2s infinite;
}
.chat-msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-msg.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}
.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.chatbot-quick button {
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 20px;
  background: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.chatbot-quick button:hover { background: var(--lime); border-color: var(--lime); }
.chatbot-form {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.chatbot-form input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 0.88rem;
  background: var(--cream);
}
.chatbot-form button {
  width: 42px; height: 42px;
  border: none;
  border-radius: 50%;
  background: var(--dark2);
  color: var(--lime);
  cursor: pointer;
  flex-shrink: 0;
}
.chatbot-form button:disabled { opacity: 0.5; cursor: not-allowed; }

/* NEWSLETTER + FOOTER Moxie-style */
.newsletter-bar {
  background: linear-gradient(135deg, #3d9a8b 0%, #2d7a6e 100%);
  padding: 32px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.newsletter-copy { flex: 1; min-width: 200px; }
.newsletter-title {
  color: var(--white);
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}
.newsletter-sub {
  color: rgba(255,255,255,0.82);
  font-family: var(--font-b);
  font-size: 0.88rem;
}
.newsletter-form {
  display: flex;
  flex: 1;
  max-width: 440px;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 15px 18px;
  font-family: var(--font-b);
  font-size: 0.92rem;
  background: transparent;
  color: var(--dark);
  min-width: 0;
}
.newsletter-form input::placeholder { color: #999; }
.newsletter-form button {
  background: var(--lime);
  border: none;
  padding: 15px 22px;
  cursor: pointer;
  color: var(--dark);
  font-size: 1rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--lime-dark); }

/* Image lightbox */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.img-lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.lb-inner {
  position: relative;
  z-index: 2;
  max-width: min(96vw, 1200px);
  max-height: 92vh;
}
.lb-inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }

.site-footer {
  background: var(--cream);
  padding: 0;
}
.footer-main { padding: 40px 0 16px; }
.footer-hide-mobile { display: block; }
.footer-hide-desktop { display: none; }
.footer-br { display: inline; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px 28px;
  align-items: start;
}
.footer-slogan {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-slogan em { font-style: italic; font-weight: 700; }
.footer-address,
.footer-email {
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 6px;
}
.footer-email a { color: var(--gray); }
.footer-email a:hover { color: var(--dark); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 34px; height: 34px;
  background: var(--dark); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: background 0.2s;
}
.footer-social a:hover { background: var(--lime); color: var(--dark); }
.footer-grid h4 {
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  color: var(--dark);
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a {
  font-family: var(--font-b);
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-grid ul a:hover { color: var(--dark); }
.footer-meta p {
  font-family: var(--font-b);
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.85;
}
.footer-bottom {
  margin-top: 24px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-family: var(--font-b);
  font-size: 0.78rem;
  color: var(--gray);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-copy { margin: 0; }
.footer-crafted {
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--gray);
}
.footer-crafted a {
  color: var(--dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-crafted a:hover { color: var(--gray); }
.footer-social-bar { margin-top: 0; gap: 8px; flex-shrink: 0; }
.footer-social-bar a { width: 30px; height: 30px; font-size: 0.75rem; }

/* BOTTOM NAV */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 12px;
  right: 12px;
  z-index: 998;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.16);
  padding: 7px 5px;
  justify-content: space-around;
}
.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 0.6rem; font-weight: 600; color: var(--gray);
  padding: 6px 10px; border-radius: 12px; flex: 1;
}
.bn-item i { font-size: 1.1rem; }
.bn-item.active { color: var(--dark); background: var(--lime); }

.toast-wrap { position: fixed; top: calc(var(--topbar-h) + var(--header-h) + 12px); right: 16px; z-index: 2000; display: flex; flex-direction: column; gap: 8px; transition: top 0.35s; }
body.header-sticky .toast-wrap { top: calc(var(--header-h) + 12px); }
.toast { padding: 14px 20px; border-radius: 8px; color: var(--white); font-size: 0.9rem; max-width: 320px; }
.toast.ok { background: #2d6a4f; }
.toast.err { background: #c1121f; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
  .cat-carousel { padding: 0 48px; }
  .cat-carousel .carousel-track .cat-card { flex: 0 0 calc((100cqw - 16px) / 2); }
  .playbook-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .split-banner, .about-teaser-grid, .about-page-grid, .quality-page-grid, .contact-grid, .contact-premium-grid { grid-template-columns: 1fr; }
  .export-carousel-wrap .car-btn { display: flex; }
  .export-carousel-wrap { padding: 16px 8px; }
  .export-box { padding: 14px; min-height: calc(var(--export-item-size, 140px) * 1.15); }
  .gallery-grid-clean { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gallery-grid-clean .gal-item img { max-height: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-main { padding: 36px 0 24px; }
  .bottom-nav { display: flex; }
  body { padding-bottom: calc(var(--bottom-nav-h) + 28px); }
  .site-footer { padding-bottom: 12px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-nav { width: 40px; height: 40px; font-size: 0.9rem; opacity: 0.4; }
  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }
}
@media (max-width: 767px) {
  .hero-slides-desktop { display: none !important; }
  .hero-slides-mobile { display: block !important; }
  .section-favourites { padding: 36px 0 48px; }
  .section-products-range .cat-carousel {
    padding: 0;
    margin: 0 -12px;
  }
  .section-products-range .cat-carousel .cat-car-btn { display: none !important; }
  .cat-carousel .carousel-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 12px;
    scroll-padding-inline: 12px;
  }
  .cat-carousel .carousel-viewport::-webkit-scrollbar { display: none; }
  .cat-carousel .carousel-track { transform: none !important; gap: 12px; padding: 4px 0 14px; }
  #homeCat::after { flex: 0 0 12px; min-width: 12px; }
  .section-products-range .cat-card,
  .section-favourites .cat-card {
    flex: 0 0 86vw !important;
    max-width: 360px;
    min-width: 0;
    scroll-snap-align: start;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
  }
  .section-products-range .cat-img,
  .section-favourites .cat-img {
    border-radius: 14px 14px 0 0;
    background: var(--cream);
  }
  .section-products-range .cat-img img,
  .section-favourites .cat-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .export-carousel-wrap { padding: 12px 6px; }
  .export-box { padding: 16px; min-height: calc(var(--export-item-size, 150px) * 1.2); }
  .export-box img { max-height: 100%; }
  .product-grid .product-img { min-height: 180px; padding: 12px; }
  .product-grid .product-img img { max-height: 220px; }
  .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid-clean .gal-item { padding: 8px; }
  .gallery-grid-clean .gal-item img { max-height: 110px; }
  .chatbot-widget { right: 14px; bottom: calc(var(--bottom-nav-h) + 20px); }
  .chatbot-panel { right: 14px; bottom: calc(var(--bottom-nav-h) + 20px); max-height: min(480px, calc(100vh - 160px)); }
  .section-products-range .cat-body,
  .section-favourites .cat-body { padding: 16px 16px 16px; }
  .section-products-range .cat-cta,
  .section-favourites .cat-cta {
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.75rem;
  }
  .section-playbook .section-heading { font-size: clamp(1.15rem, 4.5vw, 1.5rem); }
  .section-playbook .section-lead { margin-bottom: 28px; font-size: 0.88rem; }
  .playbook-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .play-card { padding: 20px 14px 18px; }
  .play-card i { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 12px; }
  .play-card h3 { font-size: 0.72rem; }
  .play-card p { font-size: 0.78rem; line-height: 1.55; }
  .tagline-strip { padding: 24px 16px 36px; }
  .hero-wave-block { padding-bottom: 22px; }
  .wave-marquee { height: 44px; }
  .wave-band-shape { height: 44px; }
  .wave-item { font-size: 0.74rem; }
  .inner-page-section { padding: 40px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .export-cards { grid-template-columns: repeat(2, 1fr); }
  .info-pills span { font-size: 0.78rem; padding: 8px 14px; }

  /* Footer — compact horizontal app style */
  .footer-hide-mobile { display: none !important; }
  .footer-hide-desktop { display: flex !important; }
  .footer-br { display: none; }
  .footer-slogan {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .footer-slogan em { display: inline; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 6px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .footer-email { text-align: center; font-size: 0.78rem; margin-bottom: 8px; }
  .footer-brand-col .footer-social {
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 4px;
  }
  .footer-col h4 { font-size: 0.68rem; margin-bottom: 6px; letter-spacing: 1px; }
  .footer-col ul li { margin-bottom: 4px; }
  .footer-col ul a { font-size: 0.78rem; }
  .footer-main { padding: 20px 0 4px; }
  .footer-bottom {
    margin-top: 10px;
    padding: 12px 0 4px;
  }
  .footer-bottom-row { align-items: center; justify-content: center; }
  .footer-copy { font-size: 0.65rem; line-height: 1.3; max-width: 100%; text-align: center; }
  .footer-crafted { margin-top: 8px; font-size: 0.65rem; }
  .site-footer { padding-bottom: 8px; }
  .newsletter-sub { display: none; }
  .newsletter-title { font-size: 0.95rem; }
  .newsletter-bar { padding: 18px 0; }
  .newsletter-form input { padding: 12px 14px; font-size: 0.85rem; }
  .newsletter-form button { padding: 12px 16px; }
}
@media (max-width: 575px) {
  .topbar-social { display: none; }
  .cat-card { flex: 0 0 86vw; max-width: 360px; }
  .playbook-grid { grid-template-columns: 1fr 1fr; }
  .play-card { min-height: 168px; padding: 18px 10px; }
  .play-card h3 { font-size: 0.68rem; }
  .contact-img-desktop { display: none; }
  .contact-premium-info { text-align: center; }
  .contact-premium-lead { margin-left: auto; margin-right: auto; }
  .contact-info-cards { text-align: left; }
  .section-contact-premium { padding: 48px 0; }
  .contact-form-hero { height: 160px; }
  .contact-premium-form { padding: 18px 16px 22px; }
  .contact-privacy { font-size: 0.8rem; gap: 10px; }
  .export-range-block { margin-top: 40px; padding: 40px 0 48px; }
  .gallery-grid-clean { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-grid.full { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .story-line-svg { display: none; }
  .about-teaser-img img { max-height: 380px; }
  body { padding-bottom: calc(var(--bottom-nav-h) + 24px); }
  .bottom-nav { bottom: 8px; left: 10px; right: 10px; padding: 6px 4px; }
  .bn-item { padding: 5px 8px; font-size: 0.58rem; }
  .bn-item i { font-size: 1rem; }
}
