/** Shopify CDN: Minification failed

Line 609:10 Expected identifier but found whitespace
Line 609:11 Unexpected "''"

**/
/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Almarai', sans-serif;
  background: #000; color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
/* Prevent pull-to-refresh interfering with hero swipe */
body { overscroll-behavior-y: contain; }
a { text-decoration: none; color: inherit; }
/* Thin scrollbar — desktop only */
@media (min-width: 769px) {
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: #000; }
  ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 2px; }
}
/* iOS momentum scrolling for overlays */
#pdp, #checkout { -webkit-overflow-scrolling: touch; }
/* Tap highlight removal */
* { -webkit-tap-highlight-color: transparent; }
button { touch-action: manipulation; }

/* ── Prisma animations ──────────────────────────── */
@keyframes wordUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes cardIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ── blurFadeUp — cinematic spec: blur(20px) + translateY(40px) → clear ── */
@keyframes blurFadeUp {
  from { opacity: 0; filter: blur(20px); transform: translateY(40px); }
  to   { opacity: 1; filter: blur(0px);  transform: translateY(0);   }
}
/* .bfu: invisible until .run is added; stagger delay via inline style   */
.bfu { opacity: 0; }
.bfu.run { animation: blurFadeUp 1s ease-out forwards; }
.word {
  display: inline-block; opacity: 0;
  animation: wordUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-play-state: paused;
}
.word.run { animation-play-state: running; }
.word.serif { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-weight: 300; }
.fu { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; animation-play-state: paused; }
.fu.run { animation-play-state: running; }
.si { opacity: 0; animation: cardIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards; animation-play-state: paused; }
.si.run { animation-play-state: running; }

/* ── Noise ──────────────────────────────────────── */
.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px;
}

/* ══════════════════════════════════════════════
   LIQUID GLASS — exact spec
══════════════════════════════════════════════ */
.liquid-glass {
  background: rgba(255,255,255,0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,  rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0)    40%, rgba(255,255,255,0)    60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Rose de Taif: two full-cover videos + gradient overlay ── */
#rose-a, #rose-b {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0; display: none;
  filter: brightness(1.1) saturate(1.15) contrast(1.04);
  transition: none;
}
#opulent-a, #opulent-b {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0; display: none;
  filter: brightness(1.05) saturate(1.2) contrast(1.05);
  transition: none;
}
#opulent-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(20,0,8,0.55) 0%,
    transparent 30%,
    transparent 62%,
    rgba(10,0,5,0.65) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s;
}

#rose-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(30,0,12,0.45) 0%, transparent 30%,
    transparent 65%,   rgba(20,0,8,0.55) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s;
}

/* ── Emerald Wade: Boomerang canvas (forward→backward→forward at 30fps) ── */
#emerald-capture {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  display: none;
  filter: brightness(1.15) saturate(1.12) contrast(1.05);
}
/* canvas with object-fit:cover — scales intrinsic size to fill container */
#emerald-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  display: none;
}
#emerald-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(5,22,8,0.42) 0%, transparent 28%,
    transparent 65%,  rgba(3,16,5,0.52) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s;
}

/* ══════════════════════════════════════════════
   OUD ENIGMA — full cinematic treatment
   • Two-video seamless crossfade loop
   • BLUR-ONLY bottom overlay (no darkening gradient) per spec:
     mask: linear-gradient(to top, black 0%, transparent 45%)
   • blurFadeUp staggered hero content
══════════════════════════════════════════════ */
#oud-a, #oud-b {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0; display: none;
  filter: brightness(1.12) saturate(1.06) contrast(1.04);
  transition: none;
}

/* ── Bottom blur-only overlay — NO gradient darkening, only blur ── */
#oud-blur-overlay {
  position: absolute; inset: 0; z-index: 2;
  backdrop-filter:         blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* Mask: full blur at bottom, fades to transparent at 45% height */
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 45%);
  mask-image:         linear-gradient(to top, black 0%, transparent 45%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s;
}

/* ── Standard hero content hidden while Oud cine mode is active ── */
.hero-content { transition: opacity 0.25s; }
.hero-content.oud-mode { opacity: 0; pointer-events: none; }

/* ── Oud Enigma: cinematic movie-style hero layout ── */
#oud-cine-hero {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: clamp(1.2rem,3vw,2.5rem) clamp(1.2rem,3vw,2.5rem);
  gap: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#oud-cine-hero.show { opacity: 1; pointer-events: auto; }
.oud-cine-left { flex: 1; min-width: 0; }

/* Metadata row — star, duration, date */
.oud-meta-row {
  display: flex; flex-wrap: wrap; gap: clamp(1rem,2.5vw,2rem);
  margin-bottom: clamp(0.7rem,1.5vw,1.4rem);
  font-size: clamp(10px,0.95vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.75); letter-spacing: 0.06em;
}
.oud-meta-row span { display: flex; align-items: center; gap: 0.35rem; }

/* Large cinematic title */
.oud-cine-title {
  font-size: clamp(2.5rem,7.5vw,5.5rem);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.04em; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  margin-bottom: clamp(0.6rem,1.2vw,1.1rem);
}

/* Subtitle / description */
.oud-cine-desc {
  font-size: clamp(11px,1.1vw,13px);
  line-height: 1.7; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 46ch;
  margin-bottom: clamp(1.2rem,2.5vw,2.2rem);
}

/* CTA row */
.oud-cine-ctas {
  display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center;
}

/* "Watch Now" equivalent — white pill with play icon */
.oud-watch-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff; color: #000; border-radius: 9999px; border: none;
  padding: 0.55rem 1.3rem 0.55rem 0.65rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,1vw,12px); font-weight: 600;
  cursor: pointer; letter-spacing: 0.02em;
  transition: background 0.2s;
}
.oud-watch-btn:hover { background: #e8e8e8; }
.oud-watch-circle {
  background: #000; border-radius: 50%;
  width: clamp(1.5rem,1.9vw,1.75rem); height: clamp(1.5rem,1.9vw,1.75rem);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* "Learn More" equivalent — liquid glass */
.oud-learn-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border-radius: 9999px; border: none;
  padding: 0.55rem 1.3rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,1vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.9); cursor: pointer;
}

