/* ==========================================================================
   Khaskiya Perfume Market Abdul Khaliq Saeed (عبدالخالق سعيد البلد)
   Theme: Heritage Arabian Luxury (Deep Royal Maroon, Imperial Gold, Warm Amber)
   ========================================================================== */

:root {
  --primary-maroon: #2C080E;
  --primary-maroon-dark: #1A0307;
  --primary-maroon-light: #4A101A;
  --primary-maroon-soft: #5C1D26;
  
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #A37F2C;
  --gold-metallic: linear-gradient(135deg, #ECC876 0%, #D4AF37 50%, #A88427 100%);
  --gold-glow: rgba(212, 175, 55, 0.25);
  
  --amber-warm: #C67D34;
  --amber-deep: #8B4513;
  --sand-cream: #FAF6F0;
  --sand-cream-alt: #F4EFE6;
  --sand-border: #E8DECC;
  
  --text-dark: #1F1517;
  --text-muted: #6B5D60;
  --text-light: #FAF6F0;
  --text-gold: #E5C07B;
  
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26, 3, 7, 0.06);
  --shadow-md: 0 6px 20px rgba(26, 3, 7, 0.12);
  --shadow-lg: 0 14px 35px rgba(26, 3, 7, 0.18);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.22);
  
  --font-arabic: 'Tajawal', 'Amiri', 'Traditional Arabic', serif;
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--sand-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   Top Announcement Bar (Verified Business Info & Fast Delivery)
   ========================================================================== */
.announcement-bar {
  background: var(--primary-maroon-dark);
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.announcement-item i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.announcement-badge {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.phone-direct-link {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-direct-link:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(44, 8, 14, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold-primary);
  z-index: 100;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Bilingual Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}

.logo-crest {
  width: 52px;
  height: 52px;
  background: var(--gold-metallic);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-crest::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 1px solid rgba(44, 8, 14, 0.35);
  border-radius: 4px;
}

.logo-crest i {
  color: var(--primary-maroon-dark);
  font-size: 1.5rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-arabic-title {
  font-family: var(--font-arabic);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.brand-en-subtitle {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-location-tag {
  font-size: 0.72rem;
  color: rgba(243, 229, 171, 0.85);
  font-weight: 500;
  letter-spacing: 0.4px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  color: var(--sand-cream);
  font-size: 0.925rem;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

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

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

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

.badge-tag-sm {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  text-transform: uppercase;
}

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

.action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.15rem;
}

.action-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #E53935;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-maroon);
}

.mobile-nav-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--gold-light);
}

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

.search-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 0.4rem 0.9rem;
  width: 240px;
  transition: var(--transition);
}

.search-input-wrapper:focus-within {
  width: 280px;
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.search-input-wrapper input {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  padding-right: 0.5rem;
}

.search-input-wrapper input::placeholder {
  color: rgba(243, 229, 171, 0.65);
}

.search-input-wrapper i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 150;
  max-height: 400px;
  overflow-y: auto;
}

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

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: var(--sand-cream);
}

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

.search-result-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-maroon-dark);
}

.search-result-info p {
  font-size: 0.8rem;
  color: var(--amber-warm);
  font-weight: 700;
}

/* ==========================================================================
   Trust Bar (4.3-Star Rating, Fast Delivery, Authentic Al Balad Heritage)
   ========================================================================== */
.trust-bar-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--sand-border);
  padding: 1rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.trust-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  line-height: 1.3;
}

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

.rating-stars-inline {
  display: inline-flex;
  gap: 2px;
  color: #F5A623;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.rating-pill {
  background: #FEF3C7;
  color: #92400E;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.75rem;
}

