/* ============================================================
   shared.css — Rose Baghdad v3.0 | Ultra-Luxury Pro Edition
   Mobile-First · GPU-Composited · Glassmorphism · Zero-Lag
   ============================================================ */

/* ——— Google Fonts: minimal, critical weights only ——— */
@import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Tajawal:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --c-black:       #050505;
  --c-jet:         #0a0908;
  --c-smoked:      #0f0d0a;
  --c-royal:       #14120e;
  --c-surface:     #1a1814;
  --c-surface-2:   #221f1a;
  --c-gold:        #D4AF37;
  --c-gold-light:  #F0D060;
  --c-gold-dim:    #9A7B1A;
  --c-cream:       #FAF6EE;
  --c-gray-1:      #F3F0E8;
  --c-gray-4:      #9ca3af;
  --c-gray-6:      #4b5563;
  --c-gray-8:      #1f2937;

  /* Glass */
  --glass-bg:      rgba(10, 9, 8, 0.72);
  --glass-border:  rgba(212, 175, 55, 0.12);
  --glass-blur:    saturate(180%) blur(20px);

  /* Typography */
  --font-ar:     'Tajawal', sans-serif;
  --font-en:     'Montserrat', sans-serif;
  --font-serif-ar: 'Amiri', Georgia, serif;
  --font-serif-en: 'Cormorant Garamond', Georgia, serif;

  /* Easing */
  --ease-lux:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing scale */
  --space-1: clamp(4px, 1vw, 8px);
  --space-2: clamp(8px, 1.5vw, 16px);
  --space-4: clamp(16px, 3vw, 32px);
  --space-8: clamp(32px, 6vw, 64px);
  --space-16: clamp(64px, 10vw, 128px);

  /* Border radius */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill: 999px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--c-black);
  color: var(--c-cream);
  font-family: var(--font-ar);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.7;
}



[dir="rtl"] { font-family: var(--font-ar); text-align: right; }
[dir="ltr"] { font-family: var(--font-en); text-align: left; }

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: var(--font-serif-ar);
  line-height: 1.3;
}
[dir="ltr"] h1, [dir="ltr"] h2, [dir="ltr"] h3, [dir="ltr"] h4 {
  font-family: var(--font-serif-en);
  line-height: 1.2;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(212,175,55,0.22); color: var(--c-gold-light); }

/* ——— Scrollbar ——— */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-black); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* ============================================================
   TYPOGRAPHY SCALE — Mobile-first with clamp()
   ============================================================ */
.t-eyebrow {
  font-size: clamp(9px, 1.5vw, 11px);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.t-h1 {
  font-size: clamp(2.2rem, 8vw, 5.5rem);
  line-height: 1.15;
  font-weight: 700;
}
.t-h2 {
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  line-height: 1.25;
}
.t-h3 {
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1.3;
}
.t-body {
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.8;
  color: var(--c-gray-4);
}
.t-small {
  font-size: clamp(10px, 1.4vw, 12px);
  line-height: 1.6;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gold-text {
  background: linear-gradient(135deg, var(--c-gold) 0%, var(--c-gold-light) 50%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(212,175,55,0.3) 30%,
    rgba(212,175,55,0.55) 50%,
    rgba(212,175,55,0.3) 70%,
    transparent);
}
.divider-short {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 auto;
}

/* Container */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 56px);
}

/* Section spacing */
.section {
  padding: clamp(56px, 10vw, 112px) 0;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   GLASS UTILITY
   ============================================================ */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

/* ============================================================
   NAVIGATION — Glassmorphism
   ============================================================ */
.nav-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  will-change: transform;
  transform: translateZ(0);
  transition: top 0.3s var(--ease-lux), background 0.4s var(--ease-lux), border-color 0.4s var(--ease-lux);
}
.nav-root.scrolled {
  background: rgba(5, 5, 5, 0.88);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 2vw, 20px) clamp(16px, 5vw, 56px);
  gap: 16px;
}

.nav-logo img {
  height: clamp(44px, 6vw, 60px);
  width: auto;
  object-fit: contain;
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.5s var(--ease-lux);
}
.nav-logo:hover img { transform: scale(1.04) translateZ(0); }

