/* ═══════════════════════════════════════════════════════
   Boullouz — Boulangerie | Pâtisserie | Traiteur
   Site réalisé par Izri.Online — © 2026
   Tous droits réservés
   ═══════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────── */
:root {
  --gold:       #C9A84C;
  --gold-light: #E2C96A;
  --gold-dark:  #A8852B;
  --cream:      #FDF6E3;
  --dark:       #1A1209;
  --dark-mid:   #2C1F0A;
  --brown:      #5C3D1E;
  --text-muted: #8B7355;
  --white:      #FFFFFF;
  --whatsapp:   #25D366;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lexend', sans-serif;
  --font-arabic:  'Noto Naskh Arabic', serif;
  --ease-smooth:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ─── Skip Link ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 10001;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ─── Grain Overlay ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── Typography Helpers ────────────────────────────── */
.ar {
  font-family: var(--font-arabic);
  direction: rtl;
  display: block;
}

.label-bilingual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.sep {
  color: var(--gold);
  margin: 0 6px;
}

/* ─── Scroll Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
.reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  background: rgba(18, 14, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(228,165,0,0.1);
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
#navbar.scrolled {
  background: rgba(14, 10, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(228,165,0,0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.nav-logo-img.error { display: none; }
.nav-logo-img.error + .nav-logo-fallback { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.2;
}
.nav-links a .nav-ar {
  font-family: var(--font-arabic);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s;
  direction: rtl;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover .nav-ar { color: rgba(228,165,0,0.55); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 9px 20px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s !important;
}
.nav-cta .nav-ar { color: rgba(26,18,9,0.55) !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  color: var(--dark) !important;
}
.nav-cta:hover .nav-ar { color: rgba(26,18,9,0.55) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
}
.hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 130px; left: 0; right: 0;
  background: rgba(12, 9, 4, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px 32px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(228,165,0,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.mobile-menu.open { display: flex; }
.mobile-menu a,
.mobile-menu .mob-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.mobile-menu a .mob-fr {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.mobile-menu a .mob-ar {
  font-family: var(--font-arabic);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  direction: rtl;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu .mob-link:hover { color: var(--gold); padding-left: 6px; }
.mobile-menu a:hover .mob-ar { color: rgba(228,165,0,0.5); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(228,165,0,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228,165,0,0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(92,61,30,0.3) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%  { opacity: 0.6; }
  100%{ opacity: 1; }
}

.hero-geo {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E4A500' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 900px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.5s forwards;
}

.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.8s forwards;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 1.1s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 15px 36px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(228,165,0,0.35);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 15px 36px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.8s forwards;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(0.7); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ═══════════════════════════════════════════════════════
   SECTION BASE
   ═══════════════════════════════════════════════════════ */
section { padding: 100px 40px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 10px;
}
.section-title em {
  color: var(--gold-dark);
  font-style: italic;
}
.section-title-ar {
  font-family: var(--font-arabic);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  direction: rtl;
  margin-bottom: 28px;
}
.section-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 48px;
  border-radius: 2px;
}
.text-center .section-line { margin: 0 auto 48px; }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════════════════
   DÉLICES (GALLERY)
   ═══════════════════════════════════════════════════════ */
#delices {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#delices::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#delices::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

#delices .section-title { color: var(--white); }
#delices .section-title-ar { color: rgba(255,255,255,0.4); }

