/* ================================================
   T2G — Trunk to Gold  |  Coco Natura Clone Style
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

:root {
  --green:      #4caf50;
  --green-dark: #388e3c;
  --green-btn:  #43a047;
  --black:      #1a1a1a;
  --dark:       #222222;
  --grey-bg:    #f0f0f0;
  --white:      #ffffff;
  --text:       #333333;
  --text-mid:   #555555;
  --text-light: #777777;
  --border:     #dddddd;
  --topbar-h:   36px;
  --nav-h:      80px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; font-size: 15px; color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

.container { max-width: 1200px; margin-inline: auto; padding-inline: 30px; }

/* ================================================
   TOPBAR
   ================================================ */
#topbar {
  background: var(--green);
  color: var(--white);
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}
#topbar a { color: var(--white); }

/* ================================================
   HEADER
   ================================================ */
#header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  width: 100%;
}
.header-row {
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
#logo { flex-shrink: 0; display: flex; align-items: center; }
#logo img { height: 62px; width: auto; }
.nav-spacer { flex: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 200ms;
}
.nav-links a:hover,
.nav-links a.active { color: var(--green); }
.nav-cart {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  color: var(--text);
  transition: color 200ms;
}
.nav-cart:hover { color: var(--green); }
.nav-cart svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 300ms var(--ease), opacity 200ms;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — slides in from LEFT, X top-right */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
}
.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 350ms var(--ease);
}
.mobile-panel {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  padding: 24px 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 350ms var(--ease);
  box-shadow: 4px 0 24px rgba(0,0,0,.15);
}
.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text);
  padding: 8px 10px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
}
.mobile-close:hover { color: var(--green); }
.mobile-menu.open { pointer-events: all; }
.mobile-menu.open .mobile-backdrop { background: rgba(0,0,0,.45); }
.mobile-menu.open .mobile-panel { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 200ms;
}
.mobile-menu nav a:hover { color: var(--green); }
.mobile-menu nav a:last-child { border-bottom: none; }

/* ================================================
   HERO SLIDER
   ================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e8e0d5;
}
.hero-track {
  display: flex;
  transition: transform 600ms var(--ease);
}
.hero-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}
.hero-slide-img {
  width: 100%;
  aspect-ratio: 16/6;
  min-height: 340px;
  max-height: 520px;
  overflow: hidden;
  background: #d4c9b8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c9b8 0%, #c4b8a4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.hero-ph-label {
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-text-overlay {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,.25);
}
.hero-text-overlay h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
}
/* Arrow buttons */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.25);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  transition: background 200ms;
  z-index: 2;
}
.hero-arrow:hover { background: rgba(255,255,255,.5); }
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background 200ms;
  padding: 0;
}
.hero-dot.active { background: var(--white); }

/* ================================================
   SECTION UTILITIES
   ================================================ */
.section { padding: 60px 0; }
.section-sm { padding: 40px 0; }
.section-green { background: var(--green); color: var(--white); }
.section-grey  { background: var(--grey-bg); }
.section-dark  { background: var(--dark); color: var(--white); }

.sec-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.sec-title-white {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 40px;
}
.sec-desc {
  text-align: center;
  color: var(--text-light);
  font-size: .9rem;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-block;
  padding: 9px 20px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  text-align: center;
}
.btn-green {
  background: var(--green-btn);
  color: var(--white);
  border: 2px solid var(--green-btn);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }

/* ================================================
   HOME: TAGLINE SECTION
   ================================================ */
.tagline-section {
  padding: 56px 0 48px;
  text-align: center;
  background: var(--white);
}
.tagline-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.tagline-section p {
  font-size: .9rem;
  font-style: italic;
  color: var(--text-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}
.tagline-section p em { font-style: normal; font-weight: 700; }

/* ================================================
   HOME: BEST SELLERS (green bg, 4-col product grid)
   ================================================ */
.bestsellers {
  background: var(--green);
  padding: 48px 0 56px;
}
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bs-card {
  text-align: center;
  color: var(--white);
}
.bs-img {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.bs-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.bs-card h3 { font-size: .9rem; font-weight: 500; margin-bottom: 6px; }
.bs-card .price { font-size: .88rem; margin-bottom: 12px; }
.bs-card .btn { font-size: .65rem; padding: 7px 16px; }

/* ================================================
   HOME: CERTIFICATIONS
   ================================================ */
.certs-section {
  padding: 56px 0;
  background: var(--white);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
  max-width: 760px;
  margin-inline: auto;
  align-items: center;
  justify-items: center;
}
.cert-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}
.cert-item img { max-height: 80px; max-width: 160px; object-fit: contain; }
.cert-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 150px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
  padding: 8px;
}

/* ================================================
   HOME: PULLQUOTE
   ================================================ */
