/* ===================================================================
   SK HERBAL HAIR OIL — LUXURY LANDING PAGE + AUTH MODAL
   Updated: Mobile-first Buy Now flow, Login/Register modal,
   Ingredients spacing fix, smooth GSAP animations throughout.
=================================================================== */

:root{
  --bottle-deep: #0E1712;
  --bottle:      #16241B;
  --bottle-soft: #24382A;
  --paper:       #F8F3E7;
  --paper-dim:   #EFE6CE;
  --ink:         #1B2419;
  --ink-soft:    #565F4E;
  --gold:        #B6893F;
  --gold-light:  #E1C077;
  --gold-deep:   #8A6A30;
  --clay:        #A6572E;
  --clay-deep:   #7E3F1E;
  --line:        #E1D4AC;
  --line-dark:   rgba(230,212,150,.16);

  /* Premium auth theme */
  --forest:      #234F3E;
  --olive:       #2F5D50;
  --sage:        #A8C3A1;
  --cream:       #F8F5EE;
  --auth-gold:   #C8A96A;
  --auth-gold2:  #e0c07a;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
  --font-poppins: "Poppins", sans-serif;
  --font-inter:   "Inter", sans-serif;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 28px rgba(14,23,18,.10);
  --shadow-lift: 0 26px 60px rgba(14,23,18,.18);
  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing: border-box; margin: 0; padding: 0; }

html{ scroll-behavior: smooth; scroll-padding-top: 96px; }

