/* ==========================================================================
   LAHZEH WATCHES (BY HAUTE HORLOGERIE) - PRODUCTION STYLESHEET
   Luxury Horology E-Commerce, 100% Responsive, Glassmorphic Design System
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Color Palette */
  --bg-primary: #0a0d12;
  --bg-secondary: #10141d;
  --bg-card: #151a24;
  --bg-card-hover: #1c2230;
  --bg-input: #0f131a;
  --bg-overlay: rgba(8, 10, 14, 0.85);

  /* Gold & Accent Metallics */
  --gold-primary: #c9a86a;
  --gold-light: #edd6a5;
  --gold-bright: #dfbc77;
  --gold-dark: #8e6c2b;
  --gold-gradient: linear-gradient(135deg, #edd6a5 0%, #c9a86a 50%, #947131 100%);
  --gold-glow: rgba(201, 168, 106, 0.25);

  /* Neutrals & Text */
  --text-white: #f8fafc;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 168, 106, 0.35);

  /* System States */
  --success-color: #10b981;
  --danger-color: #ef4444;
  --whatsapp-green: #25d366;
  --whatsapp-hover: #1eb956;

  /* Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.15s ease;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 40px -5px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 10px 30px -5px rgba(201, 168, 106, 0.2);

  /* Layout */
  --container-max-width: 1240px;
  --header-max-width: 1440px;
  --header-height: 86px;
}

/* --- Global Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 70px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, select, input, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- Typography Helpers --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-white);
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-success { color: var(--success-color); }
.text-danger { color: var(--danger-color); }
.text-muted { color: var(--text-muted); }
.text-xs { font-size: 0.75rem; }
.w-100 { width: 100%; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0c0f14;
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.35);
  font-weight: 700;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.5);
  filter: brightness(1.05);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
}
.btn-gold-outline:hover {
  background: rgba(201, 168, 106, 0.12);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-subtle {
  background-color: rgba(37, 211, 102, 0.12);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  font-weight: 600;
}
.btn-whatsapp-subtle:hover {
  background-color: rgba(37, 211, 102, 0.22);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

.btn-icon-outline {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-icon-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 106, 0.15);
  color: var(--text-white);
}

/* --- Section Headers --- */
.section-subtitle {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-white);
}

.section-desc {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  .section-desc {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background-color: #06080c;
  border-bottom: 1px solid rgba(201, 168, 106, 0.16);
  font-size: 0.72rem;
  padding: 8px 0;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.top-announcement-bar .bar-inner {
  width: 100%;
  max-width: var(--header-max-width, 1440px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.bar-left {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.bar-right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.bar-badge {
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid rgba(201, 168, 106, 0.28);
  color: #edd6a5;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.bar-divider {
  color: rgba(201, 168, 106, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.bar-text {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cbd5e1;
  font-weight: 500;
  white-space: nowrap;
}

.bar-text i {
  color: var(--gold-primary);
  font-size: 0.72rem;
}

.bar-link {
  color: #edd6a5;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.bar-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.badge-247 {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.68rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.live-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: livePing 1.8s infinite;
}

@keyframes livePing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@media (max-width: 1040px) {
  .top-announcement-bar .bar-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .bar-left .bar-text:last-of-type,
  .bar-left .bar-divider:last-of-type {
    display: none;
  }
}

@media (max-width: 860px) {
  .top-announcement-bar .bar-inner {
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .bar-left .bar-text,
  .bar-left .bar-divider {
    display: none;
  }
  .bar-divider {
    display: none;
  }
}

/* ==========================================================================
   MAIN SITE HEADER (HAUTE HORLOGERIE BESPOKE ARCHITECTURE)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 9, 14, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.18);
  height: var(--header-height, 86px);
  box-shadow: 0 6px 25px -4px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--header-max-width, 1440px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* --- LEFT: Luxury Brand Logo --- */
.header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 250px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 106, 0.25));
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-mark {
  transform: scale(1.05);
}

.logo-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-bullet {
  font-size: 0.42rem;
  color: var(--gold-light);
}

/* --- CENTER: Desktop Navigation --- */
.desktop-nav {
  display: none;
}

@media (min-width: 1120px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 24px;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5e1;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* --- RIGHT: Header Actions --- */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

/* Direct WhatsApp VIP Concierge Pill */
.header-concierge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.header-concierge-pill i {
  font-size: 1rem;
  color: #25d366;
  transition: color 0.2s;
}

.header-concierge-pill:hover {
  background: #10b981;
  color: #07090e;
  border-color: #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

.header-concierge-pill:hover i {
  color: #07090e;
}

/* Currency Selector */
.currency-selector .custom-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.currency-selector select {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 106, 0.25);
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 28px 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}

.currency-selector .select-arrow {
  position: absolute;
  right: 9px;
  pointer-events: none;
  font-size: 0.62rem;
  color: var(--gold-primary);
}

.currency-selector select:hover,
.currency-selector select:focus {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 106, 0.08);
  color: #ffffff;
}

/* Circular Action Buttons (Search & Cart) */
.header-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: all 0.25s ease;
  font-size: 0.92rem;
}

.header-icon-btn:hover {
  border-color: rgba(201, 168, 106, 0.5);
  color: #edd6a5;
  background: rgba(201, 168, 106, 0.1);
  transform: translateY(-1px);
}

.cart-btn .cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--gold-gradient);
  color: #080b0f;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  border: 1px solid #080b0f;
}

/* Book Viewing CTA Button */
.header-book-btn {
  display: none;
}

@media (min-width: 1320px) {
  .header-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: #07090e;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(201, 168, 106, 0.28);
    white-space: nowrap;
    transition: all 0.25s ease;
  }
  .header-book-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 106, 0.45);
    filter: brightness(1.06);
  }
}

