/* ============================================================
   EPROXE Premium Herbal Beauty — Global CSS
   Dark Luxury Theme | Organic Green | Glowing Effects
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables — Dark Theme (default) ── */
:root {
  /* Core Brand Colors */
  --black:         #0B0B0B;
  --black-soft:    #111111;
  --black-card:    #141414;
  --black-surface: #1A1A1A;
  --black-border:  #252525;
  --black-hover:   #1E1E1E;

  /* Organic Greens */
  --green-deep:    #1B4332;
  --green-mid:     #2E7D32;
  --green-bright:  #43A047;
  --green-light:   #66BB6A;
  --green-pale:    #1a2e1a;
  --green-glow:    rgba(46, 125, 50, 0.4);
  --green-glow-sm: rgba(46, 125, 50, 0.2);

  /* Accent Colors */
  --gold:          #C9A84C;
  --gold-light:    #E8C96A;
  --gold-glow:     rgba(201, 168, 76, 0.35);
  --white:         #FFFFFF;
  --white-soft:    #F5F5F0;
  --cream:         #F0EDE6;
  --red:           #E53935;
  --red-soft:      rgba(229, 57, 53, 0.2);

  /* Text Colors */
  --text-primary:   #F0EDE6;
  --text-secondary: #A8A8A0;
  --text-muted:     #606060;
  --text-dark:      #0B0B0B;

  /* UI States */
  --header-bg:     rgba(11, 11, 11, 0.85);
  --card-bg:       #141414;
  --modal-bg:      #111111;

  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-head:    'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing & Radius */
  --header-height:  76px;
  --banner-height:  44px;
  --radius-xs:      6px;
  --radius-sm:      12px;
  --radius-md:      20px;
  --radius-lg:      32px;
  --radius-xl:      48px;

  /* Shadows & Glows */
  --shadow-card:    0 8px 40px rgba(0,0,0,0.5);
  --shadow-hover:   0 20px 60px rgba(0,0,0,0.7);
  --glow-green:     0 0 20px rgba(46,125,50,0.5), 0 0 40px rgba(46,125,50,0.2);
  --glow-green-sm:  0 0 10px rgba(46,125,50,0.4);
  --glow-gold:      0 0 20px rgba(201,168,76,0.5);
  --glow-btn:       0 4px 20px rgba(46,125,50,0.45);

  /* Transitions */
  --ease:      all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: all 0.2s ease;
  --ease-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Glass */
  --glass-bg:     rgba(20, 20, 20, 0.7);
  --glass-border: rgba(46, 125, 50, 0.2);
  --glass-blur:   blur(16px);
}

/* Light Mode Variables */
body.light-mode {
  --black:         #FAFAF8;
  --black-soft:    #F5F5F0;
  --black-card:    #FFFFFF;
  --black-surface: #F0EDE6;
  --black-border:  #E0DDD8;
  --black-hover:   #F0F0EC;
  --text-primary:   #1A1A1A;
  --text-secondary: #4A4A40;
  --text-muted:     #888888;
  --header-bg:     rgba(255, 255, 255, 0.88);
  --card-bg:       #FFFFFF;
  --modal-bg:      #FAFAF8;
  --glass-bg:      rgba(255, 255, 255, 0.75);
  --glass-border:  rgba(46, 125, 50, 0.15);
  --glow-green:    0 0 20px rgba(46,125,50,0.2);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.08);
  --shadow-hover:  0 20px 60px rgba(0,0,0,0.15);
}

/* ── Base Resets ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

a { color: inherit; text-decoration: none; transition: var(--ease-fast); }
button, input, select, textarea { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Scroll Custom ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(120%); }
  to   { transform: translateX(0); }
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(46,125,50,0.4); }
  50%       { box-shadow: 0 0 30px rgba(46,125,50,0.8), 0 0 60px rgba(46,125,50,0.3); }
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(50px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes particleFloat {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(46,125,50,0.3); }
  50%       { border-color: rgba(46,125,50,0.8); }
}

/* ═══════════════════════════════════════════
   PARTICLES BACKGROUND
═══════════════════════════════════════════ */
.organic-leaf-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0.15;
}

/* ═══════════════════════════════════════════
   OFFER TICKER BANNER
═══════════════════════════════════════════ */
.top-flash-sale-banner {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--banner-height);
  background: linear-gradient(90deg, #0d1f0d, #1B4332, #0d1f0d);
  border-bottom: 1px solid rgba(46,125,50,0.4);
  display: flex; align-items: center;
  overflow: hidden; z-index: 1100;
}
.banner-track {
  display: flex; gap: 4rem; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.banner-item {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 0.6rem;
  flex-shrink: 0;
}
.banner-item i { color: var(--green-light); }
.banner-item .highlight { color: var(--gold); }
#flashSaleTimer {
  color: var(--gold); font-weight: 800;
  background: rgba(201,168,76,0.15);
  padding: 2px 8px; border-radius: 4px;
}

/* Light mode: keep banner text white (banner stays dark green) */
body.light-mode .banner-item {
  color: #ffffff;
}
body.light-mode .banner-item i {
  color: #a8e6ac;
}
body.light-mode .banner-item .highlight {
  color: var(--gold-light);
}
body.light-mode #flashSaleTimer {
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════
   STICKY HEADER
═══════════════════════════════════════════ */
.sticky-header {
  position: fixed;
  top: var(--banner-height);
  left: 0; width: 100%;
  height: var(--header-height);
  background: var(--header-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5%;
  z-index: 1000;
  transition: var(--ease);
}
.sticky-header.scrolled {
  top: 0;
  background: rgba(11,11,11,0.96);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 rgba(46,125,50,0.3);
}
body.light-mode .sticky-header.scrolled { background: rgba(255,255,255,0.98); }

.logo-container {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: 3px;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--ease);
}
.logo-container:hover { color: var(--green-light); }
.logo-text { background: linear-gradient(135deg, var(--green-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
/* Light mode: EPROXE logo text → dark green + light green */
body.light-mode .logo-text { background: linear-gradient(135deg, #1B4332, #43A047); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-image {
  height: 38px; width: 38px;
  object-fit: cover; border-radius: 50%;
  border: 2px solid var(--green-mid);
  box-shadow: var(--glow-green-sm);
}

.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-link {
  font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--text-secondary);
  position: relative; padding: 0.4rem 0;
  cursor: pointer; transition: var(--ease-fast);
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  transition: var(--ease);
  box-shadow: 0 0 8px rgba(46,125,50,0.6);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.header-btn {
  position: relative; cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.15rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
  background: var(--black-surface);
}
.header-btn:hover {
  color: var(--green-light);
  border-color: var(--green-mid);
  box-shadow: var(--glow-green-sm);
  transform: translateY(-2px);
}
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--green-mid);
  color: #fff; font-weight: 700; font-size: 0.65rem;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--black);
  animation: pulseGlow 2s infinite;
}
.user-status {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary);
  padding: 0.4rem 1.1rem;
  border: 1px solid var(--black-border);
  border-radius: 20px;
  background: var(--black-surface);
  cursor: pointer; transition: var(--ease);
}
.user-status:hover {
  background: var(--green-mid);
  color: #fff; border-color: var(--green-mid);
  box-shadow: var(--glow-btn);
}

/* Theme Toggle */
.theme-toggle-btn {
  font-size: 1rem !important;
}
.theme-selector-wrapper { position: relative; }
.theme-dropdown {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  min-width: 200px;
  display: none; z-index: 200;
  box-shadow: var(--shadow-card);
}
.theme-dropdown.open { display: block; animation: fadeUp 0.3s ease; }
.theme-dropdown-header {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 0.8rem;
}
.theme-options-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.theme-option {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.5rem 0.7rem; border-radius: var(--radius-xs);
  cursor: pointer; transition: var(--ease-fast);
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
}
.theme-option:hover, .theme-option.active {
  background: var(--black-surface);
  color: var(--text-primary);
}
.theme-color-dot {
  width: 20px; height: 20px; border-radius: 50%;
  flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.1);
}

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: var(--ease); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════ */
#app { display: flex; flex-direction: column; min-height: 100vh; }
main { margin-top: calc(var(--header-height) + var(--banner-height)); flex-grow: 1; }

.view-section { display: none; }
.view-section.active { display: block; animation: fadeUp 0.6s ease forwards; }

/* ── Utility Classes ── */
.section-tag {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--green-light);
  display: inline-block; margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem; line-height: 1.7;
  max-width: 600px;
}

/* ── Buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  box-shadow: var(--glow-btn);
  display: inline-flex; align-items: center; gap: 0.7rem;
  border: 1px solid rgba(46,125,50,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  transform: translateY(-3px);
  box-shadow: var(--glow-green);
}
.btn-secondary {
  border: 1px solid var(--black-border);
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--black-surface);
}
.btn-secondary:hover {
  border-color: var(--green-mid);
  color: var(--green-light);
  box-shadow: var(--glow-green-sm);
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  box-shadow: var(--glow-gold);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 0 30px var(--gold-glow); }
.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  display: inline-flex; align-items: center; gap: 0.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.btn-buy-now {
  background: linear-gradient(135deg, var(--red), #b71c1c);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(229,57,53,0.4); }
.btn-add-cart-card {
  width: 40px; height: 40px;
  background: var(--green-mid);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: var(--ease);
  flex-shrink: 0;
  box-shadow: var(--glow-green-sm);
}
.btn-add-cart-card:hover { background: var(--green-bright); transform: scale(1.1) rotate(90deg); box-shadow: var(--glow-green); }

/* ═══════════════════════════════════════════
   HOME — HERO SECTION
═══════════════════════════════════════════ */
.hero-container {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(27,67,50,0.6) 0%, var(--black) 70%);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(46,125,50,0.08) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-line {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,125,50,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,50,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  padding: 0 5%; max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46,125,50,0.15);
  border: 1px solid rgba(46,125,50,0.4);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--green-light);
  margin-bottom: 1.5rem;
  animation: heroBadgeIn 0.6s ease 0.3s both;
  box-shadow: 0 0 20px rgba(46,125,50,0.2);
}
.hero-badge i { font-size: 0.7rem; animation: rotateSlow 4s linear infinite; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  animation: heroTextIn 0.8s ease 0.5s both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic; font-weight: 600;
}
/* Light mode: 'Crafted for You.' → dark green + light green */
body.light-mode .hero-title .highlight {
  background: linear-gradient(135deg, #1B4332, #43A047);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 520px;
  animation: heroTextIn 0.8s ease 0.7s both;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap;
  animation: heroTextIn 0.8s ease 0.9s both;
}
.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  animation: heroTextIn 0.8s ease 1.1s both;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  background: linear-gradient(135deg, var(--green-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 0.3rem;
}

/* Hero Carousel (right side) */
.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-carousel {
  width: 100%; height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 40%);
}
.hero-carousel-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: var(--ease);
}
.hero-dot.active {
  width: 24px; border-radius: 4px;
  background: var(--green-light);
  box-shadow: 0 0 10px rgba(102,187,106,0.6);
}

/* ═══════════════════════════════════════════
   LOGO MARQUEE
═══════════════════════════════════════════ */
.logo-loop-section {
  padding: 2.5rem 0;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  overflow: hidden;
}
.logo-loop-label {
  text-align: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1rem;
}
.logo-loop-container { overflow: hidden; }
.logo-loop-track {
  display: flex; gap: 4rem; width: max-content;
  animation: marqueeScroll 25s linear infinite;
}
.logo-loop-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  transition: var(--ease-fast);
}
.logo-loop-item:hover { color: var(--green-light); }
.logo-loop-item i { color: var(--green-mid); }

/* ═══════════════════════════════════════════
   TRUST BADGES
═══════════════════════════════════════════ */
.trust-section {
  padding: 4rem 5%;
  background: var(--black-surface);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1000px; margin: 0 auto;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.8rem; padding: 1.8rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  text-align: center; transition: var(--ease);
}
.trust-item:hover {
  border-color: var(--green-mid);
  box-shadow: var(--glow-green-sm);
  transform: translateY(-4px);
}
.trust-icon {
  font-size: 1.8rem; color: var(--green-light);
}
.trust-label {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   INTERACTIVE SHOWCASE SECTION
═══════════════════════════════════════════ */
.showcase-container-section {
  padding: 6rem 5%;
  background: var(--black);
}
.showcase-header { text-align: center; margin-bottom: 4rem; }
.showcase-subtitle-desc { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.8rem; }
.showcase-grid-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.showcase-left-col { position: relative; }
.carousel-viewport {
  position: relative; height: 500px; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-card);
  background: var(--black-soft);
}
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-img { width: 100%; height: 100%; object-fit: cover; }
.slide-badge {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(11,11,11,0.8);
  border: 1px solid var(--green-mid);
  color: var(--green-light);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  backdrop-filter: blur(8px);
}
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,11,11,0.8);
  border: 1px solid var(--black-border);
  color: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease); z-index: 5;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover { border-color: var(--green-mid); color: var(--green-light); box-shadow: var(--glow-green-sm); }
.carousel-arrow.prev { left: 1rem; }
.carousel-arrow.next { right: 1rem; }
.carousel-dots-wrapper { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.2rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--black-border); cursor: pointer; transition: var(--ease); }
.carousel-dot.active { width: 24px; border-radius: 4px; background: var(--green-mid); box-shadow: var(--glow-green-sm); }

.showcase-right-col {}
.roots-story-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem; height: 100%;
}
.story-card-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--black-border);
  color: var(--green-light); font-size: 1.2rem;
}
.story-card-header h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); }
.story-items-list { display: flex; flex-direction: column; gap: 0; }
.story-item {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1.2rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--ease);
  border: 1px solid transparent;
}
.story-item.active {
  background: var(--green-pale);
  border-color: rgba(46,125,50,0.3);
  box-shadow: inset 0 0 20px rgba(46,125,50,0.05);
}
.story-item:hover { background: var(--black-surface); }
.story-icon-box {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(46,125,50,0.15);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 1rem;
}
.story-body h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
.story-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.showcase-thumbnails-container { margin-top: 3rem; }
.showcase-thumbnails-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.showcase-thumb {
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; transition: var(--ease);
  border: 2px solid var(--black-border);
  position: relative;
}
.showcase-thumb.active { border-color: var(--green-mid); box-shadow: var(--glow-green-sm); }
.showcase-thumb:hover { border-color: rgba(46,125,50,0.5); }
.thumb-img-wrapper { height: 120px; overflow: hidden; background: var(--black-soft); }
.thumb-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.showcase-thumb:hover .thumb-img-wrapper img { transform: scale(1.05); }
.thumb-number {
  padding: 0.4rem 0.6rem; font-size: 0.72rem; font-weight: 700;
  text-align: center; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-muted); background: var(--black-card);
}

/* ═══════════════════════════════════════════
   MODEL SHOWCASE SECTION
═══════════════════════════════════════════ */
.model-showcase-section {
  padding: 6rem 5%;
  background: var(--black-soft);
}
.model-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.model-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--black-border);
  transition: var(--ease);
  cursor: pointer;
}
.model-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: rgba(46,125,50,0.4); }
.model-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.model-card:hover img { transform: scale(1.04); }
.model-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.95), transparent);
  padding: 2rem 1.2rem 1.2rem;
  transform: translateY(20px); opacity: 0; transition: var(--ease);
}
.model-card:hover .model-card-overlay { transform: translateY(0); opacity: 1; }
.model-product-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 0.3rem;
}
.model-product-name {
  font-family: var(--font-display);
  font-size: 1.2rem; color: var(--text-primary);
  margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════════
   VALUES / EPROXE STANDARD
═══════════════════════════════════════════ */
.values-section {
  padding: 6rem 5%; text-align: center;
  background: var(--black);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.value-card {
  padding: 2.5rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md); text-align: center;
  transition: var(--ease); position: relative; overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-mid), transparent);
  opacity: 0; transition: var(--ease);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(46,125,50,0.4);
  box-shadow: var(--glow-green-sm);
}
.value-card:hover::before { opacity: 1; }
.value-icon { font-size: 2rem; color: var(--green-light); margin-bottom: 1.2rem; }
.value-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.value-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   FEATURED PRODUCTS (HOME)
═══════════════════════════════════════════ */
.featured-section {
  padding: 6rem 5%;
  background: var(--black-surface);
}
.featured-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.featured-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ═══════════════════════════════════════════
   BEST SELLERS (HOME)
═══════════════════════════════════════════ */
.bestsellers-section {
  padding: 6rem 5%; background: var(--black);
}
.bestseller-row {
  display: flex; gap: 1.5rem; overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.bestseller-row::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════
   YOUTUBE SECTION
═══════════════════════════════════════════ */
.youtube-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--black-soft), var(--black));
  text-align: center;
}
.youtube-embed-wrapper {
  position: relative; width: 100%; max-width: 860px; margin: 2.5rem auto 0;
  padding-bottom: 45%; /* aspect ratio */
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--black-border);
  box-shadow: var(--shadow-card), 0 0 60px rgba(255,0,0,0.1);
}
.youtube-embed-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.youtube-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 2rem;
  background: #FF0000; color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer; transition: var(--ease);
  box-shadow: 0 4px 20px rgba(255,0,0,0.3);
}
.youtube-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(255,0,0,0.5); }

