/* ============================================================
   AGRO RYTHU SEVA KENDRAM — style.css
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Tiro+Telugu&display=swap');

/* ---------- Variables ---------- */
:root {
  --forest : #0d3b1f;
  --pine   : #1a5c2e;
  --leaf   : #2d7d45;
  --sage   : #4caf50;
  --mint   : #a8d5a2;
  --mist   : #eaf6e4;
  --cream  : #faf8f2;
  --gold   : #b8841f;
  --amber  : #d4a843;
  --text   : #0f1f0f;
  --mid    : #3a5a3a;
  --light  : #6b8c6b;
  --white  : #ffffff;
  --shadow : rgba(13, 59, 31, 0.14);
  --r      : 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; }
ul { list-style: none; }
.tel { font-family: 'Tiro Telugu', serif; }

/* ---------- Custom Cursor ---------- */
body { cursor: none; }
#cursor {
  position: fixed; width: 9px; height: 9px;
  background: var(--leaf); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, background .2s;
}
#cursor-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid var(--leaf); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .45;
  transition: transform .35s ease, opacity .3s, border-color .2s;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  transition: opacity .8s ease, visibility .8s ease;
}
#loader.done { opacity: 0; visibility: hidden; }
#loader img { width: 88px; height: 88px; object-fit: contain; animation: loaderPulse 1.6s ease infinite; }
@keyframes loaderPulse {
  0%,100% { transform: scale(1);    opacity: .9; }
  50%      { transform: scale(1.07); opacity: 1;  }
}
.loader-bar  { width: 190px; height: 2px; background: rgba(255,255,255,.15); border-radius: 2px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--amber); border-radius: 2px; animation: barFill 1.9s ease forwards; }
@keyframes barFill { to { width: 100%; } }
.loader-text { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 500; }

/* ---------- Float WhatsApp ---------- */
#float-wa {
  position: fixed; bottom: 22px; right: 18px; z-index: 700;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 3s infinite;
  transition: transform .3s;
}
#float-wa:hover { transform: scale(1.1); animation: none; }
#float-wa img { width: 26px; height: 26px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.85), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ============================================================
   NAV
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  padding: 0 5%;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 6px 28px var(--shadow);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 50px; height: 50px; object-fit: contain; transition: transform .3s; }
.nav-logo:hover img { transform: rotate(-8deg) scale(1.05); }
.nav-brand h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; line-height: 1.25;
  color: white;
  transition: color .3s;
}
#navbar.scrolled .nav-brand h1 { color: var(--forest); }
.nav-brand p {
  font-size: .58rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,.7);
  transition: color .3s;
}
#navbar.scrolled .nav-brand p { color: var(--light); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .4px;
  color: rgba(255,255,255,.88); transition: color .2s;
  position: relative;
}
#navbar.scrolled .nav-links a { color: var(--mid); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--sage);
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px; padding: 3px;
  transition: background .3s, border-color .3s;
}
#navbar.scrolled .lang-toggle { background: var(--mist); border-color: var(--mint); }
.lang-btn {
  padding: 5px 14px; border-radius: 100px; border: none;
  font-size: .72rem; font-weight: 600; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.85);
  transition: all .25s;
}
#navbar.scrolled .lang-btn { color: var(--mid); }
.lang-btn.active {
  background: var(--forest); color: white !important;
  box-shadow: 0 2px 8px rgba(13,59,31,.35);
}
.btn-nav-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--amber); color: white;
  border-radius: 100px; padding: 9px 20px;
  font-size: .8rem; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 4px 16px rgba(184,132,31,.4);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-nav-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,132,31,.55); background: var(--gold); }
.btn-nav-call svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('store.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  animation: bgZoom 14s ease-out forwards;
}
@keyframes bgZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(13,59,31,.88) 0%,
    rgba(26,92,46,.72) 45%,
    rgba(13,40,13,.65) 100%
  );
}
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 90%, rgba(212,168,67,.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%, rgba(168,213,162,.1)  0%, transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 860px; width: 100%;
}
.hero-logo {
  width: 100px; height: 100px; object-fit: contain;
  margin: 0 auto 26px;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,.45));
  opacity: 0; transform: scale(.65);
  animation: logoPop .9s cubic-bezier(.34,1.56,.64,1) .45s forwards;
}
@keyframes logoPop { to { opacity: 1; transform: scale(1); } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.92); border-radius: 100px;
  padding: 7px 20px; margin-bottom: 22px;
  font-size: .7rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  opacity: 0; animation: slideUp .7s ease .85s forwards;
}
.hero-badge-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--amber); display: inline-block;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700; color: white; line-height: 1.08;
  margin-bottom: 20px;
  opacity: 0; animation: slideUp .8s ease 1.05s forwards;
}
.hero-title em { color: var(--amber); font-style: normal; }

