/* ==========================================================================
   Oudh Al Fakham Trading Est — Luxury Haute Parfumerie Design System
   Color Palette: Deep Obsidian, Noir, Burnished Champagne Gold, Soft Ivory
   Typography: Cinzel, Playfair Display, Plus Jakarta Sans, Amiri
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #08080a;
  --bg-secondary: #0e0e13;
  --bg-tertiary: #14141c;
  --bg-surface: #181824;
  --bg-glass: rgba(14, 14, 19, 0.82);
  --bg-glass-card: rgba(24, 24, 36, 0.7);

  --gold-primary: #c5a059;
  --gold-light: #e5c378;
  --gold-dark: #987836;
  --gold-gradient: linear-gradient(135deg, #e5c378 0%, #c5a059 50%, #987836 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(229, 195, 120, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
  --gold-glow: 0 0 25px rgba(197, 160, 89, 0.25);

  --amber-accent: #d97706;
  --amber-soft: rgba(217, 119, 6, 0.15);

  --text-primary: #fcfbf9;
  --text-secondary: #e2ded5;
  --text-muted: #9c9aa3;
  --text-dim: #6b6973;

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-gold: rgba(197, 160, 89, 0.35);
  --border-gold-strong: rgba(197, 160, 89, 0.8);

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.2);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Amiri', serif;

  /* Layout */
  --header-height: 80px;
  --container-max: 1320px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(197, 160, 89, 0.03) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(217, 119, 6, 0.025) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  transition: all var(--transition-fast);
}

input, select, textarea {
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: 0.04em;
  line-height: 1.25;
}