/* Navigation arrows (Previous / Next) */
.oud-nav-arrows {
  display: flex; gap: 0.55rem; align-self: flex-end;
  padding-bottom: 0.1rem; flex-shrink: 0;
}
.oud-arrow-btn {
  display: inline-flex; align-items: center; gap: 0.35rem;
  border-radius: 9999px; border: none;
  padding: 0.5rem clamp(0.8rem,1.5vw,1.2rem);
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,0.95vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.9); cursor: pointer;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero { height: 100vh; height: 100svh; padding: clamp(0.8rem,1.2vw,1.2rem); position: relative; }
.hero-wrap {
  position: relative; width: 100%; height: 100%;
  border-radius: clamp(1rem,2vw,2rem);
  overflow: hidden; background: #000;
}

/* Two crossfade background layers */
.bg-layer {
  position: absolute; inset: 0; z-index: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  background-size: cover; background-position: center;
}
/* Azzurra main video — full cover */
#hero-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(1.35) saturate(1.2) contrast(1.08);
  transition: opacity 0.7s;
}

/* ── Noir Oud: TWO full-cover videos crossfade for invisible seamless loop ── */
#noir-a, #noir-b {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  opacity: 0; display: none;
  filter: brightness(1.18) saturate(1.12) contrast(1.06);
  transition: none; /* opacity handled by RAF only */
}
/* Aethera-style gradient: top + bottom dark fade, middle clear */
#noir-grad {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.5) 0%,
    transparent 28%,
    transparent 65%,
    rgba(0,0,0,0.6) 100%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.7s;
}
.hero-noise {
  position: absolute; inset: 0; z-index: 2;
  opacity: 0.08; mix-blend-mode: soft-light; pointer-events: none;
}
.hero-grad {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0,0,0,0.6) 100%);
}
/* Accent color bar at very bottom of hero */
.hero-accent {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  height: 3px; transition: background 0.7s;
}

/* ── Navbar tabs ── */
.navbar {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  z-index: 20;
  display: flex; align-items: center;
  gap: clamp(0.5rem,1.8vw,2rem);
  background: rgba(0,0,0,0.85); backdrop-filter: blur(12px);
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 0.7rem clamp(0.8rem,2vw,2rem);
  white-space: nowrap;
}
.tab-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(9px,1.05vw,12px);
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  padding: 0.3rem 0.1rem;
  border-bottom: 1.5px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.tab-btn.active { color: #fff; }
.tab-btn:hover  { color: rgba(255,255,255,0.85); }

/* Brand logo in navbar */
.brand-mark {
  font-size: clamp(10px,1.1vw,13px); font-weight: 800;
  letter-spacing: 0.12em; color: #fff;
  margin-right: clamp(0.5rem,1.5vw,1.5rem);
  padding-right: clamp(0.5rem,1.5vw,1.5rem);
  border-right: 1px solid rgba(255,255,255,0.2);
}

/* ── Hero content (bottom) ── */
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: grid; grid-template-columns: 2fr 1fr;
  align-items: flex-end;
  padding: clamp(1.2rem,3vw,2.5rem); gap: 1rem;
}
#hero-title {
  font-size: clamp(60px,18vw,290px);
  font-weight: 700; line-height: 0.84;
  letter-spacing: -0.07em; color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
  /* Transition for tab switching */
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#hero-title.out { opacity: 0; transform: translateY(10px); }
.hero-right {
  display: flex; flex-direction: column;
  gap: clamp(0.9rem,2vw,1.4rem);
  padding-bottom: clamp(0.4rem,1vw,0.75rem);
  transition: opacity 0.25s ease;
}
.hero-right.out { opacity: 0; }
.hero-tagline {
  font-size: clamp(10px,1.2vw,14px);
  line-height: 1.45; font-weight: 300;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.cta {
  display: inline-flex; align-items: center; gap: 0.72rem;
  background: rgba(255,255,255,0.92); border-radius: 9999px;
  padding: 0.44rem 0.55rem 0.44rem 1.15rem;
  color: #000; font-weight: 600;
  font-size: clamp(10px,1.2vw,13px);
  font-family: 'Almarai', sans-serif;
  cursor: pointer; width: fit-content; border: none;
  transition: gap 0.25s, background 0.3s;
}
.cta:hover { gap: 1rem; background: #fff; }
.cta-circle {
  background: #000; border-radius: 50%;
  width: clamp(1.75rem,2.3vw,2.1rem); height: clamp(1.75rem,2.3vw,2.1rem);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.25s;
}
.cta:hover .cta-circle { transform: scale(1.1); }

/* ═══════════════════════════════════════════════
   PERFUME DETAIL SECTION
═══════════════════════════════════════════════ */
#detail {
  background: #030303;
  min-height: 80vh;
  padding: clamp(4rem,8vw,7rem) clamp(1rem,3vw,3rem);
  position: relative; overflow: hidden;
  transition: background 0.8s;
}
.detail-glow {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.12; transition: background 0.8s;
}
.detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,5vw,5rem); align-items: start;
}
.detail-left { position: relative; }
.detail-super {
  font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; opacity: 0.55; margin-bottom: 1.2rem;
}
.detail-name {
  font-size: clamp(2.5rem,6vw,6rem);
  font-weight: 800; line-height: 0.88;
  letter-spacing: -0.04em; margin-bottom: 1.2rem;
  transition: color 0.5s;
}
.detail-italic {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic; font-weight: 300;
  font-size: clamp(1.2rem,2.5vw,2rem);
  opacity: 0.75; line-height: 1.3; margin-bottom: 2rem;
  transition: color 0.5s;
}
.detail-desc {
  font-size: clamp(12px,1.35vw,16px);
  line-height: 1.85; font-weight: 300;
  color: rgba(255,255,255,0.72); max-width: 520px;
  margin-bottom: 2.5rem;
}
.detail-price {
  font-size: clamp(1.2rem,2.5vw,2.2rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 1.5rem; transition: color 0.5s;
}
.buy-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border-radius: 9999px;
  padding: 0.75rem 0.7rem 0.75rem 1.8rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(11px,1.2vw,14px); font-weight: 600;
  cursor: pointer; border: none; transition: gap 0.25s, transform 0.2s;
}
.buy-btn:hover { gap: 1.1rem; transform: translateY(-1px); }
.buy-circle {
  border-radius: 50%;
  width: clamp(2rem,2.6vw,2.5rem); height: clamp(2rem,2.6vw,2.5rem);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Notes panel (right) */
.detail-right { padding-top: clamp(1rem,3vw,3rem); }
.notes-label {
  font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; opacity: 0.45;
  margin-bottom: 2rem;
}
.note-group { margin-bottom: 2.5rem; }
.note-tier {
  font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.45;
  margin-bottom: 0.5rem;
}
.note-name {
  font-size: clamp(1rem,1.8vw,1.5rem);
  font-weight: 400; line-height: 1.3;
  transition: color 0.5s;
}
.note-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 2rem 0;
}
/* Concentrate + size badge */
.conc-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
}
.conc-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.6; }
/* Ingredients block */
.ingr-block {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ingr-label {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.35; margin-bottom: 0.5rem;
}
.ingr-text {
  font-size: 0.68rem; line-height: 1.6;
  color: rgba(255,255,255,0.32); max-width: 380px;
}
/* Availability note */
.avail-note {
  margin-top: 1.2rem;
  font-size: 0.68rem; line-height: 1.6;
  color: rgba(255,255,255,0.35); font-style: italic;
}

/* ═══════════════════════════════════════════════
   COLLECTION GRID
═══════════════════════════════════════════════ */
#collection {
  background: #000; padding: clamp(3rem,6vw,5rem) clamp(1rem,3vw,2.5rem);
}
.coll-header { margin-bottom: clamp(1.5rem,3vw,2.5rem); }
.coll-title {
  font-size: clamp(1.2rem,3vw,2.5rem);
  font-weight: 400; color: rgba(255,255,255,0.9);
  margin-bottom: 0.3rem;
}
.coll-sub { font-size: clamp(1.2rem,3vw,2.5rem); font-weight: 400; color: #444; }
.coll-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0.4rem;
}
.coll-card {
  border-radius: 1rem; overflow: hidden;
  aspect-ratio: 2/3; position: relative;
  cursor: pointer; transition: transform 0.3s;
}
.coll-card:hover { transform: translateY(-4px); }
.coll-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s;
}
.coll-card:hover .coll-card-bg { transform: scale(1.04); }
.coll-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 35%, transparent 55%);
}
.coll-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.9rem;
}
.coll-card-name { font-size: clamp(9px,1vw,13px); font-weight: 600; }
.coll-card-price { font-size: clamp(8px,0.85vw,11px); opacity: 0.6; margin-top: 0.2rem; }
.coll-card-num {
  position: absolute; top: 0.7rem; right: 0.8rem;
  font-size: 0.6rem; opacity: 0.4; letter-spacing: 0.12em;
}