/* ═══════════════════════════════════════════
   INSTAGRAM SECTION
═══════════════════════════════════════════ */
.instagram-section {
  padding: 6rem 5%; background: var(--black-surface);
}
.instagram-header { text-align: center; margin-bottom: 2.5rem; }
.instagram-handle {
  color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem;
}
.instagram-handle a { color: var(--green-light); }
.instagram-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0.4rem; max-width: 900px; margin: 0 auto;
}
.insta-post {
  aspect-ratio: 1;
  background: var(--black-card);
  border-radius: var(--radius-xs); overflow: hidden;
  position: relative; cursor: pointer; transition: var(--ease);
}
.insta-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-post:hover img { transform: scale(1.1); }
.insta-post-overlay {
  position: absolute; inset: 0;
  background: rgba(46,125,50,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--ease);
  color: #fff; font-size: 1.3rem;
}
.insta-post:hover .insta-post-overlay { opacity: 1; }
.insta-follow-btn {
  display: block; text-align: center; margin: 2rem auto 0;
  width: fit-content;
}

/* ═══════════════════════════════════════════
   NEWSLETTER SECTION
═══════════════════════════════════════════ */
.newsletter-section {
  padding: 6rem 5%;
  background: linear-gradient(135deg, var(--green-deep), #0d1f0d);
  text-align: center;
  position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(46,125,50,0.15) 0%, transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 50%);
}
.newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.newsletter-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.newsletter-title { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: #fff; margin-bottom: 0.8rem; }
.newsletter-desc { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.newsletter-input {
  flex: 1; padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 0.9rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  padding: 1rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1.5px;
  cursor: pointer; transition: var(--ease); white-space: nowrap;
}
.newsletter-btn:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════
   REVIEWS PREVIEW (HOME)
═══════════════════════════════════════════ */
.reviews-preview-section {
  padding: 6rem 5%; background: var(--black);
}
.reviews-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-preview-card {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-md); padding: 2rem;
  transition: var(--ease);
}
.review-preview-card:hover { border-color: rgba(46,125,50,0.3); transform: translateY(-4px); box-shadow: var(--glow-green-sm); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }
.review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-mid); }
.review-name { font-weight: 700; font-size: 0.85rem; color: var(--text-primary); }
.review-product { font-size: 0.75rem; color: var(--green-light); }

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; cursor: pointer; z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--ease);
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.12); background: #20ba5a; }
.whatsapp-fab-tooltip {
  position: absolute; left: 70px;
  background: var(--black-card); color: var(--text-primary);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
  padding: 0.4rem 0.8rem; border-radius: var(--radius-xs);
  border: 1px solid var(--black-border);
  opacity: 0; pointer-events: none; transition: var(--ease-fast);
}
.whatsapp-fab:hover .whatsapp-fab-tooltip { opacity: 1; }

/* ═══════════════════════════════════════════
   SHOP PAGE
═══════════════════════════════════════════ */
.shop-hero {
  padding: 4rem 5% 2.5rem;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  text-align: center;
  border-bottom: 1px solid var(--black-border);
}
.shop-filters-row {
  position: sticky; top: calc(var(--header-height) + var(--banner-height));
  z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%; gap: 1rem; flex-wrap: wrap;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
}
body.light-mode .shop-filters-row { background: rgba(255,255,255,0.95); }
.category-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.category-tab {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  cursor: pointer; transition: var(--ease-fast);
}
.category-tab:hover { color: var(--green-light); border-color: rgba(46,125,50,0.3); }
.category-tab.active {
  background: var(--green-mid); color: #fff;
  border-color: var(--green-mid);
  box-shadow: var(--glow-green-sm);
}
.sort-select-wrapper select {
  padding: 0.45rem 2.2rem 0.45rem 0.9rem;
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  background: var(--black-surface);
  color: var(--text-primary);
  font-size: 0.82rem; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2366BB6A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
}

