/* =========================================
   YK Collections — LUXURY REDESIGN
   Aesthetic: Clean Editorial · Premium Minimal
   Palette: Warm Ivory · Refined Gold · Espresso
   Fonts: Lora (display) + DM Sans (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* =========================================
   1. CSS VARIABLES
   ========================================= */
:root {
  /* Palette */
  --bg:          #FAFAF8;
  --bg-alt:      #F4F0EB;
  --bg-deep:     #EDE8DF;
  --surface:     #FFFFFF;
  --border:      #E0D8CE;
  --border-lt:   #EDE8E0;

  --text-1:      #1C1714;
  --text-2:      #4E4338;
  --text-3:      #948778;
  --text-4:      #BEB0A0;

  --gold:        #9A6D18;
  --gold-mid:    #B5830E;
  --gold-lt:     #D4A92A;
  --gold-pale:   #F0E0B8;

  --espresso:    #1A1210;
  --espresso-mid:#2E1C0C;
  --espresso-lt: #4A3020;

  /* Aliases for admin / JS compatibility */
  --amber:       var(--gold-mid);
  --amber-mid:   var(--gold-mid);
  --amber-light: var(--gold-lt);
  --amber-pale:  var(--gold-pale);
  --ivory:       var(--bg);
  --ivory-dark:  var(--bg-alt);
  --ivory-mid:   var(--border);
  --text-main:   var(--text-1);
  --text-body:   var(--text-2);
  --text-muted:  var(--text-3);
  --text-dim:    var(--text-4);
  --espresso-pale: #8A6040;
  --white:       var(--surface);
  --success:     #2A6E48;
  --danger:      #A02818;
  --info:        #1A5C8A;
  --gold-dark:   var(--gold);
  --cream:       var(--text-1);
  --cream-dim:   var(--text-3);
  --muted:       var(--text-4);
  --shadow-amber: 0 4px 24px rgba(155,109,24,0.12);
  --shadow-gold:  0 4px 24px rgba(155,109,24,0.12);
  --font-display: var(--ff-display);
  --font-body:    var(--ff-body);

  /* Typography */
  --ff-display: 'Lora', 'Georgia', serif;
  --ff-body:    'DM Sans', 'Segoe UI', sans-serif;

  /* Radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm:   0 1px 6px rgba(28,23,20,0.05);
  --shadow-md:   0 4px 18px rgba(28,23,20,0.08);
  --shadow-lg:   0 12px 44px rgba(28,23,20,0.12);
  --shadow-card: 0 1px 10px rgba(28,23,20,0.06);

  /* Transitions */
  --transition:      all 0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.16s ease;

  /* Surface2 alias */
  --surface2: var(--bg-alt);
  --deep:     var(--espresso-mid);
  --obsidian: var(--espresso);
}

/* =========================================
   2. RESET & BASE
   ========================================= */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text-1);
  font-family: var(--ff-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

::selection { background: var(--gold-pale); color: var(--espresso); }

/* =========================================
   3. HEADER & NAVBAR
   ========================================= */
header {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 500;
  transition: var(--transition);
  /* flex-column so mobile-menu drops below navbar row */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

header.scrolled {
  background: rgba(250,250,248,0.98);
  box-shadow: 0 2px 20px rgba(28,23,20,0.07);
}

.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: 16px;
  height: 64px; /* fixed height only on the nav row */
}

/* ── LEFT: Logo + Name ── */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  justify-self: start;
}

.navbar-logo-img {
  height: 36px;
  width: auto;
  max-width: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.5px;
  line-height: 1;
  white-space: nowrap;
}
.logo span { color: var(--gold-mid); }

/* ── CENTER: Nav links ── */
.nav-center {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}

.nav-center a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-center a:hover,
.nav-center a.active {
  color: var(--gold-mid);
  background: rgba(155,109,24,0.07);
}

/* ── RIGHT: Cart + Wishlist ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}

.admin-link {
  display: none; /* hidden — moved to mobile menu */
}

.wishlist-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.wishlist-nav:hover {
  color: var(--gold-mid);
  border-color: var(--gold-lt);
  background: rgba(155,109,24,0.05);
}

.cart {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--bg);
  background: var(--text-1);
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(28,23,20,0.18);
  letter-spacing: 0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cart:hover {
  background: var(--gold-mid);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(155,109,24,0.28);
}

.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-2);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg-alt); border-color: var(--gold-lt); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-lt);
  padding: 4px 0 10px;
  background: rgba(250,250,248,0.98);
  width: 100%;
  animation: slideDown 0.22s ease;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 12px 2px;
  border-bottom: 1px solid var(--border-lt);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.1px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-mid); padding-left: 8px; }

/* =========================================
   4. OLD HERO — hidden
   ========================================= */
.hero        { display: none !important; }
.hero-modern { display: none !important; }
.featured-banner { display: none !important; }

/* Old reveal classes unused */

/* =========================================
   5. HERO ULTRA
   ========================================= */
.hero-ultra {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Two layers that crossfade — this makes gradient transitions actually work */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
}
.hero-bg-layer.active   { opacity: 1; }
.hero-bg-layer.inactive { opacity: 0; }

.hero-grain { display: none; }
.hero-scanline { display: none !important; }
.hero-orb      { display: none !important; }

/* Remove the heavy pseudo-element */
.hero-ultra::before { display: none; }

.hero-ultra::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 3;
  pointer-events: none;
}

.hero-ultra-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 5% 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 78vh;
}

/* ── Hero Left ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  animation: hFadeUp 0.6s ease 0.1s both;
}
.hero-eyebrow-line {
  width: 24px; height: 1px;
  background: rgba(255,210,120,0.7);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,220,140,0.85);
  font-weight: 500;
}

.hero-title-ultra {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  animation: hFadeUp 0.7s ease 0.2s both;
}

.hero-title-ultra em {
  font-style: italic;
  font-weight: 500;
  color: #FFD580 !important;
  -webkit-text-fill-color: #FFD580 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  transition: opacity 0.4s ease;
}

.hero-desc-ultra {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  max-width: 400px;
  margin-bottom: 14px;
  font-weight: 400;
  animation: hFadeUp 0.7s ease 0.35s both;
  transition: opacity 0.4s ease;
}

/* Search bar */
.hero-search-ultra {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  overflow: hidden;
  max-width: 420px;
  margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  animation: hFadeUp 0.7s ease 0.48s both;
  backdrop-filter: blur(8px);
}
.hero-search-ultra:focus-within {
  border-color: rgba(255,210,100,0.5);
  box-shadow: 0 0 0 3px rgba(255,210,100,0.12);
}
.hero-search-ultra input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 20px;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-family: var(--ff-body);
  outline: none;
  min-width: 0;
}
.hero-search-ultra input::placeholder { color: rgba(255,255,255,0.4); }
.hero-search-ultra button {
  background: rgba(255,255,255,0.15);
  border: none;
  padding: 9px 20px;
  margin: 5px;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--ff-body);
  letter-spacing: 0.2px;
  backdrop-filter: blur(4px);
}
.hero-search-ultra button:hover {
  background: #FFD580;
  color: #1C1714;
}

