/* ============================================================
   GOLDEN EDGE BEAUTY CREAM — MAIN STYLESHEET
   Theme : Luxury Black + Gold
   Fonts : Playfair Display (headings) · Inter (body)
   ============================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
  --gold:          #f4d11f;
  --gold-light:    #f7e050;
  --gold-dark:     #d4b100;
  --gold-grad:     linear-gradient(135deg, #d4b100 0%, #f4d11f 40%, #f7e050 60%, #f4d11f 80%, #d4b100 100%);
  --gold-grad-s:   linear-gradient(135deg, #f4d11f, #f7e050);
  --green:         #f4d11f;
  --green-light:   #f7e050;
  --bg:            #0a0a0a;
  --bg-card:       #111111;
  --bg-card-2:     #161616;
  --bg-card-3:     #1e1e1e;
  --bg-section:    #0d0d0d;
  --white:         #ffffff;
  --text:          #e8e8e8;
  --text-muted:    #999999;
  --text-dark:     #666666;
  --border-gold:   rgba(244, 209, 31, 0.2);
  --border-gold-s: rgba(244, 209, 31, 0.5);
  --border-light:  rgba(244, 209, 31, 0.15);
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-accent:   'Cormorant Garamond', Georgia, serif;
  --container:     1240px;
  --pad-section:   90px;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --radius-full:   9999px;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.5);
  --shadow-hover:  0 8px 40px rgba(0,0,0,0.7);
  --shadow-gold:   0 4px 20px rgba(244,209,31,0.25);
  --trans:         all 0.3s ease;
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: var(--trans); }
a:hover { color: var(--gold-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

p { color: var(--text); }

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── 3. Layout Utilities ─────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--pad-section) 0; }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--bg-card); }

/* ── 4. Section Title Component ─────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 16px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-eyebrow::before { right: 100%; margin-right: -12px; }
.section-eyebrow::after  { left:  100%; margin-left:  -12px; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title .gold-text {
  background: var(--gold-grad-s);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.divider-gold {
  width: 60px;
  height: 3px;
  background: var(--gold-grad-s);
  border-radius: var(--radius-full);
  margin: 20px auto 0;
}

/* ── 5. Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: var(--gold-grad-s);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(244,209,31,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f7e050, #f4d11f);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,209,31,0.5);
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(244,209,31,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-dark {
  background: var(--bg-card-3);
  color: var(--white);
  border: 1px solid var(--border-gold);
}
.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── 6. Navbar ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--trans);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Slight glow on hover */
  transition: filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 10px rgba(244,209,31,0.5));
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--trans);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-order-btn {
  background: var(--gold-grad-s);
  color: #0a0a0a !important;
  font-weight: 700;
  padding: 9px 22px;
}
.nav-order-btn::after { display: none; }
.nav-order-btn:hover {
  background: linear-gradient(135deg, #f7e050, #f4d11f);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  color: #0a0a0a !important;
}

/* Skin Quiz nav button */
.nav-quiz-btn {
  border: 1.5px solid rgba(244, 209, 31, .55);
  color: var(--gold) !important;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 6px;
}
.nav-quiz-btn::after { display: none; }
.nav-quiz-btn:hover {
  background: rgba(244, 209, 31, .12);
  border-color: var(--gold);
  transform: translateY(-1px);
  color: var(--gold) !important;
}
.mobile-quiz {
  color: var(--gold) !important;
  font-weight: 700;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.bar {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  padding: 16px 0 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.mobile-menu.open { display: block; }

.mobile-nav-links { padding: 0 24px; }
.mobile-link {
  display: block;
  color: var(--text);
  padding: 14px 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--trans);
}
.mobile-link:hover { color: var(--gold); padding-left: 8px; }
.mobile-order {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold-grad-s);
  color: #0a0a0a !important;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
}

/* ── 7. Hero Section ─────────────────────────────────────── */
.hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Gold rings canvas — behind the product image only */
#heroRingsCanvas {
  position: absolute;
  inset: -10%;            /* slightly overflow so rings feel full */
  width: 120%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  display: block;
}

/* hero-visual must be the positioning parent */
.hero-visual {
  position: relative;
}

/* Remove old pseudo-element glows — canvas handles it now */
.hero::before { display: none; }
.hero::after  { display: none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
  max-width: 40px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-title .line-normal { display: block; }
.hero-title .line-gold {
  display: block;
  background: var(--gold-grad);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 5s linear infinite;
}
@keyframes gold-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat .stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Product Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  position: relative;
}

.product-jar-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Ambient radial glow behind the product */
.product-glow-ambient {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 50% 50%, rgba(244,209,31,0.22) 0%, rgba(244,209,31,0.10) 35%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 1;
  filter: blur(18px);
}

/* Second outer glow ring */
.product-glow-ambient::after {
  content: '';
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(244,209,31,0.35) 0%, transparent 55%);
  filter: blur(6px);
}