/* ==========================================================================
   Hero Section: Heritage Arabian Luxury
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, rgba(26, 3, 7, 0.94) 0%, rgba(44, 8, 14, 0.88) 100%),
              url('https://images.unsplash.com/photo-1592945403244-b3fbafd7f539?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: #fff;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold-primary);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.hero-badge-strip span {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-title-ar {
  font-family: var(--font-arabic);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.hero-title-en {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.hero-title-en span {
  color: var(--gold-primary);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(250, 246, 240, 0.9);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-gold {
  background: var(--gold-metallic);
  color: var(--primary-maroon-dark);
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.4);
  color: var(--primary-maroon-dark);
}

.btn-outline-gold {
  border: 2px solid var(--gold-primary);
  color: var(--gold-light);
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.2);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.15);
  color: #fff;
  border-color: var(--gold-light);
}

.hero-feature-pills {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 1.5rem;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold-light);
}

.pill-item i {
  color: var(--gold-primary);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-arabic);
  font-size: 1.05rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  line-height: 1.3;
}

.section-title span {
  color: var(--amber-deep);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.85rem auto 1.25rem;
  max-width: 240px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-divider i {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.section-description {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* ==========================================================================
   Category Filter Tabs
   ========================================================================== */
.catalog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.category-tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cat-tab-btn {
  background: var(--white);
  border: 1px solid var(--sand-border);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.cat-tab-btn:hover {
  border-color: var(--gold-primary);
  color: var(--primary-maroon);
}

.cat-tab-btn.active {
  background: var(--primary-maroon);
  color: var(--gold-light);
  border-color: var(--primary-maroon);
  box-shadow: var(--shadow-sm);
}

.cat-tab-btn.active i {
  color: var(--gold-primary);
}

.catalog-sort select {
  background: var(--white);
  border: 1px solid var(--sand-border);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

/* ==========================================================================
   Product Grid & Product Cards
   ========================================================================== */
.products-section {
  padding: 4.5rem 0;
  background: var(--sand-cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.5);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-maroon);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  z-index: 5;
  border: 1px solid rgba(212, 175, 55, 0.4);
  letter-spacing: 0.5px;
}

.product-fast-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #10B981;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  background: #F9F7F4;
  overflow: hidden;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-quick-overlay {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 6;
}

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

.btn-quick-view {
  background: rgba(26, 3, 7, 0.85);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xl);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-quick-view:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-warm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.size-tag {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--sand-cream);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.product-card-arabic-title {
  font-family: var(--font-arabic);
  font-size: 1.15rem;
  color: var(--primary-maroon-light);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.product-card-notes {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-olfactory-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.note-pill {
  background: #F4EFE6;
  color: var(--primary-maroon);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.product-card-footer {
  margin-top: auto;
  border-top: 1px solid #f0eae1;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-display {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

.price-current .currency {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber-deep);
  margin-left: 2px;
}

.price-original {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #9E9E9E;
}

.btn-add-cart {
  background: var(--primary-maroon);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-add-cart:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
  box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   Interactive Scent Matcher Quiz (Heritage Feature)
   ========================================================================== */
.scent-finder-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--primary-maroon-dark) 0%, var(--primary-maroon) 100%);
  color: #fff;
  position: relative;
  border-top: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);
}

.scent-finder-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
}

.quiz-steps-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(243, 229, 171, 0.5);
  font-weight: 600;
}