.pullquote {
  padding: 36px 24px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pullquote p {
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: var(--text);
  max-width: 700px;
  margin-inline: auto;
}

/* ================================================
   HOME: LIFESTYLE SLIDER (2-panel split photos)
   ================================================ */
.lifestyle-slider {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.lifestyle-track {
  display: flex;
  transition: transform 600ms var(--ease);
  will-change: transform;
}
.lifestyle-slide {
  flex-shrink: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.lifestyle-panel {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lifestyle-panel img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.lifestyle-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms;
}
.lifestyle-dot.active { background: var(--white); }

/* ================================================
   ABOUT: COMPANY SPLIT
   ================================================ */
.company-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  padding: 56px 0;
}
.company-split h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.company-split .link-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 4px;
}
.company-split .link-green::after { content: '>'; }
.company-split p {
  font-size: .88rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.75;
}
.company-split p:last-child { margin-bottom: 0; }

/* ================================================
   ABOUT: MISSION/VISION BENTO (2x2 photo+text grid)
   ================================================ */
.mv-section {
  background: var(--grey-bg);
  padding: 56px 0;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}
.mv-cell {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 28px;
  font-size: .85rem;
  color: var(--text-mid);
  line-height: 1.7;
  border: 1px solid var(--border);
}
.mv-cell-photo {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--grey-bg);
}
.mv-cell-photo img { width: 100%; height: 100%; object-fit: cover; }
.mv-ph {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ================================================
   ABOUT: WHY T2G (green bg, 3 image+text cards)
   ================================================ */
.why-section {
  background: var(--green);
  padding: 56px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
}
.why-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.why-card-img img { width: 100%; height: 100%; object-fit: cover; }
.why-card-body {
  padding: 24px 20px;
  text-align: center;
}
.why-card-body h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.why-card-body p  { font-size: .82rem; color: var(--text-mid); line-height: 1.7; }

/* ================================================
   PRODUCTS: GREEN HERO (flagship)
   ================================================ */
.product-hero {
  background: var(--green);
  padding: 48px 0;
}
.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}
.product-hero-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.product-hero-text { color: var(--white); text-align: center; }
.product-hero-text .kicker {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  display: block;
  margin-bottom: 10px;
}
.product-hero-text h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; }
.product-hero-text p  { font-size: .88rem; line-height: 1.7; margin-bottom: 24px; opacity: .92; }

/* ================================================
   PRODUCTS: PAYMENT/SHIPMENT INFO STRIP
   ================================================ */