/* Floor shadow ellipse below product */
.product-glow-floor {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 30px;
  background: radial-gradient(ellipse, rgba(244,209,31,0.6) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(12px);
  animation: floor-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes floor-pulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scaleX(1.3); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Product image — premium floating display */
.hero-product-img {
  display: block;
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: min(480px, 90%);
  max-height: min(480px, calc(100vh - 240px));
  object-fit: contain;
  filter:
    drop-shadow(0 30px 50px rgba(0,0,0,0.8))
    drop-shadow(0 0 40px rgba(244,209,31,0.1));
  animation: product-float 5s ease-in-out infinite;
  transition: filter 0.4s ease;
}
.hero-product-img:hover {
  filter:
    drop-shadow(0 36px 60px rgba(0,0,0,0.7))
    drop-shadow(0 0 55px rgba(244,209,31,0.25));
}
@keyframes product-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

/* ── Sparkles ─────────────────────────────────────────── */
.sparkle {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  color: var(--gold);
  line-height: 1;
  animation: sparkle-pop 3s ease-in-out infinite;
}
.sparkle::before {
  content: '✦';
  display: block;
}

/* Sizes */
.sparkle-1  { font-size: 11px; top: 6%;   left: 10%;  animation-duration: 2.8s; animation-delay: 0s; }
.sparkle-2  { font-size: 18px; top: 3%;   left: 48%;  animation-duration: 3.2s; animation-delay: 0.5s; }
.sparkle-3  { font-size: 9px;  top: 10%;  right: 8%;  animation-duration: 2.5s; animation-delay: 1.0s; }
.sparkle-4  { font-size: 14px; top: 38%;  right: 2%;  animation-duration: 3.6s; animation-delay: 0.3s; }
.sparkle-5  { font-size: 10px; bottom: 18%; right: 10%; animation-duration: 2.9s; animation-delay: 1.5s; }
.sparkle-6  { font-size: 13px; bottom: 22%; left: 8%;  animation-duration: 3.1s; animation-delay: 0.8s; }
.sparkle-7  { font-size: 8px;  top: 52%;  left: 3%;   animation-duration: 2.6s; animation-delay: 2.0s; }
.sparkle-8  { font-size: 22px; top: 20%;  left: 42%;  animation-duration: 3.4s; animation-delay: 1.2s;
              filter: drop-shadow(0 0 6px rgba(244,209,31,0.8)); }

@keyframes sparkle-pop {
  0%, 100% { opacity: 0;   transform: scale(0.2) rotate(0deg); }
  25%       { opacity: 1;   transform: scale(1)   rotate(20deg); }
  60%       { opacity: 0.7; transform: scale(1.1) rotate(45deg); }
  85%       { opacity: 0;   transform: scale(0.3) rotate(70deg); }
}


/* ── 8. Features Bar ─────────────────────────────────────── */
.features-bar {
  background: #1a1a1a;
  border-top: none;
  border-bottom: none;
  padding: 20px 0;
}
.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-bar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  justify-content: center;
}
.feature-bar-item:last-child { border-right: none; }
.feature-bar-item .fbi-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(244,209,31,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.fbi-text { line-height: 1.3; }
.fbi-title  { font-size: 0.85rem; font-weight: 600; color: #ffffff; }
.fbi-sub    { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

/* ── 9. Product Highlight ───────────────────────────────── */
.product-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  overflow: hidden;
}
.product-img-placeholder::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, rgba(244,209,31,0.05) 50%, transparent 100%);
  animation: spin-slow 15s linear infinite;
}
.pip-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.pip-icon {
  font-size: 5rem;
  background: var(--gold-grad-s);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.pip-tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.pip-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-top: 6px;
}
.pip-price-badge {
  display: inline-block;
  background: var(--gold-grad-s);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-top: 16px;
}
.pip-corner {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ph-badge {
  display: inline-block;
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ph-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.ph-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.ph-highlights {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ph-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.ph-check i { color: var(--gold); font-size: 0.85rem; }
.ph-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ph-price {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.ph-cod {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-card-2);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}
.ph-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 10. Before / After ─────────────────────────────────── */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.ba-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.ba-img {
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 3rem;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
}
/* Overlay label when a real image is shown */
.ba-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.55);
  color: var(--text-muted);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-align: center;
  padding: 6px 0;
  backdrop-filter: blur(2px);
  z-index: 2;
  text-transform: uppercase;
}
.ba-before-img { background: linear-gradient(145deg, #1a120a, #2a1808); }
.ba-after-img  { background: linear-gradient(145deg, #1a1510, #2c2010); position: relative; }
.ba-after-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(244,209,31,0.15), transparent);
}
.ba-label {
  background: var(--bg-card);
  padding: 16px 24px;
  text-align: center;
}
.ba-label h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.ba-label p  { font-size: 0.82rem; color: var(--text-muted); }
.ba-label-before h4 { color: var(--gold); }
.ba-label-after  h4 { color: var(--gold); }

.ba-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ba-divider-line {
  width: 1px;
  flex: 1;
  background: var(--border-gold);
}
.ba-vs {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-grad-s);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── 11. Benefits Grid ───────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}
/* Image variant — top 40% image */
.benefit-card-img-wrap {
  width: 100%;
  height: 170px;
  overflow: hidden;
  flex-shrink: 0;
}
.benefit-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--img-pos-x, 50%) var(--img-pos-y, 50%);
  display: block;
  transform: scale(var(--img-zoom, 1));
  transform-origin: var(--img-pos-x, 50%) var(--img-pos-y, 50%);
  transition: transform .5s ease;
}
.benefit-card:hover .benefit-card-img-wrap img { transform: scale(calc(var(--img-zoom, 1) * 1.05)); }
/* Body area (text 60%) */
.benefit-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Decorative art panel — shown when no image is uploaded */
.benefit-card-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(244,209,31,.13) 0%, rgba(20,16,0,.55) 100%);
  font-size: 2.6rem;
  color: rgba(244,209,31,.65);
  transition: color .3s, font-size .3s;
}
.benefit-card:hover .benefit-card-art { color: rgba(244,209,31,.9); font-size: 2.9rem; }
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold-grad-s);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.benefit-card:hover { border-color: rgba(244,209,31,0.55); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--trans);
}
.benefit-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; padding: 0; }
.benefit-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; padding: 0; }

