/* =========================================================
   ORGANIC BIO — Design tokens
   Palette derived from the brand logo (cream / deep brown)
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&family=Caveat:wght@500;600&display=swap');

:root{
  --cream:        #F3DEC9;
  --cream-soft:   #FBF4EA;
  --white:        #FFFFFF;
  --ink:          #2A1D14;
  --brown-deep:   #4B2E1C;
  --brown-mid:    #7A4B2C;
  --clay:         #B9794B;
  --clay-soft:    #E4B78C;
  --line:         rgba(75,46,28,0.16);
  --shadow:       0 10px 30px rgba(43,26,15,0.10);

  --font-display: 'Fraunces', serif;
  --font-body:    'Work Sans', sans-serif;
  --font-script:  'Caveat', cursive;

  --radius: 18px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; overflow-x: hidden; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--brown-deep);
  margin:0 0 .5em;
  line-height:1.12;
  font-weight:600;
}
p{ margin:0 0 1em; }
:focus-visible{
  outline: 2.5px solid var(--clay);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow{
  font-family:var(--font-script);
  font-size: 1.5rem;
  color: var(--clay);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom: 4px;
}
.section{ padding: 84px 0; }
.section--alt{ background: var(--cream); }
.section-head{
  max-width: 640px;
  margin-bottom: 46px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Clover signature glyph ---------- */
