/* ============================================================
   C55 India — style.css
   Light premium: white bg, maroon + gold accents
   Font: Poppins (all weights)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/* ---------- CSS Variables ---------- */
:root {
  --bg:         #ffffff;
  --bg2:        #f8f4ff;
  --bg3:        #f0ebf8;
  --card:       #ffffff;
  --border:     rgba(123,26,46,0.12);
  --maroon:     #7b1a2e;
  --maroon2:    #9c2040;
  --gold:       #c9933a;
  --gold2:      #e8b84b;
  --gold-light: #f5d98a;
  --text:       #1a0533;
  --muted:      #6b7280;
  --white:      #ffffff;
  --red:        #e84040;
  --green:      #16a34a;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 2px 16px rgba(26,5,51,0.08), 0 1px 4px rgba(26,5,51,0.04);
  --shadow-md:  0 6px 32px rgba(26,5,51,0.12);
  --glow:       0 0 30px rgba(201,147,58,0.15);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: rgba(123,26,46,0.3); border-radius: 4px; }

/* ---------- Typography Helpers ---------- */
.font-display { font-family: 'Poppins', sans-serif; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ---------- Gradient Text ---------- */
.grad-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--maroon) 60%, var(--maroon2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Wrapper ---------- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ---------- Section Label ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,147,58,0.1);
  border: 1px solid rgba(201,147,58,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #1a0533;
  box-shadow: 0 4px 20px rgba(201,147,58,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,147,58,0.45);
  filter: brightness(1.06);
}
.btn-maroon {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon2) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(123,26,46,0.25);
}
.btn-maroon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(156,32,64,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--maroon);
  border: 1.5px solid rgba(123,26,46,0.3);
}
.btn-outline:hover {
  background: rgba(123,26,46,0.05);
  border-color: var(--maroon);
}
.btn-ghost {
  background: rgba(26,5,51,0.05);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(26,5,51,0.09); border-color: rgba(123,26,46,0.25); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; border-radius: 14px; min-height: 52px; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; min-height: 36px; }
.btn-full { width: 100%; }

/* ---------- Card ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  border-color: rgba(201,147,58,0.4);
  box-shadow: var(--glow), var(--shadow-md);
  transform: translateY(-4px);
}

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-red { background: rgba(232,64,64,0.1); color: #dc2626; border: 1px solid rgba(232,64,64,0.25); }
.badge-gold { background: rgba(201,147,58,0.12); color: var(--gold); border: 1px solid rgba(201,147,58,0.3); }
.badge-green { background: rgba(22,163,74,0.1); color: var(--green); border: 1px solid rgba(22,163,74,0.25); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 1px 12px rgba(26,5,51,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--text);
}
.logo-icon { display: none; }
.logo-text span { color: var(--maroon); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(26,5,51,0.06); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(26,5,51,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.cart-btn:hover { background: rgba(26,5,51,0.09); border-color: rgba(123,26,46,0.3); }
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  background: var(--maroon2);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── User menu (logged-in state in header) ── */
.user-menu-wrap { position: relative; }
.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 5px;
  background: rgba(26,5,51,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.user-menu-btn:hover { background: rgba(26,5,51,0.09); border-color: rgba(123,26,46,0.25); }
.user-avatar-sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.user-menu-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.user-menu-chevron {
  font-size: 0.65rem;
  color: var(--muted);
  transition: transform var(--transition);
}

/* Dropdown */
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(26,5,51,0.14), 0 2px 8px rgba(26,5,51,0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 950;
}
.user-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.user-dropdown-header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--bg2);
}
.user-dropdown-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}
.user-dropdown-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.user-dropdown-sub  { font-size: 0.73rem; color: var(--muted); margin-top: 1px; }
.user-dropdown-divider { height: 1px; background: var(--border); }
.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  text-decoration: none;
}
.user-dropdown-item i { width: 16px; text-align: center; color: var(--muted); font-size: 0.85rem; }
.user-dropdown-item:hover { background: var(--bg2); color: var(--maroon); }
.user-dropdown-item:hover i { color: var(--maroon); }
.user-dropdown-logout { color: #dc2626 !important; }
.user-dropdown-logout i { color: #dc2626 !important; }
.user-dropdown-logout:hover { background: rgba(220,38,38,0.06) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(26,5,51,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(26,5,51,0.09); }

/* ── Mobile Nav Drawer ────────────────────────────────────── */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,5,51,0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 948;
}
.mobile-nav-backdrop.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 300px;
  max-width: 85vw;
  z-index: 950;
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), visibility 0.3s;
  box-shadow: 4px 0 40px rgba(26,5,51,0.18);
  overflow: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

/* Drawer header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--maroon) 0%, #5a0f20 100%);
}
.mobile-nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.mobile-nav-logo span { color: var(--gold2); }

.mobile-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-close:hover { background: rgba(255,255,255,0.25); }

/* User strip (when logged in) */
.mobile-nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(123,26,46,0.04);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}
.mobile-nav-user-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.mobile-nav-user-name { font-weight: 700; font-size: 0.88rem; }
.mobile-nav-user-sub  { font-size: 0.72rem; color: var(--muted); }