.step-indicator.active {
  color: var(--gold-light);
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.step-indicator.active .step-num {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
  font-weight: 700;
}

.quiz-question-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1.5rem;
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.quiz-option-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.quiz-option-card:hover,
.quiz-option-card.selected {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

.quiz-option-icon {
  font-size: 1.75rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.quiz-option-card h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.quiz-option-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.quiz-result-card {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.quiz-result-card.active {
  display: block;
}

/* ==========================================================================
   Customer Reviews Showcase (13 Verified Reviews - 4.3 Stars)
   ========================================================================== */
.reviews-section {
  padding: 4.5rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--sand-border);
}

.reviews-summary-card {
  background: var(--sand-cream);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}

.summary-score-box {
  text-align: center;
  border-right: 1px solid var(--sand-border);
  padding-right: 2rem;
}

.rating-big-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-maroon);
  line-height: 1;
}

.rating-stars-large {
  color: #F5A623;
  font-size: 1.35rem;
  margin: 0.5rem 0;
}

.total-reviews-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.breakdown-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.bar-track {
  flex: 1;
  height: 8px;
  background: #E5E0D8;
  border-radius: 4px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gold-primary);
  border-radius: 4px;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-item-card {
  background: var(--sand-cream);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-item-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

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

.reviewer-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
}

.reviewer-meta .city-badge {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-date {
  font-size: 0.72rem;
  color: #8E8385;
}

.review-stars {
  color: #F5A623;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.verified-buyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #DCFCE7;
  color: #166534;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.65rem;
  width: fit-content;
}

.review-purchased-tag {
  font-size: 0.75rem;
  color: var(--amber-deep);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.review-body-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.review-body-arabic {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: #4A3A3D;
  line-height: 1.5;
  text-align: right;
  direction: rtl;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  padding-top: 0.65rem;
  margin-top: auto;
}

/* ==========================================================================
   Heritage Boutique & Al Balad Showroom (Hard Zanderio Requirement)
   ========================================================================== */
.boutique-section {
  padding: 5rem 0;
  background: var(--sand-cream);
  position: relative;
}

.boutique-card {
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.boutique-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

.boutique-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--primary-maroon);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 1.25rem;
}

.boutique-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.5rem;
}

.boutique-title-ar {
  font-family: var(--font-arabic);
  font-size: 1.35rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.boutique-history-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cred-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-maroon);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cred-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  margin-bottom: 0.15rem;
}

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

.cred-text a {
  color: var(--primary-maroon);
  font-weight: 600;
}

.cred-text a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.boutique-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.btn-whatsapp-direct {
  background: #25D366;
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-direct:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.btn-call-direct {
  background: var(--primary-maroon);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-call-direct:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
}

.boutique-map-pane {
  background: #EAE6DF;
  position: relative;
  display: flex;
  flex-direction: column;
}

.map-embed-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

.map-overlay-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(26, 3, 7, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: #fff;
}

.map-overlay-card h4 {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.map-overlay-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.map-plus-code {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* ==========================================================================
   Slide-Over Shopping Cart Drawer
   ========================================================================== */
.cart-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 460px;
  height: 100%;
  background: var(--white);
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  background: var(--primary-maroon-dark);
  color: var(--gold-light);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold-primary);
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close-btn {
  color: var(--gold-light);
  font-size: 1.35rem;
}

.cart-close-btn:hover {
  color: var(--gold-primary);
  transform: rotate(90deg);
}

.delivery-progress-banner {
  background: #FFFBEB;
  border-bottom: 1px solid #FDE68A;
  padding: 0.85rem 1.5rem;
}

.delivery-progress-text {
  font-size: 0.8rem;
  color: #92400E;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}

.delivery-track {
  height: 6px;
  background: #FDE68A;
  border-radius: 3px;
  overflow: hidden;
}

.delivery-bar {
  height: 100%;
  background: #10B981;
  border-radius: 3px;
  transition: width 0.4s ease;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
}

.cart-empty-icon {
  font-size: 3rem;
  color: var(--sand-border);
  margin-bottom: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--sand-border);
}

.cart-item-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-border);
  background: #fdfbf7;
}

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

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
  line-height: 1.3;
}

.cart-item-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-maroon);
}

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

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  background: var(--sand-cream);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.qty-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
}

