/* ══════════════════════════════════════════
   DELALI'S HAIR & BEAUTY — Luxury Design System
   Premium Obsidian Amethyst & Velvet Orchid Wine
   Alternating High-End Lavender Champagne Light Mode Layers
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Obsidian Gold Theme Backgrounds ── */
  --bg-primary: #0a0908;      /* Elegant Black */
  --bg-secondary: #12100e;    /* Rich Charcoal Black */
  --bg-tertiary: #1a1816;     /* Dark Sable */
  --bg-card: #141311;         /* Premium Card Black */
  --bg-elevated: #22201d;     /* Elevated Floating Layer */

  /* ── Luxury Nude Beige Premium Light Backgrounds (NOT White) ── */
  --light-primary: #faf6f2;   /* Premium Creamy Nude Silk */
  --light-secondary: #f2e9e1; /* Satin Nude Beige */
  --light-card: #fdfbf7;      /* Bright Cream Card */
  --light-border: rgba(197, 160, 89, 0.18); /* Soft Gold Border */

  /* ── Brand Nude Beige & Luxury Gold Palette ── */
  --brand-deep: #8a6f3e;      /* Deep Muted Gold/Bronze */
  --brand-primary: #c5a059;   /* Classic Luxury Gold */
  --brand-light: #dfbe83;     /* Glowing Soft Gold */
  --brand-soft: #f5ece6;      /* Premium Nude Beige Tint */
  --brand-glow: rgba(197, 160, 89, 0.35);
  --brand-subtle: rgba(197, 160, 89, 0.12);

  /* ── Accent Metallic Gold ── */
  --gold: #d4af37;            /* True Metallic Gold */
  --gold-light: #f3dcb3;      /* Soft Shimmer Gold */

  /* ── Dark Theme Text Colors ── */
  --text-primary: #fdfaf7;
  --text-secondary: #e5dec9;
  --text-muted: #b5a497;
  --text-inverse: #0a0908;

  /* ── Glass ── */
  --glass-bg: rgba(197, 160, 89, 0.06);
  --glass-border: rgba(197, 160, 89, 0.2);
  --glass-hover: rgba(197, 160, 89, 0.18);

  /* ── Statuses ── */
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #c5a059;

  /* ── Premium Gradients ── */
  --gradient-brand: linear-gradient(135deg, #c5a059, #dfbe83);
  --gradient-dark: linear-gradient(135deg, #0a0908 0%, #161413 50%, #0a0908 100%);
  --gradient-light-sec: linear-gradient(135deg, #faf6f2 0%, #f2e9e1 100%);
  --gradient-card: linear-gradient(145deg, rgba(197, 160, 89, 0.1), rgba(22, 20, 19, 0.05));
  --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(10, 9, 8, 0.9) 100%);

  /* ── Fonts ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* ── Layout Sizes ── */
  --section-padding: clamp(60px, 9vw, 110px);
  --container-max: 1300px;
  --container-padding: clamp(16px, 4vw, 36px);

  /* ── Radius & Shadows ── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.6);
  --shadow-glow: 0 0 35px rgba(197, 160, 89, 0.25);
  --shadow-light: 0 10px 40px rgba(0,0,0,0.04);

  /* ── Transitions ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-base: 0.35s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background: var(--bg-primary); color: var(--text-primary); line-height: 1.75; overflow-x: hidden; font-size: 15px; }
a { color: var(--brand-light); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--brand-soft); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.25; color: var(--text-primary); }
::selection { background: var(--brand-primary); color: #fff; }

/* ── Webkit Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #22201d; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-primary); }

/* ── Global Layout Wrappers ── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; }
.section { padding: var(--section-padding) 0; position: relative; }
.section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 70px); }
.section-label { font-family: var(--font-accent); font-size: clamp(14px, 2vw, 17px); color: var(--brand-light); text-transform: uppercase; letter-spacing: 4px; margin-bottom: 12px; display: block; font-weight: 600; font-style: italic; }
.section-title { font-size: clamp(28px, 5vw, 50px); margin-bottom: 16px; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 700; }
.section-subtitle { font-size: clamp(15px, 2vw, 18px); color: var(--text-secondary); max-width: 650px; margin: 0 auto; line-height: 1.8; }
.section-divider { width: 70px; height: 3px; background: var(--gradient-brand); margin: 20px auto 0; border-radius: 3px; }

/* ── Light but Not Plain White Alternating Sections ── */
.section-light { background: var(--light-primary); background: var(--gradient-light-sec); color: #2e2620; }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: #12100e; }
.section-light .section-title { background: linear-gradient(135deg, #8a6f3e, #c5a059); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-light .section-subtitle { color: #4e433a; }
.section-light .text-muted { color: #7d7065; }
.section-light .glass-card { background: rgba(253, 251, 247, 0.7); border: 1px solid var(--light-border); box-shadow: var(--shadow-light); }
.section-light .glass-card:hover { border-color: var(--brand-primary); box-shadow: 0 10px 45px rgba(197, 160, 89, 0.08); transform: translateY(-4px); }
.section-light .product-card { background: #ffffff; border: 1px solid var(--light-border); box-shadow: var(--shadow-light); }
.section-light .product-card:hover { border-color: var(--brand-light); box-shadow: 0 12px 40px rgba(197, 160, 89, 0.1); }
.section-light .product-name a { color: #2e2620; }
.section-light .product-brand { color: var(--brand-deep); }
.section-light .product-price { color: var(--brand-primary); }
.section-light .reviewer-name { color: #12100e !important; }
.section-light .review-card { background: #ffffff; border: 1px solid var(--light-border); box-shadow: var(--shadow-light); color: #4e433a; }
.section-light .review-text { color: #3f352e; }

/* ── Premium Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 34px; font-size: 13px; font-weight: 600; border-radius: var(--radius-full); transition: all var(--transition-base); text-transform: uppercase; letter-spacing: 1.5px; position: relative; overflow: hidden; white-space: nowrap; }
.btn::before { content: ''; position: absolute; inset: 0; border-radius: inherit; transition: opacity var(--transition-base); opacity: 0; }
.btn:hover::before { opacity: 1; }
.btn-primary { background: var(--gradient-brand); color: #0a0908; font-weight: 700; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 45px rgba(197, 160, 89, 0.45); color: #0a0908; }
.btn-primary::before { background: linear-gradient(135deg, #dfbe83, #c5a059); }
.btn-outline { background: transparent; color: var(--brand-light); border: 1.5px solid var(--glass-border); backdrop-filter: blur(10px); }
.btn-outline:hover { border-color: var(--brand-primary); background: var(--brand-subtle); color: #fff; transform: translateY(-2px); }
.btn-gold { background: var(--gradient-brand); color: #0a0908; font-weight: 700; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-sm { padding: 10px 22px; font-size: 11px; letter-spacing: 1px; }
.btn-lg { padding: 18px 44px; font-size: 14px; }

/* ── Frosted Glass Cards ── */
.glass-card { background: var(--gradient-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); transition: all var(--transition-base); }
.glass-card:hover { border-color: rgba(197, 160, 89, 0.45); box-shadow: var(--shadow-glow); transform: translateY(-4px); }

/* ── Standard Input Forms ── */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1.2px; }
.form-input, .form-textarea { width: 100%; padding: 14px 18px; background: var(--bg-tertiary); border: 1px solid var(--glass-border); border-radius: var(--radius-md); color: var(--text-primary); font-size: 15px; transition: all var(--transition-fast); }
.form-input:focus, .form-textarea:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(197,160,89,0.2); background: var(--bg-elevated); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { width: 100%; padding: 14px 38px 14px 18px; background: var(--bg-tertiary); border: 1px solid var(--glass-border); border-radius: var(--radius-md); color: var(--text-primary); font-size: 15px; transition: all var(--transition-fast); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c5a059' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; cursor: pointer; }
.form-select:focus { border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(197,160,89,0.2); background: var(--bg-elevated); }

.section-light .form-input, .section-light .form-textarea, .section-light .form-select { background: #ffffff; border: 1px solid var(--light-border); color: #2e2620; }
.section-light .form-input:focus, .section-light .form-textarea:focus, .section-light .form-select:focus { background: #faf6f2; border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(197,160,89,0.15); }
.section-light .form-label { color: #4e433a; }

/* ── Product Card Systems ── */
.product-card { background: var(--bg-card); border: 1px solid rgba(197,160,89,0.08); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition-base); position: relative; }
.product-card:hover { transform: translateY(-6px); border-color: rgba(197,160,89,0.3); box-shadow: var(--shadow-glow); }
.product-card .product-image { position: relative; overflow: hidden; aspect-ratio: 1/1.15; background: var(--bg-tertiary); }
.product-card .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-card .product-actions { position: absolute; top: 12px; right: 12px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(10px); transition: all var(--transition-base); }
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-card .product-actions .action-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(10,9,8,0.85); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); color: var(--text-primary); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all var(--transition-fast); cursor: pointer; }
.product-card .product-actions .action-btn:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: #0a0908; }
.product-card .product-info { padding: 18px; }
.product-card .product-brand { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-light); margin-bottom: 6px; font-weight: 600; }
.product-card .product-name { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 8px; color: inherit; line-height: 1.3; }
.product-card .product-name a { color: inherit; }
.product-card .product-name a:hover { color: var(--brand-light); }
.product-card .product-price { font-size: 18px; font-weight: 700; color: var(--brand-light); }
.product-card .product-price .old-price { font-size: 14px; color: var(--text-muted); text-decoration: line-through; font-weight: 400; margin-left: 8px; }
.product-card .badge { position: absolute; top: 12px; left: 12px; padding: 5px 14px; font-size: 10px; font-weight: 600; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 1px; z-index: 2; }
.badge-new { background: var(--brand-primary); color: #0a0908; font-weight: 700; }
.badge-sale { background: var(--danger); color: #fff; }
.badge-hot { background: var(--gold); color: var(--text-inverse); }
.product-card .add-to-cart-btn { width: 100%; padding: 12px; background: var(--brand-subtle); border: none; color: var(--brand-light); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all var(--transition-fast); display: flex; align-items: center; justify-content: center; gap: 8px; }
.product-card .add-to-cart-btn:hover { background: var(--brand-primary); color: #0a0908; }

/* ── Stars ── */
.star-rating { display: inline-flex; gap: 2px; color: var(--gold); font-size: 14px; }

/* ── Product Grids ── */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; justify-content: center; }
@media (min-width: 992px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1200px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

/* ── Blurred Top Navbar ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all var(--transition-base); }
.navbar.scrolled { background: rgba(10, 9, 8, 0.93); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 12px 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.navbar .logo { display: flex; align-items: center; gap: 10px; }
.navbar .logo-text { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--text-primary); letter-spacing: 1.5px; }
.navbar .logo-text span { color: var(--brand-light); }
.nav-links { display: flex; align-items: center; gap: 16px; }
.nav-links a { color: var(--text-secondary); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; position: relative; transition: color var(--transition-fast); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient-brand); border-radius: 2px; transition: width var(--transition-base); }
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-right .nav-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-primary); font-size: 18px; transition: all var(--transition-fast); position: relative; cursor: pointer; }
.nav-right .nav-icon:hover { background: var(--brand-subtle); border-color: var(--brand-primary); color: var(--brand-light); }
.nav-right .cart-count { position: absolute; top: -4px; right: -4px; width: 20px; height: 20px; background: var(--brand-primary); color: #fff; font-size: 11px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all var(--transition-fast); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Sidebar Drawer ── */
@media (max-width: 991px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 290px; height: 100vh; background: var(--bg-secondary); flex-direction: column; justify-content: center; gap: 24px; padding: 40px; transition: right var(--transition-base); border-left: 1px solid var(--glass-border); z-index: 1000; }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 16px; }
  .hamburger { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 999; }
  .nav-overlay.active { display: block; }
}

/* ── Footer ── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand p { color: var(--text-secondary); margin-top: 16px; font-size: 14px; line-height: 1.8; }
.footer-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 24px; color: var(--text-primary); }
.footer-links a { display: block; color: var(--text-secondary); font-size: 14px; padding: 6px 0; transition: all var(--transition-fast); }
.footer-links a:hover { color: var(--brand-light); transform: translateX(4px); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 16px; transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 24px 0; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 13px; }
@media (max-width: 991px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { 
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

/* ── Interactive Toasts ── */
.toast { position: fixed; top: 100px; right: 24px; padding: 16px 24px; background: var(--bg-elevated); border: 1px solid var(--glass-border); border-radius: var(--radius-md); color: var(--text-primary); font-size: 14px; display: flex; align-items: center; gap: 12px; z-index: 9999; transform: translateX(120%); transition: transform var(--transition-base); box-shadow: var(--shadow-lg); }
.toast.show { transform: translateX(0); }
.toast.success { border-color: var(--success); }
.toast.success i { color: var(--success); }
.toast.error { border-color: var(--danger); }
.toast.error i { color: var(--danger); }

/* ── Modal Overlay System ── */
.modal-overlay { position: fixed; inset: 0; background: rgba(10, 9, 8, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity var(--transition-base), visibility var(--transition-base); padding: 20px; }
.modal-overlay.active { opacity: 1; pointer-events: all; visibility: visible; }
.modal { background: var(--bg-secondary); border: 1px solid var(--glass-border); border-radius: var(--radius-xl); max-width: 530px; width: 100%; max-height: 90vh; overflow-y: auto; transform: scale(0.9) translateY(20px); transition: transform var(--transition-base); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header { padding: 24px 28px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { font-size: 20px; }
.modal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-secondary); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-fast); font-size: 18px; }
.modal-close:hover { background: var(--danger); border-color: var(--danger); color: #fff; }
.modal-body { padding: 28px; }

/* ── Welcome Overlay ── */
#welcome-popup .modal { background: linear-gradient(145deg, #0a0908, #161413); border: 1px solid rgba(197, 160, 89, 0.3); }

/* ── Floating WhatsApp CTA ── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; z-index: 900; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all var(--transition-fast); animation: float-bounce 3s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes float-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Standard Page Hero ── */
.page-hero { padding: 140px 0 70px; background: var(--gradient-dark); text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--glass-border); }
.page-hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 50%); animation: drift 20s ease-in-out infinite; }
.page-hero h1 { font-size: clamp(32px, 6vw, 54px); margin-bottom: 12px; position: relative; font-family: var(--font-display); }
.page-hero p { color: var(--text-secondary); font-size: clamp(15px, 2vw, 18px); position: relative; max-width: 700px; margin: 0 auto; }
@keyframes drift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }

/* ── Loading Spinner Overlay ── */
.page-loader { position: fixed; inset: 0; background: var(--bg-primary); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; transition: opacity 0.5s, visibility 0.5s; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner { width: 44px; height: 44px; border: 3px solid var(--glass-border); border-top-color: var(--brand-light); border-radius: 50%; animation: spin 0.8s linear infinite; }
.loader-text { font-family: var(--font-display); font-size: 17px; color: var(--brand-light); letter-spacing: 4px; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-brand { color: var(--brand-light); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 991px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Breadcrumb ── */
.breadcrumb { padding: 110px 0 20px; }
.breadcrumb ul { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li a { color: var(--text-secondary); }
.breadcrumb li a:hover { color: var(--brand-light); }
.breadcrumb .separator { color: var(--text-muted); }