/* Mobile Hamburger Toggle Button */
.mobile-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

@media (min-width: 1120px) {
  .mobile-toggle-btn {
    display: none;
  }
}

.mobile-toggle-btn .bar {
  width: 18px;
  height: 2px;
  background: #cbd5e1;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.mobile-toggle-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 168, 106, 0.1);
}

.mobile-toggle-btn:hover .bar {
  background: var(--gold-light);
}

/* Responsive Adjustments */
@media (min-width: 1120px) and (max-width: 1319px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-left {
    min-width: 220px;
  }
  .desktop-nav {
    margin: 0 16px;
  }
  .nav-links {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }
  .header-actions {
    gap: 10px;
  }
  .header-concierge-pill {
    padding: 7px 12px;
    font-size: 0.7rem;
  }
}

@media (max-width: 1119px) {
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-left {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .header-concierge-pill .concierge-label {
    display: none;
  }
  .header-concierge-pill {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .header-actions {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .logo-title {
    font-size: 1.28rem;
    letter-spacing: 0.2em;
  }
  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.22em;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .header-actions {
    gap: 6px;
  }
  .currency-selector select {
    padding: 6px 20px 6px 8px;
    font-size: 0.72rem;
  }
  .currency-selector .select-arrow {
    right: 6px;
  }
  .header-icon-btn, .mobile-toggle-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

/* Header Dropdown Search */
.header-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  display: none;
  box-shadow: var(--shadow-md);
}

.header-search-bar.active {
  display: block;
}

.search-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-bar-inner input {
  flex: 1;
  background: transparent;
  color: var(--text-white);
  font-size: 1.05rem;
}

.search-bar-inner .search-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.close-search-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}
.close-search-btn:hover {
  color: var(--text-white);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-gold);
  z-index: 1060;
  overflow-y: auto;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo {
  display: flex;
  flex-direction: column;
}

.drawer-logo .logo-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.22em;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.drawer-logo .logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--gold-primary);
  font-weight: 700;
  margin-top: 4px;
}

.drawer-close-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}
.drawer-close-btn:hover {
  color: var(--gold-primary);
}

.drawer-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-contact-badge {
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid var(--border-gold);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-card);
  transition: var(--transition-fast);
}
.drawer-link i {
  color: var(--gold-primary);
  width: 18px;
}
.drawer-link:hover {
  background: var(--bg-card-hover);
  color: var(--gold-light);
  padding-left: 16px;
}