.nav-links {
  display: none;
  align-items: center;
  gap: clamp(24px, 4vw, 40px);
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-link {
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.65);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  will-change: width;
  transition: width 0.35s var(--ease-lux);
}
.nav-link:hover,
.nav-link.active { color: var(--c-cream); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--c-gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.btn-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gray-4);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(6px,1vw,9px) clamp(12px,2vw,18px);
  border-radius: var(--r-pill);
  transition: color 0.2s, border-color 0.2s;
}
.btn-lang:hover { color: var(--c-gold); border-color: rgba(212,175,55,0.35); }

.btn-cart {
  position: relative;
  padding: 4px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.btn-cart:hover { color: var(--c-gold); }
.btn-cart i { font-size: clamp(20px, 3vw, 24px); }

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--c-gold);
  color: #000;
  font-size: 9px;
  font-weight: 800;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: scale(0) translateZ(0);
  transition: transform 0.3s var(--ease-lux);
}
.cart-badge.visible { transform: scale(1) translateZ(0); }

.btn-hamburger {
  color: rgba(255,255,255,0.75);
  font-size: 26px;
  display: flex;
  transition: color 0.2s;
}
.btn-hamburger:hover { color: var(--c-gold); }
@media (min-width: 900px) { .btn-hamburger { display: none; } }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(5,5,5,0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 40px);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.4s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu .nav-link {
  font-size: clamp(20px, 5vw, 28px);
  letter-spacing: 0.08em;
  font-family: var(--font-serif-ar);
  color: rgba(255,255,255,0.85);
}
.mobile-menu .nav-link:hover { color: var(--c-gold); }
.mobile-menu .nav-link::after { display: none; }

.btn-close-menu {
  position: absolute;
  top: clamp(16px, 4vw, 28px);
  right: clamp(16px, 4vw, 28px);
  color: rgba(255,255,255,0.4);
  font-size: 32px;
  transition: color 0.2s;
}
.btn-close-menu:hover { color: var(--c-gold); }

/* ============================================================
   HERO — Umbra-Inspired Full-Width Glassmorphism Slider
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-black);
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity, transform;
  transform: scale3d(1.08, 1.08, 1);
  transition: opacity 1.8s var(--ease-in-out), transform 7s linear;
}
.hero-slide.active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  z-index: 2;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--c-black) 0%, rgba(5,5,5,0.6) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 5;
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: clamp(60px, 10vw, 90px);
}

.glass-panel {
  background: rgba(8, 7, 6, 0.45);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 48px);
  max-width: 720px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
  animation: fade-up 1s var(--ease-lux) 0.2s both;
  will-change: transform, opacity;
}

/* Hero text entry animations */
@keyframes fade-up {
  0%   { opacity: 0; transform: translate3d(0, 40px, 0); }
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-stat-value {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-stat-label {
  font-size: clamp(9px, 1.2vw, 11px);
  color: rgba(250,246,238,0.8);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
}

/* Bottom fade to next section */
.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: clamp(80px, 12vw, 140px);
  background: linear-gradient(to bottom, transparent, var(--c-smoked));
  pointer-events: none;
  z-index: 5;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px,2vw,16px) clamp(24px,4vw,40px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,175,55,0.5);
  background: transparent;
  color: var(--c-cream);
  font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  will-change: transform;
  transform: translateZ(0);
  transition:
    background 0.35s var(--ease-lux),
    border-color 0.35s var(--ease-lux),
    color 0.2s,
    box-shadow 0.35s var(--ease-lux),
    transform 0.2s var(--ease-lux);
}
.btn-primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #000;
  box-shadow: 0 0 28px rgba(212,175,55,0.32);
  transform: scale3d(1.03, 1.03, 1);
}
.btn-primary:active { transform: scale3d(0.98, 0.98, 1); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px,1.8vw,14px) clamp(20px,3.5vw,32px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(250,246,238,0.6);
  font-size: clamp(9px, 1.3vw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: rgba(212,175,55,0.4); color: var(--c-gold); }

.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(9px,1.6vw,12px) clamp(20px,3vw,32px);
  border-radius: var(--r-pill);
  border: 1px solid var(--c-gold);
  background: transparent;
  color: var(--c-gold);
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  will-change: transform;
  transform: translateZ(0);
  transition: background 0.3s, color 0.2s, transform 0.2s;
}
.btn-gold-outline:hover {
  background: var(--c-gold);
  color: #000;
  transform: scale3d(1.02, 1.02, 1);
}

