/* ═══════════════════════════════════════════════
   YOKA STORE — Main Stylesheet
   Aesthetic: Luxury Editorial · Rose Gold & Noir
═══════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────── */
:root {
  --noir: #0e0b0f;
  --noir-2: #1a151e;
  --noir-3: #261f2b;
  --rose: #d4a5a5;
  --rose-light: #f0d5d5;
  --rose-dark: #a97070;
  --gold: #c9a86c;
  --gold-light: #e8d4a8;
  --cream: #faf6f1;
  --cream-2: #f2ebe0;
  --blush: #f5e8e8;
  --lilac: #e8dff5;
  --text-dark: #1a0e1a;
  --text-mid: #5c4a5c;
  --text-light: #9c8a9c;
  --white: #ffffff;

  --font-display: 'Lemonada', cursive;
  --font-body: 'Lemonada', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(14, 11, 15, .08);
  --shadow-md: 0 8px 32px rgba(14, 11, 15, .14);
  --shadow-lg: 0 20px 60px rgba(14, 11, 15, .2);

  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  --spring: .5s cubic-bezier(.34, 1.56, .64, 1);

  /* صورة الهيرو تُحمّل من لوحة التحكم → الإعدادات → المظهر */
  --hero-bg-image: none;
  --hero-blob-image: none;
  --page-hero-bg-image: none;
  /* هيرو صفحات الفئات (ميك أب، أزياء، إلخ) */
  --campaign-bg-image: none;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: none;
  border: none;
  background: none;
  font-family: inherit;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* ─── Custom Cursor ──────────────────────────── */
.cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--rose-dark);
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, opacity .15s ease, background .2s ease;
  mix-blend-mode: multiply;
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--rose-dark);
  border-radius: 50%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.cursor.hover {
  transform: translate(-50%, -50%) scale(1.8);
  background: rgba(212, 165, 165, .15);
}

/* ─── Loader ─────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--rose);
  display: block;
  animation: loaderPulse 1.2s ease infinite alternate;
}

.loader-bar {
  width: 120px;
  height: 1px;
  background: var(--noir-3);
  margin: 1.5rem auto 0;
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--rose);
  animation: loaderBar 1.5s ease forwards;
}

@keyframes loaderPulse {
  from {
    opacity: .4;
  }

  to {
    opacity: 1;
  }
}

@keyframes loaderBar {
  to {
    left: 0;
  }
}

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  transition: transform 0.3s ease;
  width: 100px;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-y {
  color: var(--rose-dark);
  font-style: italic;
  margin-right: -2px;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-links {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.nav-links a:hover {
  background: var(--white);
  color: var(--rose-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon {
  position: relative;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-icon:hover {
  background: var(--white);
  color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--rose-light);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--rose-dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.nav-menu-btn:hover {
  background: var(--white);
}

.nav-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ─── Mobile Menu ────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  transition: visibility .5s cubic-bezier(.77, 0, .175, 1);
}

.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 15, 0.5);
  /* Semi-transparent dark overlay */
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .5s ease;
}

.mobile-menu.open {
  visibility: visible;
}

.mobile-menu.open::before {
  opacity: 1;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 400px;
  height: 100%;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem 2rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
  overflow-y: auto;
  z-index: 2;
  /* Ensures it sits above ::before */
}

.mobile-menu.open .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-dark);
  font-size: 1.25rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.05);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.mobile-menu-close:hover {
  background: var(--rose-light);
  color: var(--white);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color var(--transition), transform var(--transition), border-color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--rose-dark);
  transform: translateX(-10px);
  border-bottom-color: var(--rose-light);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--text-mid);
  font-size: .95rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image), linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, var(--lilac) 100%);
  background-size: cover, 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  overflow: hidden;
}

/* Dark overlay to ensure text readability over bg image */
.hero.has-bg-image .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero.has-bg-image .hero-gradient,
.hero.has-bg-image .hero-pattern {
  opacity: 0;
  pointer-events: none;
}

.hero.has-bg-image .hero-content,
.hero.has-bg-image .hero-visual,
.hero.has-bg-image .hero-scroll,
.hero.has-bg-image .hero-marquee {
  position: relative;
  z-index: 2;
}