/* Product bottle image in detail section */
.bottle-showcase {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: clamp(1.5rem,3vw,2.5rem);
  position: relative;
}
.bottle-glow {
  position: absolute;
  width: 260px; height: 260px; border-radius: 50%;
  filter: blur(55px); opacity: 0.18;
  transition: background 0.7s;
}
.bottle-img {
  position: relative; z-index: 1;
  width: clamp(160px,20vw,260px);
  height: auto; object-fit: contain;
  /* SVG filter removes white pixels cleanly */
  filter: url(#az-rm-white) drop-shadow(0 12px 40px rgba(0,0,0,0.4)) brightness(1.05) saturate(1.1);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.bottle-img:hover { transform: scale(1.04) translateY(-4px); }

/* Collection card product image */
.coll-card-bg img {
  width: 70%; height: 86%;
  object-fit: contain;
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  /* SVG filter removes white background — bright vivid bottles */
  filter: url(#az-rm-white) drop-shadow(0 8px 28px rgba(0,0,0,0.5)) brightness(1.05) saturate(1.1);
  transition: transform 0.4s;
}
.coll-card:hover .coll-card-bg img { transform: translateX(-50%) scale(1.08) translateY(-7px); }
  content: ''; position: absolute; inset: 0;
  border-radius: 1rem;
  border: 2px solid rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1100px) { .coll-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { padding-bottom: 0; }
  .detail-inner { grid-template-columns: 1fr; }
  .coll-grid { grid-template-columns: repeat(2,1fr); }
  .navbar { gap: 0.6rem; overflow-x: auto; padding: 0.65rem 0.8rem; }
}
@media (max-width: 480px) { .coll-grid { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — smooth desktop + phone experience
   Breakpoints: 1024 · 768 · 480 · 390
══════════════════════════════════════════════════════════════ */

/* ── Touch: bigger tap targets, remove hover effects ── */
@media (hover: none) {
  .tab-btn:hover { color: rgba(255,255,255,0.55); }
  .cta:hover { gap: 0.72rem; background: rgba(255,255,255,0.92); }
  .cta:hover .cta-circle { transform: none; }
  .pdp-add-btn:hover { background: rgba(255,255,255,0.06); }
  .pdp-buy-btn:hover { background: rgba(255,255,255,0.04); }
  .co-cta:hover { background: #fff; transform: none; }
}

/* ── 1024px: comfortable tablet feel ── */
@media (max-width: 1024px) {
  #hero-title { font-size: clamp(56px,14vw,200px); }
  .hero-content { padding: clamp(1rem,2.5vw,2rem); }
  .detail-inner { gap: clamp(1.5rem,4vw,4rem); }
  .coll-grid { grid-template-columns: repeat(3,1fr); }
}

/* ── 768px: tablet portrait / large phone ── */
@media (max-width: 768px) {

  /* Navbar — scrollable pill row */
  .navbar {
    left: 0; right: 0; transform: none;
    width: 100%; border-radius: 0;
    padding: 0.55rem 1rem;
    gap: 0; justify-content: flex-start;
    overflow-x: auto; overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .navbar::-webkit-scrollbar { display: none; }
  .brand-mark {
    flex-shrink: 0;
    font-size: 10px;
    margin-right: 0.75rem;
    padding-right: 0.75rem;
  }
  .tab-btn {
    flex-shrink: 0;
    font-size: 10px;
    padding: 0.5rem 0.65rem;
    scroll-snap-align: start;
  }

  /* Hero */
  #hero { min-height: 100svh; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 1.2rem 1.6rem;
    gap: 0.75rem;
  }
  #hero-title { font-size: clamp(52px,17vw,110px); line-height: 0.86; }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0;
  }
  .hero-tagline { font-size: clamp(10px,3vw,13px); width: 100%; }
  .cta {
    font-size: clamp(11px,3vw,13px);
    padding: 0.5rem 0.65rem 0.5rem 1.1rem;
  }
  .cta-circle {
    width: 1.8rem; height: 1.8rem;
  }

  /* Detail section */
  #detail { padding: clamp(2.5rem,8vw,5rem) 1.2rem; }
  .detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .detail-super { font-size: 0.52rem; }
  #detail-title { font-size: clamp(2rem,9vw,3.5rem); }
  .buy-btn { width: 100%; justify-content: center; }

  /* Collection */
  .coll-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .coll-header { padding: 0 0.2rem 1.8rem; }

  /* PDP overlay */
  .pdp-body {
    grid-template-columns: 1fr;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .pdp-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 4.5rem 1.4rem 2rem;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .pdp-bg-blob { width: 260px; height: 260px; }
  .pdp-bottle {
    width: clamp(100px,30vw,150px);
    align-self: center;
  }
  .pdp-sizes { flex-wrap: wrap; gap: 0.45rem; }
  .pdp-size-btn { font-size: 11px; padding: 0.5rem 1rem; }
  .pdp-ctas { flex-direction: column; width: 100%; gap: 0.5rem; }
  .pdp-add-btn, .pdp-buy-btn { width: 100%; justify-content: center; font-size: 13px; }
  .pdp-right {
    padding: 1.5rem 1.4rem 2rem;
    overflow-y: visible;
  }
  .pdp-name { font-size: clamp(2rem,9vw,3.2rem); }
  .pdp-desc { font-size: 12px; line-height: 1.8; }
  .pdp-note-card { padding: 0.9rem; }
  .pdp-topbar { padding: 0.9rem 1.2rem; }
  .pdp-back-btn { font-size: 11px; padding: 0.4rem 0.9rem 0.4rem 0.6rem; }

  /* Checkout overlay */
  .co-inner { padding: 1.8rem 1.2rem 5rem; }
  .co-heading { font-size: clamp(1.2rem,6vw,1.6rem); margin-bottom: 1.2rem; }
  .co-product-card { padding: 1rem; gap: 0.9rem; }
  .co-bottle-thumb { width: 52px; }
  .co-qty-btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .co-qty-num { font-size: 15px; }
  .co-cta {
    padding: 1rem 1.4rem;
    font-size: 14px;
    border-radius: 0.9rem;
  }
  .co-trust { gap: 0.6rem; }
  .co-trust-item { font-size: 0.58rem; }
  .co-topbar { padding: 0.9rem 1.2rem; }
}

/* ── 480px: typical phone ── */
@media (max-width: 480px) {
  /* Hero title grows even larger on narrow screens — fills width nicely */
  #hero-title { font-size: clamp(48px,19vw,90px); }

  /* Oud cinematic hero on phone */
  .oud-cine-hero {
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 1.2rem 2rem;
    gap: 0.4rem;
  }
  .oud-cine-title { font-size: clamp(2.8rem,16vw,5rem) !important; }
  .oud-cine-meta  { font-size: 0.5rem !important; }
  .oud-cine-desc  { font-size: 12px !important; max-width: 100% !important; }
  .oud-cine-btns  { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .oud-watch-btn, .oud-learn-btn {
    font-size: 11px !important;
    padding: 0.55rem 1.1rem !important;
  }
  .oud-prev-btn, .oud-next-btn {
    width: 34px !important; height: 34px !important;
    font-size: 1rem !important;
  }

  /* Detail */
  #detail { padding: 2.5rem 1rem; }
  #detail-title { font-size: clamp(1.8rem,10vw,3rem); }
  .detail-notes { flex-direction: column; gap: 0.5rem; }

  /* Collection */
  .coll-grid { grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
  .coll-card-name  { font-size: 9px; }
  .coll-card-price { font-size: 8px; }
  .coll-card-num   { font-size: 0.55rem; }

  /* PDP phone — single column, more compact */
  .pdp-left {
    flex-direction: column;
    align-items: center;
    padding: 4.5rem 1.2rem 1.5rem;
  }
  .pdp-bottle { width: clamp(110px,38vw,150px); }
  .pdp-price-chip { font-size: clamp(1.4rem,7vw,2rem); }
  .pdp-ctas { flex-direction: column; }

  /* Checkout phone */
  .co-inner { padding: 1.4rem 1rem 5rem; }
}

/* ── 390px: small phones (iPhone SE etc) ── */
@media (max-width: 390px) {
  #hero-title { font-size: clamp(44px,18vw,80px); }
  .pdp-bottle { width: 110px; }
  .co-heading { font-size: 1.15rem; }
  .coll-card { min-height: 140px; }
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE  (#pdp)
   Full-screen overlay — slides in from right on "Explore Scent"
══════════════════════════════════════════════════════════════ */
.pdp-back-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-radius: 9999px; border: none; cursor: pointer;
  padding: 0.45rem 1.1rem 0.45rem 0.8rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,0.9vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.8);
}
#pdp {
  position: fixed; inset: 0; z-index: 200;
  display: flex; flex-direction: column;
  background: #060606;
  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
  overflow: hidden;
}
#pdp.open { transform: translateX(0); }
.pdp-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem,4vw,3rem);
  background: rgba(6,6,6,0.6); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pdp-topbar-brand { font-size: clamp(9px,0.85vw,11px); letter-spacing: 0.22em; opacity: 0.4; text-transform: uppercase; }
.pdp-body {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  min-height: 0;
}
/* Left panel — bottle + price + size + CTAs */
.pdp-left {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; position: relative;
  padding: 5.5rem 2rem 3rem; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.pdp-bg-blob {
  position: absolute; width: 540px; height: 540px;
  border-radius: 50%; filter: blur(80px); opacity: 0.38;
  pointer-events: none; transition: background 0.7s;
}
.pdp-bottle {
  position: relative; z-index: 2;
  width: clamp(180px,22vw,300px); height: auto;
  /* SVG filter removes white pixels without any darkening */
  filter: url(#az-rm-white) drop-shadow(0 24px 60px rgba(0,0,0,0.5)) brightness(1.05) saturate(1.1);
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
  animation: pdpBottleIn 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes pdpBottleIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.pdp-bottle:hover { transform: scale(1.05) translateY(-8px); }
.pdp-price-chip {
  z-index: 2; margin-top: 1.8rem;
  font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 800; letter-spacing: -0.04em;
}
/* Size pills */
.pdp-sizes { display: flex; gap: 0.5rem; margin-top: 1.1rem; z-index: 2; }
.pdp-size-btn {
  border-radius: 9999px; border: 1.5px solid rgba(255,255,255,0.18);
  padding: 0.42rem 1rem; background: transparent;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,0.9vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.55); cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.pdp-size-btn.active {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55);
  color: #fff;
}
/* CTA row */
.pdp-ctas { display: flex; gap: 0.6rem; margin-top: 1.6rem; z-index: 2; }
.pdp-add-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border-radius: 9999px; border: none;
  padding: 0.65rem 1.5rem 0.65rem 0.9rem;
  background: rgba(255,255,255,0.93); color: #000;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,0.95vw,12px); font-weight: 700;
  cursor: pointer; transition: background 0.2s; letter-spacing: 0.02em;
}
.pdp-add-btn:hover { background: #fff; }
.pdp-add-circle {
  background: #000; border-radius: 50%;
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.pdp-buy-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 9999px; border: none; padding: 0.65rem 1.4rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(10px,0.95vw,12px); font-weight: 500;
  color: rgba(255,255,255,0.85); cursor: pointer;
}
/* Right panel — text info */
.pdp-right {
  padding: 5.5rem clamp(2rem,5vw,3.5rem) 3rem;
  overflow-y: auto; overscroll-behavior: contain;
}
.pdp-super { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.42; margin-bottom: 0.7rem; }
.pdp-name { font-size: clamp(2.2rem,5vw,4.5rem); font-weight: 800; line-height: 0.88; letter-spacing: -0.04em; margin-bottom: 0.75rem; }
.pdp-italic {
  font-family: 'Instrument Serif', Georgia, serif; font-style: italic;
  font-weight: 300; font-size: clamp(1rem,1.7vw,1.45rem);
  opacity: 0.72; margin-bottom: 1.2rem; line-height: 1.35;
}
.pdp-conc-row { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.4rem; }
.pdp-conc-dot { width: 6px; height: 6px; border-radius: 50%; }
.pdp-conc-text { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; }
.pdp-desc { font-size: clamp(11px,1.05vw,13px); line-height: 1.88; font-weight: 300; color: rgba(255,255,255,0.68); margin-bottom: 2rem; }
.pdp-notes-hdr { font-size: 0.56rem; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.38; margin-bottom: 0.8rem; }
.pdp-note-card {
  padding: 0.85rem 1.1rem; border-radius: 0.7rem; margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.pdp-note-card:hover { background: rgba(255,255,255,0.055); }
.pdp-note-tier { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.4; margin-bottom: 0.3rem; }
.pdp-note-names { font-size: clamp(11px,1.05vw,13px); font-weight: 500; line-height: 1.5; }
/* Mobile PDP */
@media (max-width: 768px) {
  #pdp { overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .pdp-body { grid-template-columns: 1fr; overflow-y: visible; min-height: unset; }
  .pdp-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 5rem 1.5rem 2.5rem; }
  .pdp-right { overflow-y: visible; padding-bottom: 3rem; }
}

/* ══════════════════════════════════════════════════════════════
   CHECKOUT PAGE  (#checkout)
   Slides in from right over the PDP
══════════════════════════════════════════════════════════════ */
#checkout {
  position: fixed; inset: 0; z-index: 300;
  display: flex; flex-direction: column;
  background: #050505;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto; overscroll-behavior: contain;
}
#checkout.open { transform: translateX(0); }
.co-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem clamp(1.5rem,4vw,3rem); flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(5,5,5,0.8); backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 10;
}
.co-inner { width: 100%; max-width: 540px; margin: 0 auto; padding: 2.5rem clamp(1.5rem,4vw,2.5rem) 5rem; }
.co-heading { font-size: clamp(1.3rem,2.5vw,1.9rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 1.8rem; }
/* Product summary card */
.co-product-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.2rem; border-radius: 1rem; margin-bottom: 2rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
}
.co-bottle-thumb { width: 64px; flex-shrink: 0; filter: drop-shadow(0 4px 14px rgba(0,0,0,0.5)) brightness(1.1); }
.co-product-name { font-size: clamp(14px,1.4vw,17px); font-weight: 700; letter-spacing: -0.02em; }
.co-product-sub { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.42; margin-top: 0.18rem; }
.co-product-price { font-size: clamp(13px,1.3vw,15px); font-weight: 600; margin-top: 0.35rem; }
/* Section labels */
.co-section-label { font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.4; margin-bottom: 0.65rem; }
/* Size grid */
.co-sizes { display: flex; gap: 0.6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.co-size-btn {
  border-radius: 0.65rem; border: 1.5px solid rgba(255,255,255,0.14);
  padding: 0.7rem 1.2rem; background: transparent;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(11px,1vw,13px); font-weight: 500;
  color: rgba(255,255,255,0.55); cursor: pointer;
  transition: all 0.2s; text-align: center; min-width: 86px;
}
.co-size-btn.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); color: #fff; }
.co-size-label { display: block; font-weight: 700; }
.co-size-price { display: block; font-size: 0.75em; opacity: 0.55; margin-top: 0.1rem; }
/* Quantity */
.co-qty-row { display: flex; align-items: center; gap: 0; margin-bottom: 2rem; }
.co-qty-btn {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.18); background: transparent;
  color: rgba(255,255,255,0.75); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; font-family: monospace;
  user-select: none;
}
.co-qty-btn:hover { background: rgba(255,255,255,0.08); }
.co-qty-num { width: 52px; text-align: center; font-size: clamp(13px,1.2vw,16px); font-weight: 700; }
/* Price breakdown */
.co-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 1.4rem 0; }
.co-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: clamp(11px,1vw,13px); }
.co-price-label { color: rgba(255,255,255,0.5); }
.co-price-value { font-weight: 600; }
.co-price-free { color: #62d482; font-weight: 600; }
.co-total-row { display: flex; justify-content: space-between; align-items: center; font-size: clamp(15px,1.4vw,18px); font-weight: 800; margin-bottom: 2rem; letter-spacing: -0.02em; }
/* Complete purchase CTA */
.co-cta {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  border-radius: 9999px; border: none;
  padding: 1rem 2rem;
  font-family: 'Almarai', sans-serif;
  font-size: clamp(12px,1.15vw,15px); font-weight: 700; letter-spacing: 0.01em;
  background: #fff; color: #000; cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  margin-bottom: 1.6rem;
}
.co-cta:hover { background: #ebebeb; transform: translateY(-2px); }
/* Trust badges */
.co-trust { display: flex; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.co-trust-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: clamp(9px,0.82vw,11px); color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em; text-transform: uppercase;
}
/* ─ Footer ─ */
@keyframes lgFooterIn {
  to { opacity:1; transform:translateY(0); }
}
#lg-footer { max-width:1400px; margin-left:auto; margin-right:auto; }
.lg-grid { display:grid; grid-template-columns:1fr; gap:2.5rem; margin-bottom:2rem; }
@media(min-width:768px){ .lg-grid { grid-template-columns: 5fr 7fr; gap:3rem; } }
.lg-links-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.lg-link-header { font-size:0.65rem; text-transform:uppercase; letter-spacing:0.12em; color:#fff; font-weight:500; margin-bottom:0.9rem; }
.lg-link-list { display:flex; flex-direction:column; gap:0.45rem; }
.lg-link-list a { font-size:0.72rem; color:rgba(255,255,255,0.6); text-decoration:none; transition:color 0.2s; }
.lg-link-list a:hover { color:#fff; }
.lg-bottom { padding-top:1.25rem; border-top:1px solid rgba(255,255,255,0.1); display:flex; flex-direction:column; align-items:center; justify-content:space-between; gap:1rem; }
@media(min-width:640px){ .lg-bottom { flex-direction:row; } }
.lg-tag { font-size:0.6rem; text-transform:uppercase; letter-spacing:0.18em; opacity:0.45; }
.lg-social { display:flex; align-items:center; gap:1rem; }
.lg-social a { opacity:0.65; color:rgba(255,255,255,0.8); text-decoration:none; transition:opacity 0.2s, color 0.2s; }
.lg-social a:hover { opacity:1; color:#fff; }
.lg-desc { font-size:0.8rem; line-height:1.7; max-width:22rem; color:rgba(255,255,255,0.55); margin-top:0.9rem; }
.lg-logo-row { display:flex; align-items:center; gap:0.6rem; color:#fff; margin-bottom:0.5rem; }
.lg-logo-text { font-size:1.1rem; font-weight:600; letter-spacing:0.12em; }
/* ══════════════════════════════════════════════
   FLOATING CART ICON — top-right corner
══════════════════════════════════════════════ */
#az-cart-btn {
  position: fixed;
  top: 1.2rem; right: 1.4rem;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
#az-cart-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
#az-cart-btn svg { width: 22px; height: 22px; }

/* Count badge */
#az-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
#az-cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Bump animation when item added */
@keyframes cartBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.3); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
#az-cart-btn.bump { animation: cartBump 0.45s cubic-bezier(0.16,1,0.3,1); }

/* ══════════════════════════════════════════════
   POPUP MODAL SYSTEM
══════════════════════════════════════════════ */
#az-popup {
  position: fixed; inset: 0;
  z-index: 99999;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
#az-popup.open {
  pointer-events: all;
  opacity: 1;
}
#az-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
#az-popup-panel {
  position: relative;
  width: 100%; max-width: 860px;
  max-height: 88vh;
  background: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.1);
  border-bottom: none;
  border-radius: 1.4rem 1.4rem 0 0;
  overflow-y: auto;
  padding: 3.5rem 4rem 4rem;
  transform: translateY(40px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
@media (max-width: 600px) {
  #az-popup-panel { padding: 2.5rem 1.5rem 3rem; }
}
#az-popup.open #az-popup-panel { transform: translateY(0); }
#az-popup-close {
  position: absolute; top: 1.2rem; right: 1.4rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #fff; font-size: 1.2rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
#az-popup-close:hover { background: rgba(255,255,255,0.15); }

/* Content typography */
#az-popup-content h2 {
  font-size: clamp(1.8rem,4vw,2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
#az-popup-content .popup-sub {
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: 0.4;
  margin-bottom: 2rem;
}
#az-popup-content p {
  font-size: clamp(0.95rem,1.4vw,1.05rem);
  line-height: 1.85; opacity: 0.75;
  margin-bottom: 1.4rem;
}
#az-popup-content .popup-divider {
  height: 1px; background: rgba(255,255,255,0.08);
  margin: 2rem 0;
}
#az-popup-content .popup-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin: 2rem 0;
}
@media (max-width: 600px) {
  #az-popup-content .popup-grid { grid-template-columns: 1fr; }
}
#az-popup-content .popup-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.8rem;
  padding: 1.4rem;
}
#az-popup-content .popup-card h4 {
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.5; margin-bottom: 0.5rem;
}
#az-popup-content .popup-card p { margin: 0; font-size: 0.95rem; }
#az-popup-content .popup-cta {
  display: inline-block; margin-top: 1.5rem;
  padding: 0.8rem 2rem; border-radius: 999px;
  background: #fff; color: #000;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
  text-decoration: none; transition: opacity 0.2s;
}
#az-popup-content .popup-cta:hover { opacity: 0.85; }
#az-popup-content .popup-contact-field {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem; color: #fff;
  padding: 0.9rem 1rem; font-size: 0.95rem;
  font-family: 'Almarai', sans-serif;
  margin-bottom: 1rem; outline: none;
  resize: vertical;
}
#az-popup-content .popup-contact-field:focus {
  border-color: rgba(255,255,255,0.35);
}
.az-popup-link { cursor: pointer; }