/* ── 12. Testimonials ───────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  box-shadow: none;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); border-color: rgba(244,209,31,0.5); }

.tcard-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.tcard-text {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.tcard-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a0a0a;
  flex-shrink: 0;
}
.av-gold   { background: var(--gold-grad-s); }
.av-light  { background: linear-gradient(135deg, #f7e050, #f5e4a8); }
.av-dark   { background: linear-gradient(135deg, #d4b100, #f4d11f); }

.tcard-name   { font-size: 0.9rem;  font-weight: 700; color: var(--text); }
.tcard-loc    { font-size: 0.78rem; color: var(--text-muted); }

/* ── 13. FAQ Accordion ──────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: none;
}
.faq-item.open { border-color: var(--border-gold-s); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: var(--trans);
}
.faq-q:hover { background: var(--bg-card-2); }
.faq-q-text { font-size: 1rem; font-weight: 600; color: var(--text); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.faq-item.open .faq-icon { background: var(--gold-grad-s); color: #0a0a0a; transform: rotate(45deg); }
.faq-item.open .faq-q-text { color: var(--gold); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--bg-card-2);
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ── 14. CTA Band ───────────────────────────────────────── */
.cta-section {
  background: var(--gold-grad-s);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
}
.cta-section::before { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-section::after  { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.cta-section .container { position: relative; z-index: 2; }
.cta-eyebrow { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.6); font-weight: 600; margin-bottom: 12px; }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: #0a0a0a; margin-bottom: 16px; }
.cta-sub   { font-size: 1.05rem; color: rgba(0,0,0,0.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btn-wrap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-dark {
  background: #0a0a0a;
  color: var(--gold);
  font-weight: 700;
  border: 2px solid #0a0a0a;
}
.btn-cta-dark:hover { background: #1a1a1a; color: var(--gold-light); border-color: #1a1a1a; transform: translateY(-2px); }
.btn-cta-outline-dark {
  background: transparent;
  color: #0a0a0a;
  border: 2px solid rgba(0,0,0,0.4);
}
.btn-cta-outline-dark:hover { background: rgba(0,0,0,0.1); transform: translateY(-2px); }
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover { background: #1ebe5a; border-color: #1ebe5a; transform: translateY(-2px); }

/* ── 15. Page Hero (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #111111 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border-gold);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(244,209,31,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── 16. About Page ─────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  height: 480px;
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 4rem;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.story-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(244,209,31,0.1), transparent);
}
.story-img p { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); white-space: nowrap; z-index: 2; background: rgba(0,0,0,0.45); padding: 4px 12px; border-radius: 20px; }

.story-content .lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 24px;
}
.story-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(244,209,31,0.5); box-shadow: var(--shadow-gold); }
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  background: var(--gold-grad-s);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.team-avatar {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card-3));
  position: relative;
}
.team-avatar .avatar-initials {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-grad-s);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
}
.team-info { padding: 20px; }
.team-info h3 { font-size: 1rem; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── 17. Product Page ───────────────────────────────────── */
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.prod-gallery {
  position: sticky;
  top: 100px;
}
.prod-main-img {
  height: 460px;
  background: linear-gradient(145deg, var(--bg-card-2), var(--bg-card));
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.prod-main-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(244,209,31,0.12), transparent);
}
.prod-main-img i { font-size: 5rem; position: relative; z-index: 1; }
.prod-main-img .prod-img-tag { font-size: 1.6rem; color: var(--white); font-family: var(--font-head); z-index: 1; }
.prod-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.prod-thumb {
  height: 90px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--trans);
}
.prod-thumb:hover,
.prod-thumb.active { border-color: var(--gold); background: rgba(244,209,31,0.08); }

.prod-info-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.prod-badge {
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.prod-name { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.prod-tagline { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.prod-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.stars { color: var(--gold); font-size: 1rem; }
.rating-count { font-size: 0.85rem; color: var(--text-muted); }
.prod-price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}
.prod-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.prod-old-price { text-decoration: line-through; color: var(--text-muted); font-size: 1.1rem; margin-left: 10px; }
.prod-saving { display: block; font-size: 0.82rem; color: #4caf7d; margin-top: 4px; }
.prod-cod-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.prod-cod-note i { color: var(--gold); }

/* ── Discount Badge ─────────────────────────────────────── */
.bundle-discount-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(239,68,68,.35);
}

/* ── Free Delivery Bar ──────────────────────────────────── */
.free-deliv-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(76,175,61,.1);
  border: 1px solid rgba(76,175,61,.3);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.84rem;
  color: #a7f3d0;
}
.free-deliv-bar i { color: #4caf7d; flex-shrink: 0; }

/* ── Urgency Badges ─────────────────────────────────────── */
.urgency-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}
.urgency-fire   { background: rgba(239,68,68,.15);  color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.urgency-demand { background: rgba(251,191,36,.12); color: #fbbf24; border: 1px solid rgba(251,191,36,.25); }
.urgency-stock  { background: rgba(244,209,31,.1);  color: var(--gold); border: 1px solid var(--border-gold); }

/* ── Bundle Selector Cards ──────────────────────────────── */
.bundle-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bundle-card {
  display: block;
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(244,209,31,.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  overflow: hidden;
}
.bundle-card input[type=radio] { position: absolute; opacity: 0; width: 0; height: 0; }
.bundle-card:hover {
  border-color: rgba(244,209,31,.5);
  transform: translateY(-1px);
}
.bundle-card--active,
.bundle-card--recommended.bundle-card--active {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 2px rgba(244,209,31,.2), 0 6px 24px rgba(244,209,31,.15);
}
.bundle-card--recommended {
  border-color: rgba(244,209,31,.45);
  background: linear-gradient(135deg, rgba(244,209,31,.07) 0%, rgba(10,10,10,1) 100%);
}

.bc-badge {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--gold);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}
.bc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}
.bc-left  { display: flex; flex-direction: column; gap: 2px; }
.bc-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.bc-qty   { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.bc-price { font-size: 1.35rem; font-weight: 800; color: var(--gold); font-family: var(--font-head); }
.bc-unit  { font-size: 0.75rem; color: var(--text-muted); }
.bc-save  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.73rem; font-weight: 700; color: #4caf7d;
  background: rgba(76,175,61,.1); border: 1px solid rgba(76,175,61,.2);
  padding: 2px 8px; border-radius: 12px; margin-top: 4px;
}
.bc-save--perk { color: var(--gold); background: rgba(244,209,31,.08); border-color: rgba(244,209,31,.2); }
.bc-popular {
  font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.25);
  padding: 2px 8px; border-radius: 10px;
}
.bc-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(244,209,31,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: transparent;
  transition: all .2s;
}
.bundle-card--active .bc-check {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-full);
  overflow: hidden;
  display: inline-flex;
  margin-bottom: 20px;
}
.qty-btn {
  width: 42px; height: 42px;
  background: var(--bg-card-2);
  border: none;
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--trans);
}
.qty-btn:hover { background: rgba(244,209,31,0.15); }
.qty-val {
  width: 54px;
  text-align: center;
  background: var(--bg-card);
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-left: 1px solid var(--border-gold);
  border-right: 1px solid var(--border-gold);
  padding: 0;
  height: 42px;
}
.prod-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.ingredients-tabs { margin-top: 48px; }
.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
  margin-bottom: 32px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--trans);
}
.tab-btn.active, .tab-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ingredient-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ingr-icon { font-size: 1.5rem; flex-shrink: 0; }
.ingr-info h4 { font-size: 0.95rem; margin-bottom: 4px; }
.ingr-info p  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }

.usage-steps { display: flex; flex-direction: column; gap: 16px; }
.usage-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 20px;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-grad-s);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.step-text p  { font-size: 0.85rem; color: var(--text-muted); }

/* ── 18. Contact Page ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: none;
}
.contact-info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-info-card .ci-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.ci-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-text .ci-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.ci-text .ci-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.ci-text a { color: var(--text); }
.ci-text a:hover { color: var(--gold); }

.wa-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  border-bottom: 3px solid #1da851;
  transition: var(--trans);
}
.wa-contact-btn:hover { background: #20bc5a; transform: translateY(-2px); }

/* Contact Form */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: none;
}
.form-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.form-card .form-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-control {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--trans);
  outline: none;
}
.form-control::placeholder { color: #aaaaaa; }
.form-control:focus {
  border-color: var(--gold);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(244,209,31,0.12);
}
select.form-control { cursor: pointer; }
select.form-control option { background: var(--bg-card); color: var(--text); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }
.urdu-label { font-family: 'Noto Nastaliq Urdu', 'Jameel Noori Nastaleeq', serif; direction: rtl; font-size: 0.92em; color: var(--gold); }

/* ── 19. Order Page ─────────────────────────────────────── */
.order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.order-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: sticky;
  top: 100px;
  box-shadow: none;
}
.order-summary-card h3 { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-gold); }
.order-prod-img {
  height: 140px;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card-3));
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.order-prod-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.order-prod-sub  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
.order-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.9rem;
}
.order-price-row:last-of-type { border-bottom: 2px solid var(--gold); margin-top: 8px; }
.order-price-row .label { color: var(--text-muted); }
.order-price-row .val   { color: var(--text); font-weight: 600; }
.order-total-row .label { color: var(--text); font-weight: 700; }
.order-total-row .val   { color: var(--gold); font-size: 1.3rem; font-weight: 700; }
.order-guarantees { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.order-guarantee  { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--text-muted); }
.order-guarantee i { color: var(--gold); width: 16px; }

