/* =========================================================
   RUDRA CARE INDUSTRIES — AARU  |  Design tokens & base
   ========================================================= */

:root{
  /* --- Color: named palette --- */
  --ivory:        #FBF6EC;   /* base paper */
  --ivory-deep:   #F2EAD6;   /* recessed panels */
  --forest:       #272e6e;   /* primary ink / nav / headings */
  --forest-deep:  #15102e;   /* darkest, footers */
  --gold:         #C9932E;   /* primary accent, CTAs */
  --gold-light:   #E7BE6E;   /* highlights, hovers */
  --sandalwood:   #E7D6AE;   /* card / tag backgrounds */
  --sage:         #4660aa;   /* secondary accent, hair/skin tags */
  --maroon:       #7C1F2A;   /* wellness/syrup accent */
  --navy:         #16294F;   /* brand-shield tie-in, used sparingly */
  --ink:          #2B2A24;   /* body text */
  --ink-soft:     #55523F;   /* muted text */
  --line:         #DCCFA9;   /* hairline borders */
  --white:        #FFFFFF;

  /* --- Type --- */
  --f-display: 'Fraunces', 'Georgia', serif;
  --f-body: 'Jost', 'Segoe UI', sans-serif;
  --f-hi: 'Noto Serif Devanagari', serif;

  /* --- Rhythm --- */
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --shadow: 0 20px 50px -25px rgba(20, 43, 31, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(20, 43, 31, 0.28);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }

.hi{ font-family: var(--f-hi); }

h1, h2, h3, h4{
  font-family: var(--f-display);
  color: var(--forest);
  margin: 0;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon);
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  display: inline-block;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

section{ position: relative; }

:focus-visible{
  outline: 2.5px solid var(--maroon);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Texture: faint botanical dot-grid background
   ========================================================= */
.grain-bg{
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31,59,44,0.055) 1px, transparent 0);
  background-size: 22px 22px;
}

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(251, 246, 236, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(31,59,44,0.10);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled{ box-shadow: 0 8px 30px -18px rgba(20,43,31,0.4); }

.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img{
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold), var(--shadow-sm);
  flex-shrink: 0;
}
.brand-text{ line-height: 1.15; min-width: 0; }
.brand-text .b1{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--forest);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.brand-text .b2{
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  font-weight: 600;
}