/* Shop name subline in hero */
.hero-shopname {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
  font-weight: 700 !important;
  color: var(--amber) !important;
  letter-spacing: .5px;
  margin-bottom: 4px !important;
  opacity: 0; animation: slideUp .8s ease 1.18s forwards;
}

/* Location subline */
.hero-location {
  font-size: clamp(.85rem, 2vw, 1rem) !important;
  color: rgba(255,255,255,.7) !important;
  font-weight: 400 !important;
  letter-spacing: 1px;
  margin-bottom: 18px !important;
  opacity: 0; animation: slideUp .8s ease 1.28s forwards;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.82); font-weight: 300; line-height: 1.85;
  max-width: 560px; margin: 0 auto 36px;
  opacity: 0; animation: slideUp .8s ease 1.38s forwards;
}

.hero-ctas {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  opacity: 0; animation: slideUp .8s ease 1.5s forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn .8s ease 2s forwards;
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
  animation: scrollBlink 2.2s ease infinite;
}
@keyframes scrollBlink {
  0%,100% { opacity: 1; } 50% { opacity: .35; }
}
.scroll-label {
  font-size: .62rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.45); font-weight: 600;
}
@keyframes fadeIn { to { opacity: 1; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber); color: white;
  border: none; border-radius: 100px;
  padding: 14px 34px; font-size: .88rem; font-weight: 700;
  letter-spacing: .3px; cursor: pointer;
  box-shadow: 0 6px 26px rgba(212,168,67,.5);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(212,168,67,.6); background: var(--gold); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #128C7E; color: white;
  border: none; border-radius: 100px;
  padding: 14px 28px; font-size: .88rem; font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(18,140,126,.45);
  transition: transform .25s, box-shadow .25s;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(18,140,126,.6); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12); color: white;
  border: 1.5px solid rgba(255,255,255,.6); border-radius: 100px;
  padding: 13px 30px; font-size: .88rem; font-weight: 600;
  cursor: pointer; backdrop-filter: blur(6px);
  transition: background .25s, transform .25s;
}
.btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-3px); }
.btn-icon { width: 17px; height: 17px; flex-shrink: 0; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--forest);
  position: relative; overflow: hidden;
}
.stats-bar-bg {
  position: absolute; inset: 0;
  background-image: url('bg-watercolor.jpg');
  background-size: cover; background-position: center;
  opacity: .07;
}
.stats-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 28px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,.04); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem; font-weight: 700; color: var(--amber); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .72rem; color: rgba(255,255,255,.55);
  font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
section { padding: 96px 5%; }
.container { max-width: 1180px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 14px;
}
.eyebrow-line { width: 26px; height: 1.5px; background: var(--sage); display: inline-block; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--forest); line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { color: var(--leaf); font-style: normal; }

.section-sub {
  font-size: .97rem; color: var(--light); line-height: 1.85; font-weight: 300;
  max-width: 520px;
}

.reveal {
  opacity: 0; transform: translateY(38px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-sec { background: white; }

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

.about-img-col { position: relative; }

.about-img-main {
  width: 100%; height: 460px;
  object-fit: cover; border-radius: var(--r);
  box-shadow: 0 20px 70px rgba(13,59,31,.2);
  transition: transform .5s ease;
  display: block;
}
.about-img-col:hover .about-img-main { transform: scale(1.02); }

.about-img-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--forest); color: white;
  border-radius: var(--r); padding: 18px 22px;
  box-shadow: 0 10px 36px rgba(13,59,31,.32);
  z-index: 2;
}
.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--amber);
  display: block; line-height: 1;
}
.about-img-badge span {
  font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.6); font-weight: 500;
}