/* Alert Messages */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.93rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert i { margin-top: 2px; flex-shrink: 0; }
.alert-success { background: rgba(76,175,112,0.12); border: 1px solid rgba(76,175,112,0.4); color: #7ec89a; }
.alert-error   { background: rgba(244,67,54,0.1);  border: 1px solid rgba(244,67,54,0.35); color: #f08080; }
.alert-warning { background: rgba(244,209,31,0.1); border: 1px solid var(--border-gold);   color: var(--gold); }

/* ── 20. Admin Panel ────────────────────────────────────── */
.admin-body {
  background: #0d0d0d;
  min-height: 100vh;
  font-family: var(--font-body);
  /* Re-apply dark theme vars within admin scope */
  --bg:            #0a0a0a;
  --bg-card:       #111111;
  --bg-card-2:     #161616;
  --bg-card-3:     #1e1e1e;
  --bg-section:    #0f0f0f;
  --white:         #e0e0e0;
  --text:          #e0e0e0;
  --text-muted:    #999999;
  --text-dark:     #555555;
  --border-gold:   rgba(244,209,31, 0.25);
  --border-gold-s: rgba(244,209,31, 0.6);
  --border-light:  rgba(244,209,31, 0.2);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.5);
}

/* Login Page */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(244,209,31,0.08), transparent 60%), var(--bg);
}
.admin-login-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 36px;
}
.admin-login-logo .gem { font-size: 2rem; color: var(--gold); display: block; margin-bottom: 8px; }
.admin-login-logo h1  { font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.admin-login-logo p   { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; }

/* Admin Sidebar + Layout */
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.sidebar-brand {
  padding: 28px 24px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-brand i { color: var(--gold); font-size: 1.3rem; }
.sidebar-brand span { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.1rem; }
.sidebar-nav { flex: 1; padding: 20px 12px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--trans);
  margin-bottom: 4px;
}
.sidebar-link:hover, .sidebar-link.active { background: rgba(244,209,31,0.1); color: var(--gold); }
.sidebar-link i { width: 18px; text-align: center; }
.sidebar-footer { padding: 20px 12px; border-top: 1px solid var(--border-gold); }

.admin-main { flex: 1; overflow: auto; }
.admin-topbar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-gold);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-topbar h1 { font-size: 1.15rem; font-weight: 600; color: var(--white); }
.admin-content { padding: 32px; }

/* Stat Cards */
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-card .sc-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.stat-card .sc-value { font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-head); }
.stat-card .sc-icon  { float: right; font-size: 1.8rem; opacity: 0.15; margin-top: -40px; }
.sc-gold { border-top: 2px solid var(--gold); }
.sc-value-gold { color: var(--gold) !important; }

/* Orders Table */
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.table-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table-card-header h2 { font-size: 1rem; font-weight: 700; color: var(--white); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 13px 16px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--bg-card-2);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}
.admin-table tr:hover td { background: rgba(244,209,31,0.04); }
.admin-table tr:last-child td { border-bottom: none; }

