/* ============================================================
   Rashichakram – Main Stylesheet
   Color Palette: Deep Purple #1a0a2e  |  Gold #c9a84c
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --purple-darkest: #0d0518;
  --purple-dark:    #1a0a2e;
  --purple-mid:     #2d1055;
  --purple-light:   #5c3d9e;
  --purple-bright:  #7b5fd4;
  --purple-glow:    #9b7fe8;

  --gold-dark:   #8a6a1e;
  --gold-mid:    #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e5b0;

  --bg-dark:   #0d0518;
  --bg-card:   #1a0a2e;
  --bg-card2:  #22103a;
  --bg-light:  #faf8ff;
  --text-main: #1a0a2e;
  --text-muted:#6b7280;
  --text-light:#f5f0ff;
  --border:    rgba(201,168,76,0.2);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.15);
  --shadow-purple: 0 8px 32px rgba(45,16,85,0.25);

  --font-heading: 'Cinzel', serif;
  --font-display: 'Cinzel Decorative', serif;
  --font-body:    'Lato', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.3; }
.container { max-width: 1280px; }

/* ── Announcement Bar ─────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-mid), var(--purple-dark));
  color: var(--gold-light);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
  position: relative;
}
.announcement-bar a { color: var(--gold-light); }
.announcement-bar a:hover { color: #fff; }
.btn-close-bar {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--gold-light); cursor: pointer;
  font-size: 18px; line-height: 1;
}

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  background: rgba(13,5,24,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.site-logo-img {
  height: 64px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(180,130,255,0.3));
  transition: filter 0.3s ease;
}
.site-logo:hover .site-logo-img {
  filter: drop-shadow(0 0 14px rgba(180,130,255,0.6));
}
.logo-text-fallback { display: none; }
.logo-moon { font-size: 28px; color: var(--gold-mid); line-height: 1; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-display);
  color: var(--gold-mid);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 1px;
  line-height: 1.1;
}
.logo-tag {
  font-size: 10px;
  color: var(--purple-glow);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.mobile-nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(180,130,255,0.4));
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 4px; }
.hdr-btn {
  position: relative; background: none; border: none;
  color: var(--gold-light); font-size: 18px; cursor: pointer;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.hdr-btn:hover { background: rgba(201,168,76,0.12); color: var(--gold-mid); }
.hdr-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold-mid); color: #000;
  font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── Main Navigation ──────────────────────────────────────── */
.main-nav {
  border-top: 1px solid rgba(201,168,76,0.1);
}
.nav-list {
  list-style: none; display: flex; align-items: center;
  gap: 0; padding: 0; margin: 0;
}
.nav-list > li > a {
  display: flex; align-items: center; gap: 5px;
  color: var(--gold-pale); font-family: var(--font-heading);
  font-size: 13px; letter-spacing: 0.5px;
  padding: 12px 14px; white-space: nowrap;
  transition: var(--transition); position: relative;
}
.nav-list > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold-mid);
  transition: var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold-mid);
}
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { left: 14px; right: 14px; }