h2 {
  font-size: 2.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.text-gold {
  color: var(--gold-primary);
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.font-arabic {
  font-family: var(--font-arabic);
}

.arabic-touch {
  font-family: var(--font-arabic);
  font-size: 1.15em;
  letter-spacing: 0;
  color: var(--gold-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #08080a;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(197, 160, 89, 0.35);
  filter: brightness(1.08);
}

.btn-outline {
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.04);
}

.btn-outline:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--border-gold);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Header & Announcement Bar
   ========================================================================== */
.top-bar {
  background: #050507;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  font-size: 0.78rem;
  padding: 8px 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-link {
  color: var(--gold-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: #fff;
  text-decoration: underline;
}

.currency-select {
  background: transparent;
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--gold-light);
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Main Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  border-bottom-color: rgba(197, 160, 89, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-symbol {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, rgba(8, 8, 10, 0.8) 70%);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-normal);
}

.brand-logo-link:hover .logo-symbol {
  transform: rotate(45deg);
  border-color: var(--gold-light);
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.logo-title-en {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-sub-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

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

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  position: relative;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-gradient);
  color: #08080a;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle {
  display: none;
}

/* Search Dropdown / Bar */
.search-container {
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  width: 210px;
  transition: all var(--transition-fast);
}

.search-input-wrapper:focus-within {
  width: 270px;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.search-input-wrapper input {
  background: transparent;
  border: none;
  padding: 4px 8px;
  font-size: 0.85rem;
  width: 100%;
}

.search-input-wrapper input:focus {
  box-shadow: none;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 360px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  z-index: 110;
  display: none;
  max-height: 420px;
  overflow-y: auto;
}

.search-dropdown.active {
  display: block;
}

.search-dropdown-header {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-subtle);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.search-result-item:hover {
  background: var(--bg-surface);
}

.search-result-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.3;
}

.search-result-price {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: 
    linear-gradient(to right, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.8) 50%, rgba(8, 8, 10, 0.4) 100%),
    url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-location-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(14, 14, 19, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-location-pill strong {
  color: var(--text-primary);
}

/* Trust Proof & Credibility Bar (Zanderio Criteria) */
.trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-right: 1px solid var(--border-subtle);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.trust-text-box h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trust-text-box p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.stars-row {
  color: #ffc107;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ==========================================================================
   Category Highlight Cards
   ========================================================================== */
.categories-section {
  padding: 90px 0 60px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.category-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.category-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0.4) 50%, rgba(8, 8, 10, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.cat-subtitle {
  font-family: var(--font-arabic);
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cat-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 8px;
}

.cat-count {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Exclusive Product Catalog Grid & Filtering
   ========================================================================== */
.catalog-section {
  padding: 60px 0 100px;
  position: relative;
}

.catalog-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tab-btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-subtle);
}

.filter-tab-btn.active {
  background: rgba(197, 160, 89, 0.15);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
}

.catalog-sort-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sort-select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 6px 12px;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

/* Product Card */
.product-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.product-image-container {
  position: relative;
  aspect-ratio: 1 / 1.15;
  background: #0d0d12;
  overflow: hidden;
}

.product-image-primary, .product-image-secondary {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition-normal), transform var(--transition-slow);
}

.product-image-secondary {
  opacity: 0;
}

.product-card:hover .product-image-secondary {
  opacity: 1;
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.badge-gold {
  background: var(--gold-gradient);
  color: #08080a;
}

.badge-amber {
  background: linear-gradient(135deg, #f59e0b, #b45309);
  color: #fff;
}

.product-wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.product-wishlist-btn:hover, .product-wishlist-btn.active {
  background: rgba(197, 160, 89, 0.2);
  border-color: var(--gold-primary);
  color: #ff4757;
}

/* Quick Action Overlay */
.product-quick-actions {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  gap: 8px;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

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

.quick-action-btn {
  flex: 1;
  padding: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(14, 14, 19, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.quick-action-btn:hover {
  background: var(--gold-gradient);
  color: #08080a;
}

/* Product Info */
.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.product-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  font-weight: 600;
}

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

.product-rating-box .star-icon {
  color: #ffc107;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.product-title:hover {
  color: var(--gold-light);
}

.product-arabic-title {
  font-family: var(--font-arabic);
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-notes-summary {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin-bottom: 18px;
  border-left: 2px solid var(--border-gold);
  padding-left: 10px;
}

.product-footer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

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

.price-current {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.currency-sar {
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-weight: 600;
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.product-size-badge {
  font-size: 0.72rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* ==========================================================================
   Heritage & Master Distillation Story
   ========================================================================== */
.heritage-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.heritage-image-stack {
  position: relative;
}

.heritage-img-main {
  width: 85%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.heritage-img-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  max-width: 240px;
}

.heritage-badge-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.heritage-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.heritage-text h2 {
  margin-bottom: 20px;
}

.heritage-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.heritage-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.heritage-feature-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.heritage-feature-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.heritage-feature-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Customer Reviews & Proof Section (4.9 Rating Hard Requirement)
   ========================================================================== */
.reviews-section {
  padding: 90px 0;
  background: var(--bg-primary);
}

.reviews-summary-bar {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
}

.rating-big-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.rating-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.rating-details {
  display: flex;
  flex-direction: column;
}

.verified-label {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.review-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.review-stars {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

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

.review-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

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

.review-product-tag {
  font-size: 0.75rem;
  color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 16px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

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

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.author-loc {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Physical Boutique & Riyadh Location Section (Hard Criteria)
   ========================================================================== */
.boutique-section {
  padding: 90px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.boutique-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.boutique-status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(46, 213, 115, 0.12);
  border: 1px solid rgba(46, 213, 115, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #2ed573;
  font-weight: 600;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ed573;
  box-shadow: 0 0 8px #2ed573;
  animation: pulseDot 2s infinite;
}

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

.boutique-details-list {
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.boutique-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.boutique-detail-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 2px;
}

.boutique-detail-text span, .boutique-detail-text a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.boutique-detail-text a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.boutique-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.boutique-map-container {
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: #111116;
}

.boutique-map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.85);
}

/* ==========================================================================
   Footer Section (Verified Data & Legal Compliance)
   ========================================================================== */
.site-footer {
  background: #050507;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 18px 0 24px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

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

.footer-links-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-contact-icon {
  color: var(--gold-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-secondary);
}

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

/* Payment & Regulatory Strip */
.footer-compliance-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.regulatory-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.regulatory-item strong {
  color: var(--text-primary);
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   Slide-Over Drawers (Cart & Wishlist)
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-gold);
  z-index: 210;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.drawer.active {
  transform: translateX(0);
}

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

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.drawer-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Free Shipping Meter */
.shipping-meter-box {
  background: var(--bg-surface);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.meter-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.meter-bar-track {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  width: 0%;
  transition: width var(--transition-normal);
}

/* Drawer Body */
.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-empty-state {
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

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

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px;
  position: relative;
}

.cart-item-thumb {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.cart-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
}

.cart-item-size {
  font-size: 0.75rem;
  color: var(--gold-light);
}

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

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.qty-btn:hover {
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold-light);
}

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

.cart-item-price {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.cart-item-remove {
  color: var(--text-dim);
  font-size: 0.8rem;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: #ff4757;
}

/* Drawer Footer */
.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
}

.promo-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.promo-input-row input {
  flex: 1;
  padding: 8px 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.gift-wrap-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  cursor: pointer;
}

.cart-totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.total-row.final {
  color: var(--text-primary);
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-display);
  border-top: 1px solid var(--border-subtle);
  padding-top: 10px;
  margin-top: 4px;
}

.total-row.final .total-amount {
  color: var(--gold-light);
}

/* ==========================================================================
   Modals (Quick View, Checkout, Order Confirmation)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: all var(--transition-normal);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Quick View Layout */
.quickview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 36px;
}

.quickview-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quickview-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.quickview-thumbs {
  display: flex;
  gap: 10px;
}

.qv-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.qv-thumb.active {
  border-color: var(--gold-primary);
}

.quickview-details {
  display: flex;
  flex-direction: column;
}

.qv-badge-row {
  margin-bottom: 12px;
}

.qv-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.qv-arabic-title {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.qv-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.qv-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* Olfactory Pyramid Accordion */
.olfactory-pyramid {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 18px 0;
}

.pyramid-header {
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pyramid-level {
  margin-bottom: 10px;
  font-size: 0.8rem;
}

.pyramid-level strong {
  color: var(--gold-primary);
  display: inline-block;
  min-width: 90px;
}

.pyramid-level span {
  color: var(--text-secondary);
}

.perfume-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.metric-pill {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

.metric-pill strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.size-selector-row {
  margin-bottom: 20px;
}

.size-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.size-options {
  display: flex;
  gap: 10px;
}

.size-btn {
  padding: 8px 16px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
}

.size-btn.active {
  border-color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-light);
}

.qv-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

/* ==========================================================================
   Checkout Modal & ZATCA Invoice Simulation
   ========================================================================== */
.checkout-modal-card {
  max-width: 960px;
  padding: 36px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.payment-method-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.payment-radio-box {
  border: 1px solid var(--border-subtle);
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.payment-radio-box:hover, .payment-radio-box.active {
  border-color: var(--gold-primary);
  background: rgba(197, 160, 89, 0.1);
}

.checkout-summary-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

/* ==========================================================================
   ZATCA Tax Invoice Confirmation Receipt (Zanderio Flow)
   ========================================================================== */
.order-confirmation-card {
  max-width: 680px;
  padding: 40px;
  background: #0d0d12;
  border: 2px solid var(--border-gold);
}

.confirmation-header {
  text-align: center;
  margin-bottom: 30px;
}

.confirmation-check-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(46, 213, 115, 0.15);
  border: 2px solid #2ed573;
  color: #2ed573;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.zatca-invoice-sheet {
  background: #fff;
  color: #111;
  padding: 30px;
  border-radius: var(--radius-sm);
  margin: 24px 0;
  box-shadow: var(--shadow-md);
}

.zatca-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #111;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.zatca-brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
}

.zatca-cr-text {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.35;
}

.zatca-qr-code {
  width: 80px;
  height: 80px;
  border: 1px solid #ddd;
}

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

.zatca-table th {
  background: #f4f4f4;
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.zatca-table td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.zatca-totals {
  width: 240px;
  margin-left: auto;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zatca-total-line {
  display: flex;
  justify-content: space-between;
}

.zatca-total-line.grand {
  font-weight: 800;
  border-top: 2px solid #111;
  padding-top: 6px;
  font-size: 0.95rem;
}

/* ==========================================================================
   Floating WhatsApp Concierge Widget (Hard Requirement)
   ========================================================================== */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-popup-card {
  width: 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  margin-bottom: 12px;
  display: none;
  animation: fadeInSlide 0.3s ease;
}

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

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

.whatsapp-popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.whatsapp-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.whatsapp-agent-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.whatsapp-agent-status {
  font-size: 0.72rem;
  color: #2ed573;
}

.whatsapp-msg-bubble {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin-bottom: 14px;
}

.whatsapp-fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform var(--transition-normal);
}

.whatsapp-fab-btn:hover {
  transform: scale(1.08);
}

.whatsapp-fab-btn::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulseFab 2s infinite;
}

@keyframes pulseFab {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================================================
   Notification Toast
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--text-primary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heritage-grid, .boutique-grid, .checkout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .quickview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-title {
    font-size: 2.3rem;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 14px;
  }
  .category-cards-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .boutique-map-container {
    height: 320px;
  }
  .search-input-wrapper {
    display: none;
  }
}