.about-text p {
  font-size: .96rem; color: var(--mid); line-height: 1.92;
  margin-bottom: 16px; font-weight: 300;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--mist); border: 1px solid var(--mint);
  color: var(--pine); border-radius: 100px;
  padding: 7px 16px; font-size: .78rem; font-weight: 600;
  transition: background .2s, transform .2s;
}
.pill:hover { background: var(--mint); transform: translateY(-2px); }
.pill img { width: 14px; height: 14px; object-fit: contain; }

/* ============================================================
   PRODUCTS — IMAGE-ONLY SHOWCASE
   ============================================================ */
.products-sec {
  background: linear-gradient(180deg, var(--cream) 0%, var(--mist) 100%);
}
.products-header { margin-bottom: 44px; }

.prod-showcase {
  position: relative;
  background: #f8f6f0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(13,59,31,.08);
}

.prod-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #f8f6f0;
}

.prod-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(1.02) translateX(22px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  background: #f8f6f0;
}
.prod-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
}

.prod-slide-img {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.prod-slide-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 8s ease;
  padding: 20px;
}
.prod-slide.active .prod-slide-img img { transform: scale(1.03); }

.prod-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(13,59,31,.75); border: 1px solid rgba(255,255,255,.2);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; backdrop-filter: blur(8px);
  transition: background .25s, transform .25s;
}
.prod-arrow svg { width: 18px; height: 18px; }
.prod-arrow:hover { background: var(--amber); transform: translateY(-50%) scale(1.08); }
.prod-prev { left: 18px; }
.prod-next { right: 18px; }

.prod-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(13,59,31,.1); z-index: 10;
}
.prod-progress-fill { height: 100%; width: 0%; background: var(--amber); }

.prod-thumb-rail {
  display: flex; gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--mint) transparent;
  overscroll-behavior-x: contain;
}
.prod-thumb-rail::-webkit-scrollbar { height: 4px; }
.prod-thumb-rail::-webkit-scrollbar-track { background: transparent; }
.prod-thumb-rail::-webkit-scrollbar-thumb { background: var(--mint); border-radius: 4px; }

.prod-thumb {
  flex: 0 0 72px; height: 72px;
  border-radius: 4px; overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer; padding: 0; background: white;
  transition: border-color .25s, transform .25s, opacity .25s;
  opacity: .55;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.prod-thumb.active { border-color: var(--amber); opacity: 1; transform: translateY(-3px); }
.prod-thumb:hover { opacity: .85; }

.prod-counter {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 10px; margin-top: 10px;
}
#prodCurrent {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--forest); line-height: 1;
}
.prod-sep { width: 32px; height: 1px; background: var(--mint); display: inline-block; }
#prodTotal { font-size: .78rem; color: var(--light); font-weight: 500; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-sec {
  background: #071810;
  position: relative; overflow: hidden;
  padding: 100px 5%;
}

.why-sec::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 110%, rgba(212,168,67,.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% -10%, rgba(45,125,69,.18) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(13,59,31,.5) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

.why-sec::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}

.why-sec .container { position: relative; z-index: 1; }
.why-sec .section-eyebrow { color: var(--amber); }
.why-sec .eyebrow-line    { background: var(--amber); }
.why-sec .section-title   { color: white; }
.why-sec .section-sub     { color: rgba(255,255,255,.5); max-width: 560px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  position: relative; z-index: 1;
}

.why-card {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 40px 32px 36px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              border-color .35s,
              box-shadow .35s,
              background .35s;
}

.why-card::before {
  content: attr(data-num);
  position: absolute; top: -8px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: rgba(212,168,67,.07);
  pointer-events: none; user-select: none;
  transition: color .35s;
}

.why-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.04) 40%,
    rgba(255,255,255,.08) 50%,
    rgba(255,255,255,.04) 60%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform .6s ease;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,.4);
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(212,168,67,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(212,168,67,.1) 0%, rgba(45,125,69,.08) 100%);
}
.why-card:hover::before { color: rgba(212,168,67,.14); }
.why-card:hover::after  { transform: translateX(100%); }