body{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .01em;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-lock{ overflow: hidden; }
body.modal-lock{ overflow: hidden; }

img{ display: block; max-width: 100%; height: auto; user-select: none; -webkit-user-drag: none; }
picture{ display: block; }
video{ display: block; max-width: 100%; }
svg{ display: block; }
a{ text-decoration: none; color: inherit; }
ul{ list-style: none; }
button,input,textarea,select{ font: inherit; color: inherit; }
button{ cursor: pointer; background: none; border: none; }
input,textarea,select{ outline: none; }

.container{ width: min(100%,1240px); margin-inline: auto; padding-inline: 24px; }

::selection{ background: var(--gold); color: #fff; }
:focus-visible{ outline: 2px solid var(--gold); outline-offset: 4px; }

section{ position: relative; padding-block: 130px; }

/* Film grain texture */
.grain-overlay{
  position: fixed; inset: 0; z-index: 3000; pointer-events: none;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Scroll progress */
.scroll-progress{
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 3100;
  background: linear-gradient(90deg,var(--clay),var(--gold));
  transform-origin: left; transform: scaleX(0);
}

/* Preloader */
.preloader{
  position: fixed; inset: 0; z-index: 4000;
  display: flex; align-items: center; justify-content: center;
  background: var(--bottle-deep);
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.done{ opacity: 0; visibility: hidden; }
.preloader-mark{ position: relative; width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
.preloader-ring{ position: absolute; inset: 0; width: 100%; height: 100%; }
.preloader-ring circle{ fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-dasharray: 290; stroke-dashoffset: 290; animation: ringDraw 1.8s ease-in-out infinite; }
.preloader-mark span{ font-family: var(--font-display); font-style: italic; font-size: 2.1rem; color: var(--paper); letter-spacing: .04em; }
@keyframes ringDraw{ 0%{ stroke-dashoffset: 290; transform: rotate(0deg);} 55%{ stroke-dashoffset: 0;} 100%{ stroke-dashoffset: -290; transform: rotate(360deg);} }

/* Curtain reveal */
.curtain{ position: fixed; inset: 0; z-index: 3900; display: flex; pointer-events: none; }
.curtain-panel{ flex: 1; background: var(--bottle-deep); }

/* ==========================================================
   EYEBROW / SECTION LABELS
========================================================== */
.eyebrow, .section-eyebrow, .section-tag{
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 20px 7px 26px; margin-bottom: 18px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay-deep);
  background: rgba(166,87,46,.08); border: 1px solid rgba(166,87,46,.28);
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}
.eyebrow::before, .section-eyebrow::before, .section-tag::before{
  content: ''; position: absolute; left: 9px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 2px rgba(182,137,63,.25);
}
.section-eyebrow.light, .eyebrow.light{
  color: var(--gold-light); background: rgba(225,192,119,.08); border-color: rgba(225,192,119,.3);
}
.section-eyebrow.light::before, .eyebrow.light::before{ background: var(--gold-light); }
.section-eyebrow.center{ margin-inline: auto; }

.section-title{
  font-family: var(--font-display); font-size: clamp(2.1rem,3.6vw,3.2rem);
  font-weight: 500; line-height: 1.16; color: var(--ink); margin-bottom: 22px;
}
.section-title em{ font-style: italic; font-weight: 400; color: var(--gold-deep); }
.section-title.light{ color: var(--paper); }
.section-title.light em{ color: var(--gold-light); }
.section-title.center{ text-align: center; }

.section-text{ max-width: 46ch; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.85; margin-bottom: 16px; }
.section-text.light{ color: rgba(248,243,231,.78); }
.section-text.center{ margin-inline: auto; text-align: center; }

/* ==========================================================
   BUTTONS
========================================================== */
.btn-lux{
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 34px;
  font-family: var(--font-body); font-size: .86rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--bottle-deep);
  background: linear-gradient(155deg,var(--gold-light),var(--gold) 55%,var(--gold-deep));
  border-radius: 100px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.35) inset, 0 0 0 5px rgba(182,137,63,.14), var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-lux:hover{ transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(255,255,255,.4) inset, 0 0 0 6px rgba(182,137,63,.2), var(--shadow-lift); }
.btn-lux.full{ display: flex; width: 100%; }

.btn-ghost{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .92rem; font-weight: 500; letter-spacing: .02em; color: var(--ink);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--clay),var(--clay));
  background-repeat: no-repeat; background-size: 0% 1px; background-position: left bottom;
  transition: background-size .4s var(--ease), color .3s var(--ease);
}
.btn-ghost:hover{ background-size: 100% 1px; color: var(--clay-deep); }
.btn-ghost span{ transition: transform .3s var(--ease); }
.btn-ghost:hover span{ transform: translateX(4px); }
.btn-ghost.light{ color: var(--paper); background-image: linear-gradient(var(--gold-light),var(--gold-light)); }
.btn-ghost.light:hover{ color: var(--gold-light); }

/* ==========================================================
   NAVIGATION
========================================================== */
.sk-nav{
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  padding-block: 20px;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.sk-nav.scrolled{
  padding-block: 12px;
  background: rgba(22,36,27,.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(225,212,150,.14), 0 20px 40px rgba(14,23,18,.28);
}
.sk-nav-inner{
  width: min(100%,1240px); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; gap: 28px;
}
.sk-brand{ display: flex; align-items: center; gap: 10px; margin-right: auto; }
.sk-brand img{ width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.sk-brand span{ font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--paper); transition: color .4s var(--ease); }
.sk-brand em{ font-style: italic; color: var(--gold-light); }

.sk-nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-link-item{
  position: relative; font-size: .86rem; font-weight: 400; letter-spacing: .03em;
  color: rgba(248,243,231,.86); transition: color .3s var(--ease);
}
.nav-link-item::after{
  content: ''; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-link-item:hover{ color: var(--gold-light); }
.nav-link-item:hover::after{ transform: scaleX(1); }

.sk-cart-btn{ position: relative; font-size: 1.15rem; color: var(--paper); transition: color .3s var(--ease); }
.sk-cart-count{
  position: absolute; top: -8px; right: -10px; min-width: 18px; height: 18px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
  background: var(--clay); color: #fff; font-size: .64rem; font-weight: 600; border-radius: 50%;
}
.sk-cart-count.pop{ animation: cartPop .4s var(--ease); }
@keyframes cartPop{ 0%{ transform: scale(1);} 40%{ transform: scale(1.5);} 100%{ transform: scale(1);} }

.sk-nav-cta{
  padding: 10px 22px;
  font-size: .78rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bottle-deep);
  background: linear-gradient(155deg,var(--gold-light),var(--gold));
  border-radius: 100px;
  box-shadow: 0 0 0 4px rgba(182,137,63,.14);
  transition: transform .3s var(--ease);
  cursor: pointer;
}
.sk-nav-cta:hover{ transform: translateY(-2px); }

.sk-burger{ display: none; flex-direction: column; gap: 5px; width: 26px; }
.sk-burger span{ display: block; height: 2px; width: 100%; background: var(--paper); transition: transform .35s var(--ease), opacity .35s var(--ease); }
.sk-burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.sk-burger.open span:nth-child(2){ opacity: 0; }
.sk-burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-overlay{
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(14,23,18,.5); opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.nav-overlay.show{ opacity: 1; pointer-events: auto; }

/* ==========================================================
   HERO
========================================================== */
.hero{
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bottle-deep);
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-video{ width: 100%; height: 100%; object-fit: cover; opacity: .82; }
.hero-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,23,18,.92) 8%, rgba(14,23,18,.55) 48%, rgba(14,23,18,.82) 100%),
    linear-gradient(0deg, rgba(14,23,18,.7), transparent 40%);
}
.hero-vine{ position: absolute; right: 6%; top: 0; height: 100%; width: 60px; opacity: .5; z-index: 1; }
.hero-vine svg{ height: 100%; width: 100%; }
.hero-vine path{ fill: none; stroke: var(--gold); stroke-width: 1.4; }

.sparkle-field{ position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sparkle{ position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-light); opacity: 0; animation: sparkleTwinkle 4s ease-in-out infinite; }
@keyframes sparkleTwinkle{ 0%,100%{ opacity: 0; transform: scale(.5);} 50%{ opacity: .85; transform: scale(1);} }

.hero-content{ position: relative; z-index: 2; padding-top: 60px; max-width: 640px; }
.eyebrow{ color: var(--gold-light); background: rgba(225,192,119,.1); border-color: rgba(225,192,119,.32); }
.eyebrow::before{ background: var(--gold-light); }

.hero-title{
  font-family: var(--font-display); color: var(--paper);
  font-size: clamp(2.6rem,6vw,5.2rem); line-height: 1.06; font-weight: 500; margin-bottom: 26px;
}
.hero-title .line{ display: block; }
.hero-italic{ font-style: italic; font-weight: 400; color: var(--gold-light); }

.hero-sub{ max-width: 480px; margin-bottom: 40px; font-size: 1.08rem; line-height: 1.85; color: rgba(248,243,231,.8); }
.hero-actions{ display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.hero-actions .btn-ghost{ color: var(--paper); background-image: linear-gradient(var(--gold-light),var(--gold-light)); }
.hero-actions .btn-ghost:hover{ color: var(--gold-light); }

.hero-float-bottle{
  position: absolute; right: 7%; bottom: 6%; z-index: 2;
  width: clamp(140px,16vw,230px);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5));
}

