/* ═══════════════════════════════════════════
   PRO MISTLINE — PREMIUM SKINCARE
   style.css
═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Cinzel:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --maroon: #6B0F1A;
  --dark-maroon: #3A0810;
  --deep-black: #080604;
  --gold: #C8A96A;
  --gold-light: #E8D5A3;
  --gold-dark: #9A7A45;
  --gold-shimmer: #F5E6B8;
  --beige: #F5EDE6;
  --cream: #FAF7F3;
  --text: #1A1A1A;
  --text-light: #6a5a4a;
  --white: #FFFFFF;
  --border-gold: rgba(200,169,106,0.2);
  --border-gold-hover: rgba(200,169,106,0.6);
  --glass: rgba(255,255,255,0.03);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0805; }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ── */
::selection { background: var(--maroon); color: var(--gold-light); }

/* ══════════════════════════════
   PRELOADER
══════════════════════════════ */
#preloader {
  position: fixed; inset: 0;
  background: var(--deep-black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { width: 120px; opacity: 0; animation: preloaderFade 0.8s ease 0.2s forwards; }
.preloader-text {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: preloaderFade 0.8s ease 0.5s forwards;
}
.preloader-bar {
  width: 160px;
  height: 1px;
  background: rgba(200,169,106,0.2);
  position: relative;
  overflow: hidden;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: preloaderBar 1.5s ease 0.4s forwards;
}
@keyframes preloaderFade { to { opacity: 1; } }
@keyframes preloaderBar { to { left: 100%; } }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(8,6,4,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,169,106,0.15);
  transition: height 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  height: 60px;
  background: rgba(5,4,2,0.97);
  border-bottom-color: rgba(200,169,106,0.25);
}

.header-logo {
  display: flex;
  align-items: center;
  height: 56px;
  transition: height 0.3s ease;
}
.site-header.scrolled .header-logo { height: 44px; }
.header-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(200,169,106,0.3));
}

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: rgba(255,255,255,0.65);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 18px;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px; right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: #4EE880 !important;
  padding: 8px 18px !important;
  transition: var(--transition) !important;
}
.nav-wa:hover { background: rgba(37,211,102,0.18) !important; border-color: rgba(37,211,102,0.6) !important; }
.nav-wa::after { display: none !important; }
.nav-wa img { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--deep-black);
  border-left: 1px solid var(--border-gold);
  z-index: 490;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-drawer a:hover { color: var(--gold); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 480;
  display: none;
}
.drawer-overlay.open { display: block; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-black);
}

.hero-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 75% 60%, rgba(107,15,26,0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 20%, rgba(200,169,106,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 30% 40% at 50% 80%, rgba(58,8,16,0.4) 0%, transparent 50%);
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(110vh) translateX(0) scale(0); opacity: 0; }
  5% { opacity: 0.7; }
  95% { opacity: 0.2; }
  100% { transform: translateY(-10vh) translateX(60px) scale(1.5); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}

.hero-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.4s forwards;
}
.eyebrow-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.eyebrow-line.r { background: linear-gradient(to left, transparent, var(--gold)); }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 9.5vw, 116px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -1px;
  margin-bottom: 14px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.6s forwards;
}
.hero-title .italic { font-style: italic; color: var(--gold); }
.hero-title .thin { font-weight: 300; opacity: 0.85; }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 2.5vw, 26px);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 56px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s ease 1s forwards;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--deep-black);
  padding: 15px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-shimmer);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold span { position: relative; z-index: 1; }
.btn-gold:hover { box-shadow: 0 8px 30px rgba(200,169,106,0.35); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(200,169,106,0.4);
  color: rgba(255,255,255,0.7);
  padding: 15px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,169,106,0.06);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(0.8); } }
.scroll-text {
  font-size: 8.5px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
}

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