.hero.has-bg-image .hero-title,
.hero.has-bg-image .hero-subtitle {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero.has-bg-image .hero-title .italic {
  color: var(--rose-light);
}

.hero.has-bg-image .hero-tag {
  color: var(--rose-light);
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 165, 165, 0.4);
  backdrop-filter: blur(8px);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(212, 165, 165, .15) 0%, transparent 70%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--rose-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 9rem 3rem 8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Eyebrow ── */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.hero-eyebrow.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-line-accent {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose-dark), var(--rose-light));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Stats ── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rose-light);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .6s ease, transform .7s .6s ease;
}

.hero-stats.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--rose-light);
  opacity: .6;
  flex-shrink: 0;
}

/* ── has-bg-image stats overrides ── */
.hero.has-bg-image .hero-stat-num {
  color: var(--white);
}

.hero.has-bg-image .hero-stat-label {
  color: rgba(255, 255, 255, .6);
}

.hero.has-bg-image .hero-stat-divider {
  background: rgba(255, 255, 255, .25);
}

.hero.has-bg-image .hero-stats {
  border-top-color: rgba(255, 255, 255, .2);
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.hero.has-bg-image .hero-stat-icon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hero-stat:hover .hero-stat-icon {
  transform: translateY(-5px);
  background: var(--rose-dark);
  color: var(--white);
  border-color: var(--rose-dark);
}

.hero.has-bg-image .hero-stat {
  color: var(--white);
}

.hero-stat-info {
  text-align: right;
}

.hero-stats {
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero.has-bg-image .hero-line-accent {
  background: linear-gradient(90deg, var(--rose-light), var(--rose));
}

/* ── Trust strip (right column) ── */
.hero-trust {
  position: absolute;
  bottom: 15rem;
  left: 25px;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-end;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-trust span {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .4rem;
}

/* ── Featured Badge ── */
.hero-featured-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius-full);
  padding: .3rem 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 4px 16px rgba(212, 165, 165, .25);
  white-space: nowrap;
}

.hero-featured-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-dark);
  animation: featDotPulse 1.5s ease-in-out infinite;
}

@keyframes featDotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}


.hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  background: rgba(212, 165, 165, .15);
  border: 1px solid var(--rose-light);
  padding: .4rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.hero-tag.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.hero-title-line.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-title-line:nth-child(1) {
  transition-delay: .1s;
}

.hero-title-line:nth-child(2) {
  transition-delay: .2s;
}

.hero-title-line:nth-child(3) {
  transition-delay: .3s;
}

.hero-title .italic {
  font-style: italic;
  color: var(--rose-dark);
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .4s ease, transform .7s .4s ease;
}

.hero-subtitle.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s .5s ease, transform .7s .5s ease;
}

.hero-actions.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--noir);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: background var(--transition), transform var(--spring), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(169, 112, 112, .3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  transition: border-color var(--transition), color var(--transition), transform var(--spring);
}

.btn-outline:hover {
  border-color: var(--rose-dark);
  color: var(--rose-dark);
  transform: translateY(-3px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--white);
  color: var(--noir);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: background var(--transition), transform var(--spring);
}

.btn-light:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

/* ─── Hero Visual ────────────────────────────── */
/* ─── Hero Visual Slider ───────────────────── */
.hero-visual {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(14, 11, 15, 0.12);
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.08) 0%, rgba(201, 168, 108, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  bottom: 10%;
  width: 100%;
}

.hero-visual:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(14, 11, 15, 0.15);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-15deg);
  }

  50% {
    transform: translateX(100%) skewX(-15deg);
  }

  100% {
    transform: translateX(-100%) skewX(-15deg);
  }
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transform: scale(0.95);
}

.hero-slide.active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide.active {
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.02) contrast(1.05);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(212, 165, 165, 0.08) 0%,
      rgba(201, 168, 108, 0.05) 50%,
      rgba(14, 11, 15, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
  transition: all 0.8s ease;
}

.hero-slide.active::before {
  background: linear-gradient(135deg,
      rgba(212, 165, 165, 0.05) 0%,
      rgba(201, 168, 108, 0.03) 50%,
      rgba(14, 11, 15, 0.05) 100%);
}