.product-grid-section { padding: 3rem 5% 6rem; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Product Card */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; transition: var(--ease);
  display: flex; flex-direction: column;
  animation: floatCard 6s ease-in-out infinite;
}
.product-card:nth-child(2) { animation-delay: -1.5s; }
.product-card:nth-child(3) { animation-delay: -3s; }
.product-card:nth-child(4) { animation-delay: -4.5s; }
.product-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(46,125,50,0.5);
  box-shadow: var(--shadow-hover), var(--glow-green-sm);
  animation: none;
}
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: var(--green-deep);
  border: 1px solid rgba(46,125,50,0.5);
  color: var(--green-light);
  font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.product-wishlist-btn {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(11,11,11,0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--black-border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease-fast); font-size: 0.85rem;
}
.product-wishlist-btn:hover, .product-wishlist-btn.active {
  color: #e91e63; border-color: #e91e63;
  box-shadow: 0 0 10px rgba(233,30,99,0.3);
}
.product-img-container {
  position: relative; height: 280px;
  background: var(--black-soft); overflow: hidden; cursor: pointer;
}
.product-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-container img { transform: scale(1.05); }
.product-overlay-actions {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; display: flex; justify-content: center; gap: 0.6rem;
  background: linear-gradient(to top, rgba(11,11,11,0.8), transparent);
  transform: translateY(100%); transition: var(--ease);
}
.product-card:hover .product-overlay-actions { transform: translateY(0); }
.quick-view-btn {
  background: rgba(20,20,20,0.9); backdrop-filter: blur(8px);
  border: 1px solid var(--black-border);
  color: var(--text-primary); font-size: 0.78rem; font-weight: 600;
  padding: 0.5rem 1rem; border-radius: var(--radius-xs);
  cursor: pointer; transition: var(--ease-fast);
  display: flex; align-items: center; gap: 0.4rem;
}
.quick-view-btn:hover { border-color: var(--green-mid); color: var(--green-light); }
.product-info { padding: 1.2rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 0.3rem; cursor: pointer;
}
.product-title:hover { color: var(--green-light); }
.product-tag { font-size: 0.7rem; color: var(--green-light); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.6rem; }
.product-rating { display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.6rem; }
.product-rating .stars { color: var(--gold); font-size: 0.75rem; }
.product-rating span { font-size: 0.72rem; color: var(--text-muted); }
.product-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--black-border); }
.product-price { display: flex; flex-direction: column; }
.price-mrp { font-size: 0.73rem; color: var(--text-muted); }
.price-mrp del { color: var(--text-muted); }
.price-offer { font-size: 1.2rem; font-weight: 800; color: var(--text-primary); }
.price-discount { font-size: 0.7rem; font-weight: 700; color: var(--green-light); background: rgba(46,125,50,0.15); padding: 2px 5px; border-radius: 4px; }
.product-urgency-cue { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.6rem; }
.pulsing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulseGlow 1.5s infinite; flex-shrink: 0; }
.urgency-text { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; }
.locked-pricing-badge { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.product-price.blurred { filter: blur(6px); pointer-events: none; }

/* ═══════════════════════════════════════════
   PRODUCT QUICKVIEW MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  display: none; align-items: center; justify-content: center;
  z-index: 2000; padding: 2rem;
  backdrop-filter: blur(8px);
}
.modal-overlay.open { display: flex; animation: fadeIn 0.3s ease; }
.modal-container {
  background: var(--modal-bg);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  max-width: 900px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  scrollbar-width: thin; scrollbar-color: var(--green-mid) var(--black-soft);
}
.modal-close-btn {
  position: sticky; top: 1rem; float: right; margin: 1rem 1rem 0 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black-surface); border: 1px solid var(--black-border);
  color: var(--text-secondary); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease-fast); z-index: 5;
}
.modal-close-btn:hover { color: var(--text-primary); border-color: var(--green-mid); }
.quickview-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.quickview-img-box {
  height: 480px; background: var(--black-soft);
  overflow: hidden; border-radius: var(--radius-lg) 0 0 0;
  position: relative;
}
.quickview-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; cursor: zoom-in; }
.quickview-img-box:hover img { transform: scale(1.08); }
.quickview-info-box { padding: 2.5rem; }
.quickview-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green-light); }
.quickview-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-primary); margin: 0.5rem 0 0.8rem; }
.quickview-price { margin-bottom: 1.2rem; }
.quickview-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.quickview-description { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.quickview-meta-info { margin-bottom: 1.5rem; }
.meta-item { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.6rem; border-bottom: 1px solid var(--black-border); padding-bottom: 0.6rem; }
.meta-item strong { color: var(--green-light); font-weight: 700; }
.quickview-actions { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.quantity-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--black-border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--black-surface); color: var(--text-primary); font-size: 1rem; transition: var(--ease-fast); }
.qty-btn:hover { background: var(--green-mid); color: #fff; }
.qty-input { width: 40px; text-align: center; background: transparent; color: var(--text-primary); font-weight: 700; }

/* Apothecary Profile */
.apothecary-profile-divider { height: 1px; background: var(--black-border); margin: 0 2rem; }
.apothecary-profile-wrapper { padding: 2rem 2.5rem 2.5rem; }
.apothecary-profile-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.apothecary-profile-header h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.apothecary-verified-badge { margin-left: auto; font-size: 0.72rem; font-weight: 700; background: rgba(46,125,50,0.15); border: 1px solid rgba(46,125,50,0.4); color: var(--green-light); padding: 0.25rem 0.7rem; border-radius: 20px; display: flex; align-items: center; gap: 0.3rem; }
.apothecary-profile-grid { display: grid; grid-template-columns: auto 1fr; gap: 2rem; }
.apothecary-profile-timeline { display: flex; flex-direction: column; gap: 1rem; }
.profile-milestone { display: flex; align-items: center; gap: 0.8rem; }
.milestone-icon-box { width: 38px; height: 38px; border-radius: var(--radius-xs); background: rgba(46,125,50,0.12); border: 1px solid rgba(46,125,50,0.3); display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 0.9rem; flex-shrink: 0; }
.milestone-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.milestone-val { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.apothecary-tabs-nav { display: flex; gap: 0.3rem; margin-bottom: 1rem; flex-wrap: wrap; }
.apothecary-tab-btn { padding: 0.4rem 0.9rem; border-radius: var(--radius-xs); font-size: 0.75rem; font-weight: 600; color: var(--text-muted); background: var(--black-surface); border: 1px solid var(--black-border); cursor: pointer; transition: var(--ease-fast); display: flex; align-items: center; gap: 0.4rem; }
.apothecary-tab-btn.active { background: rgba(46,125,50,0.15); border-color: var(--green-mid); color: var(--green-light); }
.apothecary-tab-pane { display: none; }
.apothecary-tab-pane.active { display: block; }
.apothecary-tab-pane p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.apothecary-tab-body { background: var(--black-surface); border-radius: var(--radius-sm); padding: 1.2rem; border: 1px solid var(--black-border); min-height: 80px; }
.transparency-check-grid { display: flex; flex-direction: column; gap: 0.4rem; }
.transparency-check-grid li { font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.transparency-check-grid li i { color: var(--green-light); font-size: 0.8rem; }

/* ═══════════════════════════════════════════
   RECENTLY VIEWED
═══════════════════════════════════════════ */
#recentlyViewedSection { padding: 3rem 5%; border-top: 1px solid var(--black-border); }
#recentlyViewedGrid { display: flex; gap: 1rem; flex-wrap: wrap; }
.rv-card {
  display: flex; align-items: center; gap: 0.9rem;
  background: var(--black-card); border: 1px solid var(--black-border);
  border-radius: var(--radius-sm); padding: 0.8rem 1rem;
  min-width: 200px; max-width: 250px; cursor: pointer;
  transition: var(--ease); position: relative; overflow: hidden;
}
.rv-card:hover { border-color: var(--green-mid); box-shadow: var(--glow-green-sm); transform: translateY(-3px); }
.rv-badge { position: absolute; top: 0; left: 0; background: var(--green-mid); color: #fff; font-size: 0.55rem; font-weight: 800; padding: 2px 6px; border-radius: 0 0 6px 0; letter-spacing: 1px; text-transform: uppercase; }
.rv-img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--radius-xs); border: 1px solid var(--black-border); flex-shrink: 0; margin-top: 4px; }
.rv-name { font-weight: 700; font-size: 0.8rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.rv-price { font-size: 0.85rem; font-weight: 800; color: var(--red); }

/* ═══════════════════════════════════════════
   CART DRAWER
═══════════════════════════════════════════ */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); z-index: 1500;
  display: none;
  backdrop-filter: blur(4px);
}
.cart-drawer-overlay.open { display: block; animation: fadeIn 0.3s ease; }
.cart-drawer {
  position: fixed; top: 0; right: -440px; bottom: 0;
  width: 440px; background: var(--modal-bg);
  border-left: 1px solid var(--black-border);
  display: flex; flex-direction: column;
  transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 1501;
}
.cart-drawer-overlay.open .cart-drawer { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--black-border);
}
.cart-header h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); }
.cart-close-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black-surface); border: 1px solid var(--black-border);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease-fast); font-size: 0.9rem;
}
.cart-close-btn:hover { border-color: var(--green-mid); color: var(--green-light); }
.cart-items-wrapper { flex-grow: 1; overflow-y: auto; padding: 1.2rem 1.8rem; scrollbar-width: thin; }
.cart-empty-message { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; text-align: center; gap: 1rem; padding: 2rem; }
.cart-empty-message i { font-size: 3rem; color: var(--black-border); }
.cart-empty-message h4 { font-family: var(--font-head); color: var(--text-secondary); }
.cart-empty-message p { color: var(--text-muted); font-size: 0.85rem; }
.cart-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--black-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img { width: 70px; height: 70px; border-radius: var(--radius-xs); overflow: hidden; flex-shrink: 0; border: 1px solid var(--black-border); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.2rem; }
.cart-item-price { font-size: 0.85rem; font-weight: 800; color: var(--green-light); margin-bottom: 0.6rem; }
.cart-item-actions { display: flex; align-items: center; gap: 0.8rem; }
.cart-qty-selector { display: flex; align-items: center; gap: 0; border: 1px solid var(--black-border); border-radius: var(--radius-xs); overflow: hidden; }
.cart-qty-btn { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--black-surface); color: var(--text-primary); font-size: 0.9rem; transition: var(--ease-fast); }
.cart-qty-btn:hover { background: var(--green-mid); color: #fff; }
.cart-qty-val { width: 32px; text-align: center; font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.cart-item-remove { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: var(--ease-fast); text-decoration: underline; }
.cart-item-remove:hover { color: var(--red); }

/* Coupon Input */
.cart-coupon-section { padding: 1rem 1.8rem; border-top: 1px solid var(--black-border); }
.coupon-input-row { display: flex; gap: 0; border: 1px solid var(--black-border); border-radius: var(--radius-xs); overflow: hidden; }
.coupon-input { flex: 1; padding: 0.6rem 0.9rem; background: var(--black-surface); color: var(--text-primary); font-size: 0.85rem; }
.coupon-input::placeholder { color: var(--text-muted); }
.coupon-apply-btn { padding: 0.6rem 1rem; background: var(--green-mid); color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--ease-fast); }
.coupon-apply-btn:hover { background: var(--green-bright); }
.coupon-success { font-size: 0.78rem; color: var(--green-light); margin-top: 0.4rem; display: flex; align-items: center; gap: 0.3rem; }

.cart-summary { padding: 1rem 1.8rem; background: var(--black-soft); border-top: 1px solid var(--black-border); }
.cart-summary-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-secondary); }
.cart-summary-total { font-weight: 800; font-size: 1rem; color: var(--text-primary); border-top: 1px solid var(--black-border); padding-top: 0.5rem; margin-top: 0.5rem; }

/* ═══════════════════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════════════════ */
.checkout-modal-container {
  background: var(--modal-bg);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  max-width: 880px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  position: relative;
}
.checkout-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--black-border);
  position: sticky; top: 0; background: var(--modal-bg); z-index: 5;
}
.checkout-header h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--text-primary); }
.checkout-close { width: 34px; height: 34px; border-radius: 50%; background: var(--black-surface); border: 1px solid var(--black-border); color: var(--text-muted); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--ease-fast); }
.checkout-close:hover { border-color: var(--green-mid); color: var(--green-light); }
.checkout-steps-bar { display: flex; align-items: center; justify-content: center; gap: 0; padding: 1.5rem 2rem; border-bottom: 1px solid var(--black-border); }
.checkout-step-indicator { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; flex: 1; max-width: 160px; position: relative; }
.checkout-step-indicator:not(:last-child)::after { content: ''; position: absolute; top: 16px; left: calc(50% + 20px); right: calc(-50% + 20px); height: 1px; background: var(--black-border); }
.checkout-step-indicator.completed:not(:last-child)::after { background: var(--green-mid); }
.step-number { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; background: var(--black-surface); border: 1px solid var(--black-border); color: var(--text-muted); transition: var(--ease); }
.checkout-step-indicator.active .step-number { background: var(--green-mid); border-color: var(--green-mid); color: #fff; box-shadow: var(--glow-green-sm); }
.checkout-step-indicator.completed .step-number { background: var(--green-deep); border-color: var(--green-mid); color: var(--green-light); }
.step-label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); text-align: center; }
.checkout-step-indicator.active .step-label { color: var(--green-light); }
.checkout-body { padding: 2rem; }
.checkout-step-content { display: none; }
.checkout-step-content.active { display: block; animation: fadeUp 0.3s ease; }
.checkout-split-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; }
.checkout-summary-side { background: var(--black-surface); border: 1px solid var(--black-border); border-radius: var(--radius-md); padding: 1.5rem; }
.checkout-footer-buttons { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 2rem; border-top: 1px solid var(--black-border); gap: 1rem; }