/* Add to cart button (card) */
.btn-add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,175,55,0.3);
  background: rgba(0,0,0,0.55);
  color: rgba(250,246,238,0.85);
  font-size: clamp(9px, 1.2vw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s, color 0.2s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.btn-add-cart:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.3);
}

/* ============================================================
   SPA PAGE TRANSITIONS
   ============================================================ */
.page-view {
  display: none;
  opacity: 0;
  will-change: opacity, transform;
  transform: translate3d(0, 16px, 0);
}
.page-view.active {
  display: block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}

/* ============================================================
   PREMIUM CTA
   ============================================================ */
.cta-premium-title {
  background: linear-gradient(to right, #f8f1de, #d4af37, #f8f1de);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 16px rgba(212,175,55,0.2);
  letter-spacing: -0.01em;
}

.btn-cta-premium {
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.5);
  box-shadow: 0 8px 32px -8px rgba(212,175,55,0.3);
  transition: all 0.4s var(--ease-lux);
  color: var(--c-gold);
}
.btn-cta-premium:hover {
  background: linear-gradient(135deg, rgba(212,175,55,0.25) 0%, rgba(212,175,55,0.1) 100%);
  border-color: rgba(212,175,55,0.8);
  box-shadow: 0 12px 40px -10px rgba(212,175,55,0.5);
  transform: translateY(-2px);
  color: var(--c-gold-light);
}

/* ============================================================
   WIDE CONTAINER (Full screen utilization for products page)
   ============================================================ */
.container-wide {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ============================================================
   PRODUCTS PAGE — Header Banner & Breadcrumbs
   ============================================================ */
.products-page-header {
  padding: clamp(100px, 14vw, 150px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid rgba(212,175,55,0.08);
  background: linear-gradient(180deg, rgba(20,18,14,0.7) 0%, rgba(10,9,8,1) 100%);
}

.products-page-title {
  font-family: var(--font-serif-ar);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-top: 12px;
  letter-spacing: -0.01em;
}
[dir="ltr"] .products-page-title {
  font-family: var(--font-serif-en);
}

.products-page-subtitle {
  font-size: clamp(12px, 1.5vw, 14px);
  color: var(--c-gray-4);
  margin-top: 8px;
  font-weight: 400;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.breadcrumbs a {
  color: var(--c-gray-4);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--c-gold); }
.breadcrumb-sep {
  color: rgba(255,255,255,0.15);
  font-size: 16px;
  display: flex;
  align-items: center;
}
[dir="ltr"] .breadcrumb-sep i { transform: rotate(180deg); }
.breadcrumb-current {
  color: var(--c-gold);
  font-weight: 600;
}

/* ============================================================
   PRODUCTS PAGE — Sections Container
   ============================================================ */
.products-sections-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 56px);
  padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 8vw, 96px);
}

/* ============================================================
   CATEGORY ROW (Each category section)
   ============================================================ */
.category-row {
  position: relative;
}

.category-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 3vw, 28px);
  gap: 16px;
}

.category-row-title-group {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 14px);
}

.category-row-icon {
  font-size: clamp(20px, 3vw, 28px);
  color: var(--c-gold);
  filter: drop-shadow(0 0 6px rgba(212,175,55,0.25));
}