/* ══════════════════════════════
   MARQUEE
══════════════════════════════ */
.marquee-strip {
  background: var(--maroon);
  border-top: 1px solid rgba(200,169,106,0.25);
  border-bottom: 1px solid rgba(200,169,106,0.25);
  padding: 15px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-item {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 32px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 32px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-size: 8px;
  opacity: 0.6;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════
   SECTION COMMONS
══════════════════════════════ */
.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold-dark);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.05;
}
.section-title .italic { font-style: italic; color: var(--maroon); }
.section-divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 22px auto 0;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.about-visual { position: relative; }
.about-frame {
  position: relative;
  padding: 24px 24px 24px 0;
}
.about-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 60%;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.about-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.about-frame img {
  width: 100%;
  height: clamp(340px, 45vw, 560px);
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.about-stat-strip {
  position: absolute;
  bottom: 36px; right: -24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-box {
  background: var(--maroon);
  border: 1px solid rgba(200,169,106,0.25);
  padding: 18px 22px;
  text-align: center;
  min-width: 110px;
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-box .lbl {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

.about-text .section-head { text-align: left; margin-bottom: 28px; }
.about-text .section-eyebrow { justify-content: flex-start; }
.about-text .section-divider { margin: 18px 0 0; }
.about-desc { font-size: 14.5px; color: var(--text-light); line-height: 1.9; margin-bottom: 18px; }

.origin-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-gold);
  padding: 12px 20px;
  margin-bottom: 36px;
  background: rgba(200,169,106,0.04);
}
.origin-badge span {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
}
.origin-flag { font-size: 20px; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pillar {
  border: 1px solid var(--border-gold);
  padding: 20px 18px;
  background: rgba(200,169,106,0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.pillar:hover { border-color: var(--border-gold-hover); background: rgba(200,169,106,0.06); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.pillar h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 6px;
}
.pillar p { font-size: 12px; color: var(--text-light); line-height: 1.65; }

/* ══════════════════════════════
   PRODUCTS
══════════════════════════════ */
.products-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  background: var(--deep-black);
  position: relative;
}
.products-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent);
}
.products-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent);
}
.products-section .section-title { color: var(--white); }
.products-section .section-title .italic { color: var(--gold); }

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-tab {
  background: none;
  border: 1px solid rgba(200,169,106,0.2);
  color: rgba(255,255,255,0.45);
  padding: 10px 26px;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.filter-tab:hover { border-color: rgba(200,169,106,0.5); color: rgba(255,255,255,0.8); }
.filter-tab.active { border-color: var(--gold); color: var(--gold); background: rgba(200,169,106,0.08); }

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
  max-width: 1440px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: #0e0b08;
  border: 1px solid rgba(200,169,106,0.1);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(200,169,106,0.4);
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(200,169,106,0.2);
}

.product-img-box {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: linear-gradient(135deg, #100d0a 0%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-box img {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}
.product-card:hover .product-img-box img { transform: scale(1.08) translateY(-4px); }

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--maroon);
  color: var(--gold-light);
  font-family: 'Raleway', sans-serif;
  font-size: 8.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  font-weight: 600;
  border-left: 2px solid var(--gold);
}

.product-body {
  padding: 26px 24px;
  border-top: 1px solid rgba(200,169,106,0.08);
}
.product-cat {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-desc-short {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.benefit-pill {
  font-family: 'Raleway', sans-serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border: 1px solid rgba(200,169,106,0.2);
  color: rgba(200,169,106,0.7);
  text-transform: uppercase;
  transition: var(--transition);
}
.product-card:hover .benefit-pill {
  border-color: rgba(200,169,106,0.4);
  color: var(--gold);
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(200,169,106,0.08);
}
.product-size {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1px;
  font-family: 'Raleway', sans-serif;
}
.product-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(37,211,102,0.07);
  border: 1px solid rgba(37,211,102,0.25);
  color: #4EE880;
  padding: 8px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}
.product-wa-btn:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.5);
}
.product-wa-btn img { width: 14px; height: 14px; }

/* ══════════════════════════════
   PRODUCT MODAL
══════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #0e0b08;
  border: 1px solid rgba(200,169,106,0.3);
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}
.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }
.modal-img-side {
  background: linear-gradient(135deg, #100d0a, #1a1410);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  min-height: 380px;
}
.modal-img-side img { max-width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6)); }
.modal-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--maroon);
  color: var(--gold-light);
  font-size: 8.5px;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-left: 2px solid var(--gold);
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.modal-info { padding: 44px 40px; overflow-y: auto; }
.modal-cat {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 10px;
}
.modal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.modal-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.modal-divider { width: 50px; height: 1px; background: var(--gold-dark); margin-bottom: 24px; }
.modal-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.modal-features-title {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.modal-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.modal-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0;
}
.modal-size {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 1.5px;
  font-family: 'Raleway', sans-serif;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.modal-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.modal-wa:hover { background: #1ebe5d; box-shadow: 0 8px 30px rgba(37,211,102,0.3); }
.modal-wa img { width: 18px; height: 18px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: rgba(200,169,106,0.15); color: var(--gold); border-color: var(--gold-dark); }
.modal-box { position: relative; }

/* ══════════════════════════════
   BENEFITS SECTION
══════════════════════════════ */
.benefits-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  background: var(--beige);
  position: relative;
  overflow: hidden;
}
.benefits-section::before {
  content: 'PREMIUM';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 700;
  color: rgba(200,169,106,0.06);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 12px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1440px;
  margin: 0 auto;
  background: rgba(200,169,106,0.1);
}
.benefit-card {
  background: var(--beige);
  padding: clamp(36px, 4vw, 60px) clamp(20px, 3vw, 40px);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--maroon), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.benefit-card:hover { background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.benefit-card:hover::after { transform: scaleX(1); }
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: rgba(200,169,106,0.13);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.benefit-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.benefit-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}
.benefit-card p { font-size: 13px; color: var(--text-light); line-height: 1.75; }