/* Stats */
.hero-stats-ultra {
  display: flex;
  gap: 28px;
  animation: hFadeUp 0.7s ease 0.6s both;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
}
.hero-stat-item strong {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.hero-stat-item span {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 3px;
}

/* ── Hero Right ── */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

/* Simplified rings — subtle */
.hero-ring {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  animation: ringRotate 30s linear infinite;
}
.hero-ring-2 {
  width: 310px; height: 310px;
  border: 1px dashed rgba(255,255,255,0.05);
  animation: ringRotate 22s linear infinite reverse;
}
.hero-ring::before, .hero-ring-2::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  width: 8px; height: 8px;
  background: var(--gold-lt);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(155,109,24,0.5);
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-glow-disc {
  position: absolute;
  width: 260px; height: 130px;
  bottom: 50px;
  left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(155,109,24,0.1) 0%, transparent 70%);
  filter: blur(18px);
  border-radius: 50%;
  transition: background 1.2s ease;
  pointer-events: none;
}

.hero-slides {
  position: relative;
  width: 320px; height: 420px;
  z-index: 2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hero-slide.exit {
  opacity: 0;
  transform: translateY(-12px) scale(1.03);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide-img-wrap {
  width: 300px; height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(28,23,20,0.18));
  animation: productFloat 5s ease-in-out infinite;
}
@keyframes productFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-slide-label { display: none; } /* Name removed by user request */
.hero-slide-name  { display: none; }
.hero-slide-sub   { display: none; }

/* Hero image fills full slide height without label */
.hero-slide-img-wrap {
  width: 300px; height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dots {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.hero-dot.active {
  background: #FFD580;
  border-color: #FFD580;
  width: 20px;
  border-radius: 3px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 5%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: hFadeUp 0.6s ease 1.1s both;
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-line {
  width: 36px; height: 1px;
  background: rgba(255,255,255,0.2);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: #FFD580;
  animation: scanLine 2s ease-in-out infinite;
}
@keyframes scanLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   7. SECTION SHARED LABELS
   ========================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.section-label-line {
  flex: 1; max-width: 30px; height: 1px;
  background: var(--gold-mid);
  opacity: 0.4;
}
.section-label-text {
  font-size: 0.6rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  font-weight: 500;
}
.section-title-ultra {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 2rem;
  letter-spacing: -0.3px;
  line-height: 1.1;
}
.section-title-ultra::after {
  content: '';
  display: block;
  width: 36px; height: 1.5px;
  background: var(--gold-mid);
  margin-top: 12px;
  border-radius: 2px;
}

/* =========================================
   8. CATEGORIES
   ========================================= */
.categories-section {
  padding: 5rem 5%;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
  aspect-ratio: 3/4;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-lt);
  box-shadow: 0 16px 44px rgba(28,23,20,0.1), var(--shadow-amber);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background: var(--cat-bg, linear-gradient(135deg, #FAF8F3, #F0E8D8));
  background-image: var(--cat-img, none);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.04); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,16,0.72) 0%, rgba(26,18,16,0.02) 55%);
}
.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  z-index: 2;
}
.cat-card-icon {
  width: 36px; height: 36px;
  background: rgba(181,131,14,0.15);
  border: 1px solid rgba(181,131,14,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gold-lt);
}
.cat-card-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 1px;
}
.cat-card-count {
  font-size: 0.62rem;
  color: rgba(250,240,220,0.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.cat-card-arrow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 44px; height: 44px;
  background: var(--gold-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.cat-card:hover .cat-card-arrow { transform: translate(-50%, -50%) scale(1); }

/* =========================================
   9. BRAND TICKER
   ========================================= */
.brand-ticker {
  padding: 1.5rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.brand-ticker::before, .brand-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px; z-index: 2;
  pointer-events: none;
}
.brand-ticker::before { left: 0;  background: linear-gradient(90deg,  var(--bg-alt), transparent); }
.brand-ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-alt), transparent); }

.brand-ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-tick-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 38px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand-tick-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-mid);
  opacity: 0.35;
}
.brand-tick-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 2px;
  font-style: italic;
}

/* =========================================
   LATEST ARRIVAL SPOTLIGHT
   ========================================= */
.latest-arrival-section {
  padding: 3.5rem 5% 4.5rem;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg);
}

.latest-arrival-inner {
  /* shown when JS populates it */
}

/* The card itself */
.la-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: linear-gradient(135deg, #0f0c09 0%, #1c1410 45%, #2a1e12 100%);
  border: 1px solid rgba(181,131,14,0.18);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.28), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  min-height: 500px;
}

/* NEW badge ribbon */
.la-ribbon {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 4;
  background: var(--text-1);
  color: var(--bg);
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.la-ribbon::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-lt);
  animation: laPulse 1.6s ease-in-out infinite;
}
@keyframes laPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Left: Image */
.la-img-side {
  position: relative;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}
/* Radial gold glow behind image */
.la-img-side::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,131,14,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.la-img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, rgba(15,12,9,0.6));
  pointer-events: none;
  z-index: 3;
}
.la-product-img {
  width: 82%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.55))
          drop-shadow(0 0 40px rgba(181,131,14,0.12));
  animation: laFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes laFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* Right: Info */
.la-info-side {
  padding: 48px 48px 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: transparent;
}

/* Decorative background number */
.la-info-side::before {
  content: 'NEW';
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 7rem;
  font-weight: 700;
  color: rgba(255,213,128,0.04);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}

.la-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.la-eyebrow-line {
  width: 24px; height: 1px;
  background: #FFD580;
  opacity: 0.6;
}
.la-eyebrow-text {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFD580;
  font-weight: 500;
}