.hero-slide.active img {
  animation: gentleWave 6s ease-in-out infinite;
}

@keyframes gentleWave {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1.02) contrast(1.05);
  }

  25% {
    transform: scale(1.01);
    filter: brightness(1.03) contrast(1.06);
  }

  50% {
    transform: scale(1.015);
    filter: brightness(1.04) contrast(1.07);
  }

  75% {
    transform: scale(1.01);
    filter: brightness(1.03) contrast(1.06);
  }
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.slider-dots .dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--rose);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-dots .dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 100px;
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.slider-dots .dot.active::before {
  width: 100%;
  height: 100%;
}

/* Trust indicators overlay adjustment */
.hero-trust {
  position: absolute;
  bottom: 15rem;
  left: 25px;
  display: none;
  flex-direction: column;
  gap: .8rem;
  align-items: flex-end;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-trust span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .hero-trust {
    display: none;
  }
}

.s1 {
  width: 80px;
  height: 80px;
  background: var(--gold-light);
  opacity: .5;
  top: -20px;
  left: 30px;
  animation: shapeFloat 6s ease-in-out infinite;
}

.s2 {
  width: 50px;
  height: 50px;
  background: var(--lilac);
  opacity: .7;
  bottom: -10px;
  right: 20px;
  animation: shapeFloat 5s ease-in-out infinite 1s;
}

.s3 {
  width: 30px;
  height: 30px;
  background: var(--rose);
  opacity: .6;
  top: 40%;
  left: -40px;
  animation: shapeFloat 7s ease-in-out infinite 0.5s;
}

@keyframes shapeFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(8px, -15px) rotate(10deg);
  }
}

/* ─── Hero Scroll ────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 7rem;
  left: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--rose));
  animation: scrollLineAnim 2s ease-in-out infinite;
}

@keyframes scrollLineAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ─── Marquee ────────────────────────────────── */
.hero-marquee {
  position: absolute;
  top: 78%;
  width: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(26, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  padding: 1.5rem 0;
  overflow: visible;
  border-top: 1px solid rgba(212, 165, 165, 0.15);
  border-bottom: 1px solid rgba(212, 165, 165, 0.15);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  padding: 5px;
  width: 100%;
  left: 0%;

}

.hero.has-bg-image .hero-marquee {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 600;
  opacity: 1.8;
  margin: auto;
  left: 0;
  align-items: center;
  justify-content: center;
}

.marquee-track span {
  padding-right: 3rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.33%);
  }
}

/* ─── Section Headers ────────────────────────── */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .75rem;
}

.section-tag.light {
  color: rgba(255, 255, 255, .7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
}

.section-title em {
  font-style: italic;
  color: var(--rose-dark);
}

/* ─── Reveal Animations ──────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Categories ─────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  min-height: 280px;
  overflow: hidden;
  cursor: none;
  transition: transform var(--spring);
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.05);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: transform var(--transition);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--white);
}

.cat-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
  transition: opacity var(--transition);
}

.cat-card:hover .cat-card-bg::after {
  opacity: 0.85;
}

.cat-makeup .cat-card-bg {
  background: linear-gradient(145deg, #fce4ec 0%, #f8bbd0 100%);
}

.cat-fashion .cat-card-bg {
  background: linear-gradient(145deg, #f3e5f5 0%, #ce93d8 60%, #ab47bc 100%);
}

.cat-skincare .cat-card-bg {
  background: linear-gradient(145deg, #e8f5e9 0%, #a5d6a7 100%);
}

.cat-accessories .cat-card-bg {
  background: linear-gradient(145deg, #fff8e1 0%, #ffe082 100%);
}

.cat-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cat-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cat-card p {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: auto;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.5rem;
  transition: gap var(--transition);
}

.cat-link:hover {
  gap: 1rem;
}

.cat-card-items {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: .08em;
  background: rgba(0, 0, 0, 0.2);
  padding: .2rem .6rem;
  border-radius: var(--radius-sm);
}

/* ─── Products ───────────────────────────────── */
.products-filter {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: .55rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-mid);
  background: var(--white);
  border: 1.5px solid var(--cream-2);
  transition: all var(--transition);
  cursor: none;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}

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