/* ══════════════════════════════════════════════════════════════
   PHONE-FIRST MOBILE IMPROVEMENTS (≤480px)
   Covers: navbar, hero, detail, collection, PDP, popup, cart
══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Navbar ── */
  .navbar {
    padding: 0.9rem 1rem;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .navbar::-webkit-scrollbar { display: none; }
  .brand-mark { font-size: 0.75rem; letter-spacing: 0.2em; flex-shrink: 0; }
  .nav-div { display: none; }
  .tab-btn { font-size: 0.62rem; padding: 0.4rem 0.7rem; white-space: nowrap; flex-shrink: 0; }

  /* ── Hero ── */
  #hero { height: 100svh; }
  #hero-title {
    font-size: clamp(42px,15vw,72px);
    left: 1.2rem; right: 1.2rem;
    bottom: clamp(5rem,18vh,10rem);
  }
  #hero-tagline {
    font-size: clamp(0.85rem,3.5vw,1.1rem);
    left: 1.2rem; right: 1.2rem;
    bottom: clamp(2.5rem,9vh,5rem);
  }
  .cta {
    right: 1.2rem; bottom: 1.4rem;
    padding: 0.6rem 1.1rem 0.6rem 0.85rem;
    font-size: 0.7rem;
  }

  /* ── Detail section ── */
  .detail-inner {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 2.5rem 1.2rem !important;
  }
  .detail-right {
    order: -1;
    padding-top: 0 !important;
    display: flex; justify-content: center;
  }
  .bottle-showcase { margin-bottom: 1.5rem; }
  .bottle-img { width: clamp(120px,38vw,180px) !important; }
  .detail-left { padding-top: 0 !important; }
  #detail-title { font-size: clamp(2.2rem,12vw,3.5rem) !important; }
  .detail-italic { font-size: clamp(0.85rem,3.5vw,1rem) !important; }
  .buy-btn { width: 100%; justify-content: center; margin-top: 1.5rem; }

  /* ── Collection header ── */
  .coll-header { padding: 2rem 1.2rem 1rem !important; }
  .coll-big { font-size: clamp(1.5rem,7vw,2.2rem) !important; }

  /* ── Collection grid: 2 columns on phone ── */
  .coll-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 0.5rem !important;
    padding: 0 1.2rem 1.2rem !important;
  }
  .coll-card { aspect-ratio: 3/5; }
  .coll-card-bg img { width: 80% !important; height: 80% !important; }
  .coll-card-name { font-size: 10px !important; }
  .coll-card-price { font-size: 9px !important; }
  .coll-card-num { font-size: 8px !important; }

  /* ── PDP overlay ── */
  .pdp-body {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr;
    overflow-y: auto;
  }
  .pdp-left {
    padding: 5rem 1.5rem 2rem !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 1.2rem;
  }
  .pdp-bottle {
    width: clamp(90px,28vw,130px) !important;
    flex-shrink: 0;
  }
  .pdp-bg-blob { width: 280px !important; height: 280px !important; }
  .pdp-price-chip { font-size: 1.6rem !important; margin-top: 0.6rem; }
  .pdp-ctas { flex-direction: column !important; width: 100%; }
  .pdp-add-btn, .pdp-buy-btn {
    width: 100%; justify-content: center;
    font-size: 13px !important;
    padding: 0.75rem 1.2rem !important;
  }
  .pdp-right {
    padding: 1.8rem 1.5rem 2rem !important;
    overflow-y: visible;
  }
  .pdp-name { font-size: clamp(2rem,8vw,2.8rem) !important; }
  .pdp-italic { font-size: 0.9rem !important; }
  .pdp-desc { font-size: 12px !important; }

  /* ── Popup modal ── */
  #az-popup-panel {
    max-height: 92vh !important;
    padding: 2rem 1.3rem 3rem !important;
    border-radius: 1.2rem 1.2rem 0 0 !important;
  }
  #az-popup-content h2 { font-size: 1.7rem !important; }
  #az-popup-content .popup-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem !important;
  }
  #az-popup-content p { font-size: 0.9rem !important; }

  /* ── Cart icon ── */
  #az-cart-btn {
    width: 42px !important; height: 42px !important;
    top: 1rem !important; right: 1rem !important;
  }
  #az-cart-btn svg { width: 18px !important; height: 18px !important; }

  /* ── Footer ── */
  .lg-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2rem 1.2rem !important;
  }
  .lg-grid {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1.5rem !important;
  }
  .lg-footer-brand { margin-bottom: 1.5rem; }
  .lg-brand-name { font-size: 1.1rem !important; }
  .lg-brand-desc { font-size: 0.78rem !important; }
  .lg-link-header, .lg-link-head { font-size: 0.58rem !important; }
  .lg-link-list a { font-size: 0.82rem !important; }
  .lg-footer-bottom {
    flex-direction: column !important;
    gap: 0.8rem !important;
    text-align: center;
    padding: 1.2rem !important;
  }
}