.la-brand {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  color: rgba(255,220,140,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.la-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.la-divider {
  width: 44px; height: 1.5px;
  background: linear-gradient(90deg, #FFD580, rgba(255,213,128,0.2));
  margin-bottom: 16px;
  border-radius: 2px;
}

.la-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Price row */
.la-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}
.la-label {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,220,140,0.45);
  font-weight: 500;
}
.la-price {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: #FFD580;
  line-height: 1;
  letter-spacing: -0.5px;
}
.la-price-old {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
}
.la-sale-badge {
  background: rgba(160,40,24,0.1);
  color: #A02818;
  border: 1px solid rgba(160,40,24,0.2);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Category pill */
.la-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: rgba(255,213,128,0.9);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  background: rgba(181,131,14,0.15);
  border: 1px solid rgba(181,131,14,0.28);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  width: fit-content;
}

/* Action buttons */
.la-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.la-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #B5830E, #D4A92A);
  color: #0f0c09;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(181,131,14,0.35);
}
.la-btn-primary:hover {
  background: linear-gradient(135deg, #D4A92A, #FFD580);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(181,131,14,0.45);
}

.la-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 13px 22px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.la-btn-outline:hover {
  border-color: rgba(255,213,128,0.4);
  color: #FFD580;
  background: rgba(181,131,14,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .la-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .la-img-side { min-height: 300px; }
  .la-info-side { padding: 28px 24px 32px; }
  .la-title { font-size: 1.8rem; }
  .la-price { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .latest-arrival-section { padding: 0 4% 3rem; }
  .la-img-side { min-height: 240px; }
  .la-info-side { padding: 22px 18px 26px; }
  .la-title { font-size: 1.5rem; }
  .la-actions { flex-direction: column; }
  .la-btn-primary, .la-btn-outline { justify-content: center; padding: 12px 20px; }
}

/* =========================================
   10. PRODUCTS SECTION
   ========================================= */
.products-section {
  padding: 5rem 5%;
  max-width: 1380px;
  margin: auto;
  background: var(--bg);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-1);
}
.section-title::after {
  content: '';
  display: block;
  width: 40px; height: 1.5px;
  background: var(--gold-mid);
  margin: 12px auto 0;
  border-radius: 2px;
}

.store-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}
.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-4);
  pointer-events: none;
  z-index: 1;
}
.store-controls input,
.store-controls select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: var(--transition);
  font-family: var(--ff-body);
  background: var(--surface);
  color: var(--text-1);
  letter-spacing: 0.1px;
  cursor: pointer;
}
.search-wrapper input { padding-left: 40px; }
.store-controls input::placeholder { color: var(--text-4); }
.store-controls input:focus,
.store-controls select:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 2px rgba(155,109,24,0.08);
  background: var(--surface);
}
.store-controls select option { background: var(--surface); color: var(--text-1); }

/* =========================================
   11. PRODUCT CARDS — Redesigned
   ========================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155,109,24,0.35);
  box-shadow: 0 18px 50px rgba(28,23,20,0.1);
}

/* Badges */
.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.badge-new  { background: rgba(42,110,72,0.12);  color: #1e6640; border: 1px solid rgba(42,110,72,0.2); }
.badge-hot  { background: rgba(160,40,24,0.1);   color: #8a1e10; border: 1px solid rgba(160,40,24,0.18); }
.badge-sale { background: rgba(155,109,24,0.12); color: var(--gold); border: 1px solid rgba(155,109,24,0.22); }

/* Wishlist Button */
.wishlist-btn {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--text-3);
}
.wishlist-btn:hover {
  transform: scale(1.1);
  border-color: var(--gold-lt);
  background: var(--surface);
}
.wishlist-btn.active svg { stroke: #C0392B; fill: #C0392B; }

/* Image */
.card-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 260px;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.product-card:hover .card-img-wrapper img { transform: scale(1.05); }

/* Quick View overlay — clean */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,23,20,0.5);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: pointer;
  font-family: var(--ff-body);
}
.product-card:hover .card-overlay { opacity: 1; }

/* Card Body */
.card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-lt);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.card-category {
  font-size: 0.6rem;
  color: var(--gold-mid);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  background: rgba(155,109,24,0.08);
  border: 1px solid rgba(155,109,24,0.16);
  padding: 2px 9px;
  border-radius: 50px;
}
.card-stats {
  font-size: 0.68rem;
  color: var(--text-4);
  letter-spacing: 0.2px;
}

.card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-1);
  line-height: 1.2;
}
.card-price {
  color: var(--text-1);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.card-actions .btn { flex: 1; padding: 9px 8px; font-size: 0.8rem; }

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
}
.empty-state h3 { color: var(--text-4); font-size: 1.2rem; font-family: var(--ff-display); }

/* =========================================
   12. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg-alt);
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.83rem;
  letter-spacing: 0.2px;
  transition: var(--transition);
  font-family: var(--ff-body);
  white-space: nowrap;
}
.btn:hover { background: rgba(155,109,24,0.06); border-color: var(--gold-lt); color: var(--gold-mid); }

.btn-primary {
  background: var(--text-1);
  color: var(--bg);
  border: none;
  font-weight: 500;
  width: 100%;
  padding: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 12px rgba(28,23,20,0.16);
}
.btn-primary:hover {
  background: var(--gold-mid);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(155,109,24,0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-2);
}
.btn-outline:hover {
  background: rgba(155,109,24,0.06);
  border-color: var(--gold-mid);
  color: var(--gold-mid);
}

.w-100 { width: 100%; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.79rem;
  color: var(--text-3);
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--ff-body);
  transition: var(--transition);
  outline: none;
  background: var(--bg);
  color: var(--text-1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 2px rgba(155,109,24,0.08);
  background: var(--surface);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* =========================================
   13. MODALS
   ========================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow: auto;
  background: rgba(28,23,20,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 5% auto;
  padding: 32px;
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalSlide 0.3s cubic-bezier(0.4,0,0.2,1);
  color: var(--text-1);
}
@keyframes modalSlide {
  from { transform: translateY(-24px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.close-btn {
  color: var(--text-4);
  position: absolute;
  top: 12px; right: 16px;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-fast);
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.close-btn:hover { color: var(--text-1); background: var(--bg-alt); }
.modal-content h2 {
  margin-bottom: 20px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--text-1);
  font-weight: 700;
}

/* Cart Items */
.cart-items-container {
  margin: 8px 0;
  max-height: 210px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(155,109,24,0.2) transparent;
}
.cart-items-container::-webkit-scrollbar { width: 3px; }
.cart-items-container::-webkit-scrollbar-thumb { background: rgba(155,109,24,0.2); border-radius: 3px; }

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-lt);
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-row img {
  width: 52px; height: 52px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .name {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cart-item-info .price {
  color: var(--gold-mid);
  font-size: 0.8rem;
  margin-top: 2px;
  font-family: var(--ff-display);
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.qty-control button {
  width: 28px; height: 28px;
  border: none;
  background: var(--bg-alt);
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: var(--transition-fast);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-control button:hover { background: rgba(155,109,24,0.1); color: var(--gold-mid); }
.qty-control span {
  min-width: 26px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-1);
}
.cart-total {
  text-align: right;
  font-size: 1rem;
  margin: 14px 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--text-1);
  font-weight: 600;
}
.cart-total span { color: var(--gold-mid); font-family: var(--ff-display); }
.checkout-form { margin-top: 18px; }
.checkout-form h3 {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border-lt);
  padding-bottom: 10px;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text-1);
  font-weight: 600;
}