/* Nav section label */
.mobile-nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  padding: 14px 20px 6px;
  opacity: 0.7;
}

/* Nav links */
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 8px 12px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}
.mobile-nav a i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
  flex-shrink: 0;
}
.mobile-nav a:hover {
  background: rgba(123,26,46,0.05);
  color: var(--maroon);
  border-color: var(--border);
}
.mobile-nav a:hover i { color: var(--maroon); }
.mobile-nav a.active {
  background: rgba(123,26,46,0.08);
  color: var(--maroon);
  border-color: rgba(123,26,46,0.15);
  font-weight: 700;
}
.mobile-nav a.active i { color: var(--maroon); }
.mobile-nav a.nav-logout { color: #dc2626; }
.mobile-nav a.nav-logout i { color: #dc2626; }
.mobile-nav a.nav-logout:hover { background: rgba(220,38,38,0.06); border-color: rgba(220,38,38,0.15); }


/* Divider */
.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 12px;
}

/* Footer strip */
.mobile-nav-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  background: var(--bg2);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(123,26,46,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,147,58,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,26,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,26,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.4) 70%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
  background: rgba(123,26,46,0.08);
  border: 1px solid rgba(123,26,46,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: var(--border); }

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeIn 0.8s 0.3s ease both;
}
.hero-cards-wrap {
  position: relative;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.hero-card-main {
  top: 0; left: 50%; transform: translateX(-50%);
  width: 280px;
  animation: floatY 4s ease-in-out infinite;
}
.hero-card-sm1 {
  top: 120px; left: 0;
  width: 180px;
  animation: floatY 4s 1s ease-in-out infinite;
  border-color: rgba(201,147,58,0.25);
}
.hero-card-sm2 {
  top: 160px; right: 0;
  width: 180px;
  animation: floatY 4s 2s ease-in-out infinite;
  border-color: rgba(123,26,46,0.2);
}
.hero-card-bottom {
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 220px;
  animation: floatY 4s 0.5s ease-in-out infinite;
}
.hc-label { font-size: 11px; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.hc-service {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.hc-price-row { display: flex; align-items: center; gap: 10px; }
.hc-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--maroon);
}
.hc-original { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; }
.hc-discount {
  font-size: 11px;
  font-weight: 700;
  background: rgba(220,38,38,0.1);
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: auto;
}
.hc-dots { display: flex; gap: 5px; margin-bottom: 8px; }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; }
.hc-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.hc-notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(22,163,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hc-notif-text small { color: var(--muted); display: block; font-size: 10px; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.trust-item:hover { border-color: rgba(201,147,58,0.35); box-shadow: var(--shadow-md); }
.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(123,26,46,0.1), rgba(201,147,58,0.15));
  border: 1px solid rgba(201,147,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; color: var(--text); }
.trust-desc { font-size: 0.75rem; color: var(--muted); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.cat-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.cat-card::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201,147,58,0.07);
  transition: var(--transition);
}
.cat-card:hover { border-color: rgba(201,147,58,0.4); transform: translateY(-3px); box-shadow: var(--glow), var(--shadow-md); }
.cat-card:hover::before { transform: scale(2); background: rgba(201,147,58,0.12); }
.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123,26,46,0.1), rgba(201,147,58,0.15));
  border: 1px solid rgba(201,147,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--maroon);
  margin-bottom: 4px;
}
.cat-name { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.cat-count { font-size: 0.8rem; color: var(--muted); }
.cat-arrow { position: absolute; top: 20px; right: 20px; color: var(--muted); font-size: 0.9rem; transition: var(--transition); }
.cat-card:hover .cat-arrow { color: var(--gold); transform: translateX(3px); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(201,147,58,0.4);
  box-shadow: var(--glow), var(--shadow-md);
  transform: translateY(-4px);
}
.product-img-wrap {
  position: relative;
  padding-top: 100%;
  background: linear-gradient(135deg, var(--bg3), rgba(123,26,46,0.08));
  overflow: hidden;
}
.product-badge-overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new        { background: rgba(37,99,235,0.12); color: #2563eb; border: 1px solid rgba(37,99,235,0.28); }
.badge-bestseller { background: rgba(123,26,46,0.12); color: var(--maroon); border: 1px solid rgba(123,26,46,0.28); }
.badge-hot        { background: rgba(220,38,38,0.12); color: #dc2626; border: 1px solid rgba(220,38,38,0.28); }
.badge-trending   { background: rgba(201,147,58,0.14); color: var(--gold); border: 1px solid rgba(201,147,58,0.32); }
.product-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.product-wishlist {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(26,5,51,0.1);
}
.product-wishlist:hover { color: #dc2626; border-color: rgba(220,38,38,0.35); }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.product-platform {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}
.product-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.product-price-row { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--maroon);
}
.product-original { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }
.product-buy-btn {
  width: 100%;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon2) 100%);
  color: #fff;
  padding: 10px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.product-buy-btn:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #1a0533;
  box-shadow: 0 6px 20px rgba(201,147,58,0.3);
  transform: translateY(-1px);
}

/* Scarcity text */
.product-scarcity {
  font-size: 11px;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.countdown-bar {
  background: linear-gradient(90deg, var(--maroon) 0%, #5a0f20 50%, var(--maroon) 100%);
  background-size: 200% 100%;
  animation: gradientShift 4s linear infinite;
  padding: 14px 0;
  text-align: center;
}
@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.countdown-text { font-size: 0.9rem; font-weight: 600; color: #fff; }
.countdown-units { display: flex; align-items: center; gap: 8px; }
.countdown-unit {
  text-align: center;
  background: rgba(0,0,0,0.25);
  border-radius: 8px;
  padding: 6px 10px;
  min-width: 52px;
}
.countdown-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold-light);
}
.countdown-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.countdown-sep { font-size: 1.2rem; font-weight: 700; color: rgba(255,255,255,0.6); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap { margin-top: 40px; }
.testimonials-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-width: calc(33.333% - 14px);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; display: flex; gap: 3px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial-loc { font-size: 0.78rem; color: var(--muted); }
.testimonials-nav { display: flex; gap: 10px; margin-top: 24px; justify-content: center; }
.t-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.t-nav-btn:hover { background: rgba(201,147,58,0.1); border-color: rgba(201,147,58,0.4); color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.faq-item.open { border-color: rgba(201,147,58,0.35); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text);
}
.faq-question:hover { color: var(--maroon); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26,5,51,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: rgba(201,147,58,0.12); border-color: rgba(201,147,58,0.35); color: var(--gold); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.social-btn:hover { border-color: rgba(201,147,58,0.4); color: var(--gold); background: rgba(201,147,58,0.08); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; color: var(--text); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--muted); transition: var(--transition); }
.footer-links a:hover { color: var(--maroon); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--maroon); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
/* WhatsApp */
.whatsapp-fab {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 800;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: bounceIn 1s 2s both;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }

/* Order popup */
.order-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 800;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 300px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.order-popup.show { transform: translateX(0); }
.order-popup-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(22,163,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.order-popup-text { font-size: 0.82rem; }
.order-popup-text strong { display: block; font-size: 0.88rem; color: var(--text); }
.order-popup-text span { color: var(--muted); font-size: 0.78rem; }

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(26,5,51,0.12);
}
.cart-sidebar.open { right: 0; }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,5,51,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  backdrop-filter: blur(4px);
}
.cart-overlay.show { opacity: 1; pointer-events: all; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--text); }
.cart-close-btn { background: none; color: var(--muted); font-size: 1.1rem; transition: var(--transition); }
.cart-close-btn:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty i { font-size: 3rem; display: block; margin-bottom: 12px; opacity: 0.3; }
.cart-item {
  display: flex;
  gap: 12px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  align-items: center;
}
.cart-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cart-item-price { font-size: 0.85rem; color: var(--maroon); font-weight: 700; }
.cart-item-remove { background: none; color: var(--muted); font-size: 0.9rem; transition: var(--transition); }
.cart-item-remove:hover { color: #dc2626; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg2); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: 0.9rem; color: var(--muted); }
.cart-total-price { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--maroon); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}
.product-gallery { position: sticky; top: 80px; }
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding-top: 70%;
  position: relative;
  box-shadow: var(--shadow);
}
.product-main-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: var(--bg3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,147,58,0.15); }