.drawer-footer-info {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.drawer-footer-info p {
  margin-bottom: 10px;
}

/* ==========================================================================
   LIVE DYNAMIC OPERATIONS BAR
   ========================================================================== */
.live-activity-bar {
  background: #0d1118;
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 0.82rem;
  overflow: hidden;
}

.activity-ticker-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gold-primary);
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.25); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.ticker-content {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-light);
}

.ticker-content em {
  color: var(--gold-light);
  font-style: normal;
}

.ticker-metrics {
  display: none;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

@media (min-width: 900px) {
  .ticker-metrics {
    display: flex;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 30%, rgba(201, 168, 106, 0.07) 0%, transparent 60%);
}

.hero-backdrop-glow {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-tag {
  margin-bottom: 16px;
}

.tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.feature-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.feature-pill i {
  color: var(--gold-primary);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* Hero Metrics */
.hero-metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: var(--border-subtle);
}

@media (max-width: 600px) {
  .metric-divider {
    display: none;
  }
  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* Featured Hero Watch Card */
.featured-watch-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201, 168, 106, 0.08);
  transition: var(--transition-smooth);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #0c0f14;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
}

.featured-watch-art {
  display: flex;
  justify-content: center;
  margin: 10px 0 20px;
}

.hero-watch-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.hero-real-watch-img {
  width: 100%;
  max-width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 106, 0.25);
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.75);
  transition: var(--transition-smooth);
}

.hero-real-watch-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.85);
  border-color: var(--gold-primary);
}

.featured-watch-info .info-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.series-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}

.stock-status {
  font-size: 0.75rem;
  font-weight: 600;
}
.stock-status.in-stock {
  color: var(--success-color);
}

.watch-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.watch-snippet {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.watch-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-white);
}

.original-price {
  font-size: 0.9rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 6px;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   TRUST BADGES STRIP
   ========================================================================== */
.trust-badges-strip {
  background: #0c0f16;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 36px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COLLECTIONS & PRODUCTS CATALOG
   ========================================================================== */
.collections-section {
  padding: 80px 0;
}

.catalog-controls {
  margin: 36px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cat-tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 106, 0.2);
  color: #94a3b8;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cat-tab:hover {
  border-color: var(--gold-primary);
  color: #ffffff;
  background: rgba(201, 168, 106, 0.08);
}

.cat-tab.active {
  background: var(--gold-gradient);
  color: #0c0f14;
  border-color: transparent;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(201, 168, 106, 0.25);
}

@media (max-width: 768px) {
  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
  .cat-tab {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.catalog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 12px 18px;
  border-radius: 8px;
}

.filter-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 240px;
}

.filter-search-box i {
  color: var(--gold-primary);
}

.filter-search-box input {
  width: 100%;
  background: transparent;
  color: var(--text-white);
  font-size: 0.9rem;
}

.filter-sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sort-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.sort-select {
  background: var(--bg-card);
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 106, 0.16);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 106, 0.38);
  box-shadow: 0 14px 32px -4px rgba(0, 0, 0, 0.7);
}

.product-media {
  position: relative;
  background: #0c0f16;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  overflow: hidden;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-real-img-wrap {
  width: 100%;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  background: #07090d;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 106, 0.15);
}

.product-real-watch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.product-card:hover .product-real-watch-img {
  transform: scale(1.08);
}

.product-art-svg {
  max-width: 180px;
  height: 200px;
  transition: var(--transition-smooth);
}

.product-card:hover .product-art-svg {
  transform: scale(1.05);
}

.quick-view-overlay-btn {
  position: absolute;
  bottom: 12px;
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-gold);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.product-card:hover .quick-view-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 6px;
}

.product-category {
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.product-rating {
  color: #fbbf24;
}

.product-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.spec-badge {
  background: var(--bg-secondary);
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 3px 6px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-card-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-white);
}

.product-strike-price {
  font-size: 0.82rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-btn-group {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
}

.product-whatsapp-btn {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--whatsapp-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-whatsapp-btn:hover {
  background: var(--whatsapp-green);
  color: #fff;
}

/* Boutique Consultation Callout Banner */
.boutique-consultation-banner {
  background: #0d1017;
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 8px;
  padding: 24px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5);
}

.consultation-banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 720px;
}