/* ══════════════════════════════
   INGREDIENTS HIGHLIGHT
══════════════════════════════ */
.ingredients-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  background: var(--dark-maroon);
  overflow: hidden;
  position: relative;
}
.ingredients-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(200,169,106,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.ingredients-section .section-title { color: var(--white); }
.ingredients-section .section-title .italic { color: var(--gold); }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.ingredient-card {
  border: 1px solid rgba(200,169,106,0.1);
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--maroon), var(--gold));
  transform: scaleY(0);
  transition: transform 0.4s ease;
}
.ingredient-card:hover { border-color: rgba(200,169,106,0.3); background: rgba(255,255,255,0.04); }
.ingredient-card:hover::before { transform: scaleY(1); }
.ingredient-icon { font-size: 36px; margin-bottom: 18px; display: block; }
.ingredient-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.ingredient-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ══════════════════════════════
   HOW TO USE
══════════════════════════════ */
.howto-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  background: var(--cream);
}
.howto-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.howto-steps::before {
  content: '';
  position: absolute;
  top: 56px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
}
.howto-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  border: 2px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  position: relative;
  z-index: 1;
  background-clip: padding-box;
  box-shadow: 0 0 0 6px var(--cream);
  transition: var(--transition);
}
.howto-step:hover .step-circle {
  background: var(--gold);
  color: var(--dark-maroon);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--cream), 0 0 20px rgba(200,169,106,0.4);
}
.step-icon { font-size: 26px; margin-bottom: 16px; display: block; }
.howto-step h4 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
}
.howto-step p { font-size: 13px; color: var(--text-light); line-height: 1.7; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  padding: clamp(70px, 10vw, 130px) 5vw;
  background: var(--deep-black);
  overflow: hidden;
  position: relative;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 20px; left: 4vw;
  font-family: 'Cormorant Garamond', serif;
  font-size: 260px;
  color: rgba(200,169,106,0.05);
  line-height: 1;
  font-weight: 300;
  pointer-events: none;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-title .italic { color: var(--gold); }

.testimonials-track {
  display: flex;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track:active { cursor: grabbing; }

.testi-card {
  flex: 0 0 360px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(200,169,106,0.12);
  padding: 38px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  border-color: rgba(200,169,106,0.3);
  background: rgba(255,255,255,0.04);
}
.testi-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 20px;
  display: block;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17.5px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  border: 1px solid rgba(200,169,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}
.testi-loc { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section {
  padding: clamp(80px, 12vw, 140px) 5vw;
  background: var(--maroon);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-rings {
  position: absolute; inset: 0; pointer-events: none;
}
.cta-ring {
  position: absolute;
  border: 1px solid rgba(200,169,106,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-ring:nth-child(1) { width: 400px; height: 400px; }
.cta-ring:nth-child(2) { width: 600px; height: 600px; }
.cta-ring:nth-child(3) { width: 900px; height: 900px; }

.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5.5vw, 64px);
  color: var(--white);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.cta-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 15px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: var(--transition);
}
.btn-wa:hover { background: #1ebe5d; box-shadow: 0 8px 30px rgba(37,211,102,0.35); transform: translateY(-2px); }
.btn-wa img { width: 18px; height: 18px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer {
  background: var(--deep-black);
  padding: clamp(60px, 8vw, 100px) 5vw 0;
  border-top: 1px solid rgba(200,169,106,0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
  gap: clamp(32px, 5vw, 70px);
  max-width: 1440px;
  margin: 0 auto 70px;
}
.footer-brand-logo {
  width: 160px;
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,169,106,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,106,0.08); }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 26px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--gold-dark);
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a::before {
  content: '–';
  color: var(--gold-dark);
  font-size: 11px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}
.footer-contact-item a { color: var(--gold); font-size: 13px; }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
}
.footer-bottom a {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 22px;
  z-index: 400;
}
.wa-float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
}
.wa-float-btn img { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}
.wa-tooltip {
  position: absolute;
  bottom: 70px; right: 0;
  background: var(--deep-black);
  border: 1px solid rgba(37,211,102,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 8px 14px;
  white-space: nowrap;
  font-family: 'Raleway', sans-serif;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
  .about-section { grid-template-columns: 1fr; gap: 60px; }
  .about-stat-strip { right: 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .howto-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .howto-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img-side { min-height: 260px; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .howto-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-gold, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-wa { width: 100%; max-width: 280px; justify-content: center; }
  .testi-card { flex: 0 0 280px; padding: 26px; }
  .about-frame img { height: 300px; }
  .modal-info { padding: 28px 24px; }
}

@media (max-width: 380px) {
  .site-header { padding: 0 16px; }
  .hero-title { font-size: 40px; }
}