/* Payment */
.payment-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 2rem; }
.payment-method-card { padding: 1rem; background: var(--black-surface); border: 1px solid var(--black-border); border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; cursor: pointer; transition: var(--ease); font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }
.payment-method-card i { font-size: 1.5rem; }
.payment-method-card:hover { border-color: var(--green-mid); color: var(--green-light); }
.payment-method-card.active { border-color: var(--green-mid); background: rgba(46,125,50,0.1); color: var(--green-light); box-shadow: var(--glow-green-sm); }
.payment-content-block { display: none; }
.payment-content-block.active { display: block; animation: fadeUp 0.3s ease; }

/* Credit Card Visual */
.credit-card-panel { display: flex; gap: 2rem; align-items: flex-start; }
.cc-visual-container { width: 280px; flex-shrink: 0; perspective: 1000px; }
.cc-visual { width: 100%; aspect-ratio: 1.586; position: relative; transform-style: preserve-3d; transition: transform 0.6s; border-radius: 16px; }
.cc-visual.flipped { transform: rotateY(180deg); }
.cc-front, .cc-back {
  position: absolute; inset: 0; border-radius: 16px;
  backface-visibility: hidden; padding: 1.4rem;
  background: linear-gradient(135deg, var(--green-deep), #0a1f0a);
  border: 1px solid rgba(46,125,50,0.4);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; justify-content: space-between;
}
.cc-back { transform: rotateY(180deg); }
.cc-chip { width: 40px; height: 30px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 6px; }
.cc-logo { font-family: var(--font-head); font-weight: 800; font-size: 0.9rem; letter-spacing: 2px; color: var(--text-primary); }
.cc-visual-number { font-family: monospace; font-size: 1.05rem; letter-spacing: 3px; color: var(--text-primary); margin: 0.5rem 0; }
.cc-meta-row { display: flex; justify-content: space-between; font-size: 0.7rem; }
.cc-label { color: var(--text-muted); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.cc-strip { height: 40px; background: rgba(0,0,0,0.5); margin: 0 -1.4rem; }
.cc-signature-row { display: flex; align-items: center; gap: 1rem; }
.cc-signature-box { flex: 1; height: 30px; background: repeating-linear-gradient(45deg, #eee, #eee 3px, #fff 3px, #fff 6px); border-radius: 4px; }
.cc-visual-cvv { font-family: monospace; font-size: 0.9rem; letter-spacing: 3px; color: var(--black); background: #fff; padding: 0.2rem 0.5rem; border-radius: 4px; }

/* UPI */
.upi-qr-wrapper { text-align: center; padding: 2rem; }
.upi-qr-wrapper h4 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.upi-qr-code { display: flex; align-items: center; justify-content: center; width: 160px; height: 160px; background: var(--black-surface); border: 1px solid var(--black-border); border-radius: var(--radius-md); margin: 1.5rem auto; }
.upi-timer { font-size: 0.85rem; color: var(--gold); font-weight: 700; background: rgba(201,168,76,0.1); padding: 0.3rem 0.8rem; border-radius: 20px; display: inline-block; margin-bottom: 0.8rem; }

/* Order Success */
.success-screen { text-align: center; padding: 3rem 2rem; }
.success-icon-wrapper { font-size: 4rem; color: var(--green-light); animation: glowPulse 2s infinite; }
.success-order-id { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--green-light); background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.3); padding: 0.5rem 1.5rem; border-radius: var(--radius-sm); display: inline-block; margin: 0.8rem 0; }

/* GPS button */
.gps-location-btn-wrapper { margin-bottom: 1.5rem; }
.btn-gps { background: rgba(46,125,50,0.12); border: 1px dashed rgba(46,125,50,0.4); color: var(--green-light); padding: 0.6rem 1.2rem; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--ease); }
.btn-gps:hover { background: rgba(46,125,50,0.2); }
.gps-loader { font-size: 0.8rem; color: var(--text-muted); display: none; align-items: center; gap: 0.5rem; margin-left: 1rem; }
.gps-loader i { animation: rotateSlow 1s linear infinite; }

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-full { grid-column: span 2; display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.form-input {
  padding: 0.75rem 1rem;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 0.9rem;
  transition: var(--ease-fast);
}
.form-input:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,125,50,0.15); }
.form-input::placeholder { color: var(--text-muted); }
.form-input option { background: var(--black-card); }
.form-textarea {
  padding: 0.75rem 1rem;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  color: var(--text-primary); font-size: 0.9rem;
  resize: vertical; min-height: 100px;
  transition: var(--ease-fast);
}
.form-textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,125,50,0.15); }
.form-textarea::placeholder { color: var(--text-muted); }

/* ═══════════════════════════════════════════
   AUTH MODAL
═══════════════════════════════════════════ */
.auth-gateway-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88); z-index: 3000;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  backdrop-filter: blur(12px);
}
.auth-gateway-card {
  background: var(--modal-bg);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 440px;
  overflow: hidden; animation: fadeUp 0.4s ease;
  box-shadow: var(--shadow-hover);
}
.auth-gateway-header {
  text-align: center; padding: 2rem 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(27,67,50,0.4), transparent);
  border-bottom: 1px solid var(--black-border);
}
.auth-brand-logo { font-family: var(--font-head); font-size: 2rem; font-weight: 800; letter-spacing: 4px; background: linear-gradient(135deg, var(--green-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-brand-tagline { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.3rem; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--black-border); }
.auth-tab { flex: 1; padding: 1rem; text-align: center; cursor: pointer; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); transition: var(--ease-fast); border-bottom: 2px solid transparent; }
.auth-tab.active { color: var(--green-light); border-bottom-color: var(--green-mid); }
.auth-body { padding: 2rem; }
.auth-form-view { display: none; }
.auth-form-view.active { display: block; animation: fadeUp 0.3s ease; }
.auth-error-msg { background: var(--red-soft); border: 1px solid var(--red); border-radius: var(--radius-xs); padding: 0.6rem 1rem; font-size: 0.82rem; color: var(--red); margin-bottom: 1rem; display: none; }
.auth-guest-mode { text-align: center; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--black-border); }
.auth-guest-link { font-size: 0.82rem; color: var(--text-muted); cursor: pointer; text-decoration: underline; }
.auth-guest-link:hover { color: var(--green-light); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-hero-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.about-hero-img { background: var(--black-soft); overflow: hidden; }
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-hero-img:hover img { transform: scale(1.03); }
.about-hero-content { padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; background: var(--black-surface); }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.about-stat { text-align: center; }
.about-stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, var(--green-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.about-stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }
.about-ingredients-section { padding: 6rem 5%; background: var(--black); }
.about-ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.ingredient-card { padding: 2.5rem 1.5rem; background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); text-align: center; transition: var(--ease); }
.ingredient-card:hover { border-color: rgba(46,125,50,0.4); transform: translateY(-6px); box-shadow: var(--glow-green-sm); }
.ingredient-icon-wrapper { width: 56px; height: 56px; border-radius: 50%; background: rgba(46,125,50,0.12); border: 1px solid rgba(46,125,50,0.3); display: flex; align-items: center; justify-content: center; color: var(--green-light); font-size: 1.3rem; margin: 0 auto 1.2rem; }
.ingredient-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.ingredient-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.eco-calculator-section { padding: 6rem 5%; background: var(--black-soft); }
.eco-calculator-card { max-width: 700px; margin: 0 auto; background: linear-gradient(135deg, var(--green-deep), #0a1f0a); border: 1px solid rgba(46,125,50,0.3); border-radius: var(--radius-lg); padding: 3.5rem; text-align: center; }
.eco-calc-title { font-family: var(--font-display); font-size: 2rem; color: #fff; margin-bottom: 0.5rem; }
.eco-calc-slider-group { margin-bottom: 2rem; }
.eco-calc-slider-label { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 0.8rem; }
.eco-calc-slider { width: 100%; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; cursor: pointer; appearance: none; }
.eco-calc-slider::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; }
.eco-calc-results { display: flex; gap: 2rem; justify-content: center; }
.eco-result-item { background: rgba(0,0,0,0.3); border-radius: var(--radius-sm); padding: 1.2rem 1.8rem; border: 1px solid rgba(255,255,255,0.1); }
.eco-result-val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.eco-result-label { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; display: block; }

/* ═══════════════════════════════════════════
   REVIEWS PAGE
═══════════════════════════════════════════ */
.reviews-dashboard { padding: 5rem 5% 3rem; text-align: center; }
.reviews-summary-card { display: grid; grid-template-columns: auto 1fr; gap: 3rem; max-width: 700px; margin: 2rem auto 0; background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-lg); padding: 2.5rem; }
.aggregate-score { text-align: center; }
.big-rating { font-family: var(--font-display); font-size: 5rem; font-weight: 700; background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }
.stars-row { color: var(--gold); font-size: 1.1rem; margin: 0.3rem 0; display: flex; justify-content: center; gap: 0.2rem; }
.review-count-text { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; }
.rating-breakdown { display: flex; flex-direction: column; gap: 0.6rem; justify-content: center; }
.rating-row { display: flex; align-items: center; gap: 0.8rem; font-size: 0.82rem; }
.rating-bar-track { flex: 1; height: 6px; background: var(--black-surface); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 3px; }
.reviews-grid-section { padding: 3rem 5%; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); padding: 2rem; transition: var(--ease); }
.review-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: 0 0 20px rgba(201,168,76,0.1); }
.review-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review-card-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-mid); }
.reviewer-name { font-family: var(--font-head); font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
.reviewer-product { font-size: 0.72rem; color: var(--green-light); }
.review-card-stars { color: var(--gold); font-size: 0.8rem; }
.review-card-title { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.review-card-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.review-card-date { font-size: 0.72rem; color: var(--text-muted); margin-top: 1rem; }
.write-review-section { padding: 4rem 5%; background: var(--black-soft); }
.write-review-card { max-width: 700px; margin: 0 auto; background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-lg); padding: 3rem; }
.star-rating-selector { display: flex; gap: 0.5rem; justify-content: center; margin: 0.8rem 0 1.5rem; }
.star-select { font-size: 2rem; color: var(--black-border); cursor: pointer; transition: color 0.15s ease; }
.star-select.selected, .star-select.hovered { color: var(--gold); }

/* ═══════════════════════════════════════════
   SUPPORT/CONTACT PAGE
═══════════════════════════════════════════ */
.support-hero-section { padding: 5rem 5% 2rem; text-align: center; background: var(--black-soft); }
.faq-section { padding: 4rem 5%; background: var(--black); }
.faq-accordion { max-width: 800px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--ease); }
.faq-item.open { border-color: rgba(46,125,50,0.3); }
.faq-header { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.5rem; cursor: pointer; user-select: none; }
.faq-header h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.faq-icon { color: var(--text-muted); transition: transform 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--green-light); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-content { padding: 0 1.5rem 1.3rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.contact-section { padding: 4rem 5%; background: var(--black-soft); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.contact-info-panel { background: linear-gradient(135deg, var(--green-deep), #0a1f0a); border-radius: var(--radius-lg); padding: 3rem; }
.contact-info-panel h3 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; margin-bottom: 0.8rem; }
.contact-info-panel p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.contact-info-item i { color: var(--green-light); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-socials { display: flex; gap: 1rem; }
.social-circle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; transition: var(--ease); }
.social-circle:hover { background: rgba(255,255,255,0.1); color: #fff; }
.contact-form-panel { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-lg); padding: 3rem; }

/* ═══════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════ */
.blog-hero { padding: 5rem 5% 3rem; text-align: center; background: var(--black-soft); }
.blog-categories { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0 0; }
.blog-cat-btn { padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); background: var(--black-surface); border: 1px solid var(--black-border); cursor: pointer; transition: var(--ease-fast); }
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }
.blog-grid-section { padding: 4rem 5%; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--ease); cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(46,125,50,0.4); box-shadow: var(--shadow-hover); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; }
.blog-cat-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--green-light); margin-bottom: 0.6rem; }
.blog-card-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); }
.blog-read-time { display: flex; align-items: center; gap: 0.3rem; }