.consultation-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0c0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.25);
}

.consultation-text h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  font-weight: 700;
  color: #ffffff;
}

.consultation-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   PROOF OF OPERATIONS & PHYSICAL SHOWROOM GALLERY
   ========================================================================== */
.operations-section {
  padding: 80px 0;
  background: #0c0f16;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .photo-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .photo-proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.placeholder-media-container {
  position: relative;
  background: #11151e;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.placeholder-overlay-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(12, 15, 20, 0.92);
  border: 1px dashed var(--gold-primary);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.placeholder-overlay-badge.video-badge {
  border-color: var(--whatsapp-green);
  color: #fff;
  background: rgba(37, 211, 102, 0.2);
}

.placeholder-art {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-real-photo-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}

.proof-card:hover .proof-real-photo-img {
  transform: scale(1.06);
}

.placeholder-svg {
  width: 100%;
  height: 140px;
  border-radius: 6px;
}

.placeholder-meta {
  padding: 10px 14px 12px;
  background: rgba(10, 13, 18, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.photo-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.photo-note {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.proof-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.proof-card-body h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.proof-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-status-tag {
  margin-top: auto;
  font-size: 0.72rem;
  color: var(--gold-primary);
  font-weight: 600;
  background: rgba(201, 168, 106, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 106, 0.15);
}

/* Operations Feed Box */
.operations-feed-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.feed-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feed-title h3 {
  font-size: 1.15rem;
}

.feed-badge {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-color);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.feed-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feed-time {
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 600;
  min-width: 105px;
  white-space: nowrap;
}

.feed-icon {
  color: var(--gold-primary);
  font-size: 0.95rem;
  margin-top: 2px;
}

.feed-desc {
  font-size: 0.88rem;
  color: var(--text-light);
}

.feed-desc strong {
  color: var(--text-white);
}

@media (max-width: 600px) {
  .feed-item {
    flex-direction: column;
    gap: 4px;
  }
  .feed-time {
    min-width: auto;
  }
}

/* ==========================================================================
   VIP SERVICES & SHOWROOM BOOKING FLOW
   ========================================================================== */
.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
}

.service-card.highlighted-service {
  border-color: var(--gold-primary);
  box-shadow: 0 0 35px rgba(201, 168, 106, 0.15);
}

.highlight-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient);
  color: #0c0f14;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: rgba(201, 168, 106, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.service-price {
  margin-top: auto;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

/* Booking Flow Card */
.booking-flow-card {
  background: linear-gradient(135deg, #111620 0%, #182030 100%);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.booking-flow-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}

.badge-gold {
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.booking-contact-direct {
  text-align: right;
  font-size: 0.85rem;
}
.booking-contact-direct span {
  display: block;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.booking-contact-direct .phone-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 640px) {
  .booking-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-control {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--gold-primary);
  background: #141a24;
}

.booking-submit-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

.submit-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT US & COMPANY CREDENTIALS
   ========================================================================== */
.about-section {
  padding: 80px 0;
  background: #090c11;
  border-top: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.lead-text {
  font-size: 1.1rem;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-text-col p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.enterprise-credentials-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.cred-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cred-item {
  display: flex;
  flex-direction: column;
}

.cred-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.cred-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-white);
}

.highlight-val {
  color: var(--gold-light);
  font-family: monospace;
  font-size: 0.95rem;
}

.signature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sign-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sign-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 106, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Craftsmanship Visual */
.craftsmanship-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.craft-badge {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.craft-graphic {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.craft-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
}

.craft-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.spec-row span {
  color: var(--text-muted);
}

.spec-row strong {
  color: var(--text-light);
}

/* ==========================================================================
   CUSTOMER REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-section {
  padding: 80px 0;
}

.reviews-summary-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin: 36px 0 40px;
}

@media (min-width: 768px) {
  .reviews-summary-bar {
    grid-template-columns: 1fr 1.5fr 1fr;
  }
}

.summary-score {
  text-align: center;
}

.big-score {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
}

.score-stars {
  margin: 6px 0;
  font-size: 1rem;
}

.score-caption {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.rating-bar-row span:first-child {
  width: 50px;
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gold-gradient);
}

.summary-action {
  text-align: center;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.reviewer-meta {
  flex: 1;
}

.reviewer-name {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.verified-badge {
  color: var(--success-color);
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-left: 4px;
}

.review-location {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  margin-top: 2px;
}

.review-body {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 12px;
}

/* ==========================================================================
   CONTACT SECTION & PHYSICAL SHOWROOM
   ========================================================================== */
.contact-section {
  padding: 80px 0;
  background: #090c12;
  border-top: 1px solid var(--border-subtle);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .contact-layout-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 32px;
}

.badge-status-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--success-color);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.contact-channel-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.channel-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(201, 168, 106, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.channel-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.channel-value {
  font-size: 0.95rem;
  color: var(--text-white);
  margin-top: 2px;
}

.phone-link, .email-link {
  color: var(--gold-light);
  font-weight: 600;
}
.phone-link:hover, .email-link:hover {
  text-decoration: underline;
}

.plus-code-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--gold-light);
  margin-top: 4px;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
}

.form-title {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .form-row {
    flex-direction: row;
  }
  .form-row .half-width {
    flex: 1;
  }
}

.contact-form-card .form-group {
  margin-bottom: 16px;
}

/* Map Preview Box */
.map-preview-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.map-external-link {
  color: var(--gold-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.map-external-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 80px 0;
  border-top: 1px solid var(--border-subtle);
}

.faq-accordion-grid {
  max-width: 820px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  color: var(--gold-primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-answer {
  padding: 0 20px 18px;
  max-height: 300px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #06080b;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 0;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  }
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-reg-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--text-white);
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-info i {
  color: var(--gold-primary);
  margin-top: 3px;
}

.footer-contact-info a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  background: #040507;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   FLOATING WHATSAPP CHAT WIDGET
   ========================================================================== */
.floating-whatsapp-wrapper {
  position: fixed;
  bottom: 85px;
  right: 20px;
  z-index: 1020;
}

@media (min-width: 992px) {
  .floating-whatsapp-wrapper {
    bottom: 30px;
    right: 30px;
  }
}

.whatsapp-trigger-btn {
  background: var(--whatsapp-green);
  color: #fff;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
}

.whatsapp-trigger-btn:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.05);
}

.whatsapp-label {
  font-size: 0.85rem;
  display: none;
}

@media (min-width: 600px) {
  .whatsapp-label {
    display: inline;
  }
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: absolute;
  bottom: 65px;
  right: 0;
  width: 310px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: none;
  animation: slideUpFade 0.25s ease;
}

.whatsapp-popup.active {
  display: block;
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.popup-header {
  background: #075e54;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.popup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: #0c0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.popup-info h4 {
  font-size: 0.9rem;
}

.status-online {
  font-size: 0.68rem;
  color: #8ef3b4;
  display: flex;
  align-items: center;
  gap: 4px;
}

.popup-close {
  margin-left: auto;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  cursor: pointer;
}

.popup-body {
  padding: 16px;
  background: #0f131a;
}

.popup-greeting {
  background: #1a2230;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 12px;
  border-left: 3px solid var(--whatsapp-green);
}

.quick-prompts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prompt-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.prompt-chip:hover {
  border-color: var(--whatsapp-green);
  color: #fff;
  background: rgba(37, 211, 102, 0.1);
}

.popup-footer {
  padding: 12px 16px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

/* ==========================================================================
   MOBILE BOTTOM STICKY ACTION BAR
   ========================================================================== */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(10, 13, 18, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1010;
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bar-btn {
  background: transparent;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  height: 100%;
}

.bar-btn i {
  font-size: 1.15rem;
}

.bar-btn.btn-highlight-green {
  color: var(--whatsapp-green);
}

.cart-icon-wrap {
  position: relative;
}

.mobile-cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold-primary);
  color: #0c0f14;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   SLIDE-OUT SHOPPING CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1070;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-gold);
  z-index: 1080;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}
.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-title h3 {
  font-size: 1.15rem;
}

.cart-items-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-close-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
}
.cart-close-btn:hover {
  color: var(--gold-primary);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty State */
.empty-cart-state {
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 3rem;
  color: var(--border-gold);
  margin-bottom: 16px;
}

.empty-cart-state h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.empty-cart-state p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cart Item */
.cart-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 12px;
}

.cart-item-art {
  width: 64px;
  height: 64px;
  background: #0d1017;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: var(--bg-secondary);
}

.qty-btn {
  background: transparent;
  color: var(--text-light);
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}
.qty-btn:hover {
  color: var(--gold-primary);
}

.qty-val {
  padding: 0 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.remove-item-btn {
  background: transparent;
  color: var(--danger-color);
  font-size: 0.8rem;
  cursor: pointer;
}
.remove-item-btn:hover {
  text-decoration: underline;
}

.cart-footer {
  padding: 20px;
  background: #0a0d13;
  border-top: 1px solid var(--border-subtle);
}

.promo-code-box {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.promo-code-box input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.promo-notice {
  font-size: 0.75rem;
  margin-bottom: 10px;
}
.promo-notice.success { color: var(--success-color); }
.promo-notice.error { color: var(--danger-color); }

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.totals-row.grand-total {
  font-size: 1.05rem;
  color: var(--text-white);
  padding-top: 8px;
  border-top: 1px solid var(--border-subtle);
}

.totals-row.grand-total strong {
  color: var(--gold-light);
  font-family: var(--font-serif);
}

.cart-trust-notes {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ==========================================================================
   MODAL DIALOGS SYSTEM (Checkout, Quick View, Reviews, Policies)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: var(--transition-smooth);
  position: relative;
}
.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal-heading {
  font-size: 1.35rem;
  margin-top: 4px;
}

.modal-close-btn {
  background: transparent;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
}
.modal-close-btn:hover {
  color: var(--gold-primary);
}

.modal-body-padding {
  padding: 24px;
}

/* Checkout Modal Specifics */
.checkout-modal-card {
  max-width: 900px;
}

.checkout-modal-body {
  padding: 24px;
}

.checkout-split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .checkout-split-layout {
    grid-template-columns: 1.25fr 0.75fr;
  }
}

.checkout-section-subhead {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 6px;
  margin-bottom: 14px;
}

.payment-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pay-radio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pay-radio-card:hover {
  border-color: var(--gold-primary);
}

.pay-radio-card input {
  margin-top: 3px;
}

.pay-method-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
}

.pay-method-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-summary-side {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.summary-items-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.summary-item-mini {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.checkout-totals-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.checkout-guarantee-box {
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Success Confirmation Modals */
.order-success-card, .booking-success-card {
  max-width: 520px;
  text-align: center;
  padding: 36px 28px;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success-color);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.order-receipt-box, .booking-receipt-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.85rem;
}

/* Quick View Modal */
.quick-view-card {
  max-width: 820px;
  padding: 24px;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .quick-view-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.quick-view-art-box {
  background: #090c12;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

.quick-view-real-img {
  width: 100%;
  max-width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 16px 0;
}

.specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table td {
  padding: 6px 0;
}

.specs-table td:first-child {
  color: var(--text-dim);
  width: 45%;
}

.specs-table td:last-child {
  color: var(--text-white);
  font-weight: 600;
}

/* Review & Policy Modals */
.review-modal-card, .policy-modal-card {
  max-width: 680px;
}

.policy-modal-body {
  padding: 24px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.policy-modal-body h4 {
  color: var(--gold-light);
  margin: 18px 0 8px;
}

.policy-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 20px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--gold-primary);
  color: var(--text-white);
  padding: 12px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  animation: toastIn 0.3s ease;
}

.toast.success { border-left-color: var(--success-color); }
.toast.error { border-left-color: var(--danger-color); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .site-header, .top-announcement-bar, .mobile-bottom-bar,
  .floating-whatsapp-wrapper, .cart-drawer, .btn {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