.product-info-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.product-platform-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,147,58,0.1);
  border: 1px solid rgba(201,147,58,0.25);
  padding: 4px 12px;
  border-radius: 100px;
}

.product-page-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--gold); font-size: 0.9rem; }
.rating-count { font-size: 0.85rem; color: var(--muted); }
.product-price-section { margin-bottom: 0; }
.pp-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
}
.pp-price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 0; }
.pp-original { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.pp-save { font-size: 0.8rem; color: var(--green); font-weight: 600; }

/* Variation Selector */
.variations-label { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.variations-group { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.variation-btn {
  padding: 9px 18px;
  min-height: 44px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.variation-btn:hover { border-color: rgba(201,147,58,0.4); color: var(--text); background: var(--bg3); }
.variation-btn.active {
  background: rgba(201,147,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.product-features { margin-bottom: 24px; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,5,51,0.06);
  font-size: 0.9rem;
  color: var(--text);
}
.feature-icon { color: var(--green); font-size: 0.85rem; width: 20px; flex-shrink: 0; }

.product-ctas { display: flex; gap: 16px; margin-top: 20px; }

/* Sticky Bottom Bar */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 700;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 24px rgba(26,5,51,0.1);
}
.sticky-buy-bar.visible { transform: translateY(0); }
.sticky-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.sticky-product-info { display: flex; flex-direction: column; }
.sticky-product-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.sticky-product-price { color: var(--maroon); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; }
.sticky-actions { display: flex; gap: 10px; }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.category-header-section {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 32px;
}
.filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  min-height: 36px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.filter-btn:hover, .filter-btn.active {
  background: rgba(201,147,58,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.filter-select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  margin-left: auto;
  box-shadow: var(--shadow);
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr min(380px, 38%);
  gap: 32px;
  margin-top: 32px;
  align-items: start;
}
.checkout-grid > * { min-width: 0; }
.checkout-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.checkout-form-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.checkout-form-card h3 .step-num {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--maroon), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.5px; text-transform: uppercase; }
.form-input {
  width: 100%;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-height: 46px;
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.form-input:focus { border-color: rgba(201,147,58,0.5); box-shadow: 0 0 0 3px rgba(201,147,58,0.1); background: var(--bg); }
.form-input::placeholder { color: var(--muted); opacity: 0.6; }

.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover, .payment-option.selected { border-color: rgba(201,147,58,0.45); background: rgba(201,147,58,0.05); }
.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.payment-option.selected .payment-radio { border-color: var(--gold); }
.payment-option.selected .payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.payment-icon { font-size: 1.3rem; width: 36px; text-align: center; }
.payment-info { flex: 1; }
.payment-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.payment-desc { font-size: 0.78rem; color: var(--muted); }
.payment-badge { font-size: 10px; font-weight: 700; color: var(--green); background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.25); padding: 2px 8px; border-radius: 100px; margin-left: auto; }

.qr-display {
  margin-top: 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  display: none;
}
.qr-display.show { display: block; }
.qr-box {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  border: 1px solid var(--border);
}
.qr-upi { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; }
.qr-upi strong { color: var(--text); font-family: monospace; }
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 12px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--bg2);
}
.upload-area:hover { border-color: rgba(201,147,58,0.45); background: rgba(201,147,58,0.04); }
.upload-area i { font-size: 1.8rem; color: var(--muted); margin-bottom: 8px; display: block; }
.upload-area p { font-size: 0.85rem; color: var(--muted); }
.upload-area strong { color: var(--gold); }

/* Checkout main — extra bottom padding so Place Order btn clears WhatsApp FAB */
@media (max-width: 768px) {
  .checkout-main-wrap { padding-bottom: 120px !important; }
  .hide-mobile { display: none !important; }

  /* How It Works — 3 cols in one row on mobile */
  .hiw-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .hiw-card { padding: 14px 8px !important; }
  .hiw-icon { width: 40px !important; height: 40px !important; font-size: 1rem !important; margin-bottom: 10px !important; }
  .hiw-step { font-size: 0.6rem !important; letter-spacing: 1px !important; margin-bottom: 4px !important; }
  .hiw-title { font-size: 0.72rem !important; margin-bottom: 0 !important; }
  .hiw-desc  { display: none !important; }
}

/* Order Summary */
.order-summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
  box-shadow: var(--shadow);
}
.os-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: var(--bg2);
  color: var(--text);
}
.os-items { padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.os-item { display: flex; align-items: center; gap: 12px; }
.os-item-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; border: 1px solid var(--border); }
.os-item-info { flex: 1; }
.os-item-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.os-item-variant { font-size: 0.78rem; color: var(--muted); }
.os-item-price { font-weight: 700; color: var(--maroon); font-size: 0.95rem; white-space: nowrap; }
.os-totals { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; background: var(--bg2); }
.os-row { display: flex; justify-content: space-between; font-size: 0.88rem; }
.os-row .label { color: var(--muted); }
.os-row.total { border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.os-row.total .label, .os-row.total .value { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--text); }
.os-row.total .value { color: var(--maroon); }
.os-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.os-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.os-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.os-trust-item i { color: var(--green); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) translateX(var(--tx, 0)); }
  50% { transform: translateY(-10px) translateX(var(--tx, 0)); }
}
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
.hero-card-main { --tx: -50%; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--maroon); }
.breadcrumb i { font-size: 0.6rem; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-cards-wrap { height: 340px; }
  .hero-card-main { width: 240px; }
  .hero-card-sm1, .hero-card-sm2 { width: 155px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }

  /* Checkout — stack early so right column never squishes */
  .checkout-grid { grid-template-columns: 1fr; gap: 20px; }
  .order-summary-card { position: static; order: -1; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .section-sm { padding: 28px 0; }
  .container { width: 92%; }

  /* Header */
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-actions .btn { display: none; }

  /* Hero */
  .hero { padding: 36px 0 32px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { gap: 10px; }
  .hero-stats { gap: 20px; }

  /* Trust */
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-item { padding: 12px 14px; }

  /* Product page */
  .product-countdown { display: none; }
  .product-page-title { font-size: 1.2rem; font-weight: 600; }
  .pp-price { font-size: 1.5rem !important; }
  .pp-price-row { gap: 6px; }
  .trust-mini-desktop { display: none !important; }
  .trust-mini-mobile { display: grid !important; grid-template-columns: 1fr 1fr; }

  /* Grids */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Product cards */
  .product-body { padding: 14px; gap: 8px; }
  .product-title { font-size: 0.92rem; }
  .product-buy-btn { padding: 10px 8px; font-size: 0.85rem; min-height: 42px; }

  /* Testimonials */
  /* Testimonials mobile redesign */
  .testimonials-nav-desktop { display: none !important; }
  .testimonials-wrap { margin-top: 20px; }
  .testimonials-slider { overflow: hidden; border-radius: 16px; }
  .testimonials-track { gap: 0; }
  .testimonial-card {
    min-width: 100%;
    padding: 20px;
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid var(--border);
  }
  .testimonial-stars { font-size: 0.85rem; margin-bottom: 10px; gap: 4px; }
  .testimonial-text { font-size: 0.86rem; line-height: 1.65; margin-bottom: 16px; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 0.85rem; }
  .testimonial-name { font-size: 0.85rem; }
  .testimonial-loc { font-size: 0.72rem; }
  /* Nav: hide from header, show below slider */
  .testimonials-nav {
    margin-top: 16px;
    justify-content: center;
    gap: 12px;
  }
  .t-nav-btn { width: 38px; height: 38px; border-radius: 50%; font-size: 0.8rem; }
  /* Dots indicator */
  .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
  }
  .t-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); transition: 0.3s;
    cursor: pointer;
  }
  .t-dot.active { background: var(--gold2); width: 18px; border-radius: 3px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Product page */
  .product-page-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .product-ctas { flex-wrap: wrap; }
  .product-ctas .btn { flex: 1; min-width: 140px; }

  /* Sticky buy bar — always show on mobile */
  .sticky-buy-bar { transform: translateY(0) !important; }
  .sticky-buy-inner { flex-wrap: wrap; }
  .sticky-actions { width: 100%; }
  .sticky-actions .btn { flex: 1; }

  /* Checkout — already stacked at 1024px; just tune padding */
  .checkout-form-card { padding: 20px; }
  .checkout-grid { gap: 16px; }

  /* Cart sidebar full width */
  .cart-sidebar { width: 100%; right: -100%; justify-content: flex-start; }
  .cart-items { flex: 0 0 auto; max-height: 52vh; overflow-y: auto; }

  /* Buttons */
  .btn-lg { padding: 14px 24px; font-size: 1rem; }

  /* WhatsApp FAB — raise above mobile bottom bar */
  .whatsapp-fab { bottom: 80px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }

  /* Order popup — smaller on mobile, raised above buttons */
  .order-popup { max-width: 240px; padding: 10px 13px; font-size: 0.78rem; bottom: 140px; left: 12px; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .container { width: 94%; }

  /* Uniform section spacing */
  .section { padding: 32px 0; }
  .section-sm { padding: 22px 0; }
  .section > .container > div[style*="margin-bottom"] { margin-bottom: 24px !important; }
  .section-title { margin-bottom: 8px !important; }
  .section-sub { margin-bottom: 0 !important; }
  .section-label { margin-bottom: 10px !important; }

  .cart-footer { padding-bottom: 16px; padding-top: 14px; }

  /* Trust — 2 columns on small mobile */
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .trust-item { padding: 10px 10px; gap: 10px; }
  .trust-icon { width: 34px; height: 34px; font-size: 0.9rem; flex-shrink: 0; }
  .trust-title { font-size: 0.78rem; }
  .trust-desc { font-size: 0.7rem; }

  /* Categories — 2 cols */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { padding: 20px 16px; }

  /* Products — 2 cols, tighter */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { min-width: 0; }
  .product-body { padding: 10px 12px; gap: 7px; }
  .product-platform { font-size: 10px; }
  .product-title { font-size: 0.85rem; line-height: 1.3; }
  .product-price { font-size: 1.05rem; }
  .product-original { font-size: 0.75rem; }
  .product-buy-btn { padding: 9px 6px; font-size: 0.8rem; min-height: 40px; gap: 4px; }
  .product-discount-badge { font-size: 10px; padding: 2px 6px; }
  .product-img-placeholder { font-size: 2rem; }

  /* Hero */
  .hero-actions { flex-direction: row; flex-wrap: nowrap; gap: 8px; }
  .hero-actions .btn { flex: 1; min-width: 0; padding: 10px 12px; font-size: 0.8rem; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.5rem; }

  /* Countdown */
  .countdown-inner { flex-direction: column; gap: 10px; }
  .countdown-unit { min-width: 44px; padding: 5px 8px; }
  .countdown-num { font-size: 1.2rem; }

  /* Footer — brand full width, then Products+Support side by side, Contact full width */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer { padding: 32px 0 0; }
  .footer-bottom { gap: 8px; }

  /* Section titles */
  .section-title { font-size: 1.6rem; }

  /* Checkout */
  .checkout-form-card { padding: 16px; }
  .form-input { font-size: 16px; } /* prevent iOS zoom */
  .form-group { margin-bottom: 14px; }
  .payment-option { padding: 12px 14px; }

  /* Variations */
  .variation-btn { padding: 8px 14px; font-size: 0.82rem; }

  /* Sticky bar */
  .sticky-buy-inner { gap: 10px; }
  .sticky-product-name { font-size: 0.82rem; }
  .sticky-product-price { font-size: 1rem; }

  /* Filters bar */
  .filters-bar { gap: 8px; }
  .filter-btn { padding: 6px 14px; font-size: 0.8rem; }
}

/* ============================================================
   RESPONSIVE — 360px (very small phones)
   ============================================================ */
@media (max-width: 360px) {
  .container { width: 96%; }
  .products-grid { gap: 8px; }
  .product-body { padding: 8px 10px; gap: 6px; }
  .product-title { font-size: 0.8rem; }
  .product-buy-btn { font-size: 0.75rem; padding: 8px 4px; }
  .checkout-form-card { padding: 12px; }
  .header-inner { gap: 12px; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.45rem; }
}