/* Search bar */
.search-bar {
  position: relative;
  max-width: 420px;
  margin: 0 auto 32px;
}
.search-bar input {
  width: 100%;
  padding: 12px 18px 12px 44px;
  border-radius: 30px;
  border: 2px solid rgba(201,168,76,0.25);
  background: var(--dark-mid);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.search-bar input::placeholder { color: rgba(255,255,255,0.4); }
.search-bar input:focus {
  outline: none;
  border-color: var(--gold);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

/* ─── Search bar end ─────────────────────────────────── */

/* ─── Gallery grid ─────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  background: var(--dark-mid);
  border: 2px solid rgba(228, 165, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
  display: flex;
  align-items: flex-end;
  appearance: none;
  -webkit-appearance: none;
}

.gallery-card:hover {
  border-color: rgba(228, 165, 0, 0.5);
  transform: translateY(-3px);
}

.gallery-card.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 8px 30px rgba(228,165,0,0.25);
}

.gallery-card::before {
  content: none !important;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: none !important;
}

@media (hover: hover) {
  .gallery-card:hover img { 
    transform: scale(1.07); 
  }
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 6, 2, 0.15);
  transition: background 0.4s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card-overlay {
  background: rgba(10, 6, 2, 0.5);
}

.gallery-card-plus {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 200;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  line-height: 1;
}

.gallery-card:hover .gallery-card-plus {
  opacity: 1;
  transform: scale(1.2);
}


.gallery-card-info {
  display: none !important;
}

.gallery-card-ar {
  font-family: var(--font-arabic);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  direction: rtl;
  margin-top: 2px;
}

.gallery-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20%;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  background: linear-gradient(135deg, var(--dark-mid), var(--brown));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* ─── Product Panels ──────────────────────────────────── */
/* ─── Category hint ──────────────────────────────────── */
.category-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 48px 20px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}
.category-hint.hidden {
  opacity: 0;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  pointer-events: none;
}
.category-hint .hint-icon {
  font-size: 2rem;
  animation: hint-bounce 1.5s ease-in-out infinite;
}
@keyframes hint-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.category-hint .hint-text-fr {
  font-size: 0.95rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.category-hint .hint-text-ar {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-arabic);
}
@media (max-width: 768px) {
  .category-hint { padding: 32px 16px; }
  .category-hint .hint-text-fr { font-size: 0.85rem; }
  .category-hint .hint-text-ar { font-size: 0.75rem; }
}

.products-panel {
  margin-top: 32px;
}

.product-grid {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-grid.active {
  display: grid;
}

/* Subcategory divider */
.subcategory-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 40px 0 24px;
  grid-column: 1 / -1;
}

.subcategory-divider::before,
.subcategory-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.35;
}

.subcategory-divider span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.subcategory-divider:first-child {
  margin-top: 0;
}

.subproduct-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  grid-column: 1 / -1;
}

.product-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark-mid);
  border: 1px solid rgba(228, 165, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(228, 165, 0, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

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

.product-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 12px 10px;
  background: linear-gradient(transparent, rgba(10, 6, 2, 0.88));
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  text-align: center;
  pointer-events: none;
}

/* ─── Product WhatsApp Overlay ──────────────────────────── */
/* Specialty tags */
.gallery-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.gallery-tag {
  padding: 8px 18px;
  border: 1px solid rgba(228,165,0,0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════════════
    PROMOTIONS
    ═══════════════════════════════════════════════════════ */
#promotions {
  background: var(--cream);
  position: relative;
}
#promotions::before {
  content: 'PROMOS';
  position: absolute;
  top: 60px;
  left: -20px;
  font-family: var(--font-display);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(92,61,30,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* Offers grid — 3 large horizontal cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-mid);
  border: 1px solid rgba(228,165,0,0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.4);
}

.offer-card-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-card-img-placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.12) 100%);
}
.offer-card-img-placeholder .placeholder-icon {
  width: 80px;
  height: 80px;
  opacity: 0.6;
}

.offer-card-body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.offer-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}
.offer-card-title .ar {
  font-family: var(--font-arabic);
  display: block;
  font-size: 1.15rem;
  color: rgba(228,165,0,0.65);
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.offer-card-desc .ar {
  font-family: var(--font-arabic);
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.48);
}

.offer-card-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-top: auto;
}

.offer-card-expiry {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}
.offer-card-expiry .ar {
  font-family: var(--font-arabic);
}