.category-row-title {
  font-family: var(--font-ar);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
[dir="ltr"] .category-row-title {
  font-family: var(--font-en);
}

.category-row-count {
  font-size: 13px;
  color: var(--c-gray-4);
  font-weight: 400;
}

/* Arrow Buttons */
.category-row-arrows {
  display: flex;
  gap: 8px;
}

.cat-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(20,18,14,0.6);
  color: var(--c-gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.cat-arrow-btn:hover {
  background: rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.5);
  transform: scale(1.08);
}
.cat-arrow-btn:active {
  transform: scale(0.95);
}

/* Category Slider */
.category-slider-outer {
  position: relative;
  overflow: hidden;
  padding: 0 clamp(16px, 4vw, 48px);
}

.category-slider-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 8px;
  will-change: scroll-position;
  transform: translateZ(0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.category-slider-track::-webkit-scrollbar { display: none; }
.category-slider-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.category-slider-track .product-card {
  scroll-snap-align: start;
}

/* ============================================================
   PRODUCT CARD (Redesigned — defined borders, image bg, visible ATC)
   ============================================================ */
.product-card {
  flex-shrink: 0;
  width: clamp(200px, 28vw, 280px);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transform: translateZ(0);
  transition: transform 0.5s var(--ease-lux);
}
.product-card:hover { transform: translate3d(0, -8px, 0); }

.product-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; /* FIX 4: Remove ANY flex gap between image and text containers */
  background: #111111;
  border: 1px solid rgba(255,215,0,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.product-card:hover .product-card-inner {
  background: #161616;
  border-color: rgba(212,175,55,0.25);
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.7), 0 0 24px -8px rgba(212,175,55,0.08);
}

/* Image Area */
.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;

  /* FIX 1 — Force dark fill: any sub-pixel bleed leaks #000, never white */
  background-color: #000000;

  /* FIX 3 — Inset box-shadow seal: physically covers the sub-pixel gap */
  box-shadow: 0 0 0 1px #000000 inset;

  /* FIX 4 — GPU hardware acceleration: stabilizes rendering during transform */
  transform: translateZ(0);
  backface-visibility: hidden;

  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
.product-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale3d(1, 1, 1) translateZ(0);
  backface-visibility: hidden;

  /* FIX 2 — Sub-pixel seal: forces browser edge re-calculation during transform */
  outline: 1px solid transparent;

  transition: transform 0.8s var(--ease-lux);
}
.product-card:hover .product-img-wrap img {
  transform: scale3d(1.06, 1.06, 1) translateZ(0);
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, #000000);
  pointer-events: none;
}

/* Badge */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--c-gold);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  z-index: 5;
}
[dir="rtl"] .product-badge { right: auto; left: 10px; }

/* Product Info — fused directly to image with zero gap */
.product-info {
  padding: clamp(12px, 2vw, 18px) clamp(14px, 2vw, 20px) clamp(14px, 2vw, 20px);
  margin-top: 0; /* FIX 4: physically fused — no margin separating it from image */
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #111111; /* FIX 1: same exact dark color as image bg */
}