/* ─── Category Pages ───────────────────────── */
.page-hero {
  padding: 10rem 0 6rem;
  background-image: var(--page-hero-bg-image), linear-gradient(135deg, var(--blush) 0%, var(--lilac) 100%);
  background-size: cover, auto;
  background-position: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: padding var(--transition);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--rose-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .3;
  z-index: 1;
}

/* Overlay داكن فوق الصورة لضمان وضوح النص */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14, 11, 15, 0.2), rgba(14, 11, 15, 0.6));
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
  pointer-events: none;
}

/* يُفعَّل الـ overlay عند وجود صورة خلفية (class يُضاف من JS) */
.page-hero.has-bg-image::after {
  opacity: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
  transition: color .4s ease;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--rose-dark);
}

.page-hero p {
  color: var(--text-mid);
  margin-top: .5rem;
  font-size: 1.1rem;
  letter-spacing: .05em;
  font-weight: 400;
  transition: color .4s ease;
}

/* التباين عند وجود خلفية */
.page-hero.has-bg-image h1 {
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-hero.has-bg-image p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero.has-bg-image .section-tag {
  color: var(--rose);
  background: rgba(14, 11, 15, 0.4);
  backdrop-filter: blur(4px);
}


.category-loading,
.category-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-mid);
  font-size: 1rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: none;
  transition: transform var(--spring), box-shadow var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-card-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.product-card-img img,
.product-card-img .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

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

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform var(--transition);
}

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

.product-card-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--rose-dark);
  color: white;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .3rem .7rem;
  border-radius: var(--radius-full);
}

.product-card-badge.new {
  background: var(--gold);
  color: var(--noir);
}

.product-card-badge.sale {
  background: #e74c3c;
}