/* ── Very small phones (≤360px) ── */
@media (max-width: 360px) {
  .tab-btn { font-size: 0.58rem; padding: 0.35rem 0.55rem; }
  .coll-grid { grid-template-columns: repeat(2,1fr) !important; }
  .pdp-left { flex-direction: column !important; align-items: center !important; }
  .pdp-bottle { width: 100px !important; }
  #hero-title { font-size: clamp(38px,14vw,60px); }
}

/* ── Ensure footer social icons work on mobile ── */
@media (max-width: 768px) {
  .lg-socials { gap: 1rem !important; }
  .lg-social-link {
    width: 38px !important; height: 38px !important;
  }
}

/* ══════════════════════════════════════════════
   CART PAGE  (#az-cart-page)
══════════════════════════════════════════════ */
#az-cart-page {
  min-height: 100vh;
  background: #080808;
  color: #fff;
  font-family: 'Almarai', sans-serif;
}

/* Topbar */
.acp-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.5rem,5vw,4rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.acp-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.55); font-size: 0.78rem;
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.2s;
}
.acp-back:hover { color: #fff; }
.acp-brand {
  font-size: 0.72rem; letter-spacing: 0.28em;
  font-weight: 700; opacity: 0.6;
}
.acp-secure {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; opacity: 0.4; letter-spacing: 0.08em;
}

/* Body */
.acp-body {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(2rem,5vw,4rem) clamp(1.2rem,4vw,3rem);
}

/* ── Empty state ── */
.acp-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 6rem 1rem;
}
.acp-empty-icon {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem; opacity: 0.5;
}
.acp-empty-title {
  font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.7rem;
}
.acp-empty-sub {
  font-size: 0.95rem; opacity: 0.5; margin-bottom: 2rem;
}