.offer-card-conditions {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  border-top: 1px solid rgba(228,165,0,0.1);
  padding-top: 10px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.offer-card-conditions .conditions-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(228,165,0,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-card-conditions .conditions-label .ar {
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  color: rgba(228,165,0,0.4);
  text-transform: none;
  letter-spacing: 0;
}
.offer-card-conditions .fr {
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}
.offer-card-conditions .ar {
  font-family: var(--font-arabic);
  display: block;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
}

/* Add-to-cart button on offer cards */
.offer-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.offer-card-btn:hover {
  background: #D4B85A;
  transform: scale(1.04);
}
.offer-card-btn:active {
  transform: scale(0.97);
}
.offer-card-btn.in-cart {
  background: rgba(228,165,0,0.2);
  color: var(--gold);
  border: 1px solid rgba(228,165,0,0.3);
}
.offer-card-btn.in-cart:hover {
  background: rgba(228,165,0,0.3);
}

@media (max-width: 768px) {
  .offers-grid { grid-template-columns: 1fr; max-width: 520px; }
  .offer-card-img-wrap { height: 220px; }
  .offer-card-img-placeholder { height: 220px; }
  .offer-card-img-placeholder .placeholder-icon { width: 64px; height: 64px; }
}

/* Empty state — no offers */
.no-offers {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: 16px;
  border: 1px dashed var(--gold-light);
}
.no-offers-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.no-offers-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.no-offers-intro.fr { direction: ltr; }
.no-offers-intro.ar { direction: rtl; }
.no-offers-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}
.no-offers-text.fr { direction: ltr; }
.no-offers-text.ar { direction: rtl; font-size: 0.85rem; opacity: 0.8; }

/* ═══════════════════════════════════════════════════════
    CATERING (TIMELINE)
    ═══════════════════════════════════════════════════════ */
#catering {
  background: var(--cream);
  position: relative;
}
#catering::before {
  content: 'CATERING';
  position: absolute;
  top: 60px;
  right: -20px;
  font-family: var(--font-display);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(92,61,30,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* ═══════════════════════════════════════════════════════
   CATERING — WIZARD
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   CATERING TEASER (collapsed state)
   ═══════════════════════════════════════════════════════ */
.catering-teaser {
  cursor: pointer;
  max-width: 600px;
  margin: 0 auto;
}

.catering-teaser-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 32px;
  border: 2px dashed rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  background: rgba(253, 246, 227, 0.3);
  transition: all 0.4s var(--ease-smooth);
  text-align: center;
}

.catering-teaser-inner:hover {
  border-color: var(--gold);
  background: rgba(253, 246, 227, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
}

.catering-teaser-icon {
  font-size: 3rem;
  line-height: 1;
}

.catering-teaser-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.catering-teaser-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.catering-teaser-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.catering-teaser-inner:hover .catering-teaser-btn {
  background: #D4B85A;
  transform: scale(1.03);
}


.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-teaser {
  cursor: pointer;
  height: 100%;
}
.service-teaser .catering-teaser {
  height: 100%;
  max-width: none;
  margin: 0;
}
.service-teaser .catering-teaser-inner {
  height: 100%;
  justify-content: center;
  padding: 40px 24px;
}

/* Progress bar */
.catering-progress {
  max-width: 600px;
  margin: 40px auto;
}
.catering-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.catering-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.catering-step.done,
.catering-step.current { opacity: 1; }
.catering-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light, #E5D9C5);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.catering-step.done .catering-step-num,
.catering-step.current .catering-step-num {
  background: var(--gold);
  color: var(--dark);
}
.catering-step-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}
.catering-step.current .catering-step-label {
  color: var(--gold-dark);
  font-weight: 600;
}
.catering-progress-bar {
  height: 4px;
  background: var(--bg-light, #E5D9C5);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.catering-progress-fill {
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
  transition: width 0.5s var(--ease-smooth);
}

/* Slides */
.catering-slides {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  min-height: 300px;
}
.catering-slide-inner {
  padding: 20px 0;
}
.catering-question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
}
.catering-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Cards grid */
.catering-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.catering-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: 12px;
  background: var(--cream);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  font-family: inherit;
  text-align: center;
}
.catering-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.15);
}
.catering-card.selected {
  border-color: var(--gold-dark);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.catering-card-icon {
  font-size: 2rem;
  line-height: 1;
}
.catering-card-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}
.catering-card-sm {
  padding: 14px 10px;
}
.catering-card-sm .catering-card-label {
  font-size: 0.75rem;
}