.scroll-cue{ position: absolute; left: 24px; bottom: 34px; z-index: 2; display: flex; align-items: center; gap: 10px; }
.scroll-cue span{ width: 1px; height: 40px; background: linear-gradient(var(--gold),transparent); }
.scroll-cue p{ font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(248,243,231,.6); writing-mode: vertical-rl; }

/* ==========================================================
   ABOUT
========================================================== */
.about{ background: var(--paper); }
.about-media{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); border: 6px solid #fff; }
.about-media img{ width: 100%; height: 100%; object-fit: cover; }
.about-media-tag{
  position: absolute; left: 20px; bottom: 20px; padding: 14px 20px;
  background: rgba(248,243,231,.95); border-left: 3px solid var(--gold); border-radius: 10px;
}
.about-media-tag span{ display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.about-media-tag small{ display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

.about-stats{ display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.stat-item{
  flex: 1; min-width: 120px; padding: 18px 16px; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.stat-item span{ display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-deep); }
.stat-item p{ font-size: .72rem; letter-spacing: .04em; color: var(--ink-soft); margin-top: 4px; }

/* ==========================================================
   BENEFITS
========================================================== */
.benefits{ background: var(--paper-dim); }
.benefits-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 50px; }
.benefit-card{
  padding: 38px 26px; text-align: left; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.benefit-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.benefit-icon{
  width: 56px; height: 56px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.4rem; color: var(--gold-deep);
  background: rgba(182,137,63,.1); border: 1px solid rgba(182,137,63,.28);
}
.benefit-card h3{ font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.benefit-card p{ font-size: .92rem; color: var(--ink-soft); line-height: 1.7; }

/* ==========================================================
   INGREDIENTS — Fixed mobile spacing
========================================================== */
.ingredients{ background: var(--bottle-deep); overflow: hidden; padding-block: 100px; }
.ingredients-media{ position: absolute; inset: 0; z-index: 0; }
.ingredients-video{ width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.ingredients-overlay{ position: absolute; inset: 0; background: linear-gradient(100deg, rgba(14,23,18,.96) 30%, rgba(14,23,18,.72)); }
.ingredients-content{ position: relative; z-index: 1; }

.ingredient-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 30px 20px; }
.ingredient-card{ text-align: center; }
.ingredient-circle{
  width: 92px; height: 92px; margin: 0 auto 14px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold); padding: 4px;
  box-shadow: 0 0 0 1px rgba(225,192,119,.2), 0 14px 30px rgba(0,0,0,.35);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ingredient-circle img{ width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ingredient-card:hover .ingredient-circle{ transform: translateY(-6px) scale(1.04); box-shadow: 0 0 0 1px rgba(225,192,119,.4), 0 20px 40px rgba(0,0,0,.45); }
.ingredient-card h5{ font-family: var(--font-display); font-size: 1.02rem; font-weight: 500; color: var(--paper); letter-spacing: .01em; }

/* ==========================================================
   SHOWCASE (pinned bottle)
========================================================== */
.showcase{ background: var(--paper); overflow: hidden; }
.showcase-pin{ display: flex; align-items: center; gap: 70px; min-height: 90vh; }
.showcase-bottle{ flex: 1; display: flex; justify-content: center; }
.video-frame{
  position: relative; width: min(360px,80vw); aspect-ratio: 3/4; border-radius: var(--radius-lg);
  overflow: hidden; border: 10px solid #fff;
  box-shadow: 0 0 0 1px var(--line), var(--shadow-lift);
}
.bottle-video{ width: 100%; height: 100%; object-fit: cover; }
.showcase-copy{ flex: 1; }
.showcase-details{ margin-top: 26px; display: flex; flex-direction: column; gap: 22px; }
.detail-line{ padding-left: 20px; border-left: 2px solid var(--gold); }
.detail-line h5{ font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.detail-line p{ font-size: .92rem; color: var(--ink-soft); max-width: 40ch; }

/* ==========================================================
   PRODUCT / BUY NOW — Mobile-first redesign
========================================================== */
.product{ background: var(--paper-dim); }
.product .row{ align-items: center; }

.product-media{ position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); border: 6px solid #fff; }
.product-media img{ display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.product-media:hover img{ transform: scale(1.05); }
.product-media-glow{ position: absolute; inset: -20%; z-index: -1; background: radial-gradient(circle at 30% 30%, rgba(182,137,63,.25), transparent 60%); filter: blur(40px); }
.product-badge{
  position: absolute; left: 22px; bottom: 22px; padding: 14px 20px;
  border-left: 3px solid var(--gold); border-radius: 10px;
  background: rgba(248,243,231,.94); backdrop-filter: blur(8px);
}
.product-badge span{ display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.product-badge small{ display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }

/* Label card framing the buy panel */
.col-lg-6:has(.product-price){
  position: relative; padding: 40px 38px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  background-image: radial-gradient(circle, var(--line) 1.4px, transparent 1.4px);
  background-size: 16px 16px; background-position: top 14px center;
  background-repeat: repeat-x; background-origin: padding-box;
}
.col-lg-6:has(.product-price)::before{
  content: ''; position: absolute; inset: 30px 16px 16px 16px;
  border: 1px dashed var(--line); border-radius: 14px; pointer-events: none;
}

.product-price{
  position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  margin: 12px 0 14px; padding: 0; background: none; border: none; width: auto;
}
.price-label{ font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.price-value{ font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--clay); font-style: italic; }
.price-original{ font-size: 1rem; color: var(--ink-soft); text-decoration: line-through; opacity: .6; }
.price-save{
  margin-left: auto; font-size: .68rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bottle); background: rgba(182,137,63,.14); border: 1px solid rgba(182,137,63,.35);
  padding: 5px 12px; border-radius: 100px; white-space: nowrap;
}
.price-note{ display: flex; align-items: center; gap: 8px; margin: 0 0 24px; font-size: .8rem; color: var(--ink-soft); }
.price-note i{ color: var(--gold-deep); }

.product-benefits{ display: grid; grid-template-columns: repeat(2,1fr); gap: 13px 18px; margin: 0 0 30px; }
.product-benefits li{ display: flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--ink-soft); }
.product-benefits i{ color: var(--gold-deep); font-size: 1.1rem; }

/* ---- Product Actions: mobile-first ---- */
.product-actions{ display: flex; flex-direction: column; gap: 12px; }

.product-actions-top{
  display: flex; align-items: center; gap: 12px; flex-wrap: nowrap;
}
.product-actions-top .buy-now-main{
  flex: 1; min-width: 0; padding: 15px 20px; font-size: .82rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.qty-selector{
  display: flex; align-items: center; gap: 2px;
  background: var(--paper-dim); border-radius: 100px; padding: 4px;
  flex-shrink: 0;
}
.qty-btn{ width: 34px; height: 34px; border-radius: 50%; font-size: 1.1rem; color: var(--ink); transition: background .3s var(--ease); }
.qty-btn:hover{ background: rgba(182,137,63,.16); }
.qty-value{ width: 34px; text-align: center; font-weight: 500; }

.add-to-cart-btn{ align-self: flex-start; }

.cart-note{ margin-top: 8px; font-size: .84rem; color: var(--gold-deep); min-height: 1.2em; }

.trust-badges{ display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line); }
.trust-badges span{ display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; color: var(--ink-soft); }
.trust-badges i{ color: var(--gold-deep); font-size: 1.05rem; }

/* ==========================================================
   AUTH MODAL — Login / Register
========================================================== */
.auth-modal{
  position: fixed; inset: 0; z-index: 3600;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
}
.auth-modal.open{ opacity: 1; pointer-events: auto; }

.auth-backdrop{
  position: absolute; inset: 0;
  background: rgba(10,22,16,.72);
  backdrop-filter: blur(8px);
}

.auth-panel{
  position: relative;
  width: min(900px, 100%);
  max-height: 92dvh;
  overflow: hidden;
  display: flex;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(200,169,106,.2);
  transform: translateY(32px) scale(.96);
  transition: transform .45s cubic-bezier(.16,.84,.44,1);
}
.auth-modal.open .auth-panel{ transform: translateY(0) scale(1); }

/* Floating leaf decorations */
.auth-leaf{
  position: absolute; z-index: 10; pointer-events: none;
  font-size: 1.8rem; opacity: 0.18;
  animation: leafFloat 6s ease-in-out infinite;
  user-select: none;
}
.auth-leaf--1{ top: 8%; left: 4%; animation-delay: 0s; }
.auth-leaf--2{ top: 20%; right: 6%; animation-delay: 1.5s; font-size: 1.4rem; }
.auth-leaf--3{ bottom: 16%; left: 6%; animation-delay: 3s; font-size: 1.2rem; }
.auth-leaf--4{ bottom: 8%; right: 8%; animation-delay: 4.5s; font-size: 1.6rem; }
@keyframes leafFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); opacity: .18; }
  50%{ transform: translateY(-12px) rotate(8deg); opacity: .28; }
}

/* Left decorative panel */
.auth-deco{
  flex-shrink: 0; width: 360px;
  background: linear-gradient(160deg, #1a3829 0%, #234F3E 50%, #1c4235 100%);
  padding: 44px 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.auth-deco::before{
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(200,169,106,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(168,195,161,.12) 0%, transparent 50%);
  pointer-events: none;
}
.auth-deco-inner{ position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; gap: 28px; }

.auth-deco-logo{ display: flex; align-items: center; gap: 12px; }
.auth-deco-logo img{ width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--auth-gold); }
.auth-deco-logo span{ font-family: var(--font-display); font-size: 1.3rem; color: var(--cream); font-weight: 500; }
.auth-deco-logo em{ font-style: italic; color: var(--auth-gold); }

.auth-deco-title{
  font-family: var(--font-display); font-size: clamp(2rem,3vw,2.8rem);
  font-weight: 500; line-height: 1.12;
  color: var(--cream);
}
.auth-deco-title em{ font-style: italic; color: var(--auth-gold); }

.auth-deco-sub{ font-family: var(--font-inter); font-size: .88rem; color: rgba(248,245,238,.65); line-height: 1.75; }

.auth-deco-circles{ display: flex; gap: 10px; }
.auth-deco-circles span{
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(200,169,106,.35);
  animation: circlePulse 3s ease-in-out infinite;
}
.auth-deco-circles span:nth-child(2){ animation-delay: .6s; background: rgba(200,169,106,.55); width: 14px; height: 14px; }
.auth-deco-circles span:nth-child(3){ animation-delay: 1.2s; }
@keyframes circlePulse{
  0%,100%{ transform: scale(1); opacity: .5; }
  50%{ transform: scale(1.4); opacity: 1; }
}

.auth-deco-video{
    width: 230px;
    height: 240px;
    object-fit: cover;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 22px;
    display: block;
}
.auth-deco-video{
    mix-blend-mode: screen; /* optional */
    opacity: .96;
    box-shadow:
        0 30px 60px rgba(0,0,0,.35);
}
.auth-deco{
    position: relative;
    overflow: hidden;
}

.auth-deco::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(
        to top,
        rgba(26,56,41,.55),
        transparent 35%,
        transparent 70%,
        rgba(26,56,41,.25)
      );
    pointer-events:none;
}
.auth-video-wrap{
    width:230px;
    margin:auto;
    padding:8px;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(12px);
    box-shadow:
      0 20px 45px rgba(0,0,0,.35),
      inset 0 1px rgba(255,255,255,.08);
}

.auth-video-wrap{
    animation:float 5s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
}   

/* Right form panel */
.auth-form-panel{
  flex: 1; min-width: 0;
  background: var(--cream);
  padding: 44px 42px 40px;
  overflow-y: auto;
  position: relative;
}

.auth-close{
  position: absolute; top: 18px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.5rem; line-height: 1;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.auth-close:hover{ background: rgba(35,79,62,.1); color: var(--forest); }

/* Tabs */
.auth-tabs{
  position: relative; display: flex; gap: 0;
  border-bottom: 2px solid rgba(35,79,62,.14);
  margin-bottom: 32px;
}
.auth-tab{
  font-family: var(--font-poppins); font-size: .9rem; font-weight: 500;
  padding: 10px 24px; color: var(--ink-soft);
  border: none; background: none; cursor: pointer;
  transition: color .3s var(--ease);
  position: relative; z-index: 1;
}
.auth-tab.active{ color: var(--forest); }
.auth-tab-bar{
  position: absolute; bottom: -2px; left: 0;
  height: 2px; width: 100px;
  background: linear-gradient(90deg, var(--forest), var(--auth-gold));
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.16,.84,.44,1), width .35s cubic-bezier(.16,.84,.44,1);
}

.auth-headline{
  font-family: var(--font-poppins); font-size: 1.7rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px; line-height: 1.2;
}
.auth-sub{
  font-family: var(--font-inter); font-size: .9rem;
  color: var(--ink-soft); margin-bottom: 30px;
}

/* Auth form wrap — slide transition */
.auth-form-wrap{
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.auth-form-wrap.hidden{
  display: none;
}
.auth-form-wrap.slide-in{
  animation: formSlideIn .38s cubic-bezier(.16,.84,.44,1) both;
}
@keyframes formSlideIn{
  from{ opacity: 0; transform: translateX(20px); }
  to{ opacity: 1; transform: translateX(0); }
}

/* Input fields */
.auth-field{
  position: relative; margin-bottom: 20px;
}
.auth-field-icon{
  position: absolute; left: 15px; top: 50%; transform: translateY(-50%);
  font-size: 1.1rem; color: var(--sage); pointer-events: none;
  transition: color .3s var(--ease);
}
.auth-field input{
  width: 100%; padding: 15px 44px 15px 44px;
  background: #fff; border: 1.5px solid rgba(35,79,62,.18);
  border-radius: 14px; font-family: var(--font-inter); font-size: .95rem;
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none;
}
.auth-field input::placeholder{ color: rgba(86,95,78,.45); }
.auth-field input:focus{
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(35,79,62,.1);
  outline: none;
}
.auth-field input:focus + label{ color: var(--forest); }
.auth-field input:focus ~ .auth-field-icon,
.auth-field input:not(:placeholder-shown) ~ .auth-field-icon{ color: var(--forest); }

.auth-field label{
  display: none; /* using placeholder for clean look */
}

/* Password toggle */
.auth-eye{
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  font-size: 1.05rem; color: var(--ink-soft);
  transition: color .3s var(--ease);
  padding: 4px;
}
.auth-eye:hover{ color: var(--forest); }

/* Meta row */
.auth-meta{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; gap: 10px;
}
.auth-check{
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-inter); font-size: .85rem; color: var(--ink-soft); cursor: pointer;
}
.auth-check input{ accent-color: var(--forest); width: 15px; height: 15px; }
.auth-forgot{
  font-family: var(--font-inter); font-size: .85rem;
  color: var(--forest); font-weight: 500;
  transition: opacity .3s var(--ease);
}
.auth-forgot:hover{ opacity: .7; }

/* Auth submit button */
.auth-btn{
  width: 100%; padding: 15px 24px;
  font-family: var(--font-poppins); font-size: .95rem; font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--forest) 0%, var(--olive) 50%, #1a3829 100%);
  border: none; border-radius: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 8px 24px rgba(35,79,62,.3), 0 0 0 1px rgba(200,169,106,.2) inset;
  margin-bottom: 20px;
}
.auth-btn::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent, rgba(200,169,106,.15));
  opacity: 0; transition: opacity .35s var(--ease);
}
.auth-btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 36px rgba(35,79,62,.36), 0 0 0 1px rgba(200,169,106,.3) inset; }
.auth-btn:hover::before{ opacity: 1; }
.auth-btn i{ font-size: 1rem; transition: transform .3s var(--ease); }
.auth-btn:hover i{ transform: translateX(4px); }