/* ═══════════════════════════════════════════
   OFFERS PAGE
═══════════════════════════════════════════ */
.offers-hero { padding: 5rem 5% 3rem; text-align: center; background: linear-gradient(135deg, #0d1f0d, var(--black)); }
.offers-countdown { display: inline-flex; align-items: center; gap: 0; background: rgba(0,0,0,0.4); border: 1px solid rgba(46,125,50,0.3); border-radius: var(--radius-sm); padding: 0.8rem 1.5rem; margin-bottom: 1.5rem; }
.countdown-unit { text-align: center; padding: 0 1.2rem; }
.countdown-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.countdown-label { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.countdown-sep { font-size: 2rem; color: var(--green-mid); align-self: flex-start; padding-top: 0.3rem; }
.offers-grid-section { padding: 4rem 5%; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offer-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md); padding: 2rem;
  text-align: center; transition: var(--ease); position: relative; overflow: hidden;
}
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-mid), var(--gold)); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(46,125,50,0.4); }
.offer-badge-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; }
.offer-title { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--text-primary); margin-bottom: 0.4rem; }
.offer-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.offer-discount-val { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--green-light); margin-bottom: 0.8rem; display: block; }
.offer-expiry { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.8rem; }
.coupon-code-section { padding: 4rem 5%; background: var(--black-soft); }
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.coupon-card { background: var(--black-card); border: 1px dashed var(--black-border); border-radius: var(--radius-md); padding: 1.5rem; transition: var(--ease); cursor: pointer; }
.coupon-card:hover { border-color: var(--green-mid); box-shadow: var(--glow-green-sm); }
.coupon-code { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; letter-spacing: 3px; color: var(--green-light); background: rgba(46,125,50,0.1); border: 1px solid rgba(46,125,50,0.3); padding: 0.5rem 1rem; border-radius: var(--radius-xs); display: inline-block; margin-bottom: 0.6rem; }
.coupon-desc { font-size: 0.82rem; color: var(--text-muted); }
.coupon-copy-hint { font-size: 0.7rem; color: var(--green-light); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.3rem; }