/* Form fields */
.catering-form-grid {
  display: grid;
  gap: 16px;
  max-width: 440px;
  margin: 0 auto;
}
.catering-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}
.catering-opt {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.catering-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #D4C9B4;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.catering-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* Recap */
.catering-recap {
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.catering-recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.catering-recap-row:last-child {
  border-bottom: none;
}
.catering-recap-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.catering-recap-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  text-align: right;
}

/* Nav buttons */
.catering-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 30px auto 0;
}
.catering-nav-spacer {
  flex: 1;
}
.catering-btn {
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
}
.catering-btn-prev {
  background: var(--cream);
  color: var(--dark);
  border: 1px solid rgba(201,168,76,0.2);
}
.catering-btn-prev:hover {
  background: var(--bg-light, #EDE0C0);
}
.catering-btn-next {
  background: var(--gold);
  color: var(--dark);
}
.catering-btn-next:hover {
  background: var(--gold-light);
}
.catering-btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.catering-btn-submit {
  background: var(--gold-dark);
  color: #fff;
}
.catering-btn-submit:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Success / Error */
.catering-success {
  text-align: center;
  padding: 30px 0 10px;
}
.catering-success-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}
.catering-success-text {
  font-size: 1rem;
  color: var(--gold-dark);
  font-weight: 500;
}
.catering-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 16px;
}

/* Transitions */
.catering-enter {
  transition: all 0.4s var(--ease-smooth);
}
.catering-enter-start {
  opacity: 0;
  transform: translateX(40px);
}
.catering-enter-end {
  opacity: 1;
  transform: translateX(0);
}
.catering-leave {
  transition: all 0.3s var(--ease-smooth);
}
.catering-leave-start {
  opacity: 1;
  transform: translateX(0);
}
.catering-leave-end {
  opacity: 0;
  transform: translateX(-40px);
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CAKE UPLOAD ZONE
   ═══════════════════════════════════════════════════════ */
.catering-upload-zone {
  max-width: 480px;
  margin: 0 auto;
}

.catering-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.catering-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 24px;
  border: 2px dashed rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  background: rgba(253, 246, 227, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.catering-upload-label:hover {
  border-color: var(--gold);
  background: rgba(253, 246, 227, 0.7);
}

.catering-upload-icon {
  font-size: 2.5rem;
}

.catering-upload-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.catering-upload-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.catering-upload-img {
  max-height: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.catering-upload-remove {
  background: rgba(239, 68, 68, 0.08);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.catering-upload-remove:hover {
  background: rgba(239, 68, 68, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .catering-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catering-question { font-size: 1.15rem; }
  .catering-step-label { font-size: 0.5rem; white-space: normal; }
  .catering-btn { padding: 10px 20px; font-size: 0.82rem; }
  .catering-nav { flex-wrap: wrap; }
  .catering-nav-spacer { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TÉMOIGNAGES
   ═══════════════════════════════════════════════════════ */
#temoignages {
  background: var(--dark);
  overflow: hidden;
  position: relative;
}
#temoignages::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#temoignages .section-title { color: var(--white); }
#temoignages .section-title-ar { color: rgba(255,255,255,0.35); }

.testimonials-track-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonials-track-wrapper::before,
.testimonials-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}
.testimonials-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

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

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px; right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(228,165,0,0.3);
  transform: translateY(-4px);
  background: rgba(255,255,255,0.06);
}

.testimonial-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}
.stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
#faq {
  background: var(--cream);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(92,61,30,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s;
  background: var(--white);
}
.faq-item:hover { border-color: var(--gold); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(228,165,0,0.04); }

.faq-question-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  text-align: left;
}
.faq-question-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: rtl;
  display: block;
  margin-top: 3px;
}

.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}
.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.87rem;
  color: var(--brown);
  line-height: 1.85;
  font-weight: 300;
}
.faq-answer-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: rtl;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(92,61,30,0.1);
}