.nav-links{
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a{
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after{ width: 100%; }
.nav-links a.active{ color: var(--maroon); }

.nav-cta{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-gold{
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--forest-deep);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover{ box-shadow: 0 14px 30px -14px rgba(201,147,46,0.6); }
.btn-outline{
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-outline:hover{ background: var(--forest); color: var(--ivory); }
.btn-whatsapp{
  background: #1F3B2C;
  color: var(--ivory);
}
.btn-whatsapp:hover{ background: var(--maroon); }
.btn-sm{ padding: 9px 18px; font-size: 0.82rem; }
.btn-block{ width: 100%; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span{
  width: 24px; height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.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); }

/* =========================================================
   VINE DIVIDER — signature element
   ========================================================= */
.vine{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: var(--container);
}
.vine path{
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.8s cubic-bezier(.22,.61,.36,1);
}
.vine.in-view path{ stroke-dashoffset: 0; }
.vine .leaf{
  fill: var(--gold);
  opacity: 0;
  transform-origin: center;
  transition: opacity 0.9s ease 0.9s, transform 0.9s ease 0.9s;
  transform: scale(0.4);
}
.vine.in-view .leaf{ opacity: 1; transform: scale(1); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  padding: 168px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  top: -180px; right: -220px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(201,147,46,0.16), transparent 68%);
  z-index: 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  margin: 18px 0 22px;
}
.hero-copy h1 .hi{
  display: block;
  color: var(--maroon);
  font-size: 0.62em;
  font-weight: 500;
  margin-bottom: 6px;
}
.hero-copy p{
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats{
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats div{ min-width: 100px; }
.hero-stats strong{
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  color: var(--forest);
}
.hero-stats span{
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-art{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.hero-art .ring{
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(31,59,44,0.22);
  animation: spin 60s linear infinite;
}
.hero-art .ring.r1{ width: 420px; height: 420px; }
.hero-art .ring.r2{ width: 340px; height: 340px; border-color: rgba(201,147,46,0.35); animation-duration: 46s; animation-direction: reverse; }
@keyframes spin{ to{ transform: rotate(360deg); } }

.hero-art .shield-wrap{
  width: 300px; height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 10px var(--ivory), 0 0 0 11px var(--line);
  animation: float 6s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-14px); } }
.hero-art .shield-wrap img{ width: 100%; height: 100%; object-fit: cover; }

.hero-leaf{
  position: absolute;
  color: var(--sage);
  opacity: 0.85;
}
.hero-leaf svg{ width: 34px; height: 34px; }
.hero-leaf.l1{ top: 6%; left: 4%; animation: bob 5s ease-in-out infinite; }
.hero-leaf.l2{ bottom: 10%; right: 2%; color: var(--gold); animation: bob 5.5s ease-in-out infinite 0.6s; }
.hero-leaf.l3{ bottom: 2%; left: 18%; color: var(--maroon); animation: bob 6.4s ease-in-out infinite 1.1s; }
@keyframes bob{ 0%,100%{ transform: translateY(0) rotate(0deg);} 50%{ transform: translateY(-10px) rotate(8deg);} }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust{
  background: var(--forest);
  padding: 26px 0;
}
.trust ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ivory);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust li svg{ width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section{ padding: 96px 0; }
.section-head{
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-top: 14px;
}
.section-head p{
  color: var(--ink-soft);
  margin-top: 16px;
  font-size: 1.02rem;
}

/* =========================================================
   PRODUCT / CATEGORY FILTER TABS
   ========================================================= */
.tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.tab{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all 0.22s ease;
}
.tab:hover{ border-color: var(--gold); color: var(--forest); }
.tab.active{
  background: var(--forest);
  border-color: var(--forest);
  color: var(--ivory);
}
.tab-count{
  font-size: 0.72rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 999px;
  background: rgba(31,59,44,0.08);
  color: inherit;
}
.tab.active .tab-count{ background: rgba(251,246,236,0.18); }

.results-count{
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.no-results{
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
}

/* =========================================================
   PRODUCT GRID (photo cards — homepage / featured range)
   ========================================================= */
.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px 26px;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color .28s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--cat-color, var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.product-card:hover::before{ transform: scaleX(1); }
.product-card.is-hidden{ display: none; }

.product-photo{
  width: 100%;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cat-tint, var(--sandalwood));
  margin-bottom: 20px;
  position: relative;
  flex-shrink: 0;
}
.product-photo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  mix-blend-mode: multiply;
}
.product-card:hover .product-photo img{ transform: scale(1.05); }

.product-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cat-tint, var(--sandalwood));
  color: var(--cat-color, var(--gold));
  margin-bottom: 14px;
  position: absolute;
  top: 14px;
  right: 14px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(2px);
}
.product-icon svg{ width: 22px; height: 22px; }

.product-card .tag{
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cat-color, var(--maroon));
  margin-bottom: 8px;
}
.product-card h3{
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: var(--forest);
}
.product-card .sub{
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  font-weight: 500;
}
.product-card .hi{
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.55;
}
.product-card .card-actions{
  margin-top: auto;
  padding-top: 18px;
}

/* category color variables set inline via data-cat in JS-less CSS */
.product-card[data-cat="skin"]{ --cat-color: var(--sage); --cat-tint: #E4EEE3; }
.product-card[data-cat="hair"]{ --cat-color: var(--gold); --cat-tint: #F6E9CC; }
.product-card[data-cat="wellness"]{ --cat-color: var(--maroon); --cat-tint: #F1DCDD; }

/* =========================================================
   PRICE GRID — full catalog cards with product photos
   (₹10 range, namkeen, candy, biscuits, beverage, spices,
   pulses, dry fruits, cleaning, AARU)
   ========================================================= */
.price-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
}
.price-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.price-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--cat-color, var(--gold));
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}
.price-card:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: transparent;
}
.price-card[data-cat="tenrs"]{ --cat-color: var(--gold); }
.price-card[data-cat="namkeen"]{ --cat-color: var(--maroon); }
.price-card[data-cat="candy"]{ --cat-color: var(--sage); }
.price-card[data-cat="biscuits"]{ --cat-color: var(--gold-light); }
.price-card[data-cat="beverage"]{ --cat-color: var(--navy); }
.price-card[data-cat="spices"]{ --cat-color: var(--maroon); }
.price-card[data-cat="pulses"]{ --cat-color: var(--sage); }
.price-card[data-cat="dryfruits"]{ --cat-color: var(--gold); }
.price-card[data-cat="cleaning"]{ --cat-color: var(--navy); }
.price-card[data-cat="aaru"]{ --cat-color: var(--forest); }