/* ═══════════════════════════════════════════
   ADMIN DASHBOARD
═══════════════════════════════════════════ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--header-height) - var(--banner-height)); }
.admin-sidebar {
  background: var(--black-soft);
  border-right: 1px solid var(--black-border);
  padding: 2rem 0;
  position: sticky; top: calc(var(--header-height) + var(--banner-height));
  height: calc(100vh - var(--header-height) - var(--banner-height));
  overflow-y: auto;
}
.admin-brand { padding: 0 1.5rem 2rem; border-bottom: 1px solid var(--black-border); margin-bottom: 1rem; }
.admin-brand-name { font-family: var(--font-head); font-size: 0.9rem; font-weight: 800; letter-spacing: 2px; color: var(--green-light); }
.admin-brand-sub { font-size: 0.7rem; color: var(--text-muted); }
.admin-nav-item {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: var(--ease-fast);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: var(--black-surface); color: var(--text-primary); }
.admin-nav-item.active { color: var(--green-light); background: rgba(46,125,50,0.08); border-left-color: var(--green-mid); }
.admin-nav-item i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-content { padding: 2.5rem; background: var(--black); }
.admin-page { display: none; }
.admin-page.active { display: block; animation: fadeUp 0.3s ease; }
.admin-page-title { font-family: var(--font-display); font-size: 2rem; color: var(--text-primary); margin-bottom: 2rem; display: flex; align-items: center; gap: 0.8rem; }
.admin-page-title i { color: var(--green-light); font-size: 1.5rem; }

/* Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.stat-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; transition: var(--ease); }
.stat-card:hover { border-color: rgba(46,125,50,0.3); box-shadow: var(--glow-green-sm); }
.stat-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.stat-icon.green { background: rgba(46,125,50,0.15); color: var(--green-light); }
.stat-icon.gold { background: rgba(201,168,76,0.15); color: var(--gold); }
.stat-icon.red { background: rgba(229,57,53,0.15); color: var(--red); }
.stat-icon.blue { background: rgba(33,150,243,0.15); color: #64B5F6; }
.stat-val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-change { font-size: 0.72rem; color: var(--green-light); display: flex; align-items: center; gap: 0.3rem; }

/* Admin Tables */
.admin-table-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); overflow: hidden; }
.admin-table-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--black-border); }
.admin-table-title { font-family: var(--font-head); font-weight: 700; color: var(--text-primary); font-size: 0.95rem; }
table { width: 100%; border-collapse: collapse; }
th { background: var(--black-surface); text-align: left; padding: 0.8rem 1rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); border-bottom: 1px solid var(--black-border); }
td { padding: 0.9rem 1rem; font-size: 0.85rem; color: var(--text-secondary); border-bottom: 1px solid var(--black-border); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--black-surface); }
.status-badge { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 0.25rem 0.6rem; border-radius: 20px; }
.status-badge.delivered { background: rgba(46,125,50,0.15); color: var(--green-light); }
.status-badge.processing { background: rgba(201,168,76,0.15); color: var(--gold); }
.status-badge.pending { background: rgba(33,150,243,0.15); color: #64B5F6; }
.status-badge.cancelled { background: rgba(229,57,53,0.15); color: var(--red); }
.status-badge.return_requested { background: rgba(255, 152, 0, 0.15); color: #FFB74D; }
.status-badge.returned { background: rgba(229, 57, 53, 0.15); color: #EF5350; }
.admin-action-btn { background: var(--black-surface); border: 1px solid var(--black-border); color: var(--text-muted); padding: 0.25rem 0.7rem; border-radius: var(--radius-xs); font-size: 0.72rem; cursor: pointer; transition: var(--ease-fast); margin: 0 0.2rem; }
.admin-action-btn:hover { border-color: var(--green-mid); color: var(--green-light); }
.admin-action-btn.danger:hover { border-color: var(--red); color: var(--red); }

/* Admin Forms */
.admin-form-card { background: var(--black-card); border: 1px solid var(--black-border); border-radius: var(--radius-md); padding: 2rem; margin-bottom: 2rem; }
.admin-form-title { font-family: var(--font-head); font-weight: 700; color: var(--text-primary); font-size: 1rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.admin-form-title i { color: var(--green-light); }
.seller-upload-box { border: 2px dashed var(--black-border); border-radius: var(--radius-sm); padding: 2rem; text-align: center; cursor: pointer; transition: var(--ease); }
.seller-upload-box:hover { border-color: var(--green-mid); background: rgba(46,125,50,0.05); }
.seller-upload-box i { font-size: 2rem; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.seller-upload-box p { font-size: 0.85rem; color: var(--text-muted); }
.seller-upload-box input { display: none; }
.image-preview-wrapper { margin-top: 1rem; text-align: center; }
.image-preview-wrapper img { max-height: 200px; border-radius: var(--radius-sm); border: 1px solid var(--black-border); }
.remove-preview-btn { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; color: var(--red); cursor: pointer; margin-top: 0.5rem; }

/* Published Products List */
.published-products-list { display: flex; flex-direction: column; gap: 0.8rem; }
.seller-product-item { display: flex; align-items: center; gap: 1.2rem; background: var(--black-surface); border: 1px solid var(--black-border); border-radius: var(--radius-sm); padding: 0.9rem 1.2rem; transition: var(--ease); }
.seller-product-item:hover { border-color: rgba(46,125,50,0.3); }
.seller-product-img { width: 50px; height: 50px; border-radius: var(--radius-xs); object-fit: cover; border: 1px solid var(--black-border); flex-shrink: 0; }
.seller-product-info { flex: 1; }
.seller-product-name { font-weight: 700; font-size: 0.88rem; color: var(--text-primary); }
.seller-product-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.seller-product-actions { display: flex; gap: 0.5rem; }

/* ═══════════════════════════════════════════
   FLOATING WIDGETS
═══════════════════════════════════════════ */
.support-widget-btn {
  position: fixed; bottom: 6rem; right: 2rem;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--black-card); border: 1px solid var(--black-border);
  color: var(--text-secondary); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 900; transition: var(--ease);
  box-shadow: var(--shadow-card);
}
.support-widget-btn:hover { border-color: var(--green-mid); color: var(--green-light); box-shadow: var(--glow-green-sm); transform: scale(1.08); }
.support-widget-panel {
  position: fixed; bottom: 10rem; right: 2rem;
  width: 340px; background: var(--black-card);
  border: 1px solid var(--black-border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  display: none; z-index: 901; animation: fadeUp 0.3s ease;
}
.support-widget-panel.open { display: block; }
.support-widget-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.2rem; border-bottom: 1px solid var(--black-border); }
.support-widget-header h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.support-widget-tabs { display: flex; border-bottom: 1px solid var(--black-border); }
.support-widget-tab { flex: 1; padding: 0.6rem 0.5rem; font-size: 0.72rem; font-weight: 600; text-align: center; cursor: pointer; color: var(--text-muted); border-bottom: 2px solid transparent; transition: var(--ease-fast); }
.support-widget-tab.active { color: var(--green-light); border-bottom-color: var(--green-mid); }
.support-widget-body { padding: 1.2rem; max-height: 360px; overflow-y: auto; }
.support-widget-content { display: none; }
.support-widget-content.active { display: block; }
.tracker-search-box { display: flex; gap: 0; border: 1px solid var(--black-border); border-radius: var(--radius-xs); overflow: hidden; margin-bottom: 1rem; }
.tracker-search-box input { flex: 1; padding: 0.6rem 0.9rem; background: var(--black-surface); color: var(--text-primary); font-size: 0.82rem; }
.btn-track { padding: 0.6rem 0.9rem; background: var(--green-mid); color: #fff; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--ease-fast); }
.btn-track:hover { background: var(--green-bright); }
.tracker-result-panel { display: none; }
.tracker-result-panel.visible { display: block; }
.tracking-timeline { display: flex; flex-direction: column; gap: 0.6rem; }
.timeline-step { display: flex; gap: 0.8rem; align-items: flex-start; padding: 0.6rem; border-radius: var(--radius-xs); }
.timeline-step.done { background: rgba(46,125,50,0.08); }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--black-border); margin-top: 5px; flex-shrink: 0; }
.timeline-step.done .timeline-dot { background: var(--green-mid); box-shadow: 0 0 8px rgba(46,125,50,0.5); }
.timeline-text h4 { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }
.timeline-text p { font-size: 0.72rem; color: var(--text-muted); }
.tickets-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ticket-item { background: var(--black-surface); border: 1px solid var(--black-border); border-radius: var(--radius-xs); padding: 0.7rem; }
.ticket-subject { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.ticket-status { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 2px 6px; border-radius: 10px; margin: 0.3rem 0; }
.ticket-status.resolved { background: rgba(46,125,50,0.15); color: var(--green-light); }
.ticket-status.open { background: rgba(201,168,76,0.15); color: var(--gold); }
.ticket-reply { font-size: 0.78rem; color: var(--text-muted); border-top: 1px solid var(--black-border); margin-top: 0.5rem; padding-top: 0.5rem; }
.admin-control-bar { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 1.2rem; border-top: 1px solid var(--black-border); font-size: 0.75rem; color: var(--text-muted); }
.btn-toggle-admin { font-weight: 700; color: var(--green-light); cursor: pointer; background: rgba(46,125,50,0.12); border: 1px solid rgba(46,125,50,0.3); padding: 0.25rem 0.7rem; border-radius: var(--radius-xs); font-size: 0.72rem; transition: var(--ease-fast); }
.admin-dashboard-panel { display: none; }
.admin-dashboard-panel.active { display: block; }
.admin-orders-list, .admin-tickets-list { display: flex; flex-direction: column; gap: 0.5rem; }
.admin-section-block { margin-bottom: 1.2rem; }
.admin-section-block h4 { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.6rem; pointer-events: none; }
.toast {
  background: var(--black-card); border: 1px solid var(--black-border);
  border-left: 4px solid var(--green-mid);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem; color: var(--text-primary);
  display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-card);
  animation: slideInRight 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  min-width: 280px;
  max-width: 380px;
}
.toast i { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  padding: 5rem 5% 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--black-border); }
.footer-col {}
.footer-col p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; max-width: 300px; }
.footer-col h3 { font-family: var(--font-head); font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-secondary); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li { font-size: 0.85rem; color: var(--text-muted); cursor: pointer; transition: var(--ease-fast); }
.footer-col ul li:hover { color: var(--green-light); padding-left: 4px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--black-border);
  color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease);
}
.footer-social a:hover { border-color: var(--green-mid); color: var(--green-light); box-shadow: var(--glow-green-sm); transform: translateY(-2px); }
.newsletter-box { margin-top: 1.5rem; }
.newsletter-box p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.newsletter-row { display: flex; border: 1px solid var(--black-border); border-radius: var(--radius-xs); overflow: hidden; }
.newsletter-row input { flex: 1; padding: 0.6rem 0.9rem; background: var(--black-surface); color: var(--text-primary); font-size: 0.82rem; }
.newsletter-row input::placeholder { color: var(--text-muted); }
.btn-newsletter { padding: 0.6rem 1rem; background: var(--green-mid); color: #fff; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: var(--ease-fast); white-space: nowrap; }
.btn-newsletter:hover { background: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; font-size: 0.78rem; color: var(--text-muted); flex-wrap: wrap; gap: 1rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--green-light); }

/* ═══════════════════════════════════════════
   THEME — THEME SELECTOR DROPDOWN VARIANTS
═══════════════════════════════════════════ */
body[data-theme="terracotta"] {
  --green-mid: #8B4513;
  --green-light: #CD853F;
  --green-deep: #5D2E0C;
  --green-pale: #2e1a0d;
  --glow-green: 0 0 20px rgba(139,69,19,0.5), 0 0 40px rgba(139,69,19,0.2);
  --glow-green-sm: 0 0 10px rgba(139,69,19,0.4);
  --glow-btn: 0 4px 20px rgba(139,69,19,0.45);
}
body[data-theme="ocean"] {
  --green-mid: #1565C0;
  --green-light: #42A5F5;
  --green-deep: #0D47A1;
  --green-pale: #0a1528;
  --glow-green: 0 0 20px rgba(21,101,192,0.5);
  --glow-green-sm: 0 0 10px rgba(21,101,192,0.4);
  --glow-btn: 0 4px 20px rgba(21,101,192,0.45);
}
body[data-theme="lavender"] {
  --green-mid: #6A1B9A;
  --green-light: #AB47BC;
  --green-deep: #4A148C;
  --green-pale: #1a0d22;
  --glow-green: 0 0 20px rgba(106,27,154,0.5);
  --glow-green-sm: 0 0 10px rgba(106,27,154,0.4);
  --glow-btn: 0 4px 20px rgba(106,27,154,0.45);
}