/* ═══════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════ */
#contact {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(228,165,0,0.06) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(228,165,0,0.04) 0%, transparent 40%);
}
#contact .section-title { color: var(--white); }
#contact .section-title-ar { color: rgba(255,255,255,0.35); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.contact-card > div:last-child {
  flex: 1;
  min-width: 0;
}
.contact-card:hover {
  border-color: rgba(228,165,0,0.3);
  background: rgba(255,255,255,0.06);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(228,165,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card-title {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.5;
}
.contact-card-title .ar {
  display: block;
  margin-top: 2px;
  letter-spacing: 0;
}
.contact-card-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.contact-card-value:hover { color: var(--gold); }
.contact-card-zone {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
  line-height: 1.6;
}

.map-container {
  border-radius: 4px;
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(0.3) invert(0.05);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(228,165,0,0.08);
  transform: translateY(-2px);
}

/* ─── Contact Form ──────────────────────────────────── */
.contact-form {
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.contact-form-inner {
  max-width: 640px;
  margin: 0 auto;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}
.contact-form-ar {
  font-family: var(--font-arabic);
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  direction: rtl;
  text-align: center;
  margin-bottom: 28px;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form .form-group.full-width {
  grid-column: 1 / -1;
}
.contact-form .form-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-form .form-input,
.contact-form .form-textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.contact-form .form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 14px 36px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  display: inline-block;
  width: auto;
  margin-top: 4px;
  font-family: var(--font-body);
}
.contact-form .form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(228,165,0,0.35);
}
.contact-form .form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.contact-form .form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  grid-column: 1 / -1;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.footer-copy a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wa-btn {
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}
.wa-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Back to Top ──────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--gold-light);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ─── Search Count ─────────────────────────────────── */
.search-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-left: 8px;
  flex-shrink: 0;
}

/* ─── Product Price on card ────────────────────────── */
.product-price {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

.price-original {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 0.75rem;
  margin-right: 4px;
}
.price-promo {
  color: #e74c3c;
  font-weight: 700;
}

/* ─── Product Badges ──────────────────────────────── */
.product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}
.product-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.badge-new {
  background: #2ecc71;
  color: #fff;
}
.badge-featured {
  background: var(--gold, #C9A84C);
  color: #1A1209;
}
.badge-promo {
  background: #e74c3c;
  color: #fff;
}

/* ─── Focus visible global ─────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ─── Reduced motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
  .hero-slide {
    transition: opacity 0.01ms ease;
  }
  .particle {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
#loader.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
}

.loader-ring {
  position: relative;
  width: 90px;
  height: 90px;
}
.loader-ring::before,
.loader-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.loader-ring::before {
  border: 2px solid rgba(228,165,0,0.12);
}
.loader-ring::after {
  border: 2px solid transparent;
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loader-emoji-track {
  position: absolute;
  inset: 0;
  animation: spin 8s linear infinite reverse;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.loader-emoji-track span {
  font-size: 1.4rem;
  display: block;
  margin-top: 4px;
}

.loader-belt {
  width: 320px;
  overflow: hidden;
  position: relative;
  height: 52px;
}
.loader-belt::before,
.loader-belt::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.loader-belt::before { left: 0; background: linear-gradient(to right, var(--dark), transparent); }
.loader-belt::after  { right: 0; background: linear-gradient(to left, var(--dark), transparent); }

.loader-items {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: beltScroll 6s linear infinite;
  width: max-content;
}
.loader-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.loader-item span:first-child { font-size: 1.7rem; }
.loader-item span:last-child {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
  font-family: var(--font-body);
}

@keyframes beltScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-logo-img {
  max-height: 264px;
  width: auto;
  display: block;
}
.loader-logo sub {
  display: block;
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-style: normal;
  vertical-align: baseline;
}

.loader-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loader-text .fr {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.loader-text .ar {
  font-family: var(--font-arabic);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.25);
  direction: rtl;
  display: block;
}

.loader-dots {
  display: inline-flex;
  gap: 5px;
}
.loader-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotBounce 1.4s ease-in-out infinite;
}
.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40%            { transform: scale(1.2); opacity: 1; }
}

.loader-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: progressLine 2.4s var(--ease-smooth) forwards;
  width: 0;
}
@keyframes progressLine {
  0%   { width: 0; }
  70%  { width: 85%; }
  100% { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
    CART DRAWER (only, button moved to navbar)
    ═══════════════════════════════════════════════════════ */
.nav-cart {
  position: relative;
  background: transparent;
  border: 1px solid rgba(228,165,0,0.3);
  border-radius: 20px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--gold);
  transition: all 0.3s;
  flex-shrink: 0;
  margin-right: 8px;
  font-family: inherit;
}
.nav-cart:hover {
  background: rgba(228,165,0,0.15);
  border-color: var(--gold);
}
.nav-cart svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.nav-cart-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-cart-ar {
  font-family: var(--font-arabic);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(228,165,0,0.5);
  direction: rtl;
}
.nav-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: 1.5px solid var(--dark);
  line-height: 1;
}
@media (max-width: 900px) {
  .nav-cart {
    margin-right: 2px;
    padding: 4px 8px;
    width: auto;
    height: auto;
    border-radius: 6px;
    gap: 4px;
  }
  .nav-cart svg {
    width: 16px;
    height: 16px;
  }
  .nav-cart-text {
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
  }
  .nav-cart-ar {
    font-size: 0.6rem;
  }
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 99996;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -380px;
  width: 360px;
  max-width: 100vw;
  height: 100%;
  z-index: 99997;
  background: var(--cream);
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 24px;
  border-bottom: 1px solid rgba(92,61,30,0.1);
  position: relative;
}
.cart-drawer-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-drawer-ar {
  font-family: var(--font-arabic);
  font-size: 0.85rem;
  color: var(--text-muted);
  direction: rtl;
  margin-top: 2px;
}
.cart-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}
.cart-drawer-close:hover { color: var(--dark); }

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(92,61,30,0.08);
}
.cart-item:last-child { border-bottom: none; }