/* ── Advance Payment Box ── */
.advance-payment-box {
  background: linear-gradient(135deg, rgba(181,131,14,0.07) 0%, rgba(181,131,14,0.02) 100%);
  border: 1.5px solid rgba(181,131,14,0.3);
  border-radius: 12px;
  padding: 16px;
  margin: 14px 0;
}
.advance-payment-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.advance-payment-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.advance-payment-title {
  font-family: var(--ff-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-1);
}
.advance-payment-subtitle {
  font-size: 0.74rem;
  color: var(--text-3);
  margin-top: 2px;
}
.advance-amount-display {
  background: rgba(181,131,14,0.1);
  border: 1px solid rgba(181,131,14,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.86rem;
  color: var(--text-2);
  margin-bottom: 12px;
}
.advance-amount-display strong {
  color: var(--gold-mid);
  font-size: 1rem;
  font-family: var(--ff-display);
}

/* ── Payment Method Cards ── */
.payment-methods-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.pm-method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  user-select: all; /* lets user copy number easily */
}
.pm-method-emoji { display: none; } /* replaced by logo */
.pm-method-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pm-method-logo svg { display: block; }

.pm-method-name  { font-weight: 600; font-size: 0.83rem; color: var(--text-1); }
.pm-method-num   { font-size: 0.84rem; color: var(--gold-mid); font-weight: 600; margin-top: 2px; letter-spacing: 0.5px; }
.pm-method-title { font-size: 0.72rem; color: var(--text-3); margin-top: 1px; }

.advance-message-text {
  font-size: 0.77rem;
  color: var(--text-3);
  line-height: 1.6;
  background: rgba(0,0,0,0.03);
  border-radius: 6px;
  padding: 8px 10px;
  border-left: 3px solid rgba(181,131,14,0.4);
  margin-bottom: 6px;
  white-space: pre-wrap;
}


/* Detail Modal */
.detail-modal-content { max-width: 680px; }
.detail-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 10px;
}
.detail-img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.detail-info { display: flex; flex-direction: column; }
.detail-info h2 { font-family: var(--ff-display); font-size: 1.6rem; margin-bottom: 8px; color: var(--text-1); font-weight: 700; }
.detail-info .detail-price { font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin-bottom: 10px; font-family: var(--ff-display); }
.detail-info p { font-size: 0.85rem; color: var(--text-3); line-height: 1.8; margin-bottom: 16px; flex: 1; }

/* =========================================
   14. TOAST NOTIFICATIONS
   ========================================= */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  pointer-events: none;
  width: 90%;
  max-width: 360px;
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.6s forwards;
  border-left: 2.5px solid var(--gold-mid);
  letter-spacing: 0.2px;
  width: 100%;
  text-align: center;
}
.toast.success { border-left-color: var(--success); }
.toast.error   { border-left-color: var(--danger); }
.toast.info    { border-left-color: var(--info); }
@keyframes toastIn  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* =========================================
   15. FLOATING BUTTONS
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 82px; right: 22px;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #25d366, #1eba58);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.36);
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }

#back-to-top {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 42px; height: 42px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--gold-mid);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover {
  background: var(--gold-mid);
  color: var(--surface);
  border-color: var(--gold-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155,109,24,0.28);
}

/* =========================================
   16. WHY CHOOSE US
   ========================================= */
/* =========================================
   15b. PROMO BANNER SLIDESHOW
   ========================================= */
.promo-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--espresso);
  line-height: 0; /* remove gap under img */
}

.promo-banner-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 600px;
}

@media (max-width: 768px)  { .promo-banner-track { max-height: none; } }

.promo-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.promo-banner-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.promo-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots */
.promo-banner-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 5;
}
.promo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.promo-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 4px;
}

/* Prev / Next arrows */
.promo-banner-prev,
.promo-banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  padding: 0;
}
.promo-banner-prev { left: 16px; }
.promo-banner-next { right: 16px; }
.promo-banner-prev:hover,
.promo-banner-next:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}

/* =========================================
   16. OUD & ATTAR COLLECTION SECTION
   ========================================= */
.oud-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.oud-section::before {
  content: 'OUD';
  position: absolute;
  right: -2%; top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(155,109,24,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}
.oud-section-inner { max-width: 1380px; margin: 0 auto; }
.oud-section-desc {
  font-size: 0.95rem;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
#oud-grid { margin-bottom: 2.5rem; }
.oud-view-all { display: flex; justify-content: center; margin-top: 0.5rem; }
.oud-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid var(--text-1);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
}
.oud-view-all-btn:hover {
  background: var(--text-1);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,23,20,0.15);
}
.oud-view-all-btn svg { transition: transform 0.25s ease; }
.oud-view-all-btn:hover svg { transform: translateX(4px); }

/* =========================================
   17. NEWSLETTER
   ========================================= */