.qty-val {
  width: 32px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.remove-item-btn {
  color: #EF4444;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.remove-item-btn:hover {
  text-decoration: underline;
}

.cart-footer {
  background: var(--sand-cream);
  border-top: 1px solid var(--sand-border);
  padding: 1.25rem 1.5rem;
}

.coupon-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coupon-box input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.coupon-btn {
  background: var(--primary-maroon);
  color: var(--gold-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.coupon-btn:hover {
  background: var(--gold-primary);
  color: var(--primary-maroon-dark);
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

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

.summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-maroon-dark);
  border-top: 1px dashed var(--sand-border);
  padding-top: 0.5rem;
}

.btn-checkout-cta {
  width: 100%;
  background: var(--gold-metallic);
  color: var(--primary-maroon-dark);
  font-weight: 800;
  padding: 0.95rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-checkout-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

/* ==========================================================================
   Modals (Quick View, Checkout & Order Receipt)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18, 4, 6, 0.75);
  backdrop-filter: blur(5px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-content-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.5);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-backdrop.active .modal-content-box {
  transform: scale(1);
}

.modal-close-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: var(--sand-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-maroon);
  z-index: 10;
}

.modal-close-icon:hover {
  background: var(--primary-maroon);
  color: var(--gold-light);
}

/* Quick View Specific */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.quick-view-gallery {
  background: #FAF7F2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-view-img {
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.quick-view-details {
  padding: 2.5rem;
}

.pyramid-box {
  background: var(--sand-cream);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
}

.pyramid-level {
  margin-bottom: 0.75rem;
}

.pyramid-level:last-child {
  margin-bottom: 0;
}

.pyramid-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-deep);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pyramid-text {
  font-size: 0.82rem;
  color: var(--text-dark);
}

/* Checkout Form Specific (Strictly NO EMAIL) */
.checkout-modal-container {
  max-width: 650px;
}

.checkout-header-strip {
  background: var(--primary-maroon-dark);
  color: var(--gold-light);
  padding: 1.5rem 2rem;
  border-bottom: 2px solid var(--gold-primary);
}

.checkout-body {
  padding: 2rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-maroon-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  background: var(--sand-cream);
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.phone-input-wrap {
  display: flex;
}

.phone-prefix {
  background: #EAE3D5;
  border: 1px solid var(--sand-border);
  border-right: none;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-maroon);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-input-wrap input {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  flex: 1;
}

.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}

.payment-card-opt {
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: var(--sand-cream);
  transition: var(--transition);
}

.payment-card-opt.selected {
  border-color: var(--gold-primary);
  background: #FEF3C7;
  font-weight: 700;
}

.payment-card-opt i {
  font-size: 1.35rem;
  color: var(--primary-maroon);
  margin-bottom: 0.25rem;
  display: block;
}

/* Order Confirmation & Simulated Receipt */
.receipt-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
}

.receipt-icon {
  width: 65px;
  height: 65px;
  background: #DCFCE7;
  color: #15803D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.receipt-code {
  font-family: monospace;
  background: var(--sand-cream);
  border: 1px dashed var(--gold-dark);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-maroon);
  display: inline-block;
  margin: 0.5rem 0;
}

.order-items-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}

.order-items-table th {
  background: var(--sand-cream);
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 2px solid var(--sand-border);
  color: var(--primary-maroon-dark);
}

.order-items-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}

.receipt-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Floating WhatsApp Widget
   ========================================================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 180;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.whatsapp-chat-bubble {
  background: #FFFFFF;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-xl);
  padding: 0.45rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.whatsapp-fab-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
}

.whatsapp-fab-btn:hover {
  transform: scale(1.1);
  background: #1EBE5D;
}

/* ==========================================================================
   Footer & Credentials (Verified Zanderio Address & Zero Email Guarantee)
   ========================================================================== */
.site-footer {
  background: var(--primary-maroon-dark);
  color: var(--sand-cream);
  border-top: 3px solid var(--gold-primary);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-arabic);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.footer-brand h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.75);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-address-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.85rem;
}

.f-addr-item {
  display: flex;
  gap: 0.75rem;
}

.f-addr-item i {
  color: var(--gold-primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.f-addr-item strong {
  color: var(--gold-light);
  display: block;
}

.footer-bottom-strip {
  background: #110204;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.6);
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .boutique-card {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-inner {
    justify-content: center;
    text-align: center;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-maroon-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 2px solid var(--gold-primary);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .search-input-wrapper {
    width: 150px;
  }
  .search-input-wrapper:focus-within {
    width: 180px;
  }
  .hero-title-ar {
    font-size: 2rem;
  }
  .hero-title-en {
    font-size: 1.65rem;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .reviews-cards-grid {
    grid-template-columns: 1fr;
  }
  .reviews-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .summary-score-box {
    border-right: none;
    border-bottom: 1px solid var(--sand-border);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .payment-options-grid {
    grid-template-columns: 1fr;
  }
}