.product-card-actions {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  right: .75rem;
  display: flex;
  gap: .5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

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

/* On touch devices: always show product actions (can't hover) */
@media (hover: none) and (pointer: coarse) {
  .product-card-actions {
    opacity: 1;
    transform: translateY(0);
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: .5rem;
    pointer-events: auto !important;
  }

  .product-card-action-btn {
    font-size: .7rem;
    padding: .5rem .4rem;
    cursor: auto;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
  }
}

.product-card-action-btn {
  flex: 1;
  padding: .65rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  transition: background var(--transition), color var(--transition);
  cursor: none;
}

.product-card-action-btn:hover {
  background: var(--noir);
  color: white;
}

.product-card-action-btn.wishlist-btn {
  flex: 0;
  width: 38px;
  padding: .65rem;
}

.product-card-info {
  padding: 1.25rem;
}

.product-card-brand {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .35rem;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: .5rem;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-old {
  font-size: .82rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-rating {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .4rem;
}

.stars {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: .05em;
}

.rating-count {
  font-size: .72rem;
  color: var(--text-light);
}

.view-all-wrap {
  text-align: center;
  margin-top: 3.5rem;
}

/* ─── Campaign ───────────────────────────────── */
.campaign {
  padding: 0;
  background: var(--noir);
  overflow: hidden;
  position: relative;
}

/* Fullscreen background image layer */
.campaign.has-bg-image {
  background: transparent;
  background-image: var(--campaign-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.campaign.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.campaign.has-bg-image .campaign-inner,
.campaign.has-bg-image .campaign-shapes {
  position: relative;
  z-index: 1;
}

.campaign-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 5rem;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.campaign-text {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.campaign-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}

.campaign-title em {
  font-style: italic;
  color: var(--rose);
}

.campaign-text p {
  color: rgba(255, 255, 255, .6);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.campaign-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cs {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}

.cs1 {
  width: 500px;
  height: 500px;
  background: var(--rose);
  top: -100px;
  right: -100px;
}

.cs2 {
  width: 300px;
  height: 300px;
  background: var(--gold);
  bottom: -50px;
  right: 200px;
}

.cs3 {
  width: 150px;
  height: 150px;
  background: var(--lilac);
  top: 50px;
  right: 350px;
}

.cs4 {
  width: 80px;
  height: 80px;
  background: white;
  bottom: 80px;
  right: 600px;
  opacity: .05;
}

/* ─── Testimonials ───────────────────────────── */
.testimonials {
  background: var(--cream-2);
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: transform var(--spring), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.tcard-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.tcard-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tcard-author span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
}

/* ─── Social Grid ────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.social-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease, background-image .4s ease;
}

.social-grid.revealed .social-item {
  opacity: 1;
  transform: translateY(0);
}

.social-item:nth-child(1) {
  transition-delay: 0.1s;
}

.social-item:nth-child(2) {
  transition-delay: 0.2s;
}

.social-item:nth-child(3) {
  transition-delay: 0.3s;
}

.social-item:nth-child(4) {
  transition-delay: 0.4s;
}

.social-item:nth-child(5) {
  transition-delay: 0.5s;
}

.social-item:nth-child(6) {
  transition-delay: 0.6s;
}

.si1 {
  background: linear-gradient(135deg, #f8bbd0 0%, #e91e63 100%);
}

.si2 {
  background: linear-gradient(135deg, #e1bee7 0%, #9c27b0 100%);
}

.si3 {
  background: linear-gradient(135deg, #ffe0b2 0%, #ff9800 100%);
}

.si4 {
  background: linear-gradient(135deg, #b2dfdb 0%, #009688 100%);
}

.si5 {
  background: linear-gradient(135deg, #f3e5f5 0%, #ba68c8 100%);
}

.si6 {
  background: linear-gradient(135deg, #fce4ec 0%, #e91e63 100%);
}

.si-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 15, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: white;
  font-size: .9rem;
  font-weight: 600;
}

.social-item:hover .si-overlay {
  opacity: 1;
}

/* ─── Newsletter ─────────────────────────────── */
.newsletter {
  background: var(--blush);
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.nl-deco {
  position: absolute;
  color: var(--rose-dark);
  opacity: .3;
  font-size: 2rem;
}

.nl-deco-1 {
  top: 0;
  right: -60px;
}

.nl-deco-2 {
  bottom: 0;
  left: -60px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--text-dark);
  margin: .75rem 0 1rem;
  line-height: 1.15;
}

.newsletter-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.newsletter-inner>p {
  font-size: .9rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.nl-form {
  display: flex;
  gap: 0;
  background: white;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--rose-light);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nl-form:focus-within {
  border-color: var(--rose-dark);
  box-shadow: 0 0 0 4px rgba(212, 165, 165, .2);
}

.nl-input {
  flex: 1;
  padding: 1rem 1.75rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: transparent;
  direction: rtl;
}

.nl-btn {
  padding: 1rem 2rem;
  background: var(--rose-dark);
  color: white;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: none;
  transition: background var(--transition);
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--noir);
}

.nl-note {
  margin-top: 1rem;
  font-size: .75rem;
  color: var(--text-light);
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--noir);
  color: rgba(255, 255, 255, .7);
  padding: 5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.social-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--rose);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--white);
}

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

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: .65rem;
}

.footer-col a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

.footer-payments {
  display: flex;
  gap: 1rem;
}

.footer-payments span {
  background: rgba(255, 255, 255, .06);
  padding: .35rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .72rem;
  letter-spacing: .05em;
}

/* ─── Quick View Modal ───────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 11, 15, .6);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(.9) translateY(30px);
  transition: transform .4s var(--spring);
}

.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 1;
  background: var(--cream);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: .9rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: none;
}

.modal-close:hover {
  background: var(--rose-light);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  aspect-ratio: 3/4;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-info .product-card-brand {
  font-size: .72rem;
}

.modal-info .product-card-name {
  font-size: 1.4rem;
}

.modal-info .price-current {
  font-size: 1.3rem;
}

.modal-desc {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.modal-size-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.modal-sizes {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: .4rem .9rem;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid var(--cream-2);
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: none;
}

.size-btn.active,
.size-btn:hover {
  border-color: var(--noir);
  background: var(--noir);
  color: var(--white);
}

.modal-add-btn {
  width: 100%;
  padding: 1rem;
  background: var(--noir);
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: none;
  transition: background var(--transition), transform var(--spring);
  margin-top: auto;
}

.modal-add-btn:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

/* ─── Toast ──────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 8000;
  background: var(--noir);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius-md);
  font-size: .88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .4s var(--spring), opacity .4s ease;
  border-right: 3px solid var(--rose);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── Responsive ─────────────────────────────── */

/* ── Disable custom cursor on touch devices ── */
@media (hover: none) and (pointer: coarse) {

  body,
  button,
  a,
  .filter-btn,
  .cat-card,
  .product-card,
  .nav-icon,
  .size-btn,
  .modal-add-btn,
  .nl-btn,
  .sort-select,
  .view-btn,
  .page-btn,
  .color-swatch,
  .sidebar-list li,
  .sidebar-list label,
  .sidebar-list input {
    cursor: auto !important;
  }

  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 38vh;
    border-radius: 12px;
    margin: 1rem;
  }

  .hero-content {
    padding: 8rem 2.5rem 3rem;
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow,
  .hero-subtitle,
  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-marquee {
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 16/9;
  }

  .nav {
    padding: 1.25rem 2rem;
  }

  .nav.scrolled {
    padding: 0.85rem 2rem;
  }
}

/* ── Mobile (max 768px) ── */
@media (max-width: 768px) {

  /* Nav */
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav.scrolled {
    padding: 0.75rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  /* Sections */
  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Hero */
  .hero-content {
    padding: 7rem 1.5rem 2.5rem;
    text-align: center;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-stat-num {
    font-size: 1.3rem;
  }

  .hero-stat-icon {
    width: 36px;
    height: 36px;
  }

  .hero-marquee {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  /* Grids */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-card {
    min-height: 220px;
    padding: 1.75rem 1.5rem;
  }

  /* Products filter */
  .products-filter {
    justify-content: center;
  }

  /* Campaign */
  .campaign-inner {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .campaign-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  /* Testimonials */
  .testimonials-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Social */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Newsletter */
  .newsletter-inner {
    padding: 0 1rem;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-payments {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Modal */
  .modal {
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal-img {
    aspect-ratio: 1/1;
  }

  .modal-info {
    padding: 1.5rem 1.25rem;
  }

  .modal-desc {
    font-size: .8rem;
  }

  /* Container padding */
  .container {
    padding: 0 1.25rem;
  }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {

  /* Nav */
  .nav {
    padding: 0.85rem 1rem;
  }

  .nav-logo {
    font-size: 1.8rem;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
  }

  /* Hero */
  .hero-content {
    padding: 6.5rem 1.25rem 2rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 0.75rem;
  }

  .hero-stat-divider {
    display: none;
  }

  /* Grids */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    padding: 1.25rem 1rem;
  }

  .cat-card h3 {
    font-size: 1.2rem;
  }

  /* Filter */
  .filter-btn {
    font-size: 0.78rem;
    padding: 0.45rem 1rem;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
  }

  /* Newsletter */
  .nl-form {
    flex-direction: column;
    gap: 0.75rem;
    background: transparent;
    border: none;
    overflow: visible;
  }

  .nl-input {
    background: white;
    border: 1.5px solid var(--rose-light);
    border-radius: var(--radius-full);
    padding: 0.85rem 1.5rem;
  }

  .nl-btn {
    border-radius: var(--radius-full);
    width: 100%;
    padding: 0.85rem;
  }

  /* Section */
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
  }

  /* Toast */
  .toast {
    right: 1rem;
    left: 1rem;
    bottom: 1.25rem;
    text-align: center;
  }

  /* Modal */
  .modal {
    width: 100%;
    max-height: 100vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .modal-overlay {
    align-items: flex-end;
  }

  .modal-img {
    aspect-ratio: 4/3;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 0 4rem;
  }
}

/* ── Extra Small (max 360px) ── */
@media (max-width: 360px) {
  .nav-logo {
    font-size: 1.5rem;
  }

  .nav-icon {
    width: 32px;
    height: 32px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 11vw, 2.5rem);
  }

  .products-grid,
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .cat-card {
    min-height: 160px;
  }

  .hero-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-stat-info {
    text-align: center;
  }
}