.clover{
  width: 22px; height: 22px;
  flex-shrink:0;
  display:inline-block;
}
.divider{
  display:flex;
  align-items:center;
  gap:14px;
  margin: 10px 0 28px;
  color: var(--brown-mid);
}
.divider::before, .divider::after{
  content:"";
  flex:1;
  height:1px;
  background: var(--line);
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight:600;
  font-size: .98rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg{ width:18px; height:18px; }
.btn-primary{
  background: var(--brown-deep);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover{ transform: translateY(-2px); background:#3A2213; }
.btn-ghost{
  background: transparent;
  border-color: var(--brown-deep);
  color: var(--brown-deep);
}
.btn-ghost:hover{ background: var(--brown-deep); color:var(--white); }
.btn-whatsapp{
  background: #3F7A56;
  color: var(--white);
}
.btn-whatsapp:hover{ transform: translateY(-2px); background:#33623F; }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding: 10px 18px; font-size:.88rem; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 700;
  background: rgba(251,244,234,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.2rem;
  color: var(--brown-deep);
}
.brand img{ width:46px; height:46px; border-radius:50%; }
.brand small{
  display:block;
  font-family: var(--font-body);
  font-weight:500;
  font-size:.62rem;
  letter-spacing: .14em;
  color: var(--brown-mid);
  text-transform:uppercase;
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 30px;
}
.nav-links a{
  font-weight:600;
  font-size:.94rem;
  color: var(--brown-deep);
  position:relative;
  padding: 6px 0;
}
.nav-links a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:2px;
  background: var(--clay);
  transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width:100%; }
.nav-links a.active{ color: var(--clay); }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.lang-switch{
  display:flex;
  border: 1.5px solid var(--brown-deep);
  border-radius: 999px;
  overflow:hidden;
  font-size:.78rem;
  font-weight:700;
}
.lang-switch button{
  background:none; border:none;
  padding: 7px 13px;
  color: var(--brown-deep);
}
.lang-switch button.active{
  background: var(--brown-deep);
  color: var(--white);
}
.nav-toggle{
  display:none;
  background:none; border:none;
  padding:6px;
  color: var(--brown-deep);
}
.nav-toggle svg{ width:26px; height:26px; }
.nav-links .nav-drawer-foot{display: none;}

/* Mobile slide-left menu */
@media (max-width: 900px){
  .nav-links{
    position: fixed;
    top:0; left:0;
    height:100vh;
    width: min(320px, 82vw);
    background: var(--cream-soft);
    flex-direction: column;
    align-items:flex-start;
    justify-content:flex-start;
    gap: 6px;
    padding: 100px 30px 30px;
    transform: translateX(-105%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 12px 0 40px rgba(0,0,0,0.18);
    z-index: 600;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ padding: 14px 0; width:100%; font-size:1.05rem; border-bottom:1px solid var(--line); }
  .nav-toggle{ display:inline-flex; }
  .nav-scrim{
    display:none;
    position: fixed; inset:0;
    background: rgba(20,12,6,0.4);
    z-index: 550;
  }
  .nav-scrim.open{ display:block; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  background: var(--cream);
  overflow:hidden;
  position:relative;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items:center;
  padding-top: 68px;
  padding-bottom: 68px;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -.01em;
}
.hero .tagline{
  font-family: var(--font-script);
  color: var(--clay);
  font-size: 1.7rem;
  display:block;
  margin-bottom: 10px;
}
.hero p.lead{
  font-size: 1.08rem;
  color: var(--brown-mid);
  max-width: 520px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 22px; }
.hero-visual{
  position:relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circl at 35% 30%, var(--clay-soft), var(--brown-mid) 78%);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
}

.hero-badges{
  position:absolute;
  display:flex; gap:10px; flex-wrap:wrap;
  bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size:.8rem;
  font-weight:600;
  color: var(--brown-deep);
  white-space:nowrap;
}
@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; padding-top:40px; }
  .hero-visual{ max-width: 280px; margin: 0 auto; }
  .hero-badges{ display:none; }
}

/* =========================================================
   Message / intro block
   ========================================================= */
.intro-block{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.intro-block h2{ font-size: 1.7rem; }

/* Values / engagements grid */
.grid{
  display:grid;
  gap: 26px;
  min-width: 0;
}
.grid > *{ min-width: 0; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}
@media (max-width: 620px){
  .grid-3{ grid-template-columns: 1fr; }
}

.value-card, .feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:hover, .feature-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-card svg, .feature-card svg{
  width: 30px; height:30px;
  color: var(--clay);
  margin-bottom: 14px;
}
.value-card h3, .feature-card h3{ font-size: 1.08rem; margin-bottom:8px; }
.value-card p, .feature-card p{ color: var(--brown-mid); font-size:.95rem; margin:0; }

.check-list{ display:flex; flex-direction:column; gap:14px; }
.check-list li{
  display:flex; align-items:flex-start; gap:12px;
  font-size:.98rem;
}
.check-list svg{ width:20px; height:20px; color: var(--clay); flex-shrink:0; margin-top:2px; }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.category-tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-bottom: 40px;
}
.category-tabs button{
  background: var(--white);
  border:1.5px solid var(--line);
  padding: 10px 18px;
  border-radius:999px;
  font-weight:600;
  font-size:.88rem;
  color: var(--brown-mid);
  transition: all .2s ease;
}
.category-tabs button.active, .category-tabs button:hover{
  background: var(--brown-deep);
  border-color: var(--brown-deep);
  color: var(--white);
}

.product-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow: 0 4px 14px rgba(43,26,15,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.product-media{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream), var(--clay-soft));
  display:flex; align-items:center; justify-content:center;
  position:relative;
  overflow:hidden;
}
.product-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
}
.product-media svg{ width:64px; height:64px; color: var(--brown-deep); opacity:.55; }
.product-tag{
  position:absolute; top:12px; left:12px;
  background: var(--white);
  color: var(--brown-deep);
  font-size:.72rem; font-weight:700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing:.03em;
}
.product-body{ padding: 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-body h3{ font-size: 1.12rem; margin:0; }
.product-body p{ color: var(--brown-mid); font-size:.92rem; margin:0; flex:1; }
.product-price{
  display:flex; align-items:baseline; gap:8px;
  font-family: var(--font-display);
  color: var(--brown-deep);
  font-weight:700;
  font-size: 1.15rem;
}
.product-actions{ display:flex; gap:10px; margin-top:6px; }

/* Product detail */
.product-detail{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items:flex-start;
  min-width: 0;
}
.product-detail > *{ min-width: 0; }
@media (max-width: 900px){ .product-detail{ grid-template-columns:1fr; } }
.product-detail .product-media{ border-radius: var(--radius); aspect-ratio: 1/1; }
.steps{ counter-reset: step; display:flex; flex-direction:column; gap:16px; }
.steps li{
  counter-increment: step;
  display:flex; gap:16px;
  background: var(--white);
  border:1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
}
.steps li::before{
  content: counter(step);
  flex-shrink:0;
  width:30px; height:30px;
  border-radius:50%;
  background: var(--brown-deep);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem;
  font-family: var(--font-display);
}
.notice-box{
  display:flex; gap:14px;
  background: var(--cream);
  border:1px solid var(--clay-soft);
  border-radius: 14px;
  padding: 18px 20px;
  font-size:.92rem;
  color: var(--brown-deep);
}
.notice-box svg{ width:22px; height:22px; color:var(--clay); flex-shrink:0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-track{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
@media (max-width:900px){ .testimonials-track{ grid-template-columns:1fr 1fr; } }
@media (max-width:620px){ .testimonials-track{ grid-template-columns:1fr; } }
.testimonial-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display:flex; flex-direction:column; gap:14px;
  box-shadow: 0 4px 14px rgba(43,26,15,0.05);
}
.stars{ display:flex; align-items:center; gap:3px; color:#D9A441; }
.stars svg{ width:16px; height:16px; }
.testi-top{ display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.testi-product-thumb{
  width:44px; height:44px; border-radius:10px;
  object-fit:cover; flex-shrink:0;
  border: 1px solid var(--line);
}
.testimonial-quote{ font-style:italic; color: var(--ink); font-size:.98rem; }
.testimonial-person{ display:flex; align-items:center; gap:12px; }
.avatar{
  width:42px; height:42px; border-radius:50%;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700;
  color: var(--brown-deep);
}
.testimonial-person .name{ font-weight:700; font-size:.92rem; }
.testimonial-person .loc{ font-size:.78rem; color: var(--brown-mid); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px;
  background:none; border:none;
  padding: 22px 4px;
  text-align:left;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1.05rem;
  color: var(--brown-deep);
}
.faq-q svg{ width:20px; height:20px; flex-shrink:0; transition: transform .25s ease; color: var(--clay); }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--brown-mid);
  font-size:.96rem;
}
.faq-item.open .faq-a{ max-height: 400px; padding-bottom: 22px; }

/* =========================================================
   CONTACT / ORDER FORM
   ========================================================= */
.form-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row{ margin-bottom: 18px; }
.form-row label{
  display:block;
  font-weight:600;
  font-size:.88rem;
  margin-bottom: 7px;
  color: var(--brown-deep);
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--cream-soft);
  font-family: inherit;
  font-size:.95rem;
  color: var(--ink);
  transition: border-color .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color: var(--clay);
  outline:none;
}
.form-2col{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:620px){ .form-2col{ grid-template-columns:1fr; } }

.contact-info-card{
  display:flex; flex-direction:column; gap:20px;
}
.info-row{ display:flex; gap:16px; align-items:flex-start; }
.info-row svg{ width:22px; height:22px; color: var(--clay); flex-shrink:0; margin-top:2px; }
.info-row h4{ margin:0 0 3px; font-size:.98rem; color:var(--brown-deep); }
.info-row p{ margin:0; color: var(--brown-mid); font-size:.92rem; }
.social-row{ display:flex; gap:12px; margin-top:8px; }
.social-row a{
  width:42px; height:42px; border-radius:50%;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  color: var(--brown-deep);
  transition: background .2s ease, color .2s ease;
}
.social-row a:hover{ background: var(--brown-deep); color: var(--white); }
.social-row svg{ width:19px; height:19px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--brown-deep);
  color: var(--cream-soft);
  padding: 60px 0 24px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
.site-footer h4{ color: var(--cream-soft); font-size:.95rem; margin-bottom: 16px; }
.site-footer .brand{ color: var(--cream-soft); }
.site-footer .brand small{ color: var(--clay-soft); }
.site-footer p{ color: rgba(251,244,234,0.72); font-size:.9rem; }
.footer-links li{ margin-bottom: 10px; }
.footer-links a{ color: rgba(251,244,234,0.82); font-size:.9rem; }
.footer-links a:hover{ color: var(--clay-soft); }
.footer-bottom{
  border-top: 1px solid rgba(251,244,234,0.15);
  padding-top: 22px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.8rem;
  color: rgba(251,244,234,0.6);
}

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-float{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 800;
  width: 62px; height:62px;
  border-radius:50%;
  background: #3F7A56;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  animation: wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; color:#fff; }
.wa-float:hover{ background:#33623F; }
@keyframes wa-pulse{
  0%,100%{ box-shadow: 0 10px 24px rgba(0,0,0,0.28), 0 0 0 0 rgba(63,122,86,0.5); }
  50%{ box-shadow: 0 10px 24px rgba(0,0,0,0.28), 0 0 0 10px rgba(63,122,86,0); }
}

/* Page header (sub-pages) */
.page-header{
  background: var(--cream);
  padding: 56px 0 40px;
  text-align:center;
}
.page-header h1{ font-size: clamp(1.9rem,3.4vw,2.6rem); }
.breadcrumb{
  color: var(--brown-mid); font-size:.86rem; font-weight:600;
}
.breadcrumb a:hover{ color: var(--clay); }

/* Utility */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.reveal{ opacity:0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--brown-deep); color:#fff;
  padding: 10px 16px; border-radius: 8px; z-index:1000;
}
.skip-link:focus{ left: 16px; top:16px; }
.anchor-offset{ display:block; position:relative; top:-90px; visibility:hidden; }

/* =========================================================
   SEARCH BAR
   ========================================================= */
.search-toggle{
  display:inline-flex; align-items:center; justify-content:center;
  background:none; border:none;
  padding:6px;
  color: var(--brown-deep);
}
.search-toggle svg{ width:22px; height:22px; }

.search-scrim{
  display:none;
  position: fixed; inset:0;
  background: rgba(20,12,6,0.42);
  z-index: 750;
}
.search-scrim.open{ display:block; }

.search-panel{
  position: fixed;
  top: 84px; left:50%;
  transform: translate(-50%, -12px);
  width: min(560px, 92vw);
  max-height: min(70vh, 560px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  z-index: 800;
  opacity:0;
  visibility:hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.search-panel.open{
  opacity:1; visibility:visible;
  transform: translate(-50%, 0);
}
.search-input-row{
  display:flex; align-items:center; gap:10px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink:0;
}
.search-input-row svg{ width:20px; height:20px; color: var(--brown-mid); flex-shrink:0; }
.search-input-row input{
  flex:1;
  border:none; outline:none;
  font-family: inherit; font-size:1rem;
  background:none; color: var(--ink);
}
.search-input-row input::placeholder{ color: var(--brown-mid); opacity:.7; }
.search-panel-close{
  background:none; border:none; color: var(--brown-mid); padding:4px; flex-shrink:0;
}
.search-panel-close svg{ width:18px; height:18px; }

.search-results{ overflow-y:auto; padding: 8px; }
.search-empty{
  display:flex; flex-direction:column; align-items:center; gap:12px;
  text-align:center; color: var(--brown-mid);
  padding: 40px 20px;
}
.search-empty svg{ width:34px; height:34px; opacity:.55; }

.search-result{
  display:flex; align-items:center; gap:14px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .15s ease;
}
.search-result:hover, .search-result.active{ background: var(--cream); }
.search-result img{
  width:48px; height:48px; border-radius:10px;
  object-fit:cover; flex-shrink:0;
}
.search-result-noimg{
  width:48px; height:48px; border-radius:10px;
  background: var(--cream);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  color: var(--brown-mid);
}
.search-result-noimg svg{ width:22px; height:22px; }
.search-result-info{
  flex:1; min-width:0;
  display:flex; flex-direction:column; gap:3px;
}
.search-result-info strong{
  font-size:.94rem; color: var(--ink);
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.search-result-price{ font-size:.82rem; color: var(--brown-mid); font-weight:600; }
.search-quick-add{
  width:36px; height:36px; border-radius:50%;
  background: var(--cream);
  border:none; color: var(--brown-deep);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition: background .15s ease, color .15s ease;
}
.search-quick-add:hover{ background: var(--brown-deep); color:#fff; }
.search-quick-add svg{ width:17px; height:17px; }

@media (max-width: 640px){
  .search-panel{ top: 76px; width: 94vw; }
}

/* =========================================================
   HOMEPAGE SHOP SLIDER
   ========================================================= */
.shop-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  box-shadow: 0 4px 14px rgba(43,26,15,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.shop-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.shop-card .product-media{ aspect-ratio: 1/1; }
.shop-card-body{
  padding: 18px;
  display:flex; flex-direction:column; gap:10px;
  flex:1;
}
.shop-card-body h3{
  font-size: 1rem;
  margin:0;
  min-height: 2.6em;
}
.shop-card-body .product-price{
  font-family: var(--font-display);
  font-weight:700;
  color: var(--brown-deep);
  font-size:1.05rem;
}
.shop-card-body .btn{ margin-top:auto; }

/* =========================================================
   EXTRA HOMEPAGE POLISH — staggered reveals + gentle motion
   ========================================================= */
.grid > *:nth-child(1),
.stats-grid > *:nth-child(1){ transition-delay: .03s; }
.grid > *:nth-child(2),
.stats-grid > *:nth-child(2){ transition-delay: .12s; }
.grid > *:nth-child(3),
.stats-grid > *:nth-child(3){ transition-delay: .21s; }
.grid > *:nth-child(4){ transition-delay: .30s; }
.grid > *:nth-child(5){ transition-delay: .39s; }
.grid > *:nth-child(6){ transition-delay: .48s; }

@keyframes float-y{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.hero-visual{ animation: float-y 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){
  .hero-visual{ animation: none; }
}

.value-card, .feature-card, .shop-card, .testimonial-card, .video-testi-card{
  transition: transform .22s ease, box-shadow .22s ease, opacity .6s ease;
}

.stat-item{ transition: transform .3s ease; }
.stats-grid:hover .stat-item{ opacity:.55; }
.stats-grid .stat-item:hover{ opacity:1 !important; transform: translateY(-4px); }

.search-toggle svg, .cart-toggle svg, .nav-toggle svg{ transition: transform .2s ease; }
.search-toggle:hover svg{ transform: scale(1.12); }
.cart-toggle:hover svg{ transform: scale(1.1); }

/* =========================================================
   CURRENCY SWITCH
   ========================================================= */
.currency-switch{
  display:flex;
  border: 1.5px solid var(--brown-deep);
  border-radius: 999px;
  overflow:hidden;
  font-size:.74rem;
  font-weight:700;
}
.currency-switch button{
  background:none; border:none;
  padding: 7px 10px;
  color: var(--brown-deep);
}
.currency-switch button.active{
  background: var(--brown-deep);
  color: var(--white);
}

/* =========================================================
   CART ICON + BADGE
   ========================================================= */
.cart-toggle{
  position:relative;
  display:inline-flex; align-items:center; justify-content:center;
  background:none; border:none;
  padding:6px;
  color: var(--brown-deep);
}
.cart-toggle svg{ width:24px; height:24px; }
.cart-badge{
  position:absolute; top:-2px; right:-4px;
  background: var(--clay);
  color:#fff;
  font-size:.66rem; font-weight:700;
  min-width:18px; height:18px;
  border-radius:999px;
  display:none;
  align-items:center; justify-content:center;
  padding: 0 4px;
  border: 2px solid var(--cream-soft);
}
@keyframes cart-pulse{
  0%{ transform: scale(1); }
  30%{ transform: scale(1.28); }
  100%{ transform: scale(1); }
}
.cart-toggle.pulse svg{ animation: cart-pulse .4s ease; }

/* =========================================================
   CART DRAWER (slides from the right)
   ========================================================= */
.cart-scrim{
  display:none;
  position: fixed; inset:0;
  background: rgba(20,12,6,0.42);
  z-index: 750;
}
.cart-scrim.open{ display:block; }
.cart-drawer{
  position: fixed; top:0; right:0;
  height:100vh;
  width: min(400px, 92vw);
  background: var(--cream-soft);
  z-index: 800;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -12px 0 40px rgba(0,0,0,0.18);
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform: translateX(0); }
.cart-drawer-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 22px;
  border-bottom:1px solid var(--line);
}
.cart-drawer-head h3{ margin:0; font-size:1.1rem; }
.cart-drawer-close{
  background:none; border:none; color: var(--brown-deep); padding:4px;
}
.cart-drawer-close svg{ width:22px; height:22px; }
.cart-drawer-body{
  flex:1;
  overflow-y:auto;
  padding: 18px 22px 24px;
}
.cart-empty{
  display:flex; flex-direction:column; align-items:center; gap:14px;
  text-align:center;
  color: var(--brown-mid);
  padding: 50px 10px;
}
.cart-empty svg{ width:44px; height:44px; opacity:.6; }
.cart-items{ display:flex; flex-direction:column; gap:14px; margin-bottom:18px; }
.cart-item{
  display:flex; justify-content:space-between; gap:10px;
  background: var(--white);
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.cart-item-info h5{ margin:0 0 8px; font-size:.92rem; color: var(--brown-deep); font-family:var(--font-body); font-weight:600; }
.cart-qty{ display:flex; align-items:center; gap:10px; }
.qty-btn{
  width:24px; height:24px; border-radius:50%;
  border:1px solid var(--line); background: var(--cream-soft);
  color: var(--brown-deep); font-weight:700; line-height:1;
  display:flex; align-items:center; justify-content:center;
}
.qty-btn:hover{ background: var(--clay-soft); }
.cart-item-side{ display:flex; flex-direction:column; align-items:flex-end; justify-content:space-between; gap:8px; }
.cart-line-price{ font-weight:700; font-size:.86rem; color: var(--brown-deep); white-space:nowrap; }
.cart-remove{ background:none; border:none; color: var(--brown-mid); padding:2px; }
.cart-remove svg{ width:17px; height:17px; }
.cart-remove:hover{ color:#b0402f; }

.cart-region{ margin-bottom:16px; }
.cart-region-label{
  display:flex; align-items:center; gap:8px;
  font-weight:800; font-size:.92rem;
  margin-bottom:8px;
  color: #2E7D46;
  text-transform: uppercase;
  letter-spacing:.03em;
}
.cart-region-label svg{ width:19px; height:19px; flex-shrink:0; color:#2E7D46; }
.cart-region select{
  width:100%; padding: 11px 12px; border-radius:10px;
  border:2px solid #2E7D46; background: var(--white);
  font-family: inherit; font-size:.9rem; color: var(--ink);
  font-weight:600;
}
.cart-region select:focus{ outline: 2.5px solid #2E7D46; outline-offset:2px; }
.cart-totals{
  border-top:1px dashed var(--line);
  padding-top: 14px; margin-bottom: 18px;
}
.cart-row{ display:flex; justify-content:space-between; font-size:.9rem; padding: 5px 0; color: var(--brown-mid); }
.cart-row-total{ font-size:1.05rem; color: var(--brown-deep); border-top:1px solid var(--line); margin-top:6px; padding-top:10px; }
.cart-row-total strong{ font-family: var(--font-display); }
.cart-note{ font-size:.78rem; color: var(--brown-mid); font-style:italic; margin: 6px 0 0; }

/* Cart summary box embedded on the contact page */
.cart-summary-card{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.cart-summary-card h2{ font-size:1.25rem; }

/* Shipping rates table (contact page) */
.shipping-rates-card h4{
  display:flex; align-items:center; gap:8px;
  font-weight:800; font-size:.98rem; text-transform:uppercase; letter-spacing:.03em;
  color:#2E7D46; margin: 0 0 14px;
}
.shipping-rates-card h4 svg{ width:20px; height:20px; color:#2E7D46; }
.shipping-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size:.92rem;
  color: var(--brown-mid);
}
.shipping-row:last-child{ border-bottom:none; }
.shipping-row strong{ color: var(--brown-deep); font-family: var(--font-display); }
.shipping-row-free strong{ color:#2E7D46; }

/* =========================================================
   TRUST STATS STRIP
   ========================================================= */
.stats-strip{
  background: var(--brown-deep);
  padding: 40px 0;
}
.stats-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align:center;
}
@media (max-width: 720px){
  .stats-grid{ grid-template-columns: 1fr; gap: 28px; }
}
.stat-item{ color: var(--cream-soft); }
.stat-item svg{ width:28px; height:28px; color: var(--clay-soft); margin-bottom:10px; }
.stat-number{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight:700;
  color: var(--cream-soft);
  line-height:1;
  display:block;
}
.stat-label{
  font-size:.88rem;
  color: rgba(251,244,234,0.78);
  margin-top:8px;
}

/* =========================================================
   VIDEO TESTIMONIALS
   ========================================================= */
.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px){ .video-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .video-grid{ grid-template-columns: 1fr; } }

.video-testi-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  cursor:pointer;
  box-shadow: 0 4px 14px rgba(43,26,15,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.video-testi-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.video-thumb{
  aspect-ratio: 9/12;
  position:relative;
  display:flex; align-items:center; justify-content:center;
}


.video-thumb{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.video-thumbnail{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-thumb-caption{
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
}

.video-thumb::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent);
}



.video-thumb.thumb-1{ background: linear-gradient(150deg, #C98A5E, #6B4226); }
.video-thumb.thumb-2{ background: linear-gradient(150deg, #B9794B, #4B2E1C); }
.video-thumb.thumb-3{ background: linear-gradient(150deg, #E4B78C, #7A4B2C); }
.video-play-btn{
  width:58px; height:58px; border-radius:50%;
  background: rgba(255,255,255,0.92);
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform .2s ease;
}
.video-testi-card:hover .video-play-btn{ transform: scale(1.08); }
.video-play-btn svg{ width:22px; height:22px; color: var(--brown-deep); margin-left:3px; }
.video-thumb-caption{
  position:absolute; left:0; right:0; bottom:0;
  padding: 16px 16px 14px;
  background: linear-gradient(0deg, rgba(20,12,6,0.72), transparent);
  color:#fff;
}
.video-thumb-caption .name{ font-weight:700; font-size:.94rem; }
.video-thumb-caption .loc{ font-size:.78rem; opacity:.85; }

.video-modal-scrim{
  display:none;
  position: fixed; inset:0;
  background: rgba(15,9,5,0.82);
  z-index: 900;
  align-items:center; justify-content:center;
  padding: 24px;
}
.video-modal-scrim.open{ display:flex; }
.video-modal{
  position:relative;
  width: min(420px, 100%);
  background:#000;
  border-radius: 16px;
  overflow:hidden;
  aspect-ratio: 9/16;
}
.video-modal video{ width:100%; height:100%; object-fit:cover; display:block; }
.video-modal-close{
  position:absolute; top:12px; right:12px;
  width:38px; height:38px; border-radius:50%;
  background: rgba(0,0,0,0.55);
  border:none; color:#fff;
  display:flex; align-items:center; justify-content:center;
  z-index:2;
}
.video-modal-close svg{ width:18px; height:18px; }
.video-modal-fallback{
  display:none;
  position:absolute; inset:0;
  flex-direction:column; align-items:center; justify-content:center;
  gap:10px;
  text-align:center;
  padding: 30px;
  color: var(--cream-soft);
  background: linear-gradient(150deg, #6B4226, #2A1D14);
}
.video-modal-fallback.show{ display:flex; }
.video-modal-fallback svg{ width:34px; height:34px; opacity:.8; }
.video-modal-fallback p{ font-size:.9rem; margin:0; opacity:.9; }

.added{ background:#3F7A56 !important; border-color:#3F7A56 !important; color:#fff !important; }



/* =========================================================
   TESTIMONIAL CAROUSEL
   ========================================================= */
.carousel{ position:relative; }
.carousel-viewport{ overflow:hidden; }
.carousel-track{
  display:flex;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.carousel-slide{
  flex: 0 0 100%;
  max-width:100%;
  padding: 4px 10px;
}
@media (min-width: 760px){
  .carousel-slide{ flex: 0 0 50%; max-width:50%; }
}
@media (min-width: 1080px){
  .carousel-slide{ flex: 0 0 33.3333%; max-width:33.3333%; }
}
.carousel-controls{
  display:flex; align-items:center; justify-content:center;
  gap: 20px;
  margin-top: 26px;
}
.carousel-arrow{
  width:44px; height:44px; border-radius:50%;
  background: var(--white);
  border:1.5px solid var(--line);
  color: var(--brown-deep);
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover{ background: var(--brown-deep); color:#fff; }
.carousel-arrow svg{ width:20px; height:20px; }
.carousel-dots{ display:flex; gap:9px; }
.carousel-dot{
  width:9px; height:9px; border-radius:50%;
  background: var(--line);
  border:none; padding:0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dot.active{ background: var(--clay); transform: scale(1.25); }

/* =========================================================
   MOBILE NAV DRAWER — header with logo & brand name
   ========================================================= */
.nav-drawer-head{ display:none; }
.nav-drawer-switches{ display:none; }

@media (max-width: 900px){
  .nav-actions > .currency-switch,
  .nav-actions > .lang-switch{ display:none; }
  .nav-drawer-switches{
    display:flex;
    align-items:center;
    gap: 10px;
    flex-wrap:wrap;
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    width:100%;
  }
}

@media (max-width: 420px){
  .nav-actions{ gap:6px; }
  .brand span{ font-size:1.02rem; }
  .brand small{ font-size:.56rem; }
}
@media (max-width: 900px){
  .nav-links{ padding-top:0; }
  .nav-drawer-head{
    display:flex;
    align-items:center; justify-content:space-between;
    gap:10px;
    padding: 20px 20px 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    width:100%;
  }
  .nav-drawer-head .brand{ font-size:1.02rem; }
  .nav-drawer-head .brand img{ width:40px; height:40px; }
  .nav-drawer-close{
    background:none; border:none; color: var(--brown-deep); padding:4px;
    flex-shrink:0;
  }
  .nav-drawer-close svg{ width:22px; height:22px; }
  .nav-links{ gap:0; }
  .nav-links > li.nav-item{ width:100%; padding: 0 24px; }
  .nav-links a{ display:flex; align-items:center; gap:10px; }
  .nav-drawer-foot{
    margin-top:auto;
    padding: 20px 24px 28px;
    border-top:1px solid var(--line);
    width:100%;
    display:flex; flex-direction:column; gap:12px;
  }
  .nav-drawer-foot .btn{ width:100%; justify-content:center; }
}