/* ═══════════════════════════════════════════
   LEAF SHADOW / DECORATIVE
═══════════════════════════════════════════ */
.leaf-shadow-overlay { pointer-events: none; display: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 200px 1fr; }
}

@media (max-width: 800px) {
  :root { --header-height: 64px; --banner-height: 36px; }
  .sticky-header { padding: 0 4%; }
  .nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(11,11,11,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 999; }
  .nav-menu.open { display: flex; animation: fadeIn 0.3s ease; }
  .nav-link { font-size: 1.2rem; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(2.5rem, 8vw, 4rem); }
  .hero-stats { gap: 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-preview-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .coupon-grid { grid-template-columns: 1fr; }
  .about-hero-section { grid-template-columns: 1fr; }
  .about-ingredients-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .checkout-split-layout { grid-template-columns: 1fr; }
  .quickview-layout { grid-template-columns: 1fr; }
  .quickview-img-box { height: 260px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .apothecary-profile-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cart-drawer { width: 100%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-thumbnails-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-carousel-dots { bottom: 1rem; }
  .newsletter-section { padding: 4rem 5%; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .checkout-steps-bar { gap: 0; }
  .checkout-step-indicator:not(:last-child)::after { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-summary-card { grid-template-columns: 1fr; }
  .credit-card-panel { flex-direction: column; }
  .cc-visual-container { width: 100%; }
}

/* ═══════════════════════════════════════════
   AI BEAUTY CONSULTANT CHATBOT
═══════════════════════════════════════════ */
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes chatBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-6px); opacity: 1; }
}
@keyframes chatFabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,125,50,0.7); }
  70%  { box-shadow: 0 0 0 18px rgba(46,125,50,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,125,50,0); }
}
@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Chat FAB Button */
.chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 6px 28px rgba(46,125,50,0.55);
  animation: chatFabPulse 2.5s infinite;
  transition: var(--ease);
  border: 2px solid rgba(102,187,106,0.3);
}
.chat-fab:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 40px rgba(46,125,50,0.75);
}
.chat-fab i {
  font-size: 1.35rem;
  color: #fff;
  transition: var(--ease);
}
.chat-fab:hover i { transform: scale(1.15); }

.chat-fab-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--red);
  color: #fff; font-weight: 800; font-size: 0.65rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--black);
}
.chat-fab-badge.hidden { display: none; }

.chat-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-primary);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  box-shadow: var(--shadow-card);
}
.chat-fab:hover .chat-fab-label { opacity: 1; }

/* Chat Overlay */
.chat-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  z-index: 901;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.chat-overlay.active { opacity: 1; pointer-events: all; }

/* Chat Widget Box */
.chat-widget {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 360px;
  max-height: 560px;
  background: var(--black-card);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(46,125,50,0.1);
  z-index: 902;
  opacity: 0; pointer-events: none;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.chat-widget.open {
  opacity: 1; pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, var(--green-deep), #0d2214);
  border-bottom: 1px solid rgba(46,125,50,0.25);
  flex-shrink: 0;
}
.chat-header-left { display: flex; align-items: center; gap: 0.85rem; }

.chat-bot-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff;
  box-shadow: 0 0 12px rgba(46,125,50,0.5);
  animation: chatBounce 3s ease-in-out infinite;
  flex-shrink: 0;
}

.chat-bot-name {
  font-family: var(--font-head);
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-primary);
}
.chat-bot-status {
  font-size: 0.7rem; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.4rem;
  margin-top: 0.1rem;
}
.chat-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 6px rgba(102,187,106,0.8);
  animation: glowPulse 1.8s ease-in-out infinite;
}

.chat-close-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease-fast);
  font-size: 0.9rem; border: none;
}
.chat-close-btn:hover { background: rgba(229,57,53,0.25); color: #E53935; }

/* Chat Body (messages area) */
.chat-body {
  flex: 1; overflow-y: auto;
  padding: 1rem;
  display: flex; flex-direction: column;
  gap: 0.8rem;
  background: var(--black-soft);
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--black-border); border-radius: 2px; }

/* Messages */
.chat-msg {
  display: flex; align-items: flex-end; gap: 0.5rem;
  animation: msgFadeIn 0.35s ease forwards;
  max-width: 88%;
}
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; flex-direction: row-reverse; }

.chat-msg-avatar {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff; flex-shrink: 0;
}

.chat-bubble {
  padding: 0.65rem 0.9rem;
  border-radius: 18px;
  font-size: 0.84rem; line-height: 1.55;
  max-width: 100%;
}
.chat-msg.bot .chat-bubble {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.chat-msg.user .chat-bubble {
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

/* Product recommendation card inside chat */
.chat-product-card {
  background: var(--black-surface);
  border: 1px solid rgba(46,125,50,0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: var(--ease);
}
.chat-product-card:hover { border-color: var(--green-light); transform: translateY(-2px); }
.chat-product-name { font-weight: 700; font-size: 0.82rem; color: var(--green-light); }
.chat-product-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }
.chat-product-price {
  font-size: 0.85rem; font-weight: 800;
  color: var(--text-primary); margin-top: 0.4rem;
}
.chat-shop-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--green-deep), var(--green-mid));
  color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.8rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: var(--ease);
}
.chat-shop-btn:hover { background: var(--green-bright); }

/* Typing Indicator */
.chat-typing {
  display: flex; align-items: center; gap: 0.5rem;
  align-self: flex-start;
  animation: msgFadeIn 0.3s ease;
}
.chat-typing-bubble {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 18px; border-bottom-left-radius: 4px;
  padding: 0.7rem 1rem;
  display: flex; gap: 5px; align-items: center;
}
.typing-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-light);
}
.typing-dot:nth-child(1) { animation: typingDot 1.2s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation: typingDot 1.2s ease-in-out 0.2s infinite; }
.typing-dot:nth-child(3) { animation: typingDot 1.2s ease-in-out 0.4s infinite; }

/* Quick Replies */
.chat-quick-wrap {
  padding: 0.6rem 1rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  min-height: 0;
  flex-shrink: 0;
}
.chat-quick-wrap:empty { display: none; }
.chat-quick-chip {
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(46,125,50,0.4);
  background: rgba(46,125,50,0.08);
  color: var(--green-light);
  border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  cursor: pointer; transition: var(--ease-fast);
  white-space: nowrap;
}
.chat-quick-chip:hover {
  background: var(--green-mid);
  color: #fff; border-color: var(--green-mid);
  transform: translateY(-1px);
}

/* Chat Footer / Input */
.chat-footer {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  flex-shrink: 0;
}
.chat-text-input {
  flex: 1;
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: 24px;
  padding: 0.55rem 1rem;
  color: var(--text-primary);
  font-size: 0.83rem;
  transition: var(--ease-fast);
}
.chat-text-input::placeholder { color: var(--text-muted); }
.chat-text-input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}
.chat-send-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: #fff; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(46,125,50,0.4);
}
.chat-send-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(46,125,50,0.6); }

/* Responsive */
@media (max-width: 480px) {
  .chat-widget {
    bottom: 0; right: 0;
    width: 100%; max-height: 90vh;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .chat-fab { bottom: 1.5rem; right: 1.5rem; }
}

/* ═══════════════════════════════════════════
   ADMIN MEDIA GALLERY & LIBRARY
   ═══════════════════════════════════════════ */
.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
}

.media-item-card {
  background: var(--black-surface);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease-normal), border-color var(--ease-normal), box-shadow var(--ease-normal);
  position: relative;
}

.media-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.media-item-preview {
  position: relative;
  width: 100%;
  height: 130px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--black-border);
  overflow: hidden;
}

.media-item-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-normal);
}

.media-item-card:hover .media-item-preview img {
  transform: scale(1.05);
}

.media-item-info {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}

.media-item-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.media-item-meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.media-item-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.8rem 0.8rem;
  margin-top: auto;
}

.media-btn {
  flex: 1;
  padding: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: none;
  transition: var(--ease);
}

.media-btn.copy {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: var(--green-light);
}

.media-btn.copy:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
  box-shadow: var(--glow-green-sm);
}

.media-btn.delete {
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  color: var(--error);
  max-width: 38px;
}

.media-btn.delete:hover {
  background: var(--error);
  color: #fff;
  border-color: var(--error);
}