.cart-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--dark-mid);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin: 2px 0;
}
.cart-item-price.promo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.cart-item-price.promo .price-original {
  text-decoration: line-through;
  color: #999;
  font-weight: 400;
  font-size: 0.7rem;
}
.cart-item-price.promo .price-promo {
  color: #e74c3c;
  font-weight: 700;
  font-size: 0.8rem;
}
.cart-promo-label {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Cart category grouping */
.cart-category {
  margin-bottom: 16px;
}
.cart-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 8px;
}
.cart-category-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-category-subtotal {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* Item line total */
.cart-item-total {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 56px;
  text-align: right;
  margin-left: 8px;
  flex-shrink: 0;
}

.cart-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-grand-total-amount {
  font-size: 1.15rem;
  color: var(--gold-dark);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(92,61,30,0.2);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--gold-light); }
.cart-qty-num {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 20px;
  text-align: center;
}
.cart-item-remove {
  background: none;
  border: none;
  color: #c0392b;
  cursor: pointer;
  font-size: 0.8rem;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 4px;
}
.cart-item-remove:hover { opacity: 1; }

/* ─── Delivery options in cart ──────────────────── */
.cart-delivery-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 0 4px;
}
.delivery-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 2px solid rgba(92,61,30,0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
  user-select: none;
  position: relative;
}
.delivery-option:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}
.delivery-option.active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: inset 0 0 0 1px var(--gold), 0 1px 4px rgba(212,175,55,0.15);
}
.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom radio circle */
.delivery-option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(92,61,30,0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}
.delivery-option:hover .delivery-option-radio {
  border-color: var(--gold);
}
.delivery-option.active .delivery-option-radio {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.delivery-option.active .delivery-option-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  display: block;
}

.delivery-option-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}
.delivery-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}
.delivery-option-text .fr {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}
.delivery-option-text .ar {
  font-size: 0.72rem;
  font-weight: 400;
  color: #888;
  line-height: 1.2;
  text-align: left;
  direction: ltr;
}
.delivery-option-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 5px;
  background: rgba(212,175,55,0.08);
}
.delivery-option.active .delivery-option-price {
  background: rgba(212,175,55,0.15);
}

.cart-delivery-address {
  margin: 2px 0;
}
.cart-delivery-address .cart-input {
  border-color: rgba(92,61,30,0.3);
}
.cart-delivery-address .cart-input:focus {
  border-color: var(--gold);
}