.why-icon {
  width: 54px; height: 54px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212,168,67,.22) 0%, rgba(212,168,67,.08) 100%);
  border: 1px solid rgba(212,168,67,.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(212,168,67,.12);
  transition: background .35s, box-shadow .35s, transform .35s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(212,168,67,.35) 0%, rgba(212,168,67,.15) 100%);
  box-shadow: 0 6px 28px rgba(212,168,67,.3);
  transform: scale(1.08) rotate(-3deg);
}
.why-icon img {
  width: 24px; height: 24px; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.why-card-accent {
  position: absolute; top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0; border-radius: 0 0 2px 2px;
  transition: opacity .35s;
}
.why-card:hover .why-card-accent { opacity: 1; }

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700;
  color: white; margin-bottom: 12px; line-height: 1.25;
  transition: color .3s;
}
.why-card:hover h3 { color: var(--amber); }

.why-card p {
  font-size: .84rem; color: rgba(255,255,255,.48);
  line-height: 1.78; font-weight: 300;
  transition: color .3s;
}
.why-card:hover p { color: rgba(255,255,255,.68); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-sec { background: var(--cream); }
.testi-header { text-align: center; margin-bottom: 52px; }
.testi-header .section-eyebrow { justify-content: center; }

.testi-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: start;
}

.testi-video-col { position: sticky; top: 92px; }

.testi-video-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}

.testi-video-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--forest); color: white;
  border-radius: 100px; padding: 6px 16px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  align-self: flex-start;
}
.testi-video-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ff4444;
  animation: livePulse 1.4s ease infinite;
  flex-shrink: 0;
}
@keyframes livePulse {
  0%,100% { opacity: 1; transform: scale(1);   }
  50%      { opacity: .5; transform: scale(1.4); }
}

.testi-video-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(13,59,31,.22),
    0 0 0 3px var(--mint);
  background: #000;
}
.testi-video-frame iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

.testi-yt-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: white;
  border-radius: 100px; padding: 9px 20px;
  font-size: .78rem; font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,0,0,.35);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.testi-yt-link:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,0,0,.45);
}
.testi-yt-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.testi-cards-col {
  display: flex; flex-direction: column; gap: 18px;
}

.testi-card {
  background: white; padding: 28px 24px;
  border-radius: var(--r); border-top: 3px solid transparent;
  box-shadow: 0 2px 18px rgba(13,59,31,.06);
  position: relative;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.testi-card:hover { border-top-color: var(--sage); transform: translateY(-4px); box-shadow: 0 14px 44px rgba(13,59,31,.12); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem; color: var(--mist); line-height: .6;
  position: absolute; top: 18px; left: 18px; font-weight: 700;
  user-select: none; pointer-events: none;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.testi-text {
  font-size: .87rem; color: var(--mid); line-height: 1.78;
  margin-bottom: 16px; font-weight: 300;
  position: relative; z-index: 1; padding-top: 4px;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--mist); padding-top: 14px;
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pine), var(--sage));
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700;
}
.testi-author h4 { font-size: .85rem; font-weight: 700; color: var(--forest); }
.testi-author p  { font-size: .71rem; color: var(--light); font-weight: 300; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-sec { background: white; }
.contact-header { text-align: center; margin-bottom: 64px; }
.contact-header .section-eyebrow { justify-content: center; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.35fr; gap: 72px; align-items: start;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--forest); margin-bottom: 30px;
}
.contact-item {
  display: flex; gap: 15px; margin-bottom: 26px; align-items: flex-start;
}
.contact-item-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--mist); border: 1px solid var(--mint); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.contact-item:hover .contact-item-icon { background: var(--mint); }
.contact-item-icon img { width: 18px; height: 18px; object-fit: contain; }
.contact-item-text h4 {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--light); margin-bottom: 3px;
}
.contact-item-text a,
.contact-item-text p {
  font-size: .93rem; color: var(--mid); line-height: 1.65; font-weight: 300;
}
.contact-item-text a:hover { color: var(--leaf); }

.timing-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--mist); border: 1px solid var(--mint);
  border-radius: var(--r); padding: 14px 18px;
  font-size: .84rem; color: var(--pine); font-weight: 500;
  margin: 22px 0 30px;
}
.timing-box img { width: 16px; height: 16px; flex-shrink: 0; }