.newsletter-section {
  padding: 5rem 5%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-box {
  background: var(--text-1);
  border-radius: 22px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(155,109,24,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter-box::after {
  content: '';
  position: absolute;
  bottom: -30px; left: -30px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(155,109,24,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.newsletter-box h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
  position: relative; z-index: 1;
  letter-spacing: -0.3px;
}
.newsletter-box p {
  color: rgba(250,240,220,0.45);
  font-size: 0.88rem;
  margin-bottom: 26px;
  position: relative; z-index: 1;
  line-height: 1.65;
}
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  position: relative; z-index: 1;
  transition: border-color 0.25s ease;
}
.newsletter-form:focus-within { border-color: rgba(155,109,24,0.5); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 13px 18px;
  color: var(--bg);
  font-size: 0.95rem;
  font-family: var(--ff-body);
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(250,240,220,0.28); }
.newsletter-form button {
  background: linear-gradient(135deg, var(--gold-mid), var(--gold-lt));
  border: none;
  padding: 10px 20px;
  margin: 4px;
  border-radius: 50px;
  color: var(--text-1);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-form button:hover { box-shadow: 0 4px 14px rgba(155,109,24,0.35); }

/* =========================================
   18. FOOTER
   ========================================= */
footer {
  background: var(--espresso);
  border-top: none;
  color: rgba(250,240,220,0.4);
  padding: 0;
}
.footer-ultra { max-width: 1280px; margin: 0 auto; padding: 4.5rem 5% 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 1.8rem;
}
.footer-brand-ultra h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--bg);
  margin-bottom: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.footer-brand-ultra h3 span { color: var(--gold-lt); }
.footer-brand-tagline {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,240,220,0.22);
  margin-bottom: 16px;
}
.footer-brand-ultra p {
  color: rgba(250,240,220,0.35);
  font-size: 0.83rem;
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,240,220,0.35);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.68rem;
  font-weight: 700;
}
.footer-social-btn:hover {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
  color: var(--text-1);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.59rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: rgba(250,240,220,0.32);
  text-decoration: none;
  font-size: 0.83rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
}
.footer-contact-item svg { color: var(--gold-mid); opacity: 0.65; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 0.82rem; color: rgba(250,240,220,0.32); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy-ultra { font-size: 0.72rem; color: rgba(250,240,220,0.22); }
.footer-copy-ultra span { color: rgba(155,109,24,0.45); }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-badge {
  padding: 3px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50px;
  font-size: 0.59rem;
  color: rgba(250,240,220,0.25);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Old footer compat */
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-brand h3 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--bg); margin-bottom: 6px; }
.footer-brand p  { color: rgba(250,240,220,0.35); font-size: 0.82rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: rgba(250,240,220,0.35); text-decoration: none; font-size: 0.82rem; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-copy { text-align: center; color: rgba(250,240,220,0.2); font-size: 0.72rem; border-top: 1px solid rgba(255,255,255,0.04); padding-top: 20px; }

/* =========================================
   19. LOGIN PAGE
   ========================================= */
.login-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background:
    linear-gradient(rgba(28,20,16,0.84), rgba(28,20,16,0.84)),
    url('https://images.unsplash.com/photo-1594035910387-fea47794261f?q=80&w=1200') center/cover;
}
.login-container {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(155,109,24,0.12);
  animation: modalSlide 0.45s ease;
}
.login-container h2 { font-family: var(--ff-display); color: var(--text-1); font-size: 1.9rem; margin-bottom: 4px; font-weight: 700; }
.login-container .login-sub { color: var(--text-3); font-size: 0.83rem; margin-bottom: 26px; }
.login-container input { background: var(--bg); color: var(--text-1); border-color: var(--border); }
.login-container input:focus { background: var(--surface); border-color: var(--gold-mid); }
.login-error { display: none; background: rgba(160,40,24,0.07); border: 1px solid rgba(160,40,24,0.18); color: #A02818; padding: 9px 13px; border-radius: var(--radius-sm); font-size: 0.81rem; margin-bottom: 13px; }

/* =========================================
   20. ADMIN DASHBOARD
   ========================================= */
.admin-body { background: #0f1117; font-family: var(--ff-body); color: #e2e8f0; }
.admin-header { background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%); border-bottom: 1px solid rgba(155,109,24,0.12); display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.4); flex-wrap: wrap; gap: 10px; }
.admin-header-left { display: flex; align-items: center; gap: 12px; }
.admin-header-left h1 { font-family: var(--ff-display); font-size: 1.6rem; color: #e2e8f0; font-weight: 700; }
.admin-header-left h1 span { color: var(--gold-lt); }
.admin-badge { background: rgba(155,109,24,0.12); color: var(--gold-lt); border: 1px solid rgba(155,109,24,0.25); padding: 3px 11px; border-radius: 20px; font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; }
.admin-header-right { display: flex; gap: 9px; align-items: center; }
.admin-btn-outline { background: rgba(255,255,255,0.06); color: #e2e8f0; border: 1px solid rgba(255,255,255,0.1); padding: 7px 16px; font-size: 0.82rem; }
.admin-btn-outline:hover { background: rgba(255,255,255,0.1); color: white; }
.admin-main { padding: 2.5rem 5%; max-width: 1380px; margin: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: linear-gradient(135deg, #1a2332 0%, #151c28 100%); border: 1px solid rgba(155,109,24,0.1); border-radius: var(--radius); padding: 20px 22px; display: flex; align-items: center; gap: 16px; transition: var(--transition); }
.stat-card:hover { transform: translateY(-2px); border-color: rgba(155,109,24,0.28); }
.stat-icon { color: var(--gold-lt); opacity: 0.9; flex-shrink: 0; }
.stat-info { display: flex; flex-direction: column; }
.stat-number { font-size: 1.7rem; font-weight: 700; color: #e2e8f0; line-height: 1; font-family: var(--ff-display); }
.stat-label { font-size: 0.68rem; color: #64748b; margin-top: 3px; text-transform: uppercase; letter-spacing: 0.8px; }
.admin-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 20px; margin-bottom: 20px; }
.admin-card { background: #151c28; border: 1px solid rgba(255,255,255,0.05); padding: 24px; border-radius: var(--radius); }
.admin-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.admin-card h2 { font-size: 1rem; color: #cbd5e1; font-family: var(--ff-body); font-weight: 600; margin-bottom: 20px; }
.admin-card-header h2 { margin-bottom: 0; }
.count-badge { background: rgba(255,255,255,0.05); color: #94a3b8; padding: 3px 10px; border-radius: 20px; font-size: 0.73rem; font-weight: 600; }
.admin-card select, .admin-card input[type="text"], .admin-card input[type="number"], .admin-card input[type="url"], .admin-card textarea { width: 100%; padding: 10px 13px; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: var(--ff-body); outline: none; transition: var(--transition); background: rgba(255,255,255,0.04); color: #e2e8f0; }
.admin-card select:focus, .admin-card input:focus, .admin-card textarea:focus { border-color: rgba(155,109,24,0.4); background: rgba(155,109,24,0.03); }
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.admin-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.admin-table th, .admin-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.84rem; vertical-align: middle; }
.admin-table th { background: rgba(255,255,255,0.02); font-weight: 600; color: #64748b; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 1px; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table td { color: #cbd5e1; }
.product-cell { display: flex; align-items: center; gap: 11px; }
.product-cell img { width: 42px; height: 42px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; border: 1px solid rgba(255,255,255,0.07); }
.table-badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px; }
.btn-delete { background: rgba(160,40,24,0.14); color: #e74c3c; border: 1px solid rgba(160,40,24,0.22); padding: 6px 13px; cursor: pointer; border-radius: var(--radius-sm); transition: var(--transition-fast); font-size: 0.78rem; font-family: var(--ff-body); font-weight: 600; }
.btn-delete:hover { background: var(--danger); color: white; }
.order-actions { display: flex; gap: 5px; flex-wrap: wrap; }
.btn-action { padding: 5px 11px; border: none; border-radius: var(--radius-sm); font-size: 0.73rem; cursor: pointer; font-family: var(--ff-body); font-weight: 600; transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 4px; text-decoration: none; }
.btn-complete { background: rgba(39,174,96,0.13); color: #27ae60; border: 1px solid rgba(39,174,96,0.22); }
.btn-complete:hover { background: var(--success); color: white; }
.btn-whatsapp { background: rgba(37,211,102,0.13); color: #25d366; border: 1px solid rgba(37,211,102,0.22); }
.btn-whatsapp:hover { background: #25d366; color: white; }
.btn-del { background: rgba(160,40,24,0.1); color: #e74c3c; border: 1px solid rgba(160,40,24,0.18); }
.btn-del:hover { background: var(--danger); color: white; }
.status-badge { display: inline-block; padding: 3px 11px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; letter-spacing: 0.4px; }
.status-pending { background: rgba(155,109,24,0.1); color: var(--gold-mid); border: 1px solid rgba(155,109,24,0.18); }
.status-done { background: rgba(39,174,96,0.1); color: #27ae60; border: 1px solid rgba(39,174,96,0.18); }
.order-row-done td { opacity: 0.45; }
.order-items-list { margin: 0; padding-left: 15px; font-size: 0.78rem; color: #64748b; }
.orders-section { margin-top: 0; }
.orders-controls { display: flex; gap: 9px; flex-wrap: wrap; }
.orders-controls input, .orders-controls select { padding: 7px 13px; border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 0.82rem; outline: none; font-family: var(--ff-body); transition: var(--transition); background: rgba(255,255,255,0.04); color: #e2e8f0; }
.orders-controls input:focus, .orders-controls select:focus { border-color: rgba(155,109,24,0.4); }

/* =========================================
   21. ANIMATIONS
   ========================================= */
@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   22. RESPONSIVE
   ========================================= */
/* =========================================
   22. RESPONSIVE — ALL DEVICES
   ========================================= */

/* ── Large Desktop 1280px+ — already handled by max-width containers ── */

/* ── Laptop / Small Desktop: 1024px ── */
@media (max-width: 1024px) {
  .admin-grid { grid-template-columns: 1fr; }

  .hero-ultra-inner { gap: 32px; }
  .hero-slides { width: 290px; height: 390px; }
  .hero-slide-img-wrap { width: 270px; height: 340px; }
  .hero-right { height: 450px; }
  .hero-ring { width: 360px; height: 360px; }
  .hero-ring-2 { width: 280px; height: 280px; }

  .la-title { font-size: 2.2rem; }
  .la-info-side { padding: 34px 36px; }

  .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; }
}

/* ── Tablet Portrait + Small Laptop: 900px ── */
@media (max-width: 900px) {
  .detail-body-inner { grid-template-columns: 1fr; gap: 14px; }
  .detail-img { height: 200px; }

  .la-card { grid-template-columns: 1fr; border-radius: 20px; }
  .la-img-side { min-height: 320px; }
  .la-info-side { padding: 28px 28px 32px; }
  .la-title { font-size: 2rem; color: #fff; }
  .la-price { font-size: 1.7rem; }

  
}

/* ── Tablet: 768px ── */
@media (max-width: 768px) {
  /* Header */
  header { padding: 0 4%; }
  .navbar { height: 58px; gap: 10px; grid-template-columns: 1fr auto; }
  .logo { font-size: 1.25rem; }
  .nav-center { display: none; }
  .nav-links .wishlist-nav { display: none; }
  .hamburger { display: flex; }
  .cart { padding: 7px 14px; font-size: 0.78rem; gap: 5px; }

  /* Modals → bottom sheet */
  .modal-content {
    margin: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%; max-width: 100%;
    border-radius: 20px 20px 0 0;
    padding: 24px 18px 40px;
    max-height: 88vh;
    overflow-y: auto;
    animation: modalSlideUp 0.32s cubic-bezier(0.4,0,0.2,1);
  }
  /* Drag handle visual cue */
  .modal-content::before {
    content: '';
    display: block;
    width: 40px; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin: 0 auto 16px;
  }
  @keyframes modalSlideUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
  .detail-modal-content { max-height: 92vh; }
  /* Cart items shorter on mobile so form is visible */
  .cart-items-container { max-height: 140px; }
  /* Checkout buttons stack on small screens */
  .checkout-btn-grid { grid-template-columns: 1fr !important; }
  .checkout-btn-grid button { font-size: .82rem !important; padding: 12px 10px !important; }
  /* Advance payment compact on mobile */
  .advance-payment-box { padding: 13px; }
  .advance-payment-title { font-size: 0.88rem; }
  .pm-method-card { padding: 9px 11px; gap: 9px; }
  .pm-method-num { font-size: 0.82rem; }


  /* Hero */
  .hero-ultra { min-height: auto; }
  .hero-ultra-inner {
    grid-template-columns: 1fr;
    padding: 80px 5% 50px;
    gap: 0;
    text-align: center;
    min-height: auto;
  }
  .hero-left { align-items: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-title-ultra { font-size: 2.2rem; }
  .hero-desc-ultra { margin-left: auto; margin-right: auto; font-size: 0.92rem; }
  .hero-search-ultra { max-width: 100%; }
  .hero-stats-ultra { justify-content: center; gap: 24px; }
  .hero-right { height: 340px; margin-top: 16px; }
  .hero-ring { width: 270px; height: 270px; }
  .hero-ring-2 { width: 208px; height: 208px; }
  .hero-slides { width: 250px; height: 330px; }
  .hero-slide-img-wrap { width: 230px; height: 310px; }
  .hero-scroll-hint { display: none; }

  /* Latest Arrival */
  .latest-arrival-section { padding: 2rem 4% 3rem; }
  .la-card { grid-template-columns: 1fr; min-height: auto; border-radius: 18px; }
  .la-img-side { min-height: 300px; }
  .la-img-side::after { background: linear-gradient(to bottom, transparent 60%, rgba(15,12,9,0.7)); }
  .la-info-side { padding: 24px 22px 28px; }
  .la-title { font-size: 1.75rem; }
  .la-price { font-size: 1.55rem; }
  .la-desc { font-size: 0.84rem; }

  /* Categories */
  .categories-section { padding: 3.5rem 4%; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .section-title-ultra { font-size: 1.9rem; }

  /* Products */
  .products-section { padding: 3rem 4%; }
  .store-controls { gap: 8px; }
  .search-wrapper { max-width: 100%; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

  /* Why section */
  .oud-section { padding: 3.5rem 4%; }
  

  /* Newsletter */
  .newsletter-box { padding: 36px 22px; }
  .newsletter-box h2 { font-size: 1.7rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Admin */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-main { padding: 1.5rem 4%; }
  .admin-card-header { flex-direction: column; align-items: flex-start; }
}

/* ── Large Mobile: 600px ── */
@media (max-width: 600px) {
  .hero-title-ultra { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .card-img-wrapper { height: 200px; }
  .card-body { padding: 14px; }
  .card-body h3 { font-size: 1.1rem; }
  .card-price { font-size: 0.9rem; margin-bottom: 12px; }
  .card-actions .btn { padding: 8px 6px; font-size: 0.76rem; }

  .la-product-img { width: 60%; }

  
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
}

/* ── Mobile: 480px ── */
@media (max-width: 480px) {
  /* Header */
  header { padding: 0 4%; }
  .navbar { height: 54px; gap: 8px; grid-template-columns: 1fr auto; }
  .logo { font-size: 1.1rem; }
  .nav-links { gap: 5px; }
  .cart { padding: 6px 12px; font-size: 0.75rem; gap: 4px; }
  .hamburger { padding: 5px 9px; }

  /* Hero */
  .hero-ultra-inner { padding: 68px 4% 36px; }
  .hero-title-ultra { font-size: 1.8rem; }
  .hero-desc-ultra { font-size: 0.86rem; margin-bottom: 18px; }
  .hero-search-ultra { border-radius: 10px; margin-bottom: 20px; }
  .hero-search-ultra input { padding: 11px 14px; font-size: 0.82rem; }
  .hero-search-ultra button { padding: 8px 14px; font-size: 0.76rem; }
  .hero-stats-ultra { gap: 12px; }
  .hero-stat-item strong { font-size: 1.3rem; }
  .hero-stat-item span { font-size: 0.55rem; }
  .hero-right { height: 280px; margin-top: 12px; }
  .hero-ring { width: 210px; height: 210px; }
  .hero-ring-2 { width: 160px; height: 160px; }
  .hero-slides { width: 200px; height: 270px; }
  .hero-slide-img-wrap { width: 185px; height: 255px; }
  .hero-glow-disc { width: 180px; height: 90px; }

  /* Latest Arrival */
  .la-img-side { min-height: 240px; }
  .la-info-side { padding: 20px 16px 24px; }
  .la-title { font-size: 1.45rem; color: #FFF; }
  .la-price { font-size: 1.4rem; }
  .la-desc { font-size: 0.82rem; margin-bottom: 16px; }
  .la-actions { flex-direction: column; }
  .la-btn-primary, .la-btn-outline { justify-content: center; width: 100%; padding: 12px; }
  .la-ribbon { font-size: 0.55rem; padding: 4px 11px; top: 14px; left: 14px; }

  /* Categories */
  .categories-section { padding: 2.5rem 4%; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card-name { font-size: 1.05rem; }
  .cat-card-count { font-size: 0.56rem; }
  .cat-card-content { padding: 16px 12px; }

  /* Products */
  .store-controls { flex-direction: column; align-items: stretch; }
  .search-wrapper, .store-controls select { width: 100%; max-width: 100%; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-img-wrapper { height: 180px; }
  .card-body { padding: 12px; }
  .card-body h3 { font-size: 1rem; }
  .card-price { font-size: 0.86rem; margin-bottom: 10px; }
  .card-actions { gap: 5px; }
  .card-actions .btn { padding: 7px 5px; font-size: 0.72rem; }

  /* Modals */
  .modal-content { padding: 20px 14px 28px; }
  .modal-content h2 { font-size: 1.35rem; }
  .checkout-form h3 { font-size: 1rem; }
  .cart-item-row { gap: 9px; }
  .cart-item-row img { width: 44px; height: 44px; }
  .qty-control button { width: 26px; height: 26px; }

  /* Why */
  .oud-section { padding: 2.5rem 4%; }
  
  
  

  /* Newsletter */
  .newsletter-section { padding: 2.5rem 4%; }
  .newsletter-box { padding: 28px 14px; border-radius: 16px; }
  .newsletter-box h2 { font-size: 1.45rem; }
  .newsletter-box p { font-size: 0.82rem; }
  .newsletter-form { flex-direction: column; border-radius: 12px; }
  .newsletter-form input { padding: 12px 16px; }
  .newsletter-form button { margin: 4px; border-radius: 9px; padding: 12px; width: calc(100% - 8px); }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .footer-ultra { padding: 3rem 4% 1.5rem; }
  .footer-brand-ultra p { max-width: 100%; }
  .footer-brand-ultra h3 { font-size: 1.5rem; }

  /* Floats */
  .whatsapp-float { bottom: 72px; right: 14px; width: 46px; height: 46px; }
  #back-to-top { bottom: 16px; right: 14px; width: 38px; height: 38px; }

  /* Admin */
  .stats-grid { grid-template-columns: 1fr; gap: 10px; }
  .admin-card { padding: 16px 13px; }
  .admin-table th, .admin-table td { padding: 9px; font-size: 0.75rem; }
  .login-container { padding: 26px 18px; }
  .login-container h2 { font-size: 1.55rem; }

  /* Toast */
  #toast-container { bottom: 14px; }
  .toast { font-size: 0.79rem; padding: 10px 16px; }

  /* Section titles */
  .section-title-ultra { font-size: 1.65rem; }
  .section-title { font-size: 1.5rem; }
}

/* ── Small Mobile: 360px ── */
@media (max-width: 360px) {
  .navbar { grid-template-columns: 1fr auto; height: 50px; }
  .logo { font-size: 0.95rem; }
  .cart { padding: 5px 9px; font-size: 0.7rem; }

  .hero-title-ultra { font-size: 1.6rem; }
  .hero-right { height: 250px; }
  .hero-ring { width: 185px; height: 185px; }
  .hero-ring-2 { width: 140px; height: 140px; }
  .hero-slides { width: 175px; height: 240px; }
  .hero-slide-img-wrap { width: 160px; height: 225px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .card-img-wrapper { height: 155px; }
  .card-body h3 { font-size: 0.9rem; }

  .la-title { font-size: 1.3rem; }
  .la-price { font-size: 1.25rem; }

  .categories-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .cat-card-name { font-size: 0.95rem; }

  .section-title-ultra { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
}

/* ── Very Small: 320px ── */
@media (max-width: 320px) {
  .logo { font-size: 0.85rem; }
  .cart { padding: 4px 8px; font-size: 0.65rem; }
  .hero-title-ultra { font-size: 1.4rem; }
  .product-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 5px; }
  .la-card { border-radius: 12px; }
  .footer-social { flex-wrap: wrap; }
}

/* ── Simple hover effects ── */
.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.cat-card:hover { transform: translateY(-5px) scale(1.02); }
.la-card:hover  { transform: translateY(-4px); box-shadow: 0 16px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(181,131,14,0.22); }

/* ── Back to top button ── */
#back-to-top { transition: opacity 0.3s, transform 0.3s; }


/* =============================================
   ✨ SCROLL ANIMATIONS — SAFE SYSTEM
   Elements start visible. JS adds [data-anim]
   only after observer is ready. Fail-safe.
   ============================================= */

/* Base hidden state — JS adds this class */
.anim-ready {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1),
              transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

/* Direction variants */
.anim-up    { transform: translateY(48px) scale(0.97); }
.anim-left  { transform: translateX(-50px); }
.anim-right { transform: translateX(50px); }
.anim-scale { transform: scale(0.88) translateY(30px); }
.anim-blur  { filter: blur(8px); transform: translateY(24px); }

/* Visible state */
.anim-in {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Stagger delays */
.anim-d1 { transition-delay: 0.05s; }
.anim-d2 { transition-delay: 0.12s; }
.anim-d3 { transition-delay: 0.19s; }
.anim-d4 { transition-delay: 0.26s; }
.anim-d5 { transition-delay: 0.33s; }
.anim-d6 { transition-delay: 0.40s; }

/* Product cards — special 3D feel */
.product-card.anim-ready {
  transform: translateY(50px) scale(0.95);
}
.product-card.anim-in {
  transform: none !important;
}

/* Section titles — blur fade */
.section-title-ultra.anim-ready,
.section-title.anim-ready {
  transform: translateY(28px);
  filter: blur(4px);
}

/* Cat cards */
.cat-card.anim-ready {
  transform: translateY(40px) scale(0.93);
}

/* La / Oud cards */
.la-card.anim-ready {
  transform: translateY(44px) scale(0.94);
}

/* Hero stats bounce */
.hero-stat-item.anim-ready {
  transform: translateY(30px) scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.34,1.56,0.64,1),
              transform 0.6s cubic-bezier(0.34,1.56,0.64,1);
}

/* Promo banner */
.promo-banner-section.anim-ready {
  transform: translateY(40px);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .anim-ready, .anim-up, .anim-left, .anim-right,
  .anim-scale, .anim-blur, .anim-in {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}


/* =============================================
   OUD SPOTLIGHT — Latest Oud/Attar Card
   ============================================= */
.oud-spotlight-section {
  padding: 0 5% 5rem;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--bg-alt); /* matches oud section bg */
}

.os-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 460px;
  /* Rich dark oud amber gradient */
  background: linear-gradient(135deg, #0d0800 0%, #1a0f00 35%, #2c1a06 65%, #1a1005 100%);
  border: 1px solid rgba(181,131,14,0.2);
  box-shadow: 0 12px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,200,80,0.04);
}

/* Subtle texture overlay */
.os-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(181,131,14,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(120,60,0,0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative Arabic-feel word */
.os-card::after {
  content: 'عود';
  position: absolute;
  bottom: -10px; right: 20px;
  font-size: 11rem;
  font-weight: 900;
  color: rgba(181,131,14,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── Image Side ── */
.os-img-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  z-index: 1;
  overflow: hidden;
}

/* Glow rings */
.os-glow-ring {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(181,131,14,0.12);
  animation: osRing 20s linear infinite;
}
.os-glow-ring-2 {
  width: 200px; height: 200px;
  border: 1px dashed rgba(181,131,14,0.08);
  animation: osRing 14s linear infinite reverse;
}
.os-glow-ring::before, .os-glow-ring-2::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold-lt);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,169,42,0.6);
}
@keyframes osRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Inner glow disc */
.os-img-side::before {
  content: '';
  position: absolute;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,131,14,0.22) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

/* Fade to right for seamless blend */
.os-img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(13,8,0,0.7));
  z-index: 2;
  pointer-events: none;
}

.os-product-img {
  width: 78%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.65))
          drop-shadow(0 0 30px rgba(181,131,14,0.15));
  animation: osFloat 5.5s ease-in-out infinite;
}
@keyframes osFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* ── Info Side ── */
.os-info-side {
  padding: 52px 52px 52px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.os-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.os-eyebrow-line {
  width: 22px; height: 1px;
  background: linear-gradient(90deg, #D4A92A, transparent);
}
.os-eyebrow-text {
  font-size: 0.58rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(212,169,42,0.7);
  font-weight: 500;
}

.os-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}

.os-divider {
  width: 40px; height: 1.5px;
  background: linear-gradient(90deg, #D4A92A, rgba(212,169,42,0.15));
  margin-bottom: 16px;
  border-radius: 2px;
}

.os-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 340px;
}

.os-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.os-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: rgba(212,169,42,0.85);
  background: rgba(181,131,14,0.12);
  border: 1px solid rgba(181,131,14,0.22);
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 500;
}
.os-tag-new {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  letter-spacing: 1px;
}

.os-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
}
.os-label {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(212,169,42,0.4);
  font-weight: 500;
}
.os-price {
  font-family: var(--ff-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: #D4A92A;
  line-height: 1;
  letter-spacing: -0.5px;
}
.os-price-old {
  font-size: 1rem;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
  font-family: var(--ff-display);
}

.os-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.os-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #9A6D18, #D4A92A);
  color: #0d0800;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(155,109,24,0.4);
}
.os-btn-primary:hover {
  background: linear-gradient(135deg, #D4A92A, #FFD580);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(155,109,24,0.5);
}
.os-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 13px 22px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.83rem;
  font-weight: 400;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.os-btn-outline:hover {
  border-color: rgba(212,169,42,0.4);
  color: #D4A92A;
  background: rgba(181,131,14,0.1);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .os-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .os-img-side {
    min-height: 300px;
    padding: 36px;
  }
  .os-img-side::after {
    background: linear-gradient(to bottom, transparent 60%, rgba(13,8,0,0.7));
  }
  .os-info-side { padding: 30px 28px 36px; }
}

@media (max-width: 768px) {
  .oud-spotlight-section { padding: 0 4% 4rem; }
  .os-card { border-radius: 18px; }
  .os-img-side { min-height: 260px; padding: 28px; }
  .os-info-side { padding: 24px 22px 30px; }
  .os-title { font-size: 1.75rem; }
  .os-price { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .oud-spotlight-section { padding: 0 4% 3rem; }
  .os-card { border-radius: 14px; }
  .os-img-side { min-height: 230px; padding: 22px; }
  .os-info-side { padding: 20px 16px 26px; }
  .os-title { font-size: 1.4rem; }
  .os-price { font-size: 1.5rem; }
  .os-desc { font-size: 0.82rem; }
  .os-actions { flex-direction: column; }
  .os-btn-primary, .os-btn-outline {
    justify-content: center; width: 100%; padding: 12px;
  }
  .os-card::after { font-size: 7rem; }
}

@media (max-width: 360px) {
  .os-title { font-size: 1.25rem; }
  .os-price { font-size: 1.3rem; }
}