/* Switch link */
.auth-switch{
  text-align: center; font-family: var(--font-inter); font-size: .88rem; color: var(--ink-soft);
}
.auth-switch-btn{
  color: var(--forest); font-weight: 600; border: none; background: none; cursor: pointer;
  font-family: var(--font-inter); font-size: .88rem;
  text-decoration: underline; text-underline-offset: 3px;
  transition: opacity .3s var(--ease);
}
.auth-switch-btn:hover{ opacity: .7; }

/* ==========================================================
   CHECKOUT MODAL
========================================================== */
.checkout-modal{ position: fixed; inset: 0; z-index: 3500; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.checkout-modal.open{ opacity: 1; pointer-events: auto; }
.checkout-backdrop{ position: absolute; inset: 0; background: rgba(14,23,18,.62); backdrop-filter: blur(4px); }
.checkout-panel{
  position: relative; width: min(520px,100%); max-height: 88vh; overflow-y: auto;
  background: var(--paper); border-radius: var(--radius-lg); padding: 44px 38px;
  box-shadow: var(--shadow-lift);
  transform: translateY(30px) scale(.97); transition: transform .4s var(--ease);
}
.checkout-modal.open .checkout-panel{ transform: translateY(0) scale(1); }
.checkout-close{ position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%; font-size: 1.4rem; color: var(--ink-soft); transition: background .3s var(--ease); }
.checkout-close:hover{ background: rgba(182,137,63,.14); }
.checkout-step h3{ font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 22px; }
.checkout-summary{ display: flex; gap: 14px; align-items: center; padding: 16px; margin-bottom: 26px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.checkout-summary img{ width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.checkout-summary h5{ font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 4px; }
.checkout-summary p{ font-size: .85rem; color: var(--ink-soft); }
.checkout-price{ color: var(--gold-deep) !important; font-style: italic; }
.checkout-total{ margin-top: 6px !important; font-size: .92rem !important; color: var(--ink) !important; }
.checkout-total strong{ color: var(--clay); font-family: var(--font-display); font-size: 1.15rem; }

.form-float{ position: relative; margin-bottom: 18px; }
.form-float input, .form-float textarea{
  width: 100%; padding: 16px 14px 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
  font-size: .95rem; transition: border-color .3s var(--ease);
}
.form-float textarea{ resize: vertical; min-height: 90px; }
.form-float input:focus, .form-float textarea:focus{ border-color: var(--gold); }
.form-float label{
  position: absolute; left: 15px; top: 16px; font-size: .95rem; color: var(--ink-soft); pointer-events: none;
  transition: transform .25s var(--ease), font-size .25s var(--ease), color .25s var(--ease);
}
.form-float input:focus + label, .form-float input:not(:placeholder-shown) + label,
.form-float textarea:focus + label, .form-float textarea:not(:placeholder-shown) + label{
  transform: translateY(-9px); font-size: .68rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep);
}

.payment-select{ margin-bottom: 26px; }
.payment-select > p{ margin-bottom: 10px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.payment-options{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.payment-option input{ position: absolute; opacity: 0; }
.payment-option span{
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px;
  border: 1px solid var(--line); border-radius: 12px; font-size: .9rem; color: var(--ink-soft);
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.payment-option input:checked + span{ border-color: var(--gold); background: rgba(182,137,63,.1); color: var(--ink); font-weight: 500; }
.payment-option i{ font-size: 1.15rem; color: var(--gold-deep); }

.checkout-step#stepSuccess{ text-align: center; padding-top: 10px; }
.success-check{
  display: flex; align-items: center; justify-content: center; width: 74px; height: 74px; margin: 0 auto 22px;
  border-radius: 50%; background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: #fff; font-size: 2rem;
  box-shadow: 0 14px 34px rgba(182,137,63,.35);
}
.checkout-step#stepSuccess p{ max-width: 380px; margin: 0 auto 14px; color: var(--ink-soft); }
.order-ref{ font-size: .85rem; letter-spacing: .05em; color: var(--gold-deep) !important; }
.order-ref span{ font-weight: 600; }
.checkout-step#stepSuccess .btn-ghost{ margin-top: 10px; justify-content: center; }

/* ==========================================================
   STICKY BUY BAR
========================================================== */
.sticky-buy-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1500;
  padding: 14px 20px; background: rgba(248,243,231,.96); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -14px 34px rgba(14,23,18,.08);
  transform: translateY(120%); transition: transform .5s var(--ease);
}
.sticky-buy-bar.show{ transform: translateY(0); }
.sticky-buy-inner{ display: flex; align-items: center; gap: 16px; width: min(100%,1240px); margin-inline: auto; }
.sticky-buy-inner img{ width: 46px; height: 46px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.sticky-buy-copy{ flex: 1; min-width: 0; }
.sticky-buy-copy h6{ font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.sticky-buy-copy span{ font-size: .82rem; color: var(--gold-deep); font-style: italic; }

/* ==========================================================
   WHY CHOOSE
========================================================== */
.why{ background: var(--paper); overflow: hidden; }
.why-image{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); border: 6px solid #fff; }
.why-list{ display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.why-item{ display: flex; gap: 20px; align-items: flex-start; }
.why-mark{
  flex-shrink: 0; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; font-size: 1.25rem; color: var(--gold-deep);
  background: rgba(182,137,63,.1); border: 1px solid rgba(182,137,63,.28);
}
.why-item h4{ font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.why-item p{ font-size: .92rem; color: var(--ink-soft); max-width: 42ch; }

/* ==========================================================
   TESTIMONIALS
========================================================== */
.testimonials{ background: var(--bottle-deep); }
.testi-card{
  position: relative; padding: 40px 32px; background: var(--bottle-soft); border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark); min-height: 240px;
}
.testi-quote{ font-family: var(--font-display); font-size: 3.4rem; font-style: italic; color: var(--gold); line-height: 1; margin-bottom: 6px; opacity: .8; }
.testi-card p{ font-size: 1rem; line-height: 1.75; color: rgba(248,243,231,.86); margin-bottom: 24px; }
.testi-author h5{ font-family: var(--font-display); font-size: 1.05rem; color: var(--paper); }
.testi-author span{ font-size: .78rem; color: var(--gold-light); letter-spacing: .04em; }
.swiper-pagination{ position: relative; margin-top: 36px; }
.swiper-pagination-bullet{ background: var(--gold-light); opacity: .35; }
.swiper-pagination-bullet-active{ opacity: 1; }

/* ==========================================================
   FAQ
========================================================== */
.faq{ background: var(--paper-dim); }
.faq-accordion{ display: flex; flex-direction: column; gap: 12px; }
.faq-item{ background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-q{
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 20px 24px; text-align: left; font-size: 1rem; font-weight: 400; color: var(--ink);
}
.faq-icon{ flex-shrink: 0; font-size: 1.2rem; color: var(--gold-deep); transition: transform .3s var(--ease); }
.faq-item.open .faq-icon{ transform: rotate(45deg); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a{ max-height: 420px; }
.faq-a p{ padding: 0 24px 22px; font-size: .92rem; color: var(--ink-soft); line-height: 1.7; }

/* ==========================================================
   CONTACT
========================================================== */
.contact{ background: var(--paper); }
.contact-info{ display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-info div{ display: flex; align-items: baseline; gap: 10px; }
.contact-info span{ font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); width: 90px; flex-shrink: 0; }
.contact-info p{ font-size: .96rem; color: var(--ink); }
.contact-form{ background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); }
.form-note{ margin-top: 14px; font-size: .84rem; color: var(--gold-deep); }

/* ==========================================================
   FOOTER
========================================================== */
.sk-footer{ background: var(--bottle-deep); padding-block: 70px 30px; border-top: 1px solid var(--gold-deep); }
.footer-top{ display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer-brand img{ width: 44px; height: 44px; border-radius: 50%; margin-bottom: 14px; border: 2px solid var(--gold); }
.footer-brand p{ font-family: var(--font-display); font-style: italic; color: rgba(248,243,231,.7); max-width: 240px; }
.footer-cols{ display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h6{ font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.footer-col a{ display: block; margin-bottom: 10px; font-size: .92rem; color: rgba(248,243,231,.72); transition: color .3s var(--ease); }
.footer-col a:hover{ color: var(--gold-light); }
.footer-bottom{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: .78rem; color: rgba(248,243,231,.5); }

.back-to-top{
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--paper); color: var(--ink); font-size: 1.2rem;
  box-shadow: var(--shadow-soft); opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.back-to-top.show{ opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ==========================================================
   FLOATING WHATSAPP
========================================================== */
.whatsapp-float{
  position: fixed; right: 24px; bottom: 100px; z-index: 998;
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: linear-gradient(145deg,#25D366,#1EBE57);
  box-shadow: 0 10px 26px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.15) inset;
  color: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float:hover{ transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 34px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.2) inset; color: #fff; }
.whatsapp-icon{ width: 30px; height: 30px; position: relative; z-index: 2; }
.whatsapp-ring{ position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,.5); animation: whatsappPulse 2.4s ease-out infinite; z-index: 1; }
@keyframes whatsappPulse{ 0%{ transform: scale(1); opacity: .7;} 70%{ transform: scale(1.9); opacity: 0;} 100%{ transform: scale(1.9); opacity: 0;} }
.whatsapp-tooltip{
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--bottle-deep); color: var(--paper); font-size: .8rem; padding: 8px 14px; border-radius: 100px;
  white-space: nowrap; opacity: 0; pointer-events: none; box-shadow: var(--shadow-soft);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.whatsapp-float:hover .whatsapp-tooltip{ opacity: 1; transform: translateY(-50%) translateX(0); }

/* ==========================================================
   ACCESSIBILITY
========================================================== */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html{ scroll-behavior: auto; }
  .whatsapp-ring{ animation: none; display: none; }
}

/*==========================================================
   RESPONSIVE
==========================================================*/
@media (min-width: 992px){
  .hero-float-bottle{ animation: none; }
}

@media (max-width: 1100px){
  section{ padding-block: 100px; }
  .benefits-grid{ grid-template-columns: repeat(2,1fr); }
  .ingredient-grid{ grid-template-columns: repeat(4,1fr); gap: 26px 16px; }
  .showcase-pin{ gap: 44px; }
  .auth-deco{ width: 300px; padding: 36px 28px; }
}

@media (max-width: 992px){
  .sk-nav-links{
    position: fixed; top: 0; right: 0; height: 100vh; width: min(78%,320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px;
    padding: 0 40px; background: var(--bottle-deep);
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 1950;
  }
  .sk-nav-links.open{ transform: translateX(0); }
  .nav-link-item{ color: rgba(248,243,231,.86) !important; font-size: 1.05rem; }
  .sk-nav-cta{ display: none; }
  .sk-burger{ display: flex; }
  .sk-burger span{ background: var(--paper) !important; }

  .showcase-pin{ flex-direction: column; text-align: center; min-height: auto; padding-block: 20px; }
  .showcase-details{ align-items: center; }
  .detail-line{ text-align: left; }
  .why-image{ margin-bottom: 40px; }
  .col-lg-6:has(.product-price){ margin-top: 40px; }

  /* Auth modal: hide deco panel on tablet */
  .auth-deco{ display: none; }
  .auth-panel{ max-width: 480px; border-radius: 24px; }
  .auth-form-panel{ padding: 40px 36px; }
}

@media (max-width: 768px){
  section{ padding-block: 80px; }
  .container{ padding-inline: 20px; }

  .hero{ min-height: 100svh; }
  .hero-content{ padding-top: 40px; }
  .hero-title{ font-size: clamp(2.3rem,9vw,3.4rem); margin-bottom: 22px; }
  .hero-float-bottle{ width: 110px; right: 5%; bottom: 4%; opacity: .9; }
  .scroll-cue{ display: none; }

  .benefits-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit-card{ padding: 28px 20px; }

  /* Ingredients: tighter spacing on mobile */
  .ingredients{ padding-block: 70px 60px; }
  .ingredients-content .row{ --bs-gutter-y: 1.5rem; }
  .ingredient-grid{ grid-template-columns: repeat(3,1fr); gap: 20px 14px; }
  .ingredient-circle{ width: 76px; height: 76px; margin-bottom: 10px; }
  .ingredient-card h5{ font-size: .92rem; }

  .about-stats{ gap: 10px; }
  .stat-item{ min-width: 96px; padding: 14px 10px; }
  .stat-item span{ font-size: 1.4rem; }

  .product-benefits{ grid-template-columns: 1fr; }
  .col-lg-6:has(.product-price){ padding: 30px 22px; }

  .checkout-panel{ padding: 34px 22px; }
  .payment-options{ grid-template-columns: 1fr; }
  .contact-form{ padding: 26px 20px; }

  .footer-top{ flex-direction: column; gap: 34px; }
  .footer-cols{ gap: 34px; }

  /* Auth modal: compact on mobile */
  .auth-panel{ width: 100%; max-height: 96dvh; border-radius: 20px 20px 0 0; align-self: flex-end; }
  .auth-modal{ align-items: flex-end; padding: 0; }
  .auth-form-panel{ padding: 32px 24px 28px; }
  .auth-headline{ font-size: 1.45rem; }
  .auth-tab{ padding: 10px 18px; font-size: .85rem; }
}

@media (max-width: 480px){
  section{ padding-block: 60px; }
  .container{ padding-inline: 16px; }
  .sk-nav-inner{ padding-inline: 18px; }
  .sk-nav-links{ width: 100%; padding: 0 28px; }

  .preloader-mark{ width: 80px; height: 80px; }
  .preloader-mark span{ font-size: 1.8rem; }

  .hero-title{ font-size: clamp(2rem,10vw,2.8rem); }
  .hero-sub{ font-size: .95rem; margin-bottom: 30px; }
  .hero-actions{ gap: 16px; }

  .benefits-grid{ grid-template-columns: 1fr; }

  /* Ingredients: minimal spacing on small phones */
  .ingredients{ padding-block: 56px 44px; }
  .ingredients-content .row{ --bs-gutter-y: 1rem; }
  .ingredient-grid{ grid-template-columns: repeat(2,1fr); gap: 16px 12px; }
  .ingredient-circle{ width: 68px; height: 68px; margin-bottom: 8px; }

  .about-stats{ flex-wrap: wrap; }
  .stat-item{ flex: 1 1 40%; }

  .video-frame{ width: min(280px,84vw); }

  .price-value{ font-size: 1.7rem; }
  .price-save{ margin-left: 0; }

  /* Product actions: qty + buy-now on same row, full width */
  .product-actions-top{ gap: 10px; }
  .product-actions-top .buy-now-main{ padding: 14px 14px; font-size: .76rem; }
  .qty-btn{ width: 30px; height: 30px; }
  .qty-value{ width: 28px; }
  .add-to-cart-btn{ width: 100%; justify-content: center; }

  .sticky-buy-inner{ gap: 10px; }
  .sticky-buy-inner img{ width: 38px; height: 38px; }
  .sticky-buy-copy h6{ font-size: .82rem; }
  .sticky-buy-copy span{ font-size: .72rem; }
  .sticky-buy-bar .btn-lux{ width: auto; flex-shrink: 0; padding: 11px 16px; font-size: .68rem; }

  .whatsapp-float{ right: 16px; bottom: 90px; width: 54px; height: 54px; }
  .whatsapp-icon{ width: 27px; height: 27px; }
  .whatsapp-tooltip{ display: none; }
  .back-to-top{ right: 16px; bottom: 16px; width: 42px; height: 42px; }

  /* Auth modal on smallest screens */
  .auth-form-panel{ padding: 28px 20px 24px; }
  .auth-headline{ font-size: 1.3rem; }
  .auth-btn{ padding: 14px 20px; font-size: .88rem; }
  .auth-leaf{ font-size: 1.2rem; }
}