.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-pending    { background: rgba(255,200,60,0.15); color: #ffc83c; }
.status-processing { background: rgba(60,130,255,0.15); color: #6fa8ff; }
.status-shipped    { background: rgba(140,80,252,0.15); color: #b380ff; }
.status-delivered  { background: rgba(76,175,80,0.15);  color: #6abf6e; }
.status-cancelled  { background: rgba(244,67,54,0.15);  color: #f08080; }

.btn-danger { background: rgba(244,67,54,0.15); color: #f08080; border: 1px solid rgba(244,67,54,0.3); }
.btn-danger:hover { background: rgba(244,67,54,0.3); color: #ff6b6b; }

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state i { font-size: 3rem; color: var(--border-gold-s); margin-bottom: 16px; display: block; }
.empty-state p { font-size: 0.95rem; }

/* ── 21. Footer ─────────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  border-top: none;
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.footer-logo-link:hover .footer-logo-img {
  filter: drop-shadow(0 0 12px rgba(244,209,31,0.4));
}
/* keep old .footer-logo rule for any fallback */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}
.footer-gem-icon {
  font-size: 1.3rem;
  background: var(--gold-grad-s);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc  { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--trans);
}
.social-btn:hover { background: rgba(244,209,31,0.15); color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.whatsapp-social:hover { background: #25D366 !important; color: #fff !important; border-color: #25D366 !important; }

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(244,209,31,0.3);
}
.footer-heading span { color: var(--gold); }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans);
}
.footer-links a::before { content: '→'; font-size: 0.7rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.55); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-cta-text    { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-order-btn   { width: 100%; justify-content: center; border-radius: var(--radius); }
.footer-cod-note    { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.footer-cod-note i  { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold-light); }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ── Policy Pages ───────────────────────────────────────── */
.policy-body { max-width: 800px; margin: 0 auto; }
.policy-body h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 10px; color: var(--text-dark, #111); }
.policy-body p  { margin-bottom: 14px; line-height: 1.75; color: #444; }
.policy-body ul { padding-left: 22px; margin-bottom: 14px; }
.policy-body ul li { margin-bottom: 6px; line-height: 1.7; color: #444; }
.policy-body a  { color: var(--gold-dark, #c9a800); text-decoration: underline; }
.policy-last-updated { font-size: .82rem; color: #888; margin-bottom: 28px; border-left: 3px solid var(--gold, #f4d11f); padding-left: 10px; }

/* ── 22. Floating Buttons Wrapper (horizontal row) ─────── */
.float-btns-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--trans);
  text-decoration: none;
  flex-shrink: 0;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  background: #20bc5a;
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}
.wa-label {
  position: absolute;
  bottom: 38px;
  right: 0;
  background: #25D366;
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--trans);
  pointer-events: none;
}
.whatsapp-float:hover .wa-label { opacity: 1; transform: translateY(0); }

/* ── 23. Chatbot Widget ─────────────────────────────────── */
.chatbot-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-grad-s);
  color: #0a0a0a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  box-shadow: 0 4px 20px rgba(244,209,31,0.4);
  transition: var(--trans);
  flex-shrink: 0;
  position: relative;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(244,209,31,0.6); }
.chatbot-toggle .chat-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #f44336;
  color: #fff;
  width: 12px; height: 12px;
  border-radius: 50%;
  font-size: 0.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-window {
  position: fixed;
  bottom: 72px;
  right: 28px;
  z-index: 998;
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-s);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1), opacity 0.25s ease;
  max-height: 540px;
}
.chatbot-window.open {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--gold-grad-s);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.chat-header-name { font-weight: 700; font-size: 0.95rem; color: #0a0a0a; }
.chat-header-status { font-size: 0.72rem; color: rgba(0,0,0,0.6); }
.chat-close-btn {
  background: rgba(0,0,0,0.15);
  border: none;
  color: #0a0a0a;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--trans);
}
.chat-close-btn:hover { background: rgba(0,0,0,0.3); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: 380px;
}
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border-gold-s); border-radius: 4px; }

.chat-msg { display: flex; gap: 8px; }
.chat-msg.user { flex-direction: row-reverse; }
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.6;
}
.chat-msg.bot .chat-bubble {
  background: #1a1a1a;
  border: 1px solid var(--border-gold);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.chat-msg.user .chat-bubble {
  background: var(--gold-grad-s);
  color: #0a0a0a;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-msg.bot .chat-bubble a { color: var(--gold); }
.chat-msg-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.bot-chat-avatar  { background: var(--gold-grad-s); color: #0a0a0a; }
.user-chat-avatar { background: #222222; color: var(--text-muted); }

.chat-suggestions {
  padding: 8px 16px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-gold);
}
.chat-suggest-btn {
  background: rgba(244,209,31,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
}
.chat-suggest-btn:hover { background: rgba(244,209,31,0.2); }

.chat-input-area {
  padding: 14px 16px;
  border-top: 1px solid var(--border-gold);
  display: flex;
  gap: 10px;
  align-items: center;
}
.chat-input {
  flex: 1;
  background: #111111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 10px 16px;
  color: var(--text);
  font-size: 0.88rem;
  outline: none;
  transition: var(--trans);
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-grad-s);
  border: none;
  color: #0a0a0a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--trans);
  flex-shrink: 0;
}
.chat-send-btn:hover { transform: scale(1.1); }

/* Typing indicator */
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 8px 12px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.4; animation: bounce 1.4s infinite; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-8px); opacity: 1; }
}

/* ── 24. Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX( 30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: translateX(0); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ── 25. Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --pad-section: 70px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 40px; }
  .footer-logo-img { height: 46px; }
  .hero-grid        { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual      { order: -1; }
  .hero-product-img { max-width: 260px; max-height: 300px; }
  .features-bar-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-bar-item:nth-child(2)  { border-right: none; }
  .feature-bar-item:nth-child(3)  { border-top: 1px solid var(--border-gold); }
  .feature-bar-item:last-child    { border-top: 1px solid var(--border-gold); }
  .product-highlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-grid      { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .prod-detail-grid { grid-template-columns: 1fr; }
  .prod-gallery    { position: static; }
  .contact-grid    { grid-template-columns: 1fr; }
  .order-grid      { grid-template-columns: 1fr; }
  .order-summary-card { position: static; order: -1; }
  .before-after-grid { grid-template-columns: 1fr; gap: 0; }
  .ba-divider { flex-direction: row; height: 40px; padding: 0 24px; }
  .ba-divider-line { width: auto; flex: 1; height: 1px; }
  .chatbot-window { width: 320px; right: 16px; }
}

@media (max-width: 640px) {
  :root { --pad-section: 52px; }
  .features-bar-grid { grid-template-columns: 1fr; }
  .feature-bar-item { border-right: none !important; border-top: 1px solid var(--border-gold); }
  .feature-bar-item:first-child { border-top: none; }
  .benefits-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr; }
  .hero-cta        { flex-direction: column; }
  .hero-stats      { gap: 24px; }
  .form-row        { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-table     { font-size: 0.8rem; }
  .chatbot-window  { width: calc(100vw - 32px); right: 16px; }
  .prod-detail-grid { gap: 32px; }
  .form-card        { padding: 28px 20px; }
  .order-summary-card { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .admin-stats-grid { grid-template-columns: 1fr; }
  .admin-wrapper { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .ingredients-grid { grid-template-columns: 1fr; }
}

/* ── 26. Announcement Bar ───────────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: #1a1a1a;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.announcement-bar-inner span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.announcement-bar-inner i {
  color: #1a1a1a;
  font-size: 0.8rem;
}
.announcement-sep {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.2);
}
@media (max-width: 640px) {
  .announcement-bar-inner { gap: 16px; }
  .announcement-sep { display: none; }
}

/* ── 27. Sale Badge / Product Card Enhancements ─────────── */
.sale-badge {
  display: inline-flex;
  align-items: center;
  background: #e53935;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f4d11f;
  font-size: 0.85rem;
}
.star-rating .rating-num {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* Section divider */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold-grad-s);
  border-radius: var(--radius-full);
  margin: 12px auto 0;
}

/* Value/benefit card light style improved */
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
  box-shadow: none;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--border-gold-s); box-shadow: var(--shadow-hover); }

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: var(--trans);
  box-shadow: none;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* ══ Product Cards (pg-*) — shared by products.php & index.php ══ */