/* Mega Menu */
.has-mega, .has-dropdown { position: relative; }
.mega-menu, .dropdown-menu-custom {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.has-mega:hover .mega-menu,
.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-menu { min-width: 560px; }
.mega-inner { display: flex; gap: 0; }
.mega-col {
  padding: 24px 20px; flex: 1;
  border-right: 1px solid var(--border);
}
.mega-col h6 {
  color: var(--gold-mid); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; font-family: var(--font-heading);
}
.mega-col a {
  display: block; color: var(--text-light);
  font-size: 13px; padding: 6px 0;
}
.mega-col a:hover { color: var(--gold-mid); padding-left: 6px; }
.mega-promo {
  padding: 20px; background: rgba(201,168,76,0.06);
  flex: 0 0 180px; display: flex; flex-direction: column;
  justify-content: center; gap: 8px;
}
.promo-badge {
  background: var(--gold-mid); color: #000;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1px; padding: 3px 8px;
  border-radius: 4px; width: fit-content;
}
.mega-promo h5 { color: var(--gold-light); font-size: 14px; }
.mega-promo p  { color: #aaa; font-size: 12px; line-height: 1.4; }
.mega-cta {
  display: inline-block;
  background: var(--gold-mid); color: #000;
  font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 6px;
  text-align: center; width: fit-content;
}
.dropdown-menu-custom {
  min-width: 200px; padding: 8px 0; list-style: none;
}
.dropdown-menu-custom li a {
  display: block; color: var(--text-light);
  font-size: 13px; padding: 9px 20px;
}
.dropdown-menu-custom li a:hover { color: var(--gold-mid); background: rgba(201,168,76,0.07); }

/* Mobile Menu */
.mobile-menu-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 6px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-mid); border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  position: fixed; top: 0; left: -100%; width: 300px; height: 100%;
  background: var(--bg-card); z-index: 2000;
  transition: var(--transition); overflow-y: auto;
  border-right: 1px solid var(--border);
}
.mobile-nav.open { left: 0; }
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 1999; display: none;
}
.mobile-nav-overlay.active { display: block; }
.mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  color: var(--gold-mid); font-size: 24px;
}
.mobile-nav-header button {
  background: none; border: none; color: var(--gold-light);
  font-size: 22px; cursor: pointer;
}
.mobile-nav-body { padding: 12px 0; }
.mobile-nav-body > a {
  display: block; color: var(--text-light);
  padding: 13px 20px; font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-body > a:hover { color: var(--gold-mid); background: rgba(201,168,76,0.06); }
.mob-accordion { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mob-acc-btn {
  width: 100%; background: none; border: none;
  color: var(--text-light); font-size: 14px;
  padding: 13px 20px; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.mob-acc-btn:hover { color: var(--gold-mid); }
.mob-acc-body { display: none; background: rgba(0,0,0,0.2); }
.mob-acc-body a { display: block; color: #bbb; padding: 10px 32px; font-size: 13px; }
.mob-acc-body a:hover { color: var(--gold-mid); }

/* ── Search Overlay ───────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.92);
  z-index: 3000; display: flex; align-items: center;
  justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-wrap { width: 100%; max-width: 700px; padding: 20px; position: relative; }
.search-close {
  position: absolute; top: -50px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer;
}
.search-form-big {
  display: flex; border-bottom: 2px solid var(--gold-mid);
}
.search-form-big input {
  flex: 1; background: none; border: none; outline: none;
  color: #fff; font-size: clamp(18px,3vw,26px);
  padding: 12px 0; font-family: var(--font-heading);
}
.search-form-big input::placeholder { color: rgba(255,255,255,0.3); }
.search-form-big button {
  background: none; border: none; color: var(--gold-mid);
  font-size: 24px; cursor: pointer;
}
.search-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #888; font-size: 14px; }
.search-tags a {
  background: rgba(255,255,255,0.08); color: var(--gold-light);
  padding: 5px 14px; border-radius: 20px; font-size: 13px;
  border: 1px solid rgba(201,168,76,0.3);
}
.search-tags a:hover { background: rgba(201,168,76,0.15); }

/* ── Cart Sidebar ─────────────────────────────────────────── */
.cart-sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 1499; display: none;
}
.cart-sidebar-overlay.active { display: block; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px;
  max-width: 100%; height: 100%; background: var(--bg-card);
  z-index: 1500; transition: var(--transition);
  display: flex; flex-direction: column;
  border-left: 1px solid var(--border);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  color: var(--gold-light);
}
.cart-sidebar-header h4 { font-size: 15px; margin: 0; font-family: var(--font-heading); }
.cart-sidebar-header button { background: none; border: none; color: #aaa; font-size: 20px; cursor: pointer; }
.cart-count-badge {
  background: var(--gold-mid); color: #000;
  font-size: 11px; font-weight: 700;
  padding: 2px 6px; border-radius: 10px; margin-left: 6px;
}
.cart-sidebar-body { flex: 1; overflow-y: auto; padding: 16px; }
.cart-sidebar-footer { padding: 16px; border-top: 1px solid var(--border); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 12px; }
.coupon-row input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-light); border-radius: 8px; padding: 8px 12px; font-size: 13px;
}
.coupon-row button {
  background: var(--purple-light); color: #fff; border: none;
  border-radius: 8px; padding: 8px 16px; font-size: 13px; cursor: pointer;
}
.coupon-row button:hover { background: var(--purple-bright); }
.cart-totals { color: var(--text-light); font-size: 14px; margin-bottom: 14px; }
.cart-totals .d-flex { padding: 4px 0; }
.btn-checkout-sidebar, .btn-view-cart-sidebar {
  display: block; text-align: center; border-radius: 8px;
  padding: 13px; font-family: var(--font-heading); font-size: 13px;
  letter-spacing: 0.5px; font-weight: 600; transition: var(--transition);
}
.btn-checkout-sidebar {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: #000;
}
.btn-checkout-sidebar:hover { background: var(--gold-mid); color: #000; transform: translateY(-1px); }
.btn-view-cart-sidebar {
  background: none; border: 1px solid var(--border);
  color: var(--gold-light);
}
.btn-view-cart-sidebar:hover { border-color: var(--gold-mid); color: var(--gold-mid); }

/* Cart Item (in sidebar) */
.cart-item-row {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item-thumb {
  width: 64px; height: 64px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h6 {
  color: var(--gold-light); font-size: 13px;
  font-family: var(--font-heading); margin-bottom: 3px;
}
.cart-item-info .variant { color: #888; font-size: 12px; }
.cart-item-info .price   { color: var(--gold-mid); font-size: 14px; font-weight: 700; }
.qty-control {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
}
.qty-control button {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid var(--border); background: none;
  color: var(--gold-light); cursor: pointer; font-size: 16px;
  line-height: 1;
}
.qty-control button:hover { background: var(--gold-mid); border-color: var(--gold-mid); color: #000; }
.qty-control span { color: var(--text-light); font-size: 14px; min-width: 24px; text-align: center; }
.cart-remove { background: none; border: none; color: #666; cursor: pointer; font-size: 14px; align-self: flex-start; }
.cart-remove:hover { color: #e74c3c; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; min-height: 600px; }
.swiper-hero { width: 100%; }
.hero-slide {
  min-height: 600px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(92,61,158,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; width: 100%; padding: 80px 0;
}
.hero-text { flex: 0 0 55%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); font-size: 12px;
  letter-spacing: 1px; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 20px;
  font-family: var(--font-body);
}
.hero-text h1 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 .gold { color: var(--gold-mid); }
.hero-text p {
  color: rgba(245,240,255,0.75); font-size: 16px;
  max-width: 480px; line-height: 1.8; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: #000; font-family: var(--font-heading); font-size: 13px;
  font-weight: 700; letter-spacing: 1px;
  padding: 14px 32px; border-radius: 8px; border: none; cursor: pointer;
  transition: var(--transition);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: #000; }
.btn-hero-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light); font-family: var(--font-heading); font-size: 13px;
  letter-spacing: 1px; padding: 14px 32px; border-radius: 8px; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(201,168,76,0.12); color: var(--gold-mid); }
.hero-stats {
  display: flex; gap: 32px;
}
.hero-stat { text-align: center; }
.hero-stat-num { display: block; font-family: var(--font-display); color: var(--gold-mid); font-size: 26px; line-height: 1; }
.hero-stat span  { color: rgba(245,240,255,0.6); font-size: 12px; }

/* Zodiac Visual */
.hero-visual { flex: 0 0 40%; display: flex; align-items: center; justify-content: center; }
.zodiac-ring-wrap { position: relative; width: 340px; height: 340px; }
.zodiac-ring-outer, .zodiac-ring-inner {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  animation: spin-slow 60s linear infinite;
}
.zodiac-ring-outer { inset: 0; }
.zodiac-ring-inner {
  inset: 30px; border-width: 1px;
  animation-direction: reverse;
  border-color: rgba(155,127,232,0.25);
}
.zodiac-ring-center {
  position: absolute; inset: 60px; border-radius: 50%;
  background: radial-gradient(circle, var(--purple-mid), var(--purple-dark));
  border: 2px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px; color: var(--gold-mid);
}
.zodiac-sign {
  position: absolute; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%; font-size: 16px; top: 50%; left: 50%;
  margin: -18px;
  transform: rotate(calc(var(--i) * 30deg)) translateY(-155px) rotate(calc(var(--i) * -30deg));
  color: var(--gold-light); transition: var(--transition);
}
.zodiac-sign:hover {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold-mid);
  transform: rotate(calc(var(--i)*30deg)) translateY(-155px) rotate(calc(var(--i)*-30deg)) scale(1.15);
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Swiper Navigation */
.hero-swiper-nav { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 8px; }
.swiper-pagination-bullet { background: rgba(201,168,76,0.4); opacity: 1; transition: var(--transition); }
.swiper-pagination-bullet-active { background: var(--gold-mid); width: 24px; border-radius: 4px; }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-grid {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-light); font-size: 13px;
}
.trust-item i { font-size: 22px; color: var(--gold-mid); }
.trust-item strong { display: block; font-family: var(--font-heading); font-size: 13px; color: var(--gold-light); }
.trust-item span { font-size: 12px; color: #999; }

/* ── Section Headers ──────────────────────────────────────── */
.section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-ornament { color: var(--gold-mid); letter-spacing: 8px; margin-bottom: 10px; font-size: 14px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--purple-dark); margin-bottom: 12px;
}
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }
.section-dark { background: var(--bg-card); }
.section-dark .section-header h2 { color: var(--gold-light); }
.section-dark .section-header p { color: rgba(245,240,255,0.6); }

/* ── Category Grid ────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.cat-large { grid-column: span 1; grid-row: span 2; min-height: 380px; }
.cat-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; min-height: 180px;
  display: flex; align-items: flex-end;
  cursor: pointer; transition: var(--transition);
  border: 1px solid var(--border);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.cat-bg { position: absolute; inset: 0; }
.cat-emoji { position: absolute; top: 20px; right: 20px; font-size: 36px; opacity: 0.6; transition: var(--transition); }
.cat-card:hover .cat-emoji { opacity: 1; transform: scale(1.2) rotate(-5deg); }
.cat-content { position: relative; z-index: 1; padding: 20px; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); }
.cat-content h3 { font-family: var(--font-heading); color: var(--gold-light); font-size: 18px; margin-bottom: 2px; }
.cat-content p  { color: #bbb; font-size: 12px; margin-bottom: 0; }
.cat-count { display: inline-block; background: rgba(201,168,76,0.2); color: var(--gold-mid); font-size: 11px; padding: 2px 10px; border-radius: 10px; margin-top: 6px; }
.cat-arrow { position: absolute; top: 20px; left: 20px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-mid); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; opacity: 0; transition: var(--transition); }
.cat-card:hover .cat-arrow { opacity: 1; }

/* ── Product Cards ────────────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid #e8e0f5;
  overflow: hidden; transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(45,16,85,0.12); border-color: rgba(92,61,158,0.3); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 6px;
}
.badge-sale { background: #e74c3c; color: #fff; }
.badge-new  { background: var(--purple-light); color: #fff; }
.badge-hot  { background: #f39c12; color: #fff; }

.product-img-wrap {
  position: relative; padding-top: 100%; overflow: hidden;
  background: linear-gradient(135deg, #f5f0ff, #ebe3ff);
}
.product-img-wrap img,
.product-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
  display: flex; align-items: center; justify-content: center; font-size: 64px;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(45,16,85,0); transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.product-card:hover .product-overlay { background: rgba(45,16,85,0.15); }
.prod-action-btn {
  background: #fff; color: var(--purple-dark);
  border: none; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 15px;
  transform: translateY(10px); opacity: 0; transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.product-card:hover .prod-action-btn { transform: translateY(0); opacity: 1; }
.prod-action-btn:hover { background: var(--purple-light); color: #fff; }

.product-info { padding: 16px; }
.product-cat { font-size: 11px; color: var(--purple-light); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 6px; line-height: 1.4; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--purple-light); }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.stars { color: #f39c12; font-size: 13px; letter-spacing: 1px; }
.rating-count { color: #999; font-size: 12px; }
.product-variant { color: #888; font-size: 12px; margin-bottom: 8px; }
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.price-current { font-family: var(--font-heading); font-size: 17px; color: var(--purple-dark); font-weight: 700; }
.price-old { font-size: 13px; color: #aaa; text-decoration: line-through; }
.price-discount { font-size: 12px; font-weight: 700; color: #27ae60; }
.btn-add-cart {
  width: 100%; background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  color: #fff; border: none; padding: 10px;
  border-radius: 8px; font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.5px; cursor: pointer;
  transition: var(--transition); display: flex; align-items: center;
  justify-content: center; gap: 8px;
}
.btn-add-cart:hover { background: linear-gradient(135deg, var(--purple-light), var(--purple-bright)); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(92,61,158,0.3); }

/* Product Tabs */
.product-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  background: none; border: 1px solid #ddd;
  color: var(--text-muted); font-family: var(--font-heading);
  font-size: 12px; letter-spacing: 0.5px;
  padding: 8px 20px; border-radius: 20px; cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--purple-mid); border-color: var(--purple-mid);
  color: #fff;
}

/* ── Product Detail Page ──────────────────────────────────── */
.product-detail-section { padding: 50px 0; }
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
  background: #f5f0ff; border-radius: var(--radius-lg);
  aspect-ratio: 1; display: flex; align-items: center;
  justify-content: center; font-size: 100px;
  margin-bottom: 12px; overflow: hidden; position: relative;
}
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 72px; border-radius: 8px;
  background: #f5f0ff; border: 2px solid transparent;
  overflow: hidden; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--purple-light); }
.product-detail-info { padding-left: 20px; }
.product-detail-cat { color: var(--purple-light); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.product-detail-name { font-family: var(--font-display); font-size: clamp(22px,3vw,32px); color: var(--purple-dark); margin-bottom: 12px; }
.product-detail-price { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.detail-price { font-size: 28px; font-family: var(--font-heading); color: var(--purple-dark); font-weight: 700; }
.detail-price-old { font-size: 18px; color: #aaa; text-decoration: line-through; }
.detail-discount { background: #27ae60; color: #fff; font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.variant-label { font-family: var(--font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; color: var(--text-main); }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.variant-btn {
  border: 1.5px solid #ddd; background: #fff;
  color: var(--text-main); font-size: 13px;
  padding: 8px 16px; border-radius: 6px; cursor: pointer;
  transition: var(--transition);
}
.variant-btn.active, .variant-btn:hover { border-color: var(--purple-light); background: #f0ebff; color: var(--purple-light); }
.qty-add-row { display: flex; gap: 12px; margin-bottom: 16px; }
.qty-box { display: flex; align-items: center; border: 1.5px solid #ddd; border-radius: 8px; overflow: hidden; }
.qty-box button { background: none; border: none; padding: 12px 16px; font-size: 20px; cursor: pointer; color: var(--purple-dark); }
.qty-box input { width: 50px; text-align: center; border: none; font-size: 16px; outline: none; }
.btn-add-cart-main {
  flex: 1; background: linear-gradient(135deg, var(--purple-mid), var(--purple-light));
  color: #fff; border: none; padding: 14px; border-radius: 8px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-add-cart-main:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,61,158,0.3); }
.btn-buy-now {
  width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: #000; border: none; padding: 14px; border-radius: 8px;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  cursor: pointer; transition: var(--transition); margin-bottom: 16px;
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-wishlist {
  background: none; border: 1.5px solid #ddd; color: #999;
  padding: 14px; border-radius: 8px; cursor: pointer;
  font-size: 18px; transition: var(--transition);
}
.btn-wishlist:hover, .btn-wishlist.active { border-color: #e74c3c; color: #e74c3c; }

/* ── Category / Shop Page ─────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.filter-sidebar { position: sticky; top: 90px; }
.filter-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid #e8e0f5; padding: 20px; margin-bottom: 16px; }
.filter-title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--purple-dark); margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.filter-item { display: flex; align-items: center; gap: 10px; padding: 5px 0; cursor: pointer; }
.filter-item label { font-size: 13px; color: var(--text-muted); cursor: pointer; flex: 1; }
.filter-item input { accent-color: var(--purple-light); width: 16px; height: 16px; }
.price-range-slider { width: 100%; accent-color: var(--purple-light); }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-count { font-size: 14px; color: var(--text-muted); }
.sort-select {
  border: 1px solid #ddd; padding: 8px 16px; border-radius: 8px;
  font-size: 13px; color: var(--text-main); background: #fff; cursor: pointer;
}

/* ── Cart Page ────────────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-family: var(--font-heading); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); padding: 12px 0; border-bottom: 2px solid #e8e0f5; text-align: left; }
.cart-table td { padding: 20px 0; border-bottom: 1px solid #f0ebff; vertical-align: middle; }
.cart-product-td { display: flex; align-items: center; gap: 16px; }
.cart-product-td img { width: 80px; height: 80px; object-fit: cover; border-radius: 10px; background: #f5f0ff; }
.cart-product-info h5 { font-family: var(--font-heading); font-size: 14px; color: var(--purple-dark); margin-bottom: 4px; }
.cart-product-info span { font-size: 12px; color: #999; }
.order-summary-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 24px; color: var(--text-light);
  position: sticky; top: 90px;
}
.order-summary-card h4 { font-family: var(--font-display); color: var(--gold-light); font-size: 16px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.summary-total { display: flex; justify-content: space-between; padding-top: 12px; font-family: var(--font-heading); font-size: 18px; color: var(--gold-mid); font-weight: 700; }

/* ── Checkout ─────────────────────────────────────────────── */
.checkout-section { padding: 50px 0; }
.checkout-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid #e8e0f5; padding: 28px; margin-bottom: 20px; }
.checkout-card-title { font-family: var(--font-heading); font-size: 16px; color: var(--purple-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #e8e0f5; }
.form-label { font-family: var(--font-heading); font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-control {
  border: 1.5px solid #ddd; border-radius: 8px;
  padding: 11px 14px; font-size: 14px; width: 100%;
  transition: var(--transition); background: #fafafa;
}
.form-control:focus { border-color: var(--purple-light); outline: none; background: #fff; box-shadow: 0 0 0 3px rgba(92,61,158,0.1); }
.payment-method-card {
  border: 1.5px solid #ddd; border-radius: 10px;
  padding: 14px 18px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.payment-method-card.active, .payment-method-card:hover { border-color: var(--purple-light); background: #f0ebff; }
.payment-icon { font-size: 22px; width: 36px; text-align: center; }
.btn-place-order {
  width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: #000; border: none; padding: 16px;
  border-radius: 10px; font-family: var(--font-heading);
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.5px;
}
.btn-place-order:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ── Auth Pages ───────────────────────────────────────────── */
.auth-page {
  min-height: 80vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1055 100%);
}
.auth-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-lg);
  padding: 40px; max-width: 480px; width: 100%; margin: 0 auto;
}
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-title { font-family: var(--font-display); color: var(--gold-mid); font-size: 24px; text-align: center; margin-bottom: 8px; }
.auth-subtitle { text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 28px; }
.auth-form .form-label { color: rgba(255,255,255,0.7); }
.auth-form .form-control { background: rgba(255,255,255,0.06); border-color: rgba(201,168,76,0.2); color: #fff; }
.auth-form .form-control:focus { border-color: var(--gold-mid); background: rgba(255,255,255,0.09); }
.btn-auth {
  width: 100%; background: linear-gradient(135deg, var(--gold-dark), var(--gold-mid));
  color: #000; border: none; padding: 14px;
  border-radius: 8px; font-family: var(--font-heading);
  font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.btn-auth:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.auth-links { text-align: center; margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 14px; }
.auth-links a { color: var(--gold-light); }
.auth-links a:hover { color: var(--gold-mid); }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: rgba(255,255,255,0.3); font-size: 13px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.15); }
.btn-google {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 12px; border-radius: 8px; cursor: pointer;
  font-size: 14px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-google:hover { background: rgba(255,255,255,0.13); }

/* ── Account Dashboard ────────────────────────────────────── */
.account-sidebar { padding: 24px; background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.account-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright)); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--gold-mid); margin-bottom: 12px; }
.account-name { font-family: var(--font-heading); color: var(--gold-light); font-size: 16px; }
.account-email { color: #888; font-size: 13px; }
.account-nav { margin-top: 20px; }
.account-nav a { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 14px; padding: 10px 12px; border-radius: 8px; transition: var(--transition); }
.account-nav a:hover, .account-nav a.active { background: rgba(201,168,76,0.1); color: var(--gold-mid); }
.account-nav a i { width: 18px; text-align: center; }

/* ── Blog ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #e8e0f5; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45,16,85,0.1); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, #f5f0ff, #ebe3ff); display: flex; align-items: center; justify-content: center; font-size: 60px; }
.blog-card-body { padding: 20px; }
.blog-cat { font-size: 11px; color: var(--purple-light); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.blog-title { font-family: var(--font-heading); font-size: 16px; color: var(--purple-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--purple-light); }
.blog-excerpt { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: #bbb; }
.blog-read-more { color: var(--purple-light); font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.blog-read-more:hover { color: var(--purple-dark); }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; color: var(--text-light); }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-mid); font-size: 18px; flex-shrink: 0; }
.contact-info-text h5 { font-family: var(--font-heading); color: var(--gold-light); font-size: 14px; margin-bottom: 2px; }
.contact-info-text p, .contact-info-text a { color: #bbb; font-size: 13px; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb-section { background: linear-gradient(135deg, var(--purple-dark), var(--purple-mid)); padding: 40px 0; }
.breadcrumb-section h1 { font-family: var(--font-display); color: var(--gold-light); font-size: clamp(22px,3vw,36px); margin-bottom: 10px; }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item { font-size: 13px; color: rgba(245,240,255,0.6); }
.breadcrumb-item a { color: rgba(245,240,255,0.7); }
.breadcrumb-item a:hover { color: var(--gold-mid); }
.breadcrumb-item.active { color: var(--gold-mid); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(245,240,255,0.3); }

/* ── Pagination ───────────────────────────────────────────── */
.pagination .page-link { border-color: #e8e0f5; color: var(--purple-light); border-radius: 8px !important; margin: 0 2px; }
.pagination .page-link:hover, .pagination .page-item.active .page-link { background: var(--purple-light); border-color: var(--purple-light); color: #fff; }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid #e8e0f5; padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(45,16,85,0.08); }
.testimonial-stars { color: #f39c12; font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-mid), var(--purple-bright)); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold-mid); }
.testimonial-name { font-family: var(--font-heading); font-size: 14px; color: var(--purple-dark); margin-bottom: 2px; }
.testimonial-loc { font-size: 12px; color: #bbb; }

/* ── Alert / Toast ────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 10px; }
.alert i { font-size: 16px; margin-top: 1px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast-item {
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-light); padding: 14px 20px;
  border-radius: 10px; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  min-width: 280px; max-width: 360px;
  animation: slideInRight 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.toast-item.success { border-left: 3px solid #27ae60; }
.toast-item.error   { border-left: 3px solid #e74c3c; }
.toast-item.info    { border-left: 3px solid var(--purple-bright); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ── Footer ───────────────────────────────────────────────── */
.footer-newsletter {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  padding: 40px 0; border-bottom: 1px solid var(--border);
}
.footer-newsletter h4 { font-family: var(--font-heading); color: var(--gold-light); margin-bottom: 6px; }
.footer-newsletter p { color: rgba(245,240,255,0.6); font-size: 14px; margin: 0; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(201,168,76,0.3); color: #fff; padding: 12px 16px; border-radius: 8px 0 0 8px; border-right: none; font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { background: var(--gold-mid); color: #000; border: none; padding: 12px 24px; border-radius: 0 8px 8px 0; font-family: var(--font-heading); font-size: 13px; font-weight: 700; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--gold-light); }
.footer-main { background: var(--bg-dark); padding: 60px 0 40px; }
.footer-logo { display: flex; align-items: center; gap: 8px; color: var(--gold-mid); font-family: var(--font-display); font-size: 18px; text-decoration: none; margin-bottom: 14px; }
.footer-brand p { color: #888; font-size: 13px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 14px; transition: var(--transition); }
.social-links a:hover { background: var(--gold-mid); color: #000; border-color: var(--gold-mid); }
.footer-heading { font-family: var(--font-heading); color: var(--gold-mid); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #888; font-size: 13px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; color: #888; font-size: 13px; align-items: flex-start; }
.footer-contact li i { color: var(--gold-mid); width: 16px; flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #888; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-timing { background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.15); color: var(--gold-light); padding: 8px 12px; border-radius: 8px; font-size: 13px; }
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-bottom { background: rgba(0,0,0,0.4); padding: 16px 0; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-bottom p { color: #666; font-size: 13px; margin: 0; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 999;
  background: #25d366; color: #fff; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1ebe5d; color: #fff; transform: scale(1.1); }
.back-to-top {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--purple-light); color: #fff; width: 44px; height: 44px;
  border-radius: 50%; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 16px rgba(92,61,158,0.4);
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--purple-bright); transform: translateY(-2px); }

/* ── Admin Panel ──────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; background: #f0f2f5; }
.admin-sidebar {
  width: 260px; background: var(--bg-dark);
  border-right: 1px solid var(--border); flex-shrink: 0;
  display: flex; flex-direction: column;
  transition: var(--transition); position: fixed; top: 0; left: 0;
  height: 100vh; z-index: 100; overflow-y: auto;
}
.admin-sidebar.collapsed { width: 70px; }
.admin-sidebar-logo { padding: 20px 16px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.admin-nav-link {
  display: flex; align-items: center; gap: 12px; color: #bbb;
  font-size: 13px; padding: 11px 18px; transition: var(--transition);
  border-left: 3px solid transparent; white-space: nowrap;
}
.admin-nav-link i { font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.admin-nav-link:hover, .admin-nav-link.active { color: var(--gold-mid); background: rgba(201,168,76,0.07); border-left-color: var(--gold-mid); }
.admin-nav-group { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #555; padding: 14px 18px 4px; }
.admin-main { margin-left: 260px; flex: 1; }
.admin-topbar { background: #fff; padding: 14px 24px; border-bottom: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; }
.admin-page { padding: 28px 24px; }
.admin-page-title { font-family: var(--font-heading); font-size: 22px; color: var(--purple-dark); margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--radius-lg); padding: 24px; border: 1px solid #e5e7eb; transition: var(--transition); }
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.stat-num  { font-size: 28px; font-weight: 800; color: var(--purple-dark); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.stat-change { font-size: 12px; margin-top: 8px; }
.stat-change.up   { color: #27ae60; }
.stat-change.down { color: #e74c3c; }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); font-weight: 600; padding: 12px 16px; border-bottom: 1px solid #e5e7eb; text-align: left; background: #fafafa; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid #f5f5f5; font-size: 14px; color: var(--text-main); vertical-align: middle; }
.admin-table tr:hover td { background: #fafbff; }
.status-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-shipped   { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-paid      { background: #d4edda; color: #155724; }
.status-failed    { background: #f8d7da; color: #721c24; }

.admin-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid #e5e7eb; overflow: hidden; }
.admin-card-header { padding: 16px 20px; border-bottom: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; }
.admin-card-header h5 { font-family: var(--font-heading); font-size: 15px; color: var(--purple-dark); margin: 0; }
.admin-card-body { padding: 20px; }
.btn-admin-primary { background: var(--purple-light); color: #fff; border: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; cursor: pointer; font-weight: 700; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-admin-primary:hover { background: var(--purple-bright); }
.btn-admin-danger { background: #e74c3c; color: #fff; border: none; padding: 7px 14px; border-radius: 6px; font-size: 12px; cursor: pointer; }
.btn-admin-sm { padding: 6px 12px; font-size: 12px; }

/* ── Utilities ────────────────────────────────────────────── */
.text-gold  { color: var(--gold-mid) !important; }
.text-purple { color: var(--purple-light) !important; }
.bg-purple-dark { background: var(--purple-dark) !important; }
.font-heading { font-family: var(--font-heading) !important; }
.section-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gold-mid), transparent); margin: 0; }
.loading-spinner { width: 40px; height: 40px; border: 3px solid #f0ebff; border-top-color: var(--purple-light); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 6px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 991px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .filter-sidebar.open { display: block; }
  .hero-visual { display: none; }
  .hero-text { flex: 0 0 100%; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-large { grid-column: span 1; grid-row: span 1; min-height: 180px; }
  .hero-stats { gap: 20px; }
  .main-nav { display: none; }
  .admin-main { margin-left: 0; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
}
@media (max-width: 767px) {
  .header-inner { padding: 8px 0; }
  .logo-tag { display: none; }
  .site-logo-img { height: 52px; }
  .trust-grid { justify-content: center; }
  .trust-item:nth-child(n+4) { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-stats { gap: 12px; }
  .hero-stat-num { font-size: 20px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .section { padding: 48px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .announcement-bar .container { flex-wrap: wrap; gap: 6px; justify-content: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-info { padding: 12px; }
  .price-current { font-size: 14px; }
  .btn-add-cart { padding: 8px; font-size: 11px; }
  .site-logo-img { height: 44px; }
  .header-inner { padding: 6px 0; gap: 10px; }
  .hdr-btn { width: 36px; height: 36px; font-size: 16px; }
}