/* ── Cart layout ── */
.acp-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: start;
}
@media (max-width: 900px) {
  .acp-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Title ── */
.acp-title {
  font-size: clamp(1.5rem,3vw,2.2rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 2rem;
}
.acp-count { font-size: 1rem; font-weight: 400; opacity: 0.4; }

/* ── Cart items ── */
.acp-item {
  display: grid; grid-template-columns: 100px 1fr auto;
  gap: 1.5rem; align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: opacity 0.3s;
}
@media (max-width: 480px) {
  .acp-item { grid-template-columns: 80px 1fr; gap: 1rem; }
  .acp-item-right { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
}

/* Bottle image */
.acp-item-img {
  width: 100px; height: 100px; border-radius: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.acp-item-img img {
  width: 80%; height: 80%; object-fit: contain;
  filter: url(#az-rm-white) brightness(1.05);
}
.acp-item-img-placeholder { opacity: 0.3; }

/* Info */
.acp-item-brand { font-size: 0.58rem; letter-spacing: 0.2em; opacity: 0.38; text-transform: uppercase; margin-bottom: 0.35rem; }
.acp-item-name { font-size: clamp(1rem,1.8vw,1.3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.3rem; }
.acp-item-variant { font-size: 0.78rem; opacity: 0.45; margin-bottom: 0.2rem; }
.acp-item-conc { font-size: 0.7rem; opacity: 0.35; }

/* Qty + price */
.acp-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; }
.acp-item-price { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.acp-qty-row { display: flex; align-items: center; gap: 0.6rem; }
.acp-qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: #fff; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.acp-qty-btn:hover { background: rgba(255,255,255,0.12); }
.acp-qty-num { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.acp-remove {
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-size: 0.72rem; cursor: pointer; font-family: 'Almarai',sans-serif;
  letter-spacing: 0.05em; transition: color 0.2s;
}
.acp-remove:hover { color: rgba(255,100,100,0.8); }

/* Trust badges */
.acp-trust {
  display: flex; gap: 1.5rem; padding-top: 1.5rem;
  flex-wrap: wrap;
}
.acp-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; opacity: 0.35; letter-spacing: 0.08em;
}

/* ── Summary panel ── */
.acp-summary-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 1.2rem;
  padding: 2rem;
  position: sticky; top: 5rem;
}
.acp-summary-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.acp-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; margin-bottom: 0.85rem;
  opacity: 0.75;
}
.acp-free { color: #5dbd79; font-weight: 600; opacity: 1 !important; }
.acp-summary-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1.2rem 0; }
.acp-total-row { font-size: 1.05rem; font-weight: 700; opacity: 1 !important; margin-bottom: 1.5rem; }

/* CTA buttons */
.acp-cta-btn, .acp-checkout-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 1rem 1.5rem;
  border-radius: 999px; text-align: center;
  font-family: 'Almarai',sans-serif; font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.acp-checkout-btn {
  background: #fff; color: #000;
}
.acp-checkout-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.acp-cta-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; margin-top: 1rem;
  max-width: 280px;
}
.acp-cta-btn:hover { background: rgba(255,255,255,0.14); }

.acp-summary-note {
  font-size: 0.7rem; opacity: 0.35;
  text-align: center; margin-top: 1rem; line-height: 1.5;
}
.acp-summary-note a { color: inherit; }

/* Payment icons */
.acp-payment-icons {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-top: 1.2rem; flex-wrap: wrap;
}
.acp-payment-icons span {
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.3rem 0.6rem; border-radius: 0.3rem;
  opacity: 0.5;
}

/* ── Mobile cart ── */
@media (max-width: 480px) {
  .acp-topbar { padding: 0.9rem 1rem; }
  .acp-brand { display: none; }
  .acp-body { padding: 1.5rem 1rem; }
  .acp-item-img { width: 80px; height: 80px; }
  .acp-summary-inner { padding: 1.5rem; }
  .acp-trust { gap: 1rem; }
}

/* ══════════════════════════════════════════════
   LOGO IMAGES — navbar + footer
══════════════════════════════════════════════ */

/* Navbar wordmark */
.brand-mark-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.navbar-logo-img {
  height: 32px; width: auto;
  object-fit: contain;
  /* Gold logo on dark — remove any black bg artifacts */
  filter: url(#az-rm-white) brightness(1.05);
  display: block;
}
@media (max-width: 480px) {
  .navbar-logo-img { height: 26px; }
}

/* Footer seal (circular mark) */
.footer-seal-img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: url(#az-rm-white) brightness(1.05);
  margin-bottom: 0.3rem;
}

/* Footer wordmark */
.footer-wordmark-img {
  width: 160px; height: auto;
  object-fit: contain;
  filter: url(#az-rm-white) brightness(1.05);
  display: block;
}
@media (max-width: 480px) {
  .footer-seal-img  { width: 44px; height: 44px; }
  .footer-wordmark-img { width: 130px; }
}