.pc-img-wrap{
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: var(--cat-tint, #f2ede2);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}
.pc-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.price-card:hover .pc-img{ transform: scale(1.05); }

.pc-tag{
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cat-color, var(--maroon));
}
.pc-name{
  font-family: var(--f-display);
  font-size: 1.02rem;
  color: var(--forest);
  line-height: 1.25;
  margin: 0;
}
.pc-unit{
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.pc-wa{
  margin-top: auto;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--forest);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pc-wa:hover{
  background: var(--forest);
  border-color: var(--forest);
  color: var(--ivory);
}

/* =========================================================
   POSTER SHOWCASE
   ========================================================= */
.showcase{
  background: var(--ivory-deep);
}
.showcase-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.showcase-frame{
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}
.showcase-frame img{
  border-radius: 12px;
  width: 100%;
  cursor: zoom-in;
}
.showcase-frame .zoom-hint{
  position: absolute;
  bottom: 30px; right: 30px;
  background: var(--forest);
  color: var(--ivory);
  font-size: 0.72rem;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.showcase-copy .checklist{
  margin-top: 28px;
  display: grid;
  gap: 16px;
}
.showcase-copy .checklist li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.showcase-copy .checklist svg{
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.showcase-copy .checklist b{ color: var(--forest); display: block; margin-bottom: 2px; }
.showcase-copy .checklist span{ color: var(--ink-soft); font-size: 0.92rem; }

/* Lightbox */
.lightbox{
  position: fixed; inset: 0;
  background: rgba(20, 30, 22, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: 40px 20px;
}
.lightbox.open{ display: flex; }
.lightbox img{
  max-width: 560px;
  max-height: 86vh;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.lightbox-close{
  position: absolute;
  top: 26px; right: 30px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--ivory);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid{
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual{
  position: relative;
  background: var(--forest);
  border-radius: var(--radius);
  padding: 46px 38px;
  color: var(--ivory);
  overflow: hidden;
}
.about-visual::after{
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(201,147,46,0.35), transparent 70%);
  top: -80px; right: -80px;
}
.about-visual blockquote{
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.about-visual cite{
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.about-copy p{ color: var(--ink-soft); margin-bottom: 18px; }
.about-copy .pillars{
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-copy .pillar{
  border-left: 2.5px solid var(--gold);
  padding-left: 16px;
}
.about-copy .pillar h4{ font-size: 1rem; margin-bottom: 4px; }
.about-copy .pillar p{ font-size: 0.86rem; margin: 0; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  border-radius: 28px;
  margin: 0 auto;
  max-width: var(--container);
  padding: 64px 56px;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(201,147,46,0.25), transparent 55%);
}
.cta-banner > *{ position: relative; z-index: 1; }
.cta-banner h2{ color: var(--ivory); font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 480px; }
.cta-banner p{ color: rgba(251,246,236,0.75); margin-top: 12px; max-width: 420px; }
.cta-actions{ display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: var(--forest-deep);
  color: rgba(251,246,236,0.72);
  padding: 70px 0 26px;
  margin-top: 90px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(251,246,236,0.12);
}
.footer-brand{ display: flex; gap: 14px; align-items: flex-start; }
.footer-brand img{ width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 0 0 2px var(--gold); }
.footer-brand h4{ color: var(--ivory); font-size: 1.1rem; margin-bottom: 6px; }
.footer-brand p{ font-size: 0.88rem; max-width: 32ch; }
footer h5{
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
footer ul li{ margin-bottom: 12px; font-size: 0.92rem; }
footer ul li a{ transition: color 0.2s ease; }
footer ul li a:hover{ color: var(--gold-light); }
footer .contact-line{ display: flex; gap: 10px; align-items: center; }
footer .contact-line svg{ width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; }
.footer-bottom{
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.float-wa{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1F3B2C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -12px rgba(20,43,31,0.55);
  animation: pulse 2.6s ease-in-out infinite;
}
.float-wa svg{ width: 28px; height: 28px; color: var(--ivory); }
@keyframes pulse{ 0%,100%{ box-shadow: 0 14px 34px -12px rgba(20,43,31,0.55), 0 0 0 0 rgba(31,59,44,0.4);} 50%{ box-shadow: 0 14px 34px -12px rgba(20,43,31,0.55), 0 0 0 12px rgba(31,59,44,0);} }

/* =========================================================
   PAGE HERO (products / contact pages)
   ========================================================= */
.page-hero{
  padding: 156px 0 70px;
  text-align: center;
}
.page-hero .eyebrow{ justify-content: center; }
.page-hero h1{ font-size: clamp(2.2rem, 4vw, 3.1rem); margin: 16px auto 0; max-width: 720px; }
.page-hero p{ color: var(--ink-soft); max-width: 520px; margin: 18px auto 0; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-card .ci{
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-card .ci svg{ width: 25px; height: 25px; color: var(--white); }
.contact-card.call .ci{ background: var(--forest); }
.contact-card.wa .ci{ background: #1F3B2C; }
.contact-card.mail .ci{ background: var(--maroon); }
.contact-card h3{ font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p{ color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.contact-card a.btn{ width: 100%; }

.contact-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2{ font-size: 1.9rem; margin-bottom: 18px; }
.contact-info p{ color: var(--ink-soft); margin-bottom: 26px; }
.info-row{
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.info-row:last-child{ border-bottom: 1px solid var(--line); }
.info-row svg{ width: 22px; height: 22px; color: var(--maroon); flex-shrink: 0; margin-top: 2px; }
.info-row b{ display: block; color: var(--forest); margin-bottom: 3px; font-size: 0.95rem; }
.info-row span{ color: var(--ink-soft); font-size: 0.88rem; }

.contact-form{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3{ font-size: 1.3rem; margin-bottom: 6px; }
.contact-form > p{ color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 24px; }
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--ivory);
  font-family: var(--f-body);
  font-size: 0.94rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note{
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 14px;
  display: flex;
  gap: 8px;
}
.form-note svg{ width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; color: var(--sage); }

.map-wrap{
  margin-top: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 340px;
}
.map-wrap iframe{ width: 100%; height: 100%; border: 0; }

/* =========================================================
   FADE-UP reveal utility
   ========================================================= */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view{ opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE — fluid type scale (applies at every width)
   ========================================================= */
html{ font-size: clamp(15px, 0.9vw + 11px, 16px); }
*{ box-sizing: border-box; }
img{ max-width: 100%; }

/* =========================================================
   RESPONSIVE BREAKPOINTS — full ladder, desktop to small phone
   ========================================================= */

/* Large desktops / wide monitors: roomier catalog grid, capped line-lengths */
@media (min-width: 1400px){
  :root{ --container: 1280px; }
  .product-grid--catalog{ grid-template-columns: repeat(4, 1fr); }
  .price-grid{ grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* Small laptops / large tablets */
@media (max-width: 1180px){
  .container{ padding: 0 24px; }
}

/* Tablets */
@media (max-width: 980px){
  .hero-grid, .showcase-grid, .about-grid, .contact-split{ grid-template-columns: 1fr; }
  .hero-art{ height: 340px; order: -1; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .product-grid--catalog{ grid-template-columns: repeat(2, 1fr); }
  .price-grid{ grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.1rem; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .nav-inner{ padding: 12px 24px; }
  .page-hero h1{ font-size: 2rem; }
}

/* Phones (landscape and large) */
@media (max-width: 760px){
  .nav-links{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 28px 22px;
    border-bottom: 1px solid var(--line);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-links.open{ transform: scaleY(1); opacity: 1; pointer-events: auto; }
  .nav-links a{ padding: 10px 0; width: 100%; }
  .nav-toggle{ display: flex; }
  .nav-cta{ display: none; }
  .brand-text .b1{ max-width: 46vw; }
  .hero{ padding: 130px 0 60px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-stats{ gap: 22px; }
  .trust ul{ justify-content: flex-start; }
  .trust li{ font-size: 0.8rem; }
  .section{ padding: 66px 0; }
  .section-head{ margin-bottom: 36px; }
  .product-grid, .product-grid--catalog{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.8rem; }
  .tabs{ gap: 0.4rem; }
  .tab{ padding: 0.35rem 0.6rem; font-size: 0.8rem; }
  .about-copy .pillars{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 42px 26px; flex-direction: column; align-items: flex-start; }
  .cta-actions{ width: 100%; }
  .cta-actions .btn{ flex: 1 1 auto; justify-content: center; }
  .footer-grid{ grid-template-columns: 1fr; gap: 34px; }
  .field-row{ grid-template-columns: 1fr; }
  .page-hero{ padding: 128px 0 50px; }
  .page-hero h1{ font-size: 1.6rem; line-height: 1.25; }
  .page-hero p{ font-size: 0.95rem; }
  .pc-name{ font-size: 0.95rem; }
  .showcase-frame .zoom-hint{ bottom: 16px; right: 16px; font-size: 0.66rem; padding: 6px 12px; }
}

/* Small phones */
@media (max-width: 480px){
  .container{ padding: 0 1rem; }
  .nav-inner{ padding: 10px 18px; }
  .brand img{ width: 38px; height: 38px; }
  .brand-text .b1{ font-size: 0.94rem; max-width: 40vw; }
  .btn{ padding: 11px 18px; font-size: 0.85rem; }
  .btn-sm{ padding: 8px 14px; font-size: 0.78rem; }
  .hero{ padding: 118px 0 46px; }
  .hero-copy p{ font-size: 1rem; }
  .hero-stats{ gap: 16px; }
  .hero-stats div{ min-width: 84px; }
  .hero-art{ height: 260px; }
  .hero-art .shield-wrap{ width: 200px; height: 200px; }
  .hero-art .ring.r1{ width: 300px; height: 300px; }
  .hero-art .ring.r2{ width: 240px; height: 240px; }
  .trust li{ font-size: 0.74rem; gap: 7px; }
  .trust li svg{ width: 17px; height: 17px; }
  .product-card{ padding: 16px 16px 20px; }
  .product-photo{ height: 160px; }
  .price-grid{ grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.6rem; }
  .price-card{ padding: 10px 10px 12px; }
  .about-visual{ padding: 32px 24px; }
  .about-visual blockquote{ font-size: 1.2rem; }
  .cta-banner h2{ font-size: 1.5rem; }
  .contact-form{ padding: 24px; }
  .float-wa{ width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .float-wa svg{ width: 24px; height: 24px; }
  .map-wrap{ height: 260px; }
}

/* Very small / older phones */
@media (max-width: 360px){
  .hero-copy h1{ font-size: 1.9rem; }
  .hero-stats{ gap: 12px; }
  .hero-stats strong{ font-size: 1.4rem; }
  .btn{ padding: 10px 16px; font-size: 0.8rem; }
  .price-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Foldables / short landscape phones */
@media (max-height: 480px) and (orientation: landscape){
  .hero{ padding: 100px 0 40px; }
  .hero-art{ height: 220px; }
  .nav-links{ max-height: 60vh; }
}