.product-name {
  font-size: clamp(13px, 1.8vw, 15px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-reviews {
  font-size: 11px;
  color: var(--c-gray-4);
}

.stars-gold {
  color: var(--c-gold);
  font-size: 11px;
  letter-spacing: 1px;
  filter: drop-shadow(0 0 3px rgba(212,175,55,0.4));
}

.price-tag {
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  color: var(--c-gold);
}

/* Price + Add to Cart row */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Always-Visible Add to Cart Button */
.product-atc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(212,175,55,0.25);
  background: rgba(212,175,55,0.08);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
  flex-shrink: 0;
}
.product-atc-btn i {
  font-size: 16px;
}
.product-atc-btn:hover {
  background: rgba(212,175,55,0.18);
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 16px rgba(212,175,55,0.12);
  transform: scale(1.04);
}
.product-atc-btn:active {
  transform: scale(0.96);
}

/* Hide the text label on very small cards / mobile, keep icon */
.product-atc-label {
  display: none;
}
@media (min-width: 480px) {
  .product-atc-label {
    display: inline;
  }
}

/* ============================================================
   SLIDER — CSS scroll-snap + no scrollbar (Homepage Best Sellers)
   ============================================================ */
.slider-outer {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(-16px, -5vw, -56px);
  padding: 0 clamp(16px, 5vw, 56px);
}

.slider-track {
  display: flex;
  gap: clamp(14px, 2vw, 22px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 12px;
  will-change: scroll-position;
  transform: translateZ(0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.slider-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.slider-track .product-card {
  scroll-snap-align: start;
}

/* ============================================================
   DYNAMIC SHOWCASE SECTION
   ============================================================ */
.showcase-card {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  background: var(--c-royal);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 56px) clamp(24px, 5vw, 56px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  cursor: pointer;
  will-change: opacity, transform;
  transform: translateZ(0);
  transition: opacity 0.7s var(--ease-lux), transform 0.7s var(--ease-lux), border-color 0.4s;
}
.showcase-card:hover { border-color: rgba(212,175,55,0.28); }
.showcase-card.fading { opacity: 0; transform: scale3d(0.985, 0.985, 1); }

@media (min-width: 640px) {
  .showcase-card { flex-direction: row; }
}

.showcase-img-wrap {
  flex-shrink: 0;
  width: clamp(200px, 40vw, 380px);
  height: clamp(220px, 45vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.showcase-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.showcase-img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  position: relative;
  z-index: 1;
}

/* ============================================================
   WHY CHOOSE US — Gender Cards
   ============================================================ */
.gender-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 4vw, 32px);
}
@media (min-width: 768px) { .gender-grid { grid-template-columns: 1fr 1fr; } }

.gender-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: clamp(340px, 60vw, 560px);
  display: flex;
  align-items: flex-end;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: box-shadow 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.gender-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transform: translateY(-4px);
}
.gender-card-bg {
  position: absolute;
  inset: 0;
}
.gender-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: scale3d(1, 1, 1);
  transition: transform 1.2s var(--ease-lux);
}
.gender-card:hover .gender-card-bg img { transform: scale3d(1.05, 1.05, 1); }
.gender-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(5,5,5,0.95) 0%,
    rgba(5,5,5,0.65) 40%,
    rgba(5,5,5,0.15) 80%,
    transparent 100%);
  transition: opacity 0.5s var(--ease-lux);
}
.gender-card:hover .gender-card-overlay {
  opacity: 0.9;
}
.gender-card-content {
  position: relative;
  z-index: 10;
  padding: clamp(32px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Feature bullets inside gender card */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 1.6vw, 13px);
  color: rgba(250,246,238,0.8);
}
.feature-item i {
  color: var(--c-gold);
  font-size: 15px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS — Dark Glass Cards
   ============================================================ */
.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.6s var(--ease-lux);
}
.testimonial-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 30px rgba(212,175,55,0.08);
  transform: translate3d(0, -6px, 0);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px;
  right: clamp(16px, 3vw, 24px);
  font-family: var(--font-serif-ar);
  font-size: clamp(60px, 10vw, 90px);
  color: rgba(212,175,55,0.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
[dir="ltr"] .testimonial-card::before { right: auto; left: clamp(16px,3vw,24px); }

.testimonial-text {
  font-size: clamp(12px, 1.7vw, 14px);
  line-height: 1.8;
  color: rgba(250,246,238,0.75);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold-dim) 0%, var(--c-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 700;
  color: var(--c-cream);
}
.testimonial-location {
  font-size: clamp(9px, 1.2vw, 11px);
  color: var(--c-gray-6);
  margin-top: 2px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: clamp(8px, 1.5vw, 12px); }

.faq-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: rgba(212,175,55,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 2.5vw, 22px) clamp(18px, 3vw, 28px);
  text-align: inherit;
  font-size: clamp(12px, 1.8vw, 15px);
  font-weight: 600;
  color: var(--c-cream);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--c-gold); }
.faq-item.open .faq-question { color: var(--c-gold); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  position: relative;
  transition: border-color 0.4s, background 0.4s;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--c-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-lux), opacity 0.4s var(--ease-lux);
}
.faq-icon::before { /* Horizontal line (-) */
  width: 14px;
  height: 2px;
}
.faq-icon::after { /* Vertical line (|) */
  width: 2px;
  height: 14px;
}
.faq-item.open .faq-icon {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.6);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item.open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: max-height 0.5s var(--ease-lux);
}
.faq-answer-inner {
  padding: 0 clamp(18px, 3vw, 28px) clamp(16px, 2.5vw, 22px);
  font-size: clamp(12px, 1.7vw, 14px);
  line-height: 1.85;
  color: var(--c-gray-4);
}

/* ============================================================
   SHOPPING CART DRAWER — Glass UI
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0; bottom: 0;
  right: 0;
  height: 100dvh;
  width: min(460px, 100vw);
  z-index: 200;
  background: rgba(8, 7, 6, 0.96);
  -webkit-backdrop-filter: saturate(160%) blur(28px);
  backdrop-filter: saturate(160%) blur(28px);
  border-left: 1px solid rgba(212,175,55,0.1);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s var(--ease-lux), opacity 0.5s var(--ease-lux), visibility 0.5s;
  box-shadow: -20px 0 80px rgba(0,0,0,0.8);
}
[dir="rtl"] .cart-drawer {
  right: auto; left: 0;
  border-left: none;
  border-right: 1px solid rgba(212,175,55,0.1);
  transform: translate3d(-100%, 0, 0);
  box-shadow: 20px 0 80px rgba(0,0,0,0.8);
}
.cart-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.4s var(--ease-lux);
}
.cart-overlay.visible { opacity: 1; pointer-events: auto; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 24px) clamp(20px, 4vw, 32px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
}
.cart-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cart-title i { color: var(--c-gold); font-size: 16px; }

.btn-close-cart {
  color: rgba(255,255,255,0.3);
  font-size: 24px;
  transition: color 0.2s;
}
.btn-close-cart:hover { color: var(--c-cream); }

.cart-items { flex: 1; min-height: 0; overflow-y: auto; padding: clamp(12px, 2vw, 16px) clamp(20px, 4vw, 32px); }

.cart-item {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
  padding: clamp(12px, 2vw, 16px) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--c-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.qty-btn:hover { border-color: var(--c-gold); color: var(--c-gold); }

.cart-footer {
  padding: clamp(16px, 3vw, 22px) clamp(20px, 4vw, 32px);
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
  background: rgba(5,5,5,0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================================
   SECTION HEADERS (Shared)
   ============================================================ */