.cart-delivery-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.82rem;
  color: #666;
}
.cart-delivery-fee span:last-child {
  font-weight: 600;
  color: var(--gold-dark);
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(92,61,30,0.1);
}
.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(92,61,30,0.2);
  border-radius: 4px;
  font-size: 0.82rem;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.cart-input:focus {
  border-color: var(--gold);
}
.cart-input::placeholder {
  color: rgba(92,61,30,0.35);
}
.cart-checkout {
  width: 100%;
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s;
  margin-top: 4px;
}
.cart-checkout:hover {
  background: #1ebe5c;
}

/* ─── Toast ────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 999999;
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  max-width: 320px;
  text-align: center;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .cart-drawer { width: 100vw; right: -100vw; }
  .toast {
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    max-width: 260px;
    font-size: 0.82rem;
    padding: 12px 20px;
    white-space: normal;
  }
  .toast.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════
    LIGHTBOX
    ═══════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s;
  line-height: 1;
  font-family: var(--font-body);
  opacity: 0.8;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-content {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  animation: lightboxIn 0.25s ease-out;
}

.lightbox-image-wrap {
  width: 100%;
  min-height: 260px;
  max-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f2;
}

.lightbox-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-info {
  padding: 18px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.lightbox-product-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  flex: 1;
}

.lightbox-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold-dark);
  margin: 4px 0;
}

.lightbox-desc {
  font-size: 0.82rem;
  color: var(--text-muted, #888);
  line-height: 1.45;
  margin: 0;
  width: 100%;
}

.lightbox-promo {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e74c3c;
  margin: 2px 0 4px;
}

.lightbox-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}
.lightbox-cart-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .lightbox { padding: 20px; }
  .lightbox-product-name { font-size: 0.92rem; }
  .lightbox-price { font-size: 1.2rem; }
  .lightbox-desc { font-size: 0.78rem; }
  .lightbox-cart-btn { padding: 10px 18px; font-size: 0.8rem; }
}

@keyframes lightboxIn {
  0%   { opacity: 0; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
    RESPONSIVE
    ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  section { padding: 70px 24px; }
  #navbar { padding: 0 24px; }
  #navbar.scrolled { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 145px; }
  .nav-inner {
    justify-content: center;
    position: relative;
  }
  .nav-cart {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 0;
  }
  .hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .subproduct-grid { grid-template-columns: repeat(3, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card { height: 320px; }
  .gallery-card img { object-fit: contain; background: var(--dark-mid); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .subproduct-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card img { object-fit: contain; background: var(--dark-mid); }
  .product-card { aspect-ratio: 3 / 4; }
  .subcategory-divider span { font-size: 0.9rem; }
  .hero-title { font-size: 3rem; }
  .wa-btn { width: 52px; height: 52px; }
  .wa-float { bottom: 20px; right: 20px; }
  .wa-float .wa-tooltip { display: none; }
}

/* ═══════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 60vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Slide product layout */
.hero-slide-product {
  padding: 120px 40px 60px;
}

.hero-slide-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-slide-badge-offer {
  background: #e74c3c;
  color: var(--white);
}

.hero-slide-product-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-slide-img-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(228,165,0,0.25);
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-slide-text {
  flex: 1;
  text-align: left;
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-slide-desc {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 450px;
}

.hero-slide-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-slide-price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}

.hero-slide-price-new {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-light);
}

.hero-slide-discount-badge {
  background: #e74c3c;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

/* Navigation dots */
.hero-slider-nav {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(228,165,0,0.4);
}

.hero-slider-dot:hover {
  background: var(--gold);
  opacity: 0.7;
}

/* ─── Footer location ───────────────────────────────── */
.footer-location {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  font-weight: 400;
}


/* ─── Hero Slider Responsive ────────────────────────── */
@media (max-width: 768px) {
  .hero-slide-product-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .hero-slide-text {
    text-align: center;
  }

  .hero-slide-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slide-prices {
    justify-content: center;
  }

  .hero-slide-img-wrap {
    width: 150px;
    height: 150px;
  }

  .hero-slides {
    min-height: 70vh;
  }

  .hero-slider-nav {
    bottom: 70px;
  }
}

@media (max-width: 600px) {
  .hero-slide-img-wrap {
    width: 120px;
    height: 120px;
  }

  .hero-slide-product {
    padding: 100px 24px 60px;
  }

  .hero-slide-title {
    font-size: 1.5rem;
  }
}