.product-info-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.product-info-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin-inline: auto;
}
.pi-col {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pi-icon svg { width: 28px; height: 28px; stroke: var(--text-light); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.pi-text h4 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pi-text p  { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ================================================
   PRODUCTS: PRODUCT GRID (3-col, product store style)
   ================================================ */
.products-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  padding: 48px 0;
}
.store-card { text-align: center; }
.store-card-img {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 20px;
  background: var(--white);
}
.store-card-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.store-card-ph {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f8f8;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.store-card h3 { font-size: .88rem; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.store-card .price { font-size: .85rem; color: var(--text-mid); margin-bottom: 12px; font-weight: 500; }
.store-card .out-of-stock-badge {
  display: inline-block;
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

/* ================================================
   EXPORT: MAP BANNER
   ================================================ */
.export-map {
  background: var(--green);
  width: 100%;
  aspect-ratio: 16/5;
  max-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  position: relative;
}
.export-map img { width: 100%; height: 100%; object-fit: cover; }
/* SVG world map drawn in CSS */
.map-svg { width: 100%; height: 100%; }

/* ================================================
   EXPORT: INFO COLS (3-col text)
   ================================================ */
.export-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.export-col {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.export-col:last-child { border-right: none; }
.export-col h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.export-col p  { font-size: .85rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 10px; }
.export-col p:last-child { margin-bottom: 0; }
.export-col strong { color: var(--text); }

/* ================================================
   FAQ
   ================================================ */
.faq-page { background: var(--grey-bg); padding: 56px 0 72px; }
.faq-card {
  background: var(--white);
  border-radius: 3px;
  max-width: 780px;
  margin-inline: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color 200ms;
  background: var(--white);
}
.faq-btn:hover { color: var(--text); }
.faq-item.open .faq-btn { color: var(--text); }
.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  transition: transform 300ms var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 350ms var(--ease);
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 20px; }

/* ================================================
   BLOG
   ================================================ */
.blog-page { padding: 56px 0 72px; background: var(--white); }
.blog-page .sec-title { margin-bottom: 10px; }
.blog-page .sec-desc { margin-bottom: 40px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card { border-radius: 3px; overflow: hidden; }
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 18px 0 0; }
.blog-card-body h3 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.4; }
.blog-card-body .blog-date { font-size: .75rem; color: var(--text-light); margin-bottom: 10px; display: block; }
.blog-card-body p  { font-size: .82rem; color: var(--text-mid); line-height: 1.65; }

/* ================================================
   CONTACT
   ================================================ */
.contact-page {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.contact-bg-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: var(--dark);
  z-index: 0;
}
.contact-bg-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: var(--green);
  z-index: 0;
}
.contact-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 3px;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.contact-info {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
}
.contact-info h2 { font-size: 1.5rem; font-weight: 800; text-transform: uppercase; color: var(--text); margin-bottom: 28px; letter-spacing: .04em; }
.contact-info p { font-size: .85rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }
.contact-info p:last-child { margin-bottom: 0; }
.contact-form-wrap { padding: 48px 36px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 200ms;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success { display: none; margin-top: 12px; font-size: .85rem; font-weight: 700; color: var(--green); text-align: center; padding: 12px; background: #e8f5e9; border-radius: 3px; }

/* ================================================
   FOOTER — matches Coco Natura reference layout
   ================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 32px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) minmax(0,1fr) auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand img { height: 64px; width: auto; border-radius: 6px; }
.footer-address { font-size: .82rem; line-height: 1.9; }
.footer-contact { font-size: .82rem; line-height: 1.9; }
.footer-contact a { transition: color 200ms; }
.footer-contact a:hover { color: var(--white); }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-nav-col ul li a { font-size: .82rem; transition: color 200ms; }
.footer-nav-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.4); transition: color 200ms; }
.footer-social a:hover { color: var(--white); }

/* ================================================
   CART DRAWER
   ================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  visibility: hidden;
  pointer-events: none;
}
.cart-overlay.open {
  visibility: visible;
  pointer-events: all;
}
.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 350ms var(--ease);
}
.cart-overlay.open .cart-backdrop { background: rgba(0,0,0,.45); }
.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--grey-bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 350ms var(--ease);
  box-shadow: -4px 0 24px rgba(0,0,0,.15);
}
.cart-overlay.open .cart-drawer { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px 18px;
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--grey-bg);
}
.cart-drawer-header h2 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
}
.cart-close-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text);
  padding: 6px 8px;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 200ms;
}
.cart-close-btn:hover { color: var(--green); }
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 36px 24px;
  background: var(--grey-bg);
}
.cart-empty-msg {
  text-align: center;
  font-size: .88rem;
  color: var(--text-light);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: 1fr; }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* topbar */
  #topbar { font-size: .65rem; letter-spacing: .04em; }

  /* header */
  .nav-links, .nav-cart { display: none; }
  .nav-toggle { display: flex; }
  .header-row { padding-inline: 0; }
  #logo img { height: 52px; }

  /* hero */
  .hero-slide-img { aspect-ratio: 4/3; min-height: 240px; max-height: 320px; }
  .hero-text-overlay {
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
  }
  .hero-text-overlay h2 { font-size: 1.3rem; }

  /* home sections */
  .tagline-section { padding: 36px 0 28px; }
  .tagline-section h2 { font-size: 1.1rem; }
  .tagline-section p { font-size: .83rem; }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 32px; }

  /* lifestyle slider: single panel on mobile */
  .lifestyle-slide { grid-template-columns: 1fr; }
  .lifestyle-panel { aspect-ratio: 4/3; }

  /* about */
  .company-split { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-cell { padding: 24px 20px; font-size: .83rem; }
  .mv-cell-photo { aspect-ratio: 16/9; }
  .mv-ph { min-height: 160px; }
  .why-grid { grid-template-columns: 1fr; }

  /* products */
  .product-hero { padding: 32px 0; }
  .product-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .product-hero-text h1 { font-size: 1.6rem; }
  .products-store-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .product-info-cols { grid-template-columns: 1fr; gap: 20px; }

  /* export */
  .export-map { aspect-ratio: 16/7; max-height: 200px; }
  .export-cols { grid-template-columns: 1fr; }
  .export-col { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 20px; }
  .export-col:last-child { border-bottom: none; }

  /* contact */
  .contact-page { padding: 48px 16px; }
  .contact-card { grid-template-columns: 1fr; max-width: 480px; }
  .contact-info { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
  .contact-form-wrap { padding: 28px 24px; }

  /* blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* footer — stack to 2-col then 1-col */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 24px;
  }
  .footer-nav-col ul { align-items: flex-start; }
  .footer-brand img { height: 52px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* section padding */
  .section { padding: 40px 0; }
  .section-sm { padding: 28px 0; }
  .bestsellers { padding: 36px 0 44px; }
  .certs-section { padding: 40px 0; }
  .sec-title-white { font-size: 1.1rem; margin-bottom: 28px; }
}

@media (max-width: 540px) {
  /* footer fully stacked on small phones */
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-nav-col ul { align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  #logo img { height: 46px; }
  .bestsellers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-store-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
  .hero-slide-img { aspect-ratio: 1; min-height: 280px; }
  .hero-text-overlay h2 { font-size: 1.1rem; }
  .bs-card h3 { font-size: .8rem; }
  .bs-card .price { font-size: .78rem; }
  .container { padding-inline: 16px; }
}

/* ================================================
   CART BADGE (on nav icon)
   ================================================ */
.nav-cart { position: relative; }
.cart-badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
}

/* ================================================
   CART DRAWER ITEMS
   ================================================ */
.cart-items { margin-bottom: 16px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ci-img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: #e8e8e8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  padding: 4px;
  letter-spacing: .04em;
  font-weight: 500;
}
.ci-info { flex: 1; min-width: 0; }
.ci-name { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.35; }
.ci-meta { font-size: .78rem; color: var(--text-light); }
.ci-remove {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  font-size: .85rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
  padding: 0;
}
.ci-remove:hover { border-color: var(--text); color: var(--text); }
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: .88rem;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.cart-subtotal span { color: var(--text-light); }
.cart-subtotal strong { color: var(--text); font-weight: 800; font-size: .95rem; }
.cart-actions { display: flex; flex-direction: column; gap: 8px; }
.cart-view-btn,
.cart-checkout-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px;
  font-size: .72rem;
  letter-spacing: .12em;
}

/* ================================================
   PRODUCT MODAL
   ================================================ */
.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
.pm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 0;
}
.pm-dialog {
  position: relative;
  z-index: 1;
  background: var(--white);
  width: 100%;
  max-width: 900px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.2);
}
.pm-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 4px 8px;
  transition: color 200ms;
}
.pm-close:hover { color: var(--text); }

/* Added notice */
.pm-added-notice {
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pm-added-notice svg { flex-shrink: 0; stroke: var(--green); }

/* Product section */
.pm-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pm-img {
  background: var(--grey-bg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: .82rem;
  text-align: center;
  padding: 24px;
  line-height: 1.5;
}
.pm-info { padding: 32px 28px; }
.pm-name { font-size: 1.6rem; font-weight: 700; color: var(--text); margin-bottom: 10px; font-family: 'Montserrat', sans-serif; }
.pm-price { font-size: 1.2rem; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.pm-divider { height: 1px; background: var(--border); margin: 16px 0; border: none; }

/* Variant row */
.pm-variant-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
}
.pm-variant-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--text);
  flex-shrink: 0;
}
.pm-variant-right { flex: 1; }
.pm-variant-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: .88rem;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* Qty row */
.pm-qty-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.pm-qty-btn {
  width: 40px;
  height: 44px;
  background: var(--white);
  border: none;
  border-right: 1px solid var(--border);
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
  transition: background 200ms;
  flex-shrink: 0;
}
.pm-qty-btn:last-of-type { border-right: none; border-left: 1px solid var(--border); }
.pm-qty-btn:hover { background: var(--grey-bg); }
.pm-qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-right: 1px solid var(--border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  flex-shrink: 0;
  outline: none;
}
.pm-atc-btn {
  flex: 1;
  height: 44px;
  border-radius: 0;
  font-size: .72rem;
  letter-spacing: .1em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

/* Tabs */
.pm-tabs {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.pm-tab {
  padding: 14px 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 200ms, border-color 200ms;
}
.pm-tab.active { color: var(--text); border-bottom-color: var(--green); }
.pm-tab-content {
  padding: 24px 28px;
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-bottom: 1px solid var(--border);
}
.pm-tab-content p { margin-bottom: 12px; }
.pm-tab-content ul { padding-left: 20px; list-style: disc; }
.pm-tab-content ul li { margin-bottom: 6px; }

/* Related products */
.pm-related { padding: 28px; }
.pm-related h3 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.pm-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-card { text-align: center; cursor: pointer; }
.rel-img {
  aspect-ratio: 1;
  background: var(--grey-bg);
  border-radius: 3px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
  padding: 12px;
  font-weight: 500;
  transition: opacity 200ms;
}
.rel-card:hover .rel-img { opacity: .8; }
.rel-card h4 { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 3px; line-height: 1.3; }
.rel-card p  { font-size: .78rem; color: var(--text-light); margin-bottom: 8px; }

/* Modal responsive */
@media (max-width: 640px) {
  .pm-overlay { padding: 0; align-items: flex-end; }
  .pm-dialog { max-width: 100%; border-radius: 12px 12px 0 0; max-height: 92vh; overflow-y: auto; }
  .pm-product { grid-template-columns: 1fr; }
  .pm-img { aspect-ratio: 16/9; }
  .pm-related-grid { grid-template-columns: repeat(2, 1fr); }
}