.pg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.pg-card {
  background: linear-gradient(160deg, #232323 0%, #161616 100%);
  border: 1px solid rgba(244,209,31,.25);
  border-top: 3px solid #f4d11f;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: 0 6px 30px rgba(0,0,0,.55);
}
.pg-card:hover {
  transform: translateY(-6px);
  border-color: #f4d11f;
  box-shadow: 0 12px 40px rgba(244,209,31,.18), 0 6px 20px rgba(0,0,0,.6);
}
.pg-img-wrap {
  display: block;
  position: relative;
  background: #ffffff;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(244,209,31,.2);
}
.pg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  transition: transform .35s;
}
.pg-card:hover .pg-img { transform: scale(1.06); }
.pg-badge-featured {
  position: absolute;
  top: 10px; left: 10px;
  background: #f4d11f;
  color: #0a0a0a;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.pg-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pg-cat {
  font-size: .73rem;
  color: #f4d11f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .8;
}
.pg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
.pg-name a { color: #ffffff; text-decoration: none; transition: color .2s; }
.pg-name a:hover { color: #f4d11f; }
.pg-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pg-price-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.pg-price { font-size: 1.25rem; font-weight: 800; color: #f4d11f; letter-spacing: -.01em; }
.pg-old-price { font-size: .83rem; color: rgba(255,255,255,.35); text-decoration: line-through; }
.pg-discount-tag {
  font-size: .65rem;
  font-weight: 800;
  background: rgba(239,68,68,.2);
  color: #f87171;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: .05em;
  border: 1px solid rgba(239,68,68,.3);
}
.pg-actions { display: flex; gap: 10px; margin-top: 10px; }
.pg-btn-details {
  flex: 1;
  background: #f4d11f;
  color: #0a0a0a;
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}
.pg-btn-details:hover { background: #ffe84d; transform: scale(1.03); }
.pg-btn-order {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(244,209,31,.4);
  border-radius: 8px;
  color: #f4d11f;
  text-decoration: none;
  font-size: .95rem;
  transition: all .2s;
  flex-shrink: 0;
}
.pg-btn-order:hover { background: #f4d11f; color: #0a0a0a; border-color: #f4d11f; }
@media (max-width: 600px) {
  .pg-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
  .pg-body { padding: 14px 16px 16px; }
}

.prod-price-box {
  background: #161616;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 28px;
}

/* ══ Background Abstract Animation ══════════════════════════ */
#bgAbstract {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: bgOrbFloat 18s ease-in-out infinite;
}
.bg-orb:nth-child(1)  { width:420px;height:420px;background:radial-gradient(circle,rgba(244,209,31,.07),transparent 70%);top:-10%;left:-8%;animation-delay:0s;animation-duration:20s; }
.bg-orb:nth-child(2)  { width:300px;height:300px;background:radial-gradient(circle,rgba(244,209,31,.05),transparent 70%);top:30%;right:-5%;animation-delay:-7s;animation-duration:17s; }
.bg-orb:nth-child(3)  { width:250px;height:250px;background:radial-gradient(circle,rgba(244,209,31,.06),transparent 70%);bottom:10%;left:20%;animation-delay:-12s;animation-duration:22s; }
.bg-orb:nth-child(4)  { width:180px;height:180px;background:radial-gradient(circle,rgba(201,168,0,.08),transparent 70%);top:55%;left:50%;animation-delay:-4s;animation-duration:15s; }
.bg-orb:nth-child(5)  { width:500px;height:500px;background:radial-gradient(circle,rgba(244,209,31,.04),transparent 70%);bottom:-15%;right:-10%;animation-delay:-9s;animation-duration:25s; }
.bg-line {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(244,209,31,.12), transparent);
  animation: bgLineFade 14s ease-in-out infinite;
  opacity: 0;
}
.bg-line:nth-child(6)  { height:60vh; left:15%; top:5%;  animation-delay:0s;    animation-duration:16s; }
.bg-line:nth-child(7)  { height:40vh; left:40%; top:20%; animation-delay:-5s;   animation-duration:12s; }
.bg-line:nth-child(8)  { height:70vh; right:20%;top:0%;  animation-delay:-10s;  animation-duration:19s; }
.bg-line:nth-child(9)  { height:50vh; right:35%;bottom:0%;animation-delay:-3s;  animation-duration:14s; }
.bg-dot {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(244,209,31,.35);
  animation: bgDotDrift 25s linear infinite;
}
.bg-dot:nth-child(10) { left:10%;top:80%; animation-delay:0s;   animation-duration:28s; }
.bg-dot:nth-child(11) { left:30%;top:20%; animation-delay:-8s;  animation-duration:22s; }
.bg-dot:nth-child(12) { left:60%;top:60%; animation-delay:-15s; animation-duration:30s; }
.bg-dot:nth-child(13) { left:80%;top:40%; animation-delay:-5s;  animation-duration:20s; }
.bg-dot:nth-child(14) { left:50%;top:90%; animation-delay:-18s; animation-duration:26s; }
@keyframes bgOrbFloat {
  0%   { opacity:0; transform: translate(0,0) scale(1); }
  10%  { opacity:1; }
  50%  { transform: translate(40px,-60px) scale(1.1); }
  90%  { opacity:1; }
  100% { opacity:0; transform: translate(-20px,40px) scale(.9); }
}
@keyframes bgLineFade {
  0%,100% { opacity:0; transform: scaleY(.6); }
  30%,70% { opacity:1; transform: scaleY(1); }
}
@keyframes bgDotDrift {
  0%   { transform:translate(0,0) scale(1);   opacity:.35; }
  50%  { transform:translate(80px,-120px) scale(1.5); opacity:.6; }
  100% { transform:translate(0,0) scale(1);   opacity:.35; }
}

/* ═══════════════════════════════════════════════════════
   CART DRAWER SYSTEM
════════════════════════════════════════════════════════ */
.nav-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-light, #fff);
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.nav-cart-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -2px;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Overlay */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 3999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

/* Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 95vw;
  height: 100%;
  background: var(--bg-card, #1a1a2e);
  border-left: 1px solid var(--border-gold, rgba(201,168,0,.25));
  z-index: 4000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.45);
}
.cart-drawer--open { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-gold, rgba(201,168,0,.2));
  flex-shrink: 0;
}
.cart-drawer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}
.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted, #999);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  transition: color .2s;
}
.cart-close-btn:hover { color: var(--white, #fff); }

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.cart-items-list { padding: 0 16px; }

.cart-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted, #888);
}
.cart-empty i { font-size: 3rem; opacity: .35; margin-bottom: 14px; display: block; }
.cart-empty p { margin: 0 0 4px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.cart-item-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm, 6px);
  background: rgba(255,255,255,.05);
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: .85rem; font-weight: 600; color: var(--white, #fff); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: .8rem; color: var(--gold); margin-top: 3px; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white, #fff);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.qty-btn:hover { background: var(--gold); color: #000; }
.qty-val { font-size: .85rem; font-weight: 600; min-width: 18px; text-align: center; color: var(--white, #fff); }

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,.35);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
  transition: color .2s;
}
.cart-item-remove:hover { color: #e74c3c; }

/* Delivery section */
.cart-delivery-section {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
.cart-prov-label {
  font-size: .82rem;
  color: var(--text-muted, #999);
  margin-bottom: 6px;
  display: block;
}
.cart-prov-select { font-size: .88rem; }
.cart-delivery-note {
  font-size: .78rem;
  color: var(--gold);
  margin-top: 5px;
}

/* Footer totals */
.cart-drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border-gold, rgba(201,168,0,.2));
  flex-shrink: 0;
  background: rgba(0,0,0,.15);
}
.cart-totals { display: flex; flex-direction: column; gap: 6px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--text-muted, #999);
}
.cart-grand-total {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
}