.contact-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-call-full,
.btn-wa-full {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  color: white; border: none; border-radius: var(--r);
  padding: 15px 24px; font-size: .88rem; font-weight: 700;
  cursor: pointer; letter-spacing: .3px;
  transition: background .25s, transform .25s;
}
.btn-call-full { background: var(--forest); }
.btn-call-full:hover { background: var(--pine); transform: translateY(-2px); }
.btn-wa-full { background: #128C7E; }
.btn-wa-full:hover { background: #0d6e63; transform: translateY(-2px); }
.btn-call-full svg, .btn-wa-full img { width: 18px; height: 18px; flex-shrink: 0; }

.map-wrap {
  border-radius: var(--r); overflow: hidden;
  height: 400px; border: 1px solid var(--mist);
  box-shadow: 0 10px 44px rgba(13,59,31,.14);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-caption {
  margin-top: 10px; font-size: .76rem; color: var(--light);
  text-align: center; font-weight: 300;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060d06; color: white;
  padding: 80px 5% 30px;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  margin-bottom: 56px;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-logo  { width: 60px; height: 60px; object-fit: contain; flex-shrink: 0; }
.footer-brand-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: white;
}
.footer-brand-text p {
  font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7; font-weight: 300;
}
.footer-col h3 {
  font-size: .65rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,.48); font-size: .84rem; font-weight: 300;
  transition: color .2s, padding-left .2s; display: inline-block;
}
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.footer-hours { color: rgba(255,255,255,.28); font-size: .8rem; font-weight: 300; margin-top: 12px; }

.footer-bottom {
  max-width: 1180px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.28); font-weight: 300; }
.footer-lang-links { display: flex; gap: 16px; }
.footer-lang-links a {
  color: rgba(255,255,255,.28); font-size: .73rem; font-weight: 500;
  transition: color .2s;
}
.footer-lang-links a:hover { color: white; }

/* ============================================================
   LANGUAGE VISIBILITY
   ============================================================ */
.t-en, .t-te { display: none; }
body.lang-en .t-en { display: revert; }
body.lang-te .t-te { display: revert; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid   { gap: 44px; }
  .contact-grid { gap: 44px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤900px)
   ============================================================ */
@media (max-width: 900px) {
  section { padding: 70px 5%; }

  .nav-links { display: none; }
  .nav-brand h1 { font-size: .88rem; }
  .nav-brand p  { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-img-main { height: 340px; }
  .about-img-badge { bottom: 14px; right: 14px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item {
    padding: 36px 20px;
    border-right: 1px solid rgba(255,255,255,.07);
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4)  { border-bottom: none; }
  .stat-num { font-size: 2.8rem; }

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

  .testi-layout {
    grid-template-columns: 260px 1fr;
    gap: 26px;
  }
  .testi-video-col { position: static; }

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

  .prod-stage  { height: 380px; }
  .prod-thumb  { flex: 0 0 58px; height: 58px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }

  .map-wrap { height: 340px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤600px)
   ============================================================ */
@media (max-width: 600px) {

  section { padding: 56px 4%; }

  #cursor, #cursor-ring { display: none; }
  body { cursor: auto; }

  #float-wa { bottom: 16px; right: 14px; width: 48px; height: 48px; }
  #float-wa img { width: 22px; height: 22px; }

  /* ── NAV ── */
  #navbar { padding: 0 4%; }
  .nav-inner { height: 68px; }
  .nav-logo img { width: 40px; height: 40px; }

  /* Bigger brand name + subline on mobile */
  .nav-brand h1 {
    font-size: 1.18rem;
    line-height: 1.2;
  }
  .nav-brand p {
    display: block;
    font-size: .62rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    font-weight: 500;
  }
  #navbar.scrolled .nav-brand p {
    color: var(--light);
  }

  .nav-right { gap: 8px; }
  .lang-btn { padding: 4px 10px; font-size: .66rem; }
  .btn-nav-call { padding: 8px 12px; font-size: 0; gap: 0; }
  .btn-nav-call svg { width: 16px; height: 16px; font-size: initial; }

  /* ── HERO ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 18px; }
  .hero-logo { width: 72px; height: 72px; margin-bottom: 14px; }

  .hero-badge {
    font-size: .58rem; letter-spacing: 1px;
    padding: 5px 12px; margin-bottom: 14px;
    text-align: center; flex-wrap: wrap; justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
    margin-bottom: 12px;
  }

  /* Shop name — prominent on mobile */
  .hero-shopname {
    font-size: clamp(1.35rem, 5.5vw, 1.8rem) !important;
    margin-bottom: 4px !important;
    line-height: 1.2;
  }

  /* Location line */
  .hero-location {
    font-size: clamp(.78rem, 3.2vw, .92rem) !important;
    margin-bottom: 14px !important;
    letter-spacing: .5px;
  }

  .hero-sub { font-size: .86rem; margin-bottom: 24px; }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .btn-gold, .btn-wa, .btn-outline {
    justify-content: center;
    padding: 13px 20px;
    font-size: .84rem;
  }

  /* ── STATS ── */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 12px; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: .64rem; letter-spacing: .8px; }

  /* ── ABOUT ── */
  .about-sec { padding: 56px 4%; }
  .about-grid { gap: 40px; }
  .about-img-main { height: 240px; }
  .about-img-badge {
    position: static;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 14px;
    border-radius: var(--r);
  }
  .about-img-badge strong { font-size: 2rem; }
  .about-text p { font-size: .9rem; }
  .about-pills { gap: 8px; }
  .pill { font-size: .73rem; padding: 6px 13px; }

  /* ── PRODUCTS ── */
  .products-sec { padding: 56px 4%; }
  .prod-stage   { height: 260px; }
  .prod-arrow   { width: 34px; height: 34px; }
  .prod-arrow svg { width: 15px; height: 15px; }
  .prod-prev { left: 10px; }
  .prod-next { right: 10px; }
  .prod-thumb   { flex: 0 0 48px; height: 48px; }
  .prod-counter { justify-content: center; }
  #prodCurrent  { font-size: 1.4rem; }

  /* ── WHY ── */
  .why-sec  { padding: 60px 4%; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 22px 24px; }
  .why-icon { width: 46px; height: 46px; margin-bottom: 16px; }
  .why-card h3 { font-size: 1.15rem; }
  .why-card p  { font-size: .82rem; }

  /* ── TESTIMONIALS ── */
  .testi-sec  { padding: 56px 4%; }
  .testi-layout { grid-template-columns: 1fr; gap: 28px; }
  .testi-video-col { position: static; }
  .testi-video-frame { max-width: 280px; margin: 0 auto; }
  .testi-cards-col { gap: 14px; }
  .testi-header { margin-bottom: 36px; }

  /* ── CONTACT ── */
  .contact-sec    { padding: 56px 4%; }
  .contact-header { margin-bottom: 40px; }
  .contact-grid   { gap: 32px; }
  .contact-info h3 { font-size: 1.25rem; margin-bottom: 22px; }
  .contact-item { gap: 12px; margin-bottom: 20px; }
  .contact-item-icon { width: 36px; height: 36px; }
  .contact-item-icon img { width: 15px; height: 15px; }
  .timing-box { font-size: .8rem; padding: 12px 14px; }
  .btn-call-full,
  .btn-wa-full  { padding: 13px 18px; font-size: .84rem; }
  .map-wrap { height: 260px; }
  .map-caption { font-size: .7rem; }

  /* ── FOOTER ── */
  footer { padding: 52px 4% 24px; }
  .footer-grid { gap: 28px; margin-bottom: 36px; }
  .footer-brand { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-logo  { width: 50px; height: 50px; }
  .footer-brand-text h2 { font-size: 1rem; }
  .footer-brand-text p  { font-size: .76rem; }
  .footer-col h3 { font-size: .62rem; margin-bottom: 14px; }
  .footer-col ul li a { font-size: .8rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
  .footer-bottom p { font-size: .68rem; }

  /* ── SECTION TITLES ── */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section-sub   { font-size: .88rem; }
}

/* ============================================================
   RESPONSIVE — VERY SMALL (≤380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero-title { font-size: 1.8rem; }
  .hero-shopname { font-size: 1.2rem !important; }
  .hero-location { font-size: .74rem !important; }
  .hero-badge { font-size: .54rem; padding: 5px 10px; }
  .stat-num   { font-size: 2rem; }
  .prod-stage { height: 220px; }

  /* Keep brand visible even at very small screens */
  .nav-brand  { display: block; }
  .nav-brand h1 { font-size: .92rem; }
  .nav-brand p  { display: block; font-size: .56rem; }
}
