/* ==========================================================================
   Theme 1: Luxe Elegance — Premium Fashion, Jewelry & Luxury Boutique
   Rose Gold × Obsidian Glass  |  Category: Luxury & Boutique
   ========================================================================== */

/* ── Override Global CSS Variables ───────────────────────────────── */
body.theme-luxe_elegance {
  --primary-color: #e11d48;
  --primary-hover: #be123c;
  --primary-gradient: linear-gradient(135deg, #e11d48 0%, #9f1239 100%);
  --bg-color: #080b12;
  --text-color: #f1f5f9;
  --text-muted: #94a3b8;
  --card-bg: rgba(15, 20, 35, 0.88);
  --card-border: rgba(225, 29, 72, 0.22);
  --border-color: rgba(225, 29, 72, 0.15);
  --success-color: #34d399;
  --error-color: #fb7185;
  --accent: #fbbf24;
  --btn-hover-shadow: 0 8px 28px rgba(225, 29, 72, 0.55);
  --border-radius-lg: 28px;
  --border-radius-md: 20px;
  --border-radius-sm: 14px;

  /* Theme-specific tokens */
  --theme-primary: #e11d48;
  --theme-accent: #fbbf24;
  --theme-glow: rgba(225, 29, 72, 0.35);
  --theme-font: 'Outfit', 'Noto Sans Lao', serif;
}

/* ── Body & Background ────────────────────────────────────────────── */
body.theme-luxe_elegance {
  background-color: #080b12;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(225, 29, 72, 0.20) 0px, transparent 55%),
    radial-gradient(ellipse at 100% 10%, rgba(251, 191, 36, 0.10) 0px, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(136, 19, 55, 0.18) 0px, transparent 55%);
  color: #f1f5f9;
  font-family: var(--theme-font);
}

/* ── Header / Navbar ──────────────────────────────────────────────── */
body.theme-luxe_elegance .site-header {
  background: rgba(8, 11, 18, 0.92);
  border-bottom: 1px solid rgba(225, 29, 72, 0.20);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

body.theme-luxe_elegance .header-search input {
  background: rgba(225, 29, 72, 0.07);
  border-color: rgba(225, 29, 72, 0.22);
  color: #f1f5f9;
}

body.theme-luxe_elegance .header-search input:focus {
  border-color: #e11d48;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.18);
}

/* ── Hero Section ─────────────────────────────────────────────────── */
body.theme-luxe_elegance .hero {
  background: linear-gradient(135deg, #0f0416 0%, #1a0510 40%, #0a0d1a 100%);
  border-bottom: 1px solid rgba(225, 29, 72, 0.18);
}

body.theme-luxe_elegance .hero::before {
  background: radial-gradient(ellipse at center, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
}

body.theme-luxe_elegance .hero-badge {
  background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
}

body.theme-luxe_elegance .hero-content h1 {
  font-family: 'Outfit', 'Noto Sans Lao', serif;
  letter-spacing: -0.03em;
}

/* ── Product Cards ────────────────────────────────────────────────── */
body.theme-luxe_elegance .product-card,
body.theme-luxe_elegance .glass-card {
  background: rgba(14, 20, 38, 0.85);
  border: 1px solid rgba(225, 29, 72, 0.20);
  border-radius: 26px;
  box-shadow: 0 8px 28px -8px rgba(0, 0, 0, 0.45);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

body.theme-luxe_elegance .product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 29, 72, 0.55);
  box-shadow:
    0 24px 48px -12px rgba(225, 29, 72, 0.28),
    0 0 0 1px rgba(225, 29, 72, 0.15);
}

/* ── Buttons ──────────────────────────────────────────────────────── */
body.theme-luxe_elegance .order-btn,
body.theme-luxe_elegance .btn-primary,
body.theme-luxe_elegance .btn-buy,
body.theme-luxe_elegance .modal-order-btn {
  background: linear-gradient(135deg, #e11d48 0%, #9f1239 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 24px -6px rgba(225, 29, 72, 0.50);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-luxe_elegance .order-btn:hover:not(:disabled),
body.theme-luxe_elegance .btn-primary:hover,
body.theme-luxe_elegance .modal-order-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #fb2d5c 0%, #be123c 100%) !important;
  box-shadow: 0 12px 32px -6px rgba(225, 29, 72, 0.65);
  transform: translateY(-2px);
}

/* ── Price Labels ─────────────────────────────────────────────────── */
body.theme-luxe_elegance .product-price,
body.theme-luxe_elegance .modal-price,
body.theme-luxe_elegance .price-tag {
  color: #fbbf24 !important;
  font-weight: 800;
}

body.theme-luxe_elegance .product-old-price,
body.theme-luxe_elegance .modal-old-price {
  color: #64748b;
  text-decoration: line-through;
}

/* ── Category Filters ─────────────────────────────────────────────── */
body.theme-luxe_elegance .cat-filter-list li a.active,
body.theme-luxe_elegance .cat-filter-list li a:hover {
  background: rgba(225, 29, 72, 0.15);
  color: #fb7185;
  border-color: rgba(225, 29, 72, 0.40);
}

body.theme-luxe_elegance .price-range button {
  background: linear-gradient(135deg, #e11d48, #9f1239);
  color: #fff;
}

/* ── Sidebar ──────────────────────────────────────────────────────── */
body.theme-luxe_elegance .shop-sidebar {
  background: rgba(12, 16, 28, 0.80);
  border: 1px solid rgba(225, 29, 72, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

body.theme-luxe_elegance .sidebar-section h3 {
  color: #fbbf24;
  font-family: 'Outfit', serif;
  letter-spacing: 0.05em;
}

/* ── Glass Utility ────────────────────────────────────────────────── */
body.theme-luxe_elegance .glass {
  background: rgba(14, 20, 38, 0.80);
  border: 1px solid rgba(225, 29, 72, 0.18);
  backdrop-filter: blur(20px);
}

/* ── Cart Drawer ──────────────────────────────────────────────────── */
body.theme-luxe_elegance .cart-drawer {
  background: #0b0f1c;
  border-left: 1px solid rgba(225, 29, 72, 0.25);
}

body.theme-luxe_elegance .cart-drawer-header {
  border-bottom: 1px solid rgba(225, 29, 72, 0.18);
}

/* ── Modal ────────────────────────────────────────────────────────── */
body.theme-luxe_elegance .modal-overlay > div,
body.theme-luxe_elegance .product-modal {
  background: rgba(10, 14, 24, 0.97);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: 28px;
  backdrop-filter: blur(30px);
}

body.theme-luxe_elegance .modal-cat {
  color: #fbbf24;
}

/* ── Product Badge ────────────────────────────────────────────────── */
body.theme-luxe_elegance .product-badge {
  background: linear-gradient(135deg, #e11d48, #be123c);
  color: #fff;
  font-weight: 800;
}

/* ── Scrollbar ────────────────────────────────────────────────────── */
body.theme-luxe_elegance ::-webkit-scrollbar-track { background: #0b0f1c; }
body.theme-luxe_elegance ::-webkit-scrollbar-thumb { background: rgba(225, 29, 72, 0.45); border-radius: 8px; }
body.theme-luxe_elegance ::-webkit-scrollbar-thumb:hover { background: #e11d48; }

/* ── Selection Highlight ──────────────────────────────────────────── */
body.theme-luxe_elegance ::selection { background: rgba(225, 29, 72, 0.30); color: #fff; }

/* ── Top Announcement Bar ─────────────────────────────────────────── */
body.theme-luxe_elegance .top-announcement-bar {
  background: linear-gradient(90deg, #881337 0%, #e11d48 50%, #881337 100%);
  color: #fff;
}