.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  margin-bottom: clamp(40px, 7vw, 72px);
}

/* ============================================================
   POLICY MODAL
   ============================================================ */
.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  transition: opacity 0.35s var(--ease-lux), visibility 0.35s;
}
.policy-modal.open { opacity: 1; visibility: visible; pointer-events: auto; }
.policy-modal-inner {
  background: var(--c-surface);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 48px);
  max-width: 580px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  will-change: transform, opacity;
  transform: translate3d(0, 20px, 0) scale3d(0.96, 0.96, 1);
  transition: transform 0.35s var(--ease-lux);
}
.policy-modal.open .policy-modal-inner {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* ============================================================
   TOAST
   ============================================================ */
@keyframes toast-in {
  0%   { opacity: 0; transform: translate3d(0, 18px, 0) scale3d(0.95, 0.95, 1); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale3d(1, 1, 1); }
}
.toast {
  animation: toast-in 0.35s var(--ease-lux) both;
  background: rgba(9,9,9,0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,175,55,0.18);
  border-inline-start: 2px solid var(--c-gold);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.75);
  will-change: opacity, transform;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #020202;
  border-top: 1px solid rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateZ(0);
  width: 500px;
  height: 220px;
  background: radial-gradient(ellipse at center bottom, rgba(212,175,55,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 48px);
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(250,246,238,0.38);
  font-size: 16px;
  will-change: transform;
  transform: translateZ(0);
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.25s var(--ease-lux);
}
.social-link:hover {
  border-color: rgba(212,175,55,0.4);
  color: var(--c-gold);
  box-shadow: 0 0 14px rgba(212,175,55,0.14);
  transform: translate3d(0, -2px, 0);
}

.footer-link {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--c-gray-6);
  transition: color 0.2s;
  display: block;
}
.footer-link:hover { color: var(--c-gold); }

/* ============================================================
   FORM INPUTS
   ============================================================ */
.luxury-input {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--c-cream);
  font-size: clamp(12px, 1.8vw, 14px);
  padding: clamp(12px, 2vw, 15px) clamp(14px, 2.5vw, 20px);
  border-radius: var(--r-sm);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.luxury-input::placeholder { color: rgba(250,246,238,0.22); }
.luxury-input:focus {
  border-color: rgba(212,175,55,0.45);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.06);
}
.luxury-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.3);
  margin-bottom: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 22px);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.01);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.payment-option:hover { border-color: rgba(212,175,55,0.28); }
.payment-option:has(input:checked) {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.04);
}

/* ============================================================
   PDP TABS
   ============================================================ */
.pdp-tab-btn {
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 600;
  color: rgba(250,246,238,0.42);
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.pdp-tab-btn:hover { color: rgba(250,246,238,0.75); }
.pdp-tab-btn.active { color: var(--c-gold); border-bottom-color: var(--c-gold); }

.pdp-tab-content {
  display: none;
  will-change: opacity, transform;
  transform: translateZ(0);
}
.pdp-tab-content.active {
  display: block;
  animation: tab-fade 0.4s var(--ease-lux) both;
}
@keyframes tab-fade {
  from { opacity: 0; transform: translate3d(0, 8px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.show-mobile { display: flex; }
.show-desktop { display: none; }
@media (min-width: 900px) {
  .show-mobile { display: none; }
  .show-desktop { display: flex; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none !important; }
}
@keyframes fadeUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
