/* =========================================================
   AURA & CO. — Premium Redesigned Homepage Stylesheet
   ========================================================= */

:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --color-bg: #FAF9F6; /* Ivory/Cream */
  --color-surface: #FFFFFF;
  --color-surface-hover: #F2F0EB;
  --color-text-main: #000; /* Onyx Black */
  --color-text-body: #333333; /* Charcoal */
  --color-text-muted: #737373;
  --color-border: #E5E5E5;

  --color-primary: #000;
  --color-accent: #000; /* Champagne Gold */
  --color-accent-light: #F9F6ED;
  --color-amber: #B8860B; /* Dark Goldenrod */
  --color-emerald: #2E4C3B; /* Deep Forest Green */
  --color-rose: #722F37; /* Wine/Burgundy */

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 45px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 40px rgba(234, 88, 12, 0.15);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;

  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Typography scale */
  --text-body-sm: 13px;
  --text-h2: 28px;

  /* Semantic colors */
  --color-text-secondary: var(--color-text-muted);
  --color-accent-primary: var(--color-accent);

  /* Header height */
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  border: none;
  background: none;
}

.aura-container,
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================= Scroll Reveal Animations ================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ================= Top Promo Bar ================= */
.aura-promo-bar {
  background: linear-gradient(90deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  color: #F8FAFC;
  font-size: 12px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.aura-promo-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(234,88,12,0.08), transparent);
  animation: promoShimmer 4s ease-in-out infinite;
}

@keyframes promoShimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.aura-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aura-promo-tag {
  font-size: 10px;
  font-weight: 800;
  background: rgba(212, 175, 55, 0.2);
  color: #000;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  white-space: nowrap;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0.3); }
  50% { box-shadow: 0 0 0 4px rgba(234,88,12,0); }
}

.aura-promo-text {
  text-align: center;
  flex: 1;
  letter-spacing: 0.01em;
}

.code-pill {
  color: #FDBA74;
  font-family: var(--font-mono);
  font-weight: 700;
  background: rgba(253,186,116,0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.aura-promo-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #94A3B8;
  white-space: nowrap;
}

.aura-promo-links a:hover {
  color: #FFFFFF;
}

/* ================= Header Navbar — Floating Pill Design ================= */
.aura-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  padding: 0 20px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-header.scrolled {
  top: 6px;
}

.aura-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 60px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border-radius: 100px;
  padding: 0 8px 0 24px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-header.scrolled .aura-header-inner {
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 4px 16px rgba(0,0,0,0.06),
    0 16px 48px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.04);
}

/* Animated gradient border glow */
.aura-header-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(234,88,12,0) 0%,
    rgba(234,88,12,0) 40%,
    rgba(234,88,12,0.15) 50%,
    rgba(234,88,12,0) 60%,
    rgba(234,88,12,0) 100%
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: borderGlow 4s ease-in-out infinite;
}

.aura-header:hover .aura-header-inner::before {
  opacity: 1;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.aura-mobile-btn {
  display: none;
  cursor: pointer;
  color: var(--color-text-main);
  padding: 8px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  flex-shrink: 0;
}

.aura-mobile-btn:hover {
  background: rgba(15, 23, 42, 0.04);
}

/* Brand — Animated Accent */
.aura-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}

.aura-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.22em;
  color: #0F172A;
  text-transform: uppercase;
  position: relative;
}

.aura-logo-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #F97316);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-brand:hover .aura-logo-name::after {
  width: 100%;
}

.aura-logo-sub {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav — Inside Pill Container */
.aura-nav {
  display: flex;
  align-items: center;
  gap: 1px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 100px;
  padding: 4px 6px;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.aura-nav a {
  font-size: 12.5px;
  font-weight: 500;
  color: #64748B;
  padding: 7px 14px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.aura-nav a::after {
  display: none;
}

.aura-nav a:hover {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

.aura-nav a:active {
  transform: translateY(0);
}

.aura-nav a.active {
  color: #0F172A;
  background: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.aura-nav a.nav-highlight {
  color: #9A3412;
  background: rgba(234, 88, 12, 0.08);
  font-weight: 600;
}

.aura-nav a.nav-highlight:hover {
  background: #FFFFFF;
  color: #9A3412;
  box-shadow: 0 1px 4px rgba(234, 88, 12, 0.12);
  transform: translateY(-1px);
}

.aura-nav a.nav-highlight .nav-badge {
  font-size: 7.5px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-accent), #F97316);
  color: white;
  padding: 2px 6px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.3);
}

.aura-nav a.nav-sale {
  color: var(--color-rose);
  font-weight: 700;
  background: rgba(225, 29, 72, 0.06);
}

.aura-nav a.nav-sale:hover {
  background: #FFFFFF;
  color: var(--color-rose);
  box-shadow: 0 1px 4px rgba(225, 29, 72, 0.12);
  transform: translateY(-1px);
}

/* Action Buttons */
.aura-actions {
  display: flex;
  align-items: center;
  gap: 2px;
}

.aura-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  color: #64748B;
  background: transparent;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.aura-icon-btn:hover {
  color: #0F172A;
  background: rgba(15, 23, 42, 0.04);
  transform: translateY(-1px);
}

.aura-icon-btn:active {
  transform: translateY(0);
}

.aura-admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  color: #94A3B8;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.aura-admin-btn:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #475569;
  transform: translateY(-1px);
}

.aura-user-btn {
  width: auto;
  padding: 0 14px;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
}

.aura-bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #0F172A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.aura-bag-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.aura-bag-btn:hover {
  background: #1E293B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.aura-bag-btn:hover::before {
  opacity: 1;
}

.aura-bag-btn:active {
  transform: translateY(0);
}

.bag-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.bag-counter {
  position: absolute;
  top: -7px;
  right: -9px;
  background: linear-gradient(135deg, var(--color-accent), #F97316);
  color: white;
  font-size: 8px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.4);
  animation: counterBounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes counterBounce {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}

/* ================= Hero Section ================= */
.aura-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0F172A;
  color: #FFFFFF;
}

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

.aura-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.75) 45%, rgba(15, 23, 42, 0.3) 100%),
    linear-gradient(180deg, rgba(15,23,42,0.3) 0%, transparent 30%, transparent 70%, rgba(15,23,42,0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(251, 146, 60, 0.4);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 14s; animation-delay: 2s; width: 4px; height: 4px; }
.particle:nth-child(3) { left: 40%; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation-duration: 16s; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(5) { left: 70%; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; animation-duration: 13s; animation-delay: 5s; width: 5px; height: 5px; opacity: 0.3; }
.particle:nth-child(7) { left: 15%; animation-duration: 15s; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; animation-duration: 9s; animation-delay: 2s; width: 3px; height: 3px; }

@keyframes particleFloat {
  0% { bottom: -10px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { bottom: 100%; opacity: 0; transform: translateX(30px); }
}

.aura-hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 11px;
  font-weight: 700;
  color: #FDBA74;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #FB923C, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(100%);
}

.hero-title .line:nth-child(1) span { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.4s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.6s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 540px;
  animation: fadeIn 1s ease 0.8s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeIn 1s ease 1s forwards;
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #000;
  color: #FFFFFF;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
  background: #FFFFFF;
  color: #0F172A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.15);
}

.btn-dark {
  background: #000;
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  animation: fadeIn 1s ease 1.2s forwards;
  opacity: 0;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #CBD5E1;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.08);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
.dot.green { background: #34D399; }
.dot.orange { background: #FB923C; }
.dot.purple { background: #A78BFA; }

@keyframes dotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ================= Brand Marquee Strip ================= */
.marquee-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-surface), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-surface), transparent);
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item .m-icon {
  font-size: 20px;
}

.marquee-item .m-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-item .m-divider {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.5;
}

/* ================= Section Headers ================= */
.aura-section {
  padding: 80px 0;
}

.bg-white {
  background-color: #FFFFFF;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.section-link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  background: rgba(234,88,12,0.05);
  transform: translateX(3px);
}

/* ================= Category Bento ================= */
.category-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  cursor: pointer;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img {
  transform: scale(1.1);
}

.bento-wide {
  grid-column: span 2;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.3) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #FFFFFF;
  z-index: 2;
  transition: var(--transition);
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15,23,42,0.2) 100%);
}

.bento-tag {
  font-size: 10px;
  font-weight: 800;
  color: #FDBA74;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: #FDBA74;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: var(--transition);
}

.bento-card:hover .bento-title {
  transform: translateX(4px);
}

.bento-cta {
  font-size: 12px;
  font-weight: 600;
  color: #E2E8F0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.bento-card:hover .bento-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ================= Product Grid & Cards ================= */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: #475569;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.tab-pill:hover, .tab-pill.active {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
  transform: translateY(-1px);
}

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

.aura-product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
}

.aura-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
  border-color: rgba(234, 88, 12, 0.3);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  overflow: hidden;
}

.card-image-wrap .main-img, .card-image-wrap .hover-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-image-wrap .hover-img {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.aura-product-card:hover .card-image-wrap .main-img {
  transform: scale(1.08);
  opacity: 0;
}

.aura-product-card:hover .card-image-wrap .hover-img {
  opacity: 1;
  transform: scale(1.08);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.badge-sale {
  background: linear-gradient(135deg, var(--color-accent), #DC4A0A);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.4);
}

.badge-best {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  transform: scale(0.8);
  border: none;
  color: #64748B;
}

.aura-product-card:hover .card-wishlist {
  opacity: 1;
  transform: scale(1);
}

.card-wishlist:hover {
  background: #E11D48;
  color: white;
  transform: scale(1.1) !important;
}

.card-wishlist.active {
  background: #E11D48;
  color: white;
  opacity: 1;
  transform: scale(1);
}

.quick-size-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  border-top: 1px solid var(--color-border);
}

.aura-product-card:hover .quick-size-bar {
  transform: translateY(0);
}

.quick-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.size-buttons {
  display: flex;
  gap: 4px;
}

.size-buttons button {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
  cursor: pointer;
  transition: var(--transition);
}

.size-buttons button:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.card-details {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-category::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), transparent);
}

.card-name {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-name a:hover {
  color: var(--color-accent);
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid #F1F5F9;
  padding-top: 12px;
}

.price-current {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  font-family: var(--font-mono);
}

.price-mrp {
  font-size: 12px;
  color: #94A3B8;
  text-decoration: line-through;
  font-family: var(--font-mono);
}

.price-save {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-emerald);
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ================= Flash Banner ================= */
.flash-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 40%, #334155 100%);
  border-radius: var(--radius-xl);
  padding: 52px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.flash-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234,88,12,0.15), transparent 70%);
  border-radius: 50%;
  animation: flashGlow 4s ease-in-out infinite alternate;
}

@keyframes flashGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

.flash-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.flash-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  background: rgba(234, 88, 12, 0.25);
  color: #FB923C;
  border: 1px solid rgba(234, 88, 12, 0.5);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  animation: flashBadgePulse 1.5s ease-in-out infinite;
}

@keyframes flashBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.flash-title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.flash-desc {
  font-size: 14px;
  color: #CBD5E1;
  max-width: 480px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.coupon-pill-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #94A3B8;
}

.coupon-box {
  background: rgba(255,255,255,0.08);
  border: 1.5px dashed #FB923C;
  color: #FDBA74;
  font-family: var(--font-mono);
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.coupon-box:hover {
  background: rgba(234,88,12,0.2);
  transform: scale(1.05);
}

.flash-countdown-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.countdown-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.06em;
}

.countdown-clock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clock-unit {
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  min-width: 60px;
  transition: var(--transition);
}

.clock-unit:hover {
  border-color: rgba(251,146,60,0.4);
  transform: translateY(-2px);
}

.clock-unit .num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 800;
  display: block;
}

.clock-unit .num.highlight {
  color: #FB923C;
  text-shadow: 0 0 20px rgba(251,146,60,0.4);
}

.clock-unit .lbl {
  font-size: 9px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-clock .colon {
  font-size: 22px;
  font-weight: 800;
  color: #64748B;
  animation: colonBlink 1s step-end infinite;
}

@keyframes colonBlink {
  50% { opacity: 0.3; }
}

.btn-flash {
  width: 100%;
}

/* ================= Ethos Section ================= */
.ethos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ethos-visual {
  position: relative;
}

.ethos-img-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
  position: relative;
}

.ethos-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}

.ethos-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ethos-img-card:hover img {
  transform: scale(1.05);
}

.ethos-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: white;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  max-width: 260px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  animation: statFloat 4s ease-in-out infinite;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #FB923C;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E2E8F0;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.ethos-stat-card p {
  font-size: 12px;
  color: #94A3B8;
  line-height: 1.5;
}

.ethos-text .section-title {
  margin-bottom: 16px;
}

.ethos-body {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 28px;
}

.ethos-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(234,88,12,0.3);
  box-shadow: 0 4px 16px rgba(234,88,12,0.08);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 11px;
  color: #64748B;
  line-height: 1.5;
}

/* ================= Testimonials Section ================= */
.testimonials-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

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

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(234,88,12,0.08);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: rgba(234,88,12,0.2);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: #F59E0B;
  fill: #F59E0B;
}

.testimonial-text {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #DC4A0A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.testimonial-badge {
  font-size: 10px;
  color: var(--color-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ================= Instagram Feed Grid ================= */
.instagram-section {
  padding: 0;
}

.instagram-header {
  text-align: center;
  margin-bottom: 40px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-item:hover::after {
  opacity: 1;
}

.instagram-item .insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: white;
}

.instagram-item:hover .insta-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ================= Search Modal ================= */
.aura-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.aura-search-modal.active {
  display: flex;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
}

.search-modal-card {
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 90%;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  animation: modalSlideUp 0.3s ease;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  border: 1.5px solid var(--color-border);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.search-input-wrap:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(234,88,12,0.1);
}

.search-input-wrap input {
  flex: 1;
  font-size: 15px;
  color: #0F172A;
  outline: none;
}

.search-close-btn {
  cursor: pointer;
  color: #64748B;
  transition: var(--transition);
}

.search-close-btn:hover {
  color: #0F172A;
}

.search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: #64748B;
}

.search-suggestions a {
  background: #F1F5F9;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}

.search-suggestions a:hover {
  background: var(--color-accent);
  color: white;
}

/* ================= Footer ================= */
.aura-footer {
  background: #0A0A0A;
  color: #F8FAFC;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.aura-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 44px;
  margin-bottom: 52px;
}

.footer-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.footer-feature-item:hover {
  background: rgba(255,255,255,0.04);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-feature-item:hover .feature-icon-box {
  background: rgba(234,88,12,0.15);
  border-color: rgba(234,88,12,0.3);
  transform: translateY(-2px);
}

.footer-feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.footer-feature-item p {
  font-size: 12px;
  color: #94A3B8;
  margin-top: 3px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 52px;
}

.footer-brand-col .aura-brand {
  margin-bottom: 16px;
}

.footer-brand-col p {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.8;
  max-width: 340px;
  margin-top: 12px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: var(--transition);
}

.footer-social-links a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13px;
  color: #CBD5E1;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-payments span {
  font-size: 11px;
  color: #64748B;
}

.payment-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #94A3B8;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  font-size: 12px;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #64748B;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #FFFFFF;
}

/* ================= Mobile Drawer — Glassmorphism ================= */
.aura-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.aura-drawer.open {
  display: block;
}

.aura-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.aura-drawer-body {
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 320px;
  max-width: calc(85vw - 24px);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.12),
    0 0 0 1px rgba(255,255,255,0.6) inset;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: drawerSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes drawerSlideIn {
  from {
    transform: translateX(-100%) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.aura-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.aura-close-btn {
  background: rgba(15, 23, 42, 0.04);
  border: none;
  cursor: pointer;
  color: #64748B;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aura-close-btn:hover {
  background: rgba(15, 23, 42, 0.08);
  color: #0F172A;
  transform: rotate(90deg);
}

.aura-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
}

.aura-drawer-links a {
  display: flex;
  align-items: center;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 2px 0;
}

.aura-drawer-links a:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #0F172A;
  transform: translateX(4px);
}

.aura-drawer-links .text-sale {
  color: var(--color-rose);
  font-weight: 700;
}

.aura-drawer-links .drawer-divider {
  height: 1px;
  background: rgba(0,0,0,0.04);
  margin: 8px 16px;
}

.aura-drawer-links .admin-link {
  color: #94A3B8;
  font-size: 13px;
  font-weight: 400;
}

/* ================= Responsive Queries ================= */
@media (max-width: 1024px) {
  .aura-nav { display: none; }
  .aura-mobile-btn { display: flex; }
  .aura-header { padding: 0 12px; }
  .aura-header-inner {
    padding: 0 6px 0 18px;
    height: 56px;
    border-radius: 20px;
  }
  .aura-header-inner::before { border-radius: 20px; }
  .aura-admin-btn { display: none; }
  .category-bento { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .flash-banner { flex-direction: column; text-align: center; }
  .ethos-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-title { font-size: 52px; }
}

@media (max-width: 640px) {
  .aura-header { padding: 0 8px; top: 8px; }
  .aura-header.scrolled { top: 4px; }
  .aura-header-inner {
    padding: 0 4px 0 14px;
    height: 52px;
    border-radius: 16px;
    gap: 8px;
  }
  .aura-header-inner::before { border-radius: 16px; }
  .aura-logo-name { font-size: 18px; letter-spacing: 0.15em; }
  .aura-logo-sub { font-size: 8px; }
  .aura-user-btn .user-label { display: none; }
  .aura-bag-btn { padding: 7px 14px; }
  .bag-label { display: none; }
  .aura-icon-btn { width: 36px; height: 36px; }
  .aura-promo-inner { flex-direction: column; text-align: center; }
  .aura-promo-links { display: none; }
  .category-bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 38px; }
  .hero-subtitle { font-size: 14px; }
  .footer-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .flash-title { font-size: 26px; }
  .flash-banner { padding: 32px 24px; }
  .ethos-stat-card { position: relative; bottom: auto; right: auto; max-width: 100%; margin-top: -20px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* =============================================================
   urban outfit — NAVBAR REDESIGN
   Full-width static, marquee ticker, centered nav
   ============================================================= */

/* ─── Marquee Ticker Bar ─── */
.lux-ticker {
  background: #1a1a1a;
  overflow: hidden;
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
}

.lux-ticker-track {
  display: flex;
  gap: 0;
  animation: luxTickerScroll 30s linear infinite;
  width: max-content;
}

.lux-ticker-track:hover {
  animation-play-state: paused;
}

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

.lux-ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.lux-ticker-text {
  font-size: 11px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-ticker-dot {
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
  opacity: 0.5;
}

/* ─── Main Navbar ─── */
.lux-navbar {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.lux-navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.lux-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Brand Logo */
.lux-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}

.lux-logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.lux-brand:hover .lux-logo-img {
  opacity: 0.85;
  transform: scale(1.02);
}

.lux-logo-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lux-logo-icon svg {
  width: 100%;
  height: 100%;
}

.lux-logo-text {
  display: flex;
  flex-direction: column;
}

.lux-logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1a1a1a;
  text-transform: uppercase;
  line-height: 1;
}

.lux-logo-sub {
  font-size: 8px;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Centered Navigation */
.lux-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.lux-nav > a {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.lux-nav > a:hover {
  color: #000;
}

.lux-nav > a.active {
  color: #1a1a1a;
}

.lux-nav-link {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  padding: 8px 16px;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}
.lux-nav-link:hover {
  color: #000;
}

.lux-nav .nav-badge {
  font-size: 8px;
  font-weight: 800;
  background: #8B0000;
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

/* ─── MEGA DROPDOWN ─── */
.lux-mega-wrap { position: static; }
.lux-nav-link { cursor: pointer; }

.lux-mega-dropdown {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 1100px;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 24px 80px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
  z-index: 1000;
}

.lux-mega-wrap:hover .lux-mega-dropdown,
.lux-mega-wrap.is-open .lux-mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.lux-mega-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 50px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr 1fr;
  gap: 32px;
  align-items: start;
}

.lux-mega-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.lux-mega-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #000;
  display: inline-block;
  width: fit-content;
  text-align: left;
}

.lux-mega-link {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #555 !important;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  text-transform: none !important;
  white-space: nowrap;
}
.lux-mega-link:hover {
  color: #000 !important;
  padding-left: 8px;
}

.lux-mega-sale { color: #dc2626 !important; font-weight: 600; }

.lux-mega-highlight {
  background: #FAF9F6;
  border-radius: 14px;
  padding: 0 20px 20px;
  text-align: left;
}

.lux-mega-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #000;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
  width: fit-content;
}

.lux-mega-highlight .lux-mega-heading {
  margin-bottom: 12px;
  margin-top: 0;
}

.lux-mega-highlight .lux-mega-link {
  padding: 5px 0;
  font-size: 13px;
}

.lux-mega-img {
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.lux-mega-img img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lux-mega-img:hover img { transform: scale(1.05); }

/* Right Actions */
.lux-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lux-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #333;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.lux-icon-btn:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}

.lux-bag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #333;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.lux-bag-btn:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
}

.lux-bag-counter {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #8B0000;
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.lux-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0E8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lux-user-btn:hover {
  border-color: #1a1a1a;
  transform: scale(1.05);
}

/* Mobile Toggle */
.lux-mobile-btn {
  display: none;
  cursor: pointer;
  color: #333;
  padding: 8px;
  background: none;
  border: none;
}

/* Admin btn hidden on frontend by default */
.lux-admin-btn {
  display: none;
}

/* ─── Mobile Drawer ─── */
.lux-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

.lux-drawer.open {
  display: block;
}

.lux-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

.lux-drawer-body {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #FFFFFF;
  box-shadow: 4px 0 30px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  animation: luxDrawerSlide 0.35s ease;
}

@keyframes luxDrawerSlide {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.lux-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.lux-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lux-close-btn:hover {
  background: #f5f5f5;
  color: #1a1a1a;
}

.lux-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 12px;
}

.lux-drawer-links a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  margin: 2px 0;
}

.lux-drawer-links a:hover {
  background: #f9f9f9;
  color: #1a1a1a;
}

.lux-drawer-links .text-sale {
  color: #8B0000;
  font-weight: 700;
}

.lux-drawer-links .drawer-divider {
  height: 1px;
  background: #eee;
  margin: 8px 16px;
}

.lux-drawer-links .admin-link {
  color: #999;
  font-size: 13px;
}

/* Mobile Drawer Mega Dropdown */
.lux-drawer-mega {
  margin: 2px 0;
}
.lux-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.lux-drawer-toggle:hover { background: #f9f9f9; }
.lux-drawer-toggle svg {
  transition: transform 0.3s ease;
}
.lux-drawer-mega.is-open .lux-drawer-toggle svg {
  transform: rotate(180deg);
}
.lux-drawer-sub {
  display: none;
  padding: 4px 0 4px 20px;
}
.lux-drawer-mega.is-open .lux-drawer-sub {
  display: block;
}
.lux-drawer-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 400;
  color: #666 !important;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin: 1px 0;
}
.lux-drawer-sub a:hover {
  background: #f5f5f5;
  color: #000 !important;
  padding-left: 24px;
}

/* ─── Search Modal ─── */
.lux-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.lux-search-modal.active {
  display: flex;
}

.lux-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.lux-search-card {
  position: relative;
  z-index: 10;
  background: #FFFFFF;
  max-width: 620px;
  width: 90%;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.lux-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9f9f9;
  border: 1.5px solid #e5e5e5;
  padding: 14px 18px;
  transition: border-color 0.3s ease;
}

.lux-search-input-wrap:focus-within {
  border-color: #000;
}

.lux-search-input-wrap input {
  flex: 1;
  font-size: 15px;
  color: #1a1a1a;
  outline: none;
  background: transparent;
  border: none;
}

.lux-search-close {
  cursor: pointer;
  color: #999;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.lux-search-close:hover {
  color: #1a1a1a;
}

.lux-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  color: #999;
}

.lux-search-suggestions a {
  background: #f5f5f5;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lux-search-suggestions a:hover {
  background: #000;
  color: #fff;
}

/* ─── Navbar Responsive ─── */
@media (max-width: 1024px) {
  .lux-nav { display: none; }
  .lux-mobile-btn { display: flex; }
  .lux-navbar-inner { padding: 0 20px; }
}

@media (max-width: 640px) {
  .lux-navbar-inner {
    height: 60px;
    padding: 0 12px;
    gap: 6px;
  }
  .lux-logo-img { height: 40px; }
  }
  .lux-brand { flex: 1; min-width: 0; }
  .lux-logo-name { font-size: 15px; letter-spacing: 0.08em; }
  .lux-logo-sub { display: none; }
  .lux-ticker { height: 32px; }
  .lux-ticker-text { font-size: 9px; letter-spacing: 0.06em; padding: 0 20px; }
  .lux-actions { gap: 2px; }
  .lux-icon-btn { width: 34px; height: 34px; }
  .lux-icon-btn svg { width: 18px; height: 18px; }
  .lux-bag-btn { width: 34px; height: 34px; }
  .lux-bag-btn svg { width: 18px; height: 18px; }
  .lux-user-btn { width: 32px; height: 32px; }
  .lux-user-btn svg { width: 15px; height: 15px; }
  .lux-mobile-btn { width: 34px; height: 34px; }
  .lux-drawer-body { width: 280px; }
}

/* =============================================================
   urban outfit — LUXURY HOMEPAGE REDESIGN (lux-*)
   Light Mode: Ivory/Beige with Champagne Metallic accents
   Ultra-Premium Modern Luxury Aesthetic
   ============================================================= */

/* ─── HERO — Editorial Fashion ─── */
.lux-hero {
  background: #F4EDE4;
  padding: 30px 0 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lux-hero-wrapper {
  max-width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 0 80px;
  position: relative;
  overflow: hidden;
}

/* Title */
.lux-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 400;
  font-style: italic;
  color: #3A3228;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  text-align: center;
  position: relative;
  z-index: 5;
}

/* Three images layout */
.lux-hero-images {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 100px;
  position: relative;
  height: 420px;
  margin: 0;
  padding: 0 40px;
}

.lux-hero-img {
  position: relative;
  bottom: 0;
}

.lux-hero-img-left {
  z-index: 2;
  flex-shrink: 0;
}

.lux-hero-img-center {
  z-index: 3;
  flex-shrink: 0;
  margin-bottom: 0;
}

.lux-hero-img-right {
  z-index: 2;
  flex-shrink: 0;
}

/* Arched frame for side images */
.lux-arch-frame {
  border: 1.5px solid #3A3228;
  border-radius: 140px 140px 0 0;
  overflow: hidden;
  width: 180px;
  height: 280px;
  background: #fff;
}

.lux-arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center image */
.lux-hero-img-center img {
  width: 260px;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Arch background behind center image */
.lux-arch-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  height: 350px;
  background: #EBE1D3;
  border-radius: 140px 140px 0 0;
  z-index: -1;
}

/* Decorative squiggly */
.lux-deco-squig {
  position: absolute;
  top: -20px;
  right: -10px;
  z-index: 5;
}

/* Bottom section */
.lux-hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 24px;
  padding: 0 20px;
}

.lux-hero-desc {
  max-width: 260px;
}

.lux-hero-desc p {
  font-size: 13px;
  line-height: 1.7;
  color: #3A3228;
  margin: 0;
}

.lux-hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
}

.lux-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3A3228;
  opacity: 0.2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lux-dot.active {
  opacity: 1;
  width: 10px;
  height: 10px;
}

.lux-hero-right-area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
}

.lux-arrow-btn {
  width: 52px;
  height: 52px;
  border: 1px solid #3A3228;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A3228;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lux-arrow-btn:hover {
  background: #3A3228;
  color: #F4EDE4;
}

.lux-hero-stat {
  text-align: right;
  padding-bottom: 8px;
}

.lux-hero-stat .lux-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: #3A3228;
  line-height: 1;
  margin-bottom: 2px;
}

.lux-hero-stat .lux-stat-text {
  font-size: 12px;
  font-weight: 500;
  color: #3A3228;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

/* ─── COLLECTION CARDS ─── */
.lux-collections {
  padding: 80px 0;
  background: #fff;
}

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

.lux-col-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
}

.lux-col-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.lux-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

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

.lux-col-info {
  padding: 20px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lux-col-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.lux-col-info span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.lux-col-card:hover .lux-col-info span {
  color: #000;
}

/* ─── HERO SECTION — Full-Height Immersive ─── */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
  color: var(--color-text-main);
}

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

.lux-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: luxHeroZoom 25s ease-in-out infinite alternate;
}

@keyframes luxHeroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.lux-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(250,249,246,0.6) 0%, rgba(250,249,246,0.85) 40%, rgba(250,249,246,0.95) 100%);
}

.lux-hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
}

.lux-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Season tag */
.lux-season-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: luxFadeUp 1s ease 0.2s both;
}

.lux-tag-sep { color: rgba(10,10,10,0.15); }

/* Hero title — oversized editorial serif */
.lux-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  color: var(--color-text-main);
}

.lux-title-line {
  display: block;
  overflow: hidden;
}

.lux-title-word {
  display: inline-block;
  margin-right: 0.12em;
  animation: luxWordRise 1.2s cubic-bezier(0.16,1,0.3,1) both;
  opacity: 0;
}

.lux-title-line:nth-child(1) .lux-title-word:nth-child(1) { animation-delay: 0.15s; }
.lux-title-line:nth-child(1) .lux-title-word:nth-child(2) { animation-delay: 0.25s; }
.lux-title-line:nth-child(1) .lux-title-word:nth-child(3) { animation-delay: 0.35s; }
.lux-title-line:nth-child(2) .lux-title-word { animation-delay: 0.45s; color: var(--color-accent); font-style: italic; }
.lux-title-line:nth-child(3) .lux-title-word { animation-delay: 0.55s; }

@keyframes luxWordRise {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero subtitle */
.lux-hero-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 44px;
  animation: luxFadeUp 1s ease 0.8s both;
}

@keyframes luxFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero buttons */
.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: luxFadeUp 1s ease 1s both;
}

.lux-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-text-main);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lux-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lux-btn-primary span { position: relative; z-index: 1; }

.lux-btn-primary:hover::before { opacity: 1; }
.lux-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  color: var(--color-text-main);
}

.lux-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 0;
  border: 1px solid rgba(10,10,10,0.2);
  transition: all 0.4s ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lux-btn-outline:hover {
  background: var(--color-text-main);
  border-color: var(--color-text-main);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.lux-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 15;
  color: var(--color-text-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: luxFadeUp 1s ease 1.6s both;
}
.lux-scroll-line {
  width: 1px; height: 40px;
  background: rgba(10,10,10,0.12);
  position: relative;
  overflow: hidden;
}
.lux-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--color-accent);
  animation: luxScrollPulse 2.5s ease-in-out infinite;
}
@keyframes luxScrollPulse {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ─── MARQUEE STRIP ─── */
.lux-marquee {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.lux-marquee::before,
.lux-marquee::after {
  content: '';
  position: absolute;
  top: 0; width: 120px; height: 100%;
  z-index: 2; pointer-events: none;
}
.lux-marquee::before { left: 0; background: linear-gradient(90deg, var(--color-surface), transparent); }
.lux-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--color-surface), transparent); }

.lux-marquee-track {
  display: flex;
  gap: 40px;
  animation: luxMarqueeScroll 35s linear infinite;
  width: max-content;
}
.lux-marquee-track:hover { animation-play-state: paused; }
@keyframes luxMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

.lux-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.lux-marquee-dot { font-size: 14px; color: var(--color-accent); }
.lux-marquee-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SECTION UTILITY ─── */
.lux-section { padding: 100px 0; }
.lux-section-cream { background: #F5F3EF; }
.lux-section-white { background: var(--color-surface); }

.lux-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 52px;
}
.lux-section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.lux-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
  display: block;
}

.lux-section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.lux-section-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 10px;
  line-height: 1.6;
}

.lux-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-main);
  padding: 12px 28px;
  border-radius: 0;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.lux-view-all:hover {
  color: #FFFFFF;
  border-color: var(--color-text-main);
  background: var(--color-text-main);
}

/* ─── CATEGORY EDITORIAL GRID ─── */
/* ─── SHOP BY CATEGORY — EDITORIAL LIST ─── */
.uoc-shop {
  padding: 100px 0 80px;
  background: #000;
}

.uoc-shop-head {
  margin-bottom: 60px;
}

.uoc-shop-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.uoc-shop-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.uoc-shop-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
}
.uoc-shop-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

/* List Items */
.uoc-shop-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.uoc-shop-item {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  position: relative;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}

.uoc-shop-item:hover {
  padding-left: 20px;
  border-bottom-color: var(--color-accent);
}

/* Number */
.uoc-shop-item-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  transition: color 0.4s ease;
}
.uoc-shop-item:hover .uoc-shop-item-num {
  color: var(--color-accent);
}

/* Name */
.uoc-shop-item-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.uoc-shop-item-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.02em;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  line-height: 1.1;
}
.uoc-shop-item:hover .uoc-shop-item-text {
  color: #fff;
  transform: translateX(8px);
}

.uoc-shop-item-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.uoc-shop-item:hover .uoc-shop-item-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Image Preview */
.uoc-shop-item-img {
  width: 180px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.8) translateX(20px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.uoc-shop-item:hover .uoc-shop-item-img {
  opacity: 1;
  transform: scale(1) translateX(0);
}
.uoc-shop-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Arrow */
.uoc-shop-item-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-shop-item:hover .uoc-shop-item-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
  transform: rotate(-45deg);
}

/* Bottom CTA */
.uoc-shop-bottom {
  margin-top: 52px;
  text-align: center;
}

.uoc-shop-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-shop-explore:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.uoc-shop-explore svg { transition: transform 0.3s; }
.uoc-shop-explore:hover svg { transform: translateX(6px); }

/* ─── TRENDING PRODUCTS — NEW UI ─── */
.uoc-trending {
  padding: 100px 0 80px;
  background: #FAF9F6;
}

.uoc-trending-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

.uoc-trending-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.uoc-trending-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--color-accent);
}

.uoc-trending-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text-main);
}
.uoc-trending-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 300;
}

.uoc-trending-head-right p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 380px;
}

.uoc-trending-viewall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-main);
  text-decoration: none;
  padding: 14px 32px;
  border: 1.5px solid var(--color-border);
  border-radius: 60px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.uoc-trending-viewall:hover {
  background: var(--color-text-main);
  color: #fff;
  border-color: var(--color-text-main);
}
.uoc-trending-viewall svg { transition: transform 0.3s; }
.uoc-trending-viewall:hover svg { transform: translateX(4px); }

/* Product Grid */
.uoc-trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Product Card */
.uoc-t-card {
  position: relative;
}

.uoc-t-card-link {
  display: block;
  text-decoration: none;
}

/* Image Area */
.uoc-t-card-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f0ede8;
  aspect-ratio: 3/4;
}

.uoc-t-img-main,
.uoc-t-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.uoc-t-img-hover { opacity: 0; }
.uoc-t-card:hover .uoc-t-img-main { opacity: 0; transform: scale(1.05); }
.uoc-t-card:hover .uoc-t-img-hover { opacity: 1; transform: scale(1.05); }

/* Badges */
.uoc-t-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.uoc-t-badge-sale,
.uoc-t-badge-hot {
  display: inline-block;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}
.uoc-t-badge-sale { background: var(--color-text-main); color: #fff; }
.uoc-t-badge-hot { background: var(--color-accent); color: #fff; }

/* Wishlist */
.uoc-t-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transform: translateY(-8px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(8px);
}
.uoc-t-card:hover .uoc-t-wish { opacity: 1; transform: translateY(0); }
.uoc-t-wish:hover { background: var(--color-rose); color: #fff; }
.uoc-t-wish.active { background: var(--color-rose); color: #fff; opacity: 1; }

/* Quick Add */
.uoc-t-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-t-card:hover .uoc-t-quick { transform: translateY(0); }
.uoc-t-quick span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
}
.uoc-t-sizes {
  display: flex;
  gap: 6px;
}
.uoc-t-sizes button {
  width: 38px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.uoc-t-sizes button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #000;
}

/* Card Info */
.uoc-t-card-info {
  padding: 16px 4px 0;
}

.uoc-t-card-cat {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

.uoc-t-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-main);
  margin: 6px 0 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.uoc-t-card:hover .uoc-t-card-name { color: var(--color-accent); }

.uoc-t-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uoc-t-price-now {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
}
.uoc-t-price-was {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

/* Bottom CTA */
.uoc-trending-bottom {
  margin-top: 52px;
  text-align: center;
}

.uoc-trending-explore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--color-text-main);
  border-radius: 60px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-trending-explore:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.uoc-trending-explore svg { transition: transform 0.3s; }
.uoc-trending-explore:hover svg { transform: translateX(6px); }

/* ─── PRODUCT GRID — Borderless Glassmorphic ─── */
.lux-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.lux-product-card {
  background: transparent;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.lux-product-card:hover {
  transform: translateY(-6px);
}

.lux-pcard-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F0EDE8;
}

.lux-img-main, .lux-img-hover {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.lux-img-hover { position: absolute; inset: 0; opacity: 0; }
.lux-product-card:hover .lux-img-main { opacity: 0; transform: scale(1.05); }
.lux-product-card:hover .lux-img-hover { opacity: 1; transform: scale(1.05); }

.lux-badges {
  position: absolute;
  top: 16px; left: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.lux-badge-sale {
  background: var(--color-rose);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: 0.08em;
}
.lux-badge-hot {
  background: var(--color-text-main);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  letter-spacing: 0.08em;
}

.lux-wishlist {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  color: var(--color-text-muted);
  border: none;
  z-index: 4;
}
.lux-product-card:hover .lux-wishlist { opacity: 1; transform: translateY(0); }
.lux-wishlist:hover { background: var(--color-rose); color: #fff; }
.lux-wishlist.active { background: var(--color-rose); color: #fff; opacity: 1; }

/* Glassmorphic Quick Add Drawer */
.lux-quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.6);
}
.lux-product-card:hover .lux-quick-add { transform: translateY(0); }
.lux-qa-label { font-size: 10px; font-weight: 700; color: var(--color-text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.lux-size-row { display: flex; gap: 6px; }
.lux-size-row button {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  background: transparent;
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.25s ease;
}
.lux-size-row button:hover { background: var(--color-text-main); color: #fff; border-color: var(--color-text-main); }

.lux-pcard-body { padding: 20px 4px; text-align: center; }
.lux-pcard-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  display: block;
}
.lux-pcard-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-main);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lux-pcard-name a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
.lux-pcard-name a:hover { color: var(--color-accent); }

.lux-pcard-price { display: flex; align-items: center; justify-content: center; gap: 10px; padding-top: 4px; }
.lux-price-now { font-size: 16px; font-weight: 500; color: var(--color-text-main); }
.lux-price-was { font-size: 13px; color: var(--color-text-muted); text-decoration: line-through; }
.lux-price-save { font-size: 10px; font-weight: 700; color: var(--color-emerald); text-transform: uppercase; letter-spacing: 0.05em; }

.lux-see-more-wrap { text-align: center; margin-top: 56px; }
.lux-see-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 12px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 0;
  transition: all 0.4s ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.lux-see-more-btn:hover { background: var(--color-text-main); border-color: var(--color-text-main); color: #fff; transform: translateY(-2px); }

/* ─── SIGNATURE COLLECTION — EDITORIAL v3 ─── */
.uoc-sig-v3 {
  position: relative;
  padding: 0;
  background: #0A0A0A;
  overflow: hidden;
}
.uoc-sig-v3::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,0,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 30%, rgba(0,0,0,0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.uoc-sigv3-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.uoc-sigv3-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 800px;
  align-items: center;
  gap: 60px;
}

.uoc-sigv3-content {
  padding: 100px 0 100px 40px;
}

.uoc-sigv3-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.15);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.uoc-sigv3-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}
.uoc-sigv3-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.uoc-sigv2-tag-text {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
}

.uoc-sigv3-title { margin-bottom: 32px; }
.uoc-sigv3-title-sm {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.4);
  line-height: 1.1;
}
.uoc-sigv3-title-lg {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.04em;
  color: var(--color-accent);
  line-height: 0.95;
  margin: 8px 0;
}

.uoc-sigv3-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 2;
  max-width: 420px;
  margin-bottom: 28px;
}

.uoc-sigv3-quote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding-left: 4px;
}
.uoc-sigv3-quote svg { color: var(--color-accent); flex-shrink: 0; }
.uoc-sigv3-quote span {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

.uoc-sigv3-divider {
  width: 48px;
  height: 1px;
  background: rgba(0,0,0,0.3);
  margin-bottom: 36px;
}

.uoc-sigv3-stats {
  display: flex;
  align-items: center;
  margin-bottom: 52px;
}
.uoc-sigv3-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px;
}
.uoc-sigv3-stat:first-child { padding-left: 0; }
.uoc-sigv3-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}
.uoc-sigv3-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.uoc-sigv3-stat-plus {
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 300;
}
.uoc-sigv3-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

.uoc-sigv3-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.uoc-sigv3-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--color-accent);
  color: #0A0A0A;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-sigv3-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.uoc-sigv3-btn svg { transition: transform 0.3s; }
.uoc-sigv3-btn:hover svg { transform: translateX(4px); }

.uoc-sigv3-btn-ghost {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}
.uoc-sigv3-btn-ghost:hover { color: var(--color-accent); }
.uoc-sigv3-btn-arrow { transition: transform 0.3s; display: inline-block; }
.uoc-sigv3-btn-ghost:hover .uoc-sigv3-btn-arrow { transform: translateX(4px); }

/* ─── RIGHT: VISUAL ─── */
.uoc-sigv3-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 60px 0;
}

.uoc-sigv3-img-main {
  width: 100%;
  max-width: 420px;
  height: 600px;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 50px 120px rgba(0,0,0,0.5), 0 0 150px rgba(0,0,0,0.04);
}
.uoc-sigv3-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.uoc-sigv3-img-main:hover img { transform: scale(1.06); }
.uoc-sigv3-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,10,0.3) 100%);
  pointer-events: none;
}

.uoc-sigv3-badge {
  position: absolute; top: 50px; right: 10px;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.uoc-sigv3-badge-ring { position: absolute; inset: 0; animation: badgeRotate 25s linear infinite; }
.uoc-sigv3-badge-svg { width: 100%; height: 100%; }
.uoc-sigv3-badge-text { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; fill: var(--color-accent); }
@keyframes badgeRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.uoc-sigv3-badge-center { position: relative; z-index: 2; text-align: center; font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--color-accent); line-height: 1.2; }

.uoc-sigv3-ship-card {
  position: absolute; bottom: 80px; left: 10px;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.uoc-sigv3-ship-icon {
  width: 44px; height: 44px; border-radius: 12px; background: #f0fdf4;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.uoc-sigv3-ship-icon svg { color: #16a34a; }
.uoc-sigv3-ship-title { display: block; font-size: 12px; font-weight: 700; color: #0A0A0A; }
.uoc-sigv3-ship-sub { display: block; font-size: 10px; color: #999; margin-top: 2px; }

/* ─── ETHOS & CRAFTSMANSHIP — PREMIUM ─── */
.uoc-ethos {
  padding: 120px 0;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}
.uoc-ethos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}

.uoc-ethos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Visual */
.uoc-ethos-visual {
  position: relative;
}
.uoc-ethos-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  position: relative;
}
.uoc-ethos-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
}
.uoc-ethos-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
  transition: transform 1s cubic-bezier(0.16,1,0.3,1);
}
.uoc-ethos-img-main:hover img { transform: scale(1.04); }

.uoc-ethos-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--color-bg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.uoc-ethos-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.uoc-ethos-badge {
  position: absolute;
  top: 36px;
  left: -24px;
  background: var(--color-accent);
  color: #0A0A0A;
  padding: 22px 20px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.uoc-ethos-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
.uoc-ethos-badge-text {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Text */
.uoc-ethos-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.uoc-ethos-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.uoc-ethos-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-main);
}
.uoc-ethos-title em {
  font-style: italic;
  color: var(--color-accent);
}

.uoc-ethos-body {
  font-size: 15px;
  color: var(--color-text-body);
  line-height: 1.9;
  margin: 28px 0 40px;
}
.uoc-ethos-body strong { color: var(--color-text-main); font-weight: 600; }

.uoc-ethos-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.uoc-ethos-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.uoc-ethos-feat:hover {
  border-color: rgba(0,0,0,0.3);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.uoc-ethos-feat-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.uoc-ethos-feat-info h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.uoc-ethos-feat-info p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.uoc-ethos-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--color-text-main);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.uoc-ethos-btn:hover {
  background: var(--color-accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}
.uoc-ethos-btn svg { transition: transform 0.3s; }
.uoc-ethos-btn:hover svg { transform: translateX(4px); }

/* ─── TESTIMONIALS ─── */
.lux-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lux-testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 40px 32px;
  position: relative;
  transition: all 0.5s ease;
  text-align: center;
}
.lux-testimonial:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.lux-testimonial-featured { border-color: rgba(10,10,10,0.15); }
.lux-testi-stars { font-size: 12px; color: var(--color-accent); letter-spacing: 4px; margin-bottom: 20px; }
.lux-testi-text { font-size: 14px; color: var(--color-text-body); line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.lux-testi-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lux-testi-name { font-size: 11px; font-weight: 700; color: var(--color-text-main); text-transform: uppercase; letter-spacing: 0.1em; }
.lux-testi-verified { font-size: 10px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.lux-testi-featured-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 9px; font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── INSTAGRAM GRID ─── */
.lux-insta-section { padding: 0; }
.lux-insta-header { text-align: center; margin-bottom: 40px; }
.lux-insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.lux-insta-item { aspect-ratio: 1; position: relative; overflow: hidden; cursor: pointer; }
.lux-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); display: block; }
.lux-insta-item:hover img { transform: scale(1.05); filter: brightness(0.9); }
.lux-insta-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.35); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s ease; }
.lux-insta-item:hover .lux-insta-overlay { opacity: 1; }

/* ─── NEWSLETTER ─── */
.lux-newsletter {
  background: var(--color-text-main);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 0;
}
.lux-nl-inner { position: relative; z-index: 2; text-align: center; max-width: 600px; margin: 0 auto; }
.lux-nl-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
}
.lux-nl-sub { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 40px; }
.lux-nl-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  transition: border-color 0.3s ease;
}
.lux-nl-form:focus-within { border-color: var(--color-accent); }
.lux-nl-input {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  color: #fff;
  font-family: var(--font-body);
}
.lux-nl-input::placeholder { color: rgba(255,255,255,0.35); }
.lux-nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-text-main);
  font-size: 11px;
  font-weight: 700;
  padding: 0 32px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lux-nl-btn:hover { background: #E5C84B; }
.lux-nl-note { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── TOAST ─── */
.lux-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-text-main);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.lux-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   HOMEPAGE FULL RESPONSIVE — 1280 / 1024 / 768 / 480
   ═══════════════════════════════════════════ */

/* ─── 1440px — iPad Pro landscape / large tablets ─── */
@media (max-width: 1440px) {
  .lux-hero { min-height: auto; }
}

/* ─── 1280px ─── */
@media (max-width: 1280px) {
  .lux-product-grid { grid-template-columns: repeat(3, 1fr); }
  .lux-hero-images { height: 480px; }
  .lux-hero-img-center img { width: 300px; height: 420px; }
  .lux-arch-frame { width: 200px; height: 300px; }
}

/* ─── 1024px — iPad Pro ─── */
@media (max-width: 1024px) {
  .lux-hero { padding: 50px 0 32px; min-height: auto; }
  .lux-hero-wrapper { padding: 0 48px; }
  .lux-hero-title { font-size: clamp(44px, 6vw, 68px); margin-bottom: 24px; }
  .lux-hero-images { height: 380px; padding: 0 16px; }
  .lux-arch-frame { width: 160px; height: 260px; }
  .lux-hero-img-center img { width: 240px; height: 340px; }
  .lux-arch-bg { width: 220px; height: 300px; }
  .lux-hero-bottom { margin-top: 16px; }
  .lux-collections { padding: 60px 0; }
  .lux-collections-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .lux-col-img { aspect-ratio: 3/4; }
  .lux-section { padding: 80px 0; }
  .lux-product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .lux-testimonials { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .lux-ethos-grid { gap: 60px; }
  .lux-insta-grid { grid-template-columns: repeat(3, 1fr); }
  .lux-trending-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Collections 2-col */
  .lux-collections-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── 768px ─── */
@media (max-width: 768px) {
  .lux-hero { padding: 36px 0 24px; min-height: auto; }
  .lux-hero-wrapper { padding: 0 20px; }
  .lux-hero-title { font-size: clamp(32px, 9vw, 48px); margin-bottom: 24px; }
  .lux-hero-images {
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: 0;
    padding: 0;
    position: relative;
    flex-wrap: nowrap;
  }
  .lux-hero-img { position: relative; bottom: auto; flex-shrink: 0; }
  .lux-hero-img-center { z-index: 3; margin: 0 -20px; }
  .lux-arch-frame { width: 110px; height: 180px; border-radius: 90px 90px 0 0; }
  .lux-hero-img-center img { width: 160px; height: 240px; }
  .lux-arch-bg { width: 140px; height: 220px; border-radius: 90px 90px 0 0; }
  .lux-deco-squig { display: none; }
  .lux-hero-bottom {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
  }
  .lux-hero-desc { max-width: 100%; order: 3; flex-basis: 100%; }
  .lux-hero-dots { order: 1; }
  .lux-hero-right-area { order: 2; }
  .lux-hero-stat { order: 4; }
  .lux-hero-stat .lux-stat-num { font-size: 26px; }

  /* Collections */
  .lux-collections { padding: 48px 0; }
  .lux-collections-grid { grid-template-columns: 1fr; gap: 24px; }
  .lux-col-img { aspect-ratio: 4/5; }

  /* Sections */
  .lux-section { padding: 64px 0; }
  .lux-section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lux-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Testimonials */
  .lux-testimonials { grid-template-columns: 1fr; gap: 16px; }

  /* Ethos */
  .lux-ethos-grid { grid-template-columns: 1fr; gap: 40px; }
  .lux-ethos-visual { max-width: 500px; margin: 0 auto; }
  .lux-ethos-img-accent { width: 140px; height: 140px; right: -10px; bottom: -12px; }
  .lux-ethos-badge { left: 12px; top: 12px; padding: 14px 12px; }
  .lux-ethos-badge-num { font-size: 24px; }

  /* Insta */
  .lux-insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .lux-nl-form { flex-direction: column; }
  .lux-nl-input { border: 1px solid rgba(255,255,255,0.15); margin-bottom: 10px; }
  .lux-nl-btn { justify-content: center; padding: 14px 36px; }

  /* Shop by Category */
  .uoc-shop { padding: 60px 0 48px; }
  .uoc-shop-head { margin-bottom: 36px; }
  .uoc-shop-title { font-size: clamp(32px, 8vw, 48px); }
  .uoc-shop-item { grid-template-columns: 32px 1fr auto; gap: 16px; padding: 18px 0; }
  .uoc-shop-item-img { display: none; }
  .uoc-shop-item-text { font-size: clamp(18px, 5vw, 28px); }
  .uoc-shop-item-arrow { width: 40px; height: 40px; }
  .uoc-shop-item-arrow svg { width: 16px; height: 16px; }

  /* Trending */
  .uoc-trending { padding: 56px 0 44px; }
  .uoc-trending-head { grid-template-columns: 1fr; gap: 16px; text-align: center; margin-bottom: 36px; }
  .uoc-trending-head-right p { max-width: 100%; margin: 0 auto 16px; }
  .uoc-trending-eyebrow { justify-content: center; }
  .uoc-trending-title { font-size: clamp(32px, 8vw, 48px); }
  .uoc-trending-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .uoc-t-card-name { font-size: 14px; }
  .uoc-t-card-info { padding: 12px 2px 0; }
  .uoc-t-price-now { font-size: 13px; }
  .uoc-trending-explore { width: 100%; justify-content: center; padding: 14px; }

  /* Signature */
  .uoc-sigv3-grid { grid-template-columns: 1fr; }
  .uoc-sigv3-content { padding: 56px 28px 32px; text-align: center; align-items: center; }
  .uoc-sigv3-tag { justify-content: center; }
  .uoc-sigv3-title-sm { font-size: clamp(22px, 6vw, 30px); }
  .uoc-sigv3-title-lg { font-size: clamp(40px, 10vw, 60px); }
  .uoc-sigv3-desc { max-width: 100%; text-align: center; }
  .uoc-sigv3-quote { justify-content: center; }
  .uoc-sigv3-stats { justify-content: center; }
  .uoc-sigv3-actions { justify-content: center; flex-wrap: wrap; }
  .uoc-sigv3-visual { padding: 20px 28px 56px; justify-content: center; }
  .uoc-sigv3-img-main { height: 400px; max-width: 300px; }
  .uoc-sigv3-ship-card { bottom: 16px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .uoc-sigv3-bg-text { display: none; }
}

/* ─── 480px ─── */
@media (max-width: 480px) {
  .lux-hero { padding: 24px 0 16px; }
  .lux-hero-wrapper { padding: 0 14px; }
  .lux-hero-title { font-size: 28px; margin-bottom: 20px; }
  .lux-hero-images { gap: 0; }
  .lux-arch-frame { width: 90px; height: 140px; border-radius: 60px 60px 0 0; }
  .lux-hero-img-center img { width: 120px; height: 180px; }
  .lux-arch-bg { width: 105px; height: 165px; border-radius: 60px 60px 0 0; }
  .lux-hero-img-center { margin: 0 -12px; }
  .lux-hero-desc p { font-size: 12px; }
  .lux-arrow-btn { width: 40px; height: 40px; }

  .lux-collections { padding: 40px 0; }
  .lux-collections-grid { grid-template-columns: 1fr; gap: 16px; }

  .lux-section { padding: 48px 0; }
  .lux-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .lux-testimonials { grid-template-columns: 1fr; }
  .lux-insta-grid { grid-template-columns: 1fr 1fr; }

  /* Shop by Category */
  .uoc-shop { padding: 48px 0 32px; }
  .uoc-shop-item { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; }
  .uoc-shop-item-num { display: none; }
  .uoc-shop-item-text { font-size: 18px; }
  .uoc-shop-explore { width: 100%; justify-content: center; padding: 14px; }

  /* Trending */
  .uoc-trending { padding: 44px 0 32px; }
  .uoc-trending-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .uoc-t-card-img { aspect-ratio: 3/4; }
  .uoc-t-card-name { font-size: 12px; }
  .uoc-t-card-cat { font-size: 8px; }
  .uoc-trending-bottom { margin-top: 36px; }
  .uoc-trending-explore { width: 100%; justify-content: center; padding: 14px; }

  /* Signature */
  .uoc-sigv3-content { padding: 44px 20px 24px; }
  .uoc-sigv3-stats { gap: 0; }
  .uoc-sigv3-stat { padding: 0 14px; }
  .uoc-sigv3-stat-num { font-size: 22px; }
  .uoc-sigv3-img-main { height: 340px; max-width: 260px; }
  .uoc-sigv3-badge { width: 76px; height: 76px; top: 24px; }
  .uoc-sigv3-btn { width: 100%; justify-content: center; }

  /* Ethos */
  .uoc-ethos-img-accent { display: none; }
  .uoc-ethos-badge { left: 8px; top: 8px; padding: 10px; }
  .uoc-ethos-feat { padding: 14px; gap: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================= CART PAGE ================= */
.cart-page {
  padding: 40px 0 100px;
}

.cart-header {
  margin-bottom: 40px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 1024px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* Empty Cart */
.cart-empty-icon {
  color: var(--color-text-muted);
  opacity: 0.3;
  margin-bottom: 24px;
}

/* Cart Items Column */
.cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-item-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 24px;
  border-bottom: none;
  transition: all 0.3s ease;
  animation: cartItemIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(12px);
}
.cart-item-card:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.cart-item-card:last-child { border-radius: 0 0 var(--radius-lg) var(--radius-lg); border-bottom: 1px solid var(--color-border); }
.cart-item-card:only-child { border-radius: var(--radius-lg); border-bottom: 1px solid var(--color-border); }

@keyframes cartItemIn {
  to { opacity: 1; transform: translateY(0); }
}

.cart-item-card:hover { background: #FDFCFA; }

.cart-item-img {
  width: 140px;
  height: 170px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F4F4F0;
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-item-card:hover .cart-item-img img { transform: scale(1.05); }

.cart-item-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.cart-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cart-item-name:hover { color: var(--color-accent); }

.cart-item-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cart-item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-main);
  white-space: nowrap;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-form {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-body);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.qty-btn:hover { background: var(--color-text-main); color: #FFFFFF; }

.qty-input {
  width: 52px;
  height: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.remove-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.remove-btn:hover { background: #FEF2F2; border-color: #FECACA; color: #DC2626; transform: rotate(90deg); }

.cart-item-total {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 120px;
}

.cart-total-label {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.cart-total-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
}

/* Cart Summary Column */
.cart-summary-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.cart-summary-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: -0.02em;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--color-text-body);
}

.text-muted {
  color: var(--color-text-muted);
  font-size: 13px;
}

.cart-summary-divider {
  height: 1px;
  background: var(--color-border);
  margin: 12px 0 18px;
}

.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 8px;
}

/* Cart Trust Badges */
.cart-trust {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-body);
}

.trust-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Responsive Cart */
@media (max-width: 768px) {
  .cart-page { padding: 24px 0 80px; }
  .cart-item-card {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 16px;
  }
  .cart-item-img { width: 100px; height: 120px; }
  .cart-item-total {
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
  }
  .cart-summary-col { position: static; }
}

/* =============================================
   Login / Register — Auth Pages
   ============================================= */

.login-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-8);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder {
  color: var(--color-text-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full-width {
  grid-column: 1 / -1;
}

.form-group .required {
  color: #DC2626;
  font-weight: 700;
}

.btn-full {
  width: 100%;
  margin-top: 8px;
}

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.alert-error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.alert-success {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
}

/* Auth responsive */
@media (max-width: 480px) {
  .login-card {
    padding: 32px 24px;
    border-radius: var(--radius-md);
  }
}

/* ═══════════════════════════════════════════
   HOMEPAGE MOBILE FIXES — 320px / 360px / 375px
   ═══════════════════════════════════════════ */

/* Prevent horizontal overflow globally on mobile */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

/* ─── 375px — Small phones ─── */
@media (max-width: 375px) {
  /* Hero: reduce min-height so content isn't pushed way down */
  .lux-hero {
    min-height: auto;
    padding: 20px 0 16px;
  }

  .lux-hero-wrapper {
    padding: 0 12px;
    overflow: hidden;
  }

  .lux-hero-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  /* Hide side images on very small screens, keep center only */
  .lux-hero-images {
    gap: 0;
    height: auto;
    min-height: 180px;
  }
  .lux-hero-img-left {
    display: none;
  }
  .lux-hero-img-right {
    display: none;
  }
  .lux-hero-img-center {
    margin: 0;
  }
  .lux-hero-img-center img {
    width: 140px;
    height: 200px;
  }
  .lux-arch-bg {
    width: 120px;
    height: 190px;
  }

  .lux-hero-bottom {
    margin-top: 16px;
    gap: 10px;
  }
  .lux-hero-desc p {
    font-size: 11px;
  }
  .lux-hero-stat .lux-stat-num {
    font-size: 22px;
  }

  /* Collections */
  .lux-collections {
    padding: 32px 0;
  }
  .lux-col-card {
    border-radius: 12px;
  }
  .lux-col-info h3 {
    font-size: 18px;
  }

  /* Shop by Category */
  .uoc-shop {
    padding: 36px 0 24px;
  }
  .uoc-shop-head {
    margin-bottom: 24px;
  }
  .uoc-shop-title {
    font-size: 28px;
  }
  .uoc-shop-item {
    padding: 14px 0;
    gap: 10px;
  }
  .uoc-shop-item-text {
    font-size: 16px;
  }
  .uoc-shop-item-tag {
    font-size: 10px;
  }

  /* Trending */
  .uoc-trending {
    padding: 36px 0 24px;
  }
  .uoc-trending-head {
    margin-bottom: 24px;
  }
  .uoc-trending-title {
    font-size: 28px;
  }
  .uoc-trending-grid {
    gap: 8px;
  }
  .uoc-t-card-info {
    padding: 8px 2px 0;
  }
  .uoc-t-card-name {
    font-size: 11px;
    line-height: 1.3;
  }
  .uoc-t-card-cat {
    font-size: 7px;
  }
  .uoc-t-price-now {
    font-size: 12px;
  }
  .uoc-t-price-was {
    font-size: 10px;
  }

  /* Signature Collection */
  .uoc-sigv3-content {
    padding: 36px 16px 20px;
  }
  .uoc-sigv3-title-sm {
    font-size: 18px;
  }
  .uoc-sigv3-title-lg {
    font-size: 32px;
  }
  .uoc-sigv3-desc {
    font-size: 13px;
  }
  .uoc-sigv3-stats {
    gap: 8px;
  }
  .uoc-sigv3-stat {
    padding: 0 10px;
  }
  .uoc-sigv3-stat-num {
    font-size: 20px;
  }
  .uoc-sigv3-stat-label {
    font-size: 10px;
  }
  .uoc-sigv3-img-main {
    height: 280px;
    max-width: 220px;
  }
  .uoc-sigv3-badge {
    width: 64px;
    height: 64px;
  }
  .uoc-sigv3-badge-center {
    font-size: 10px;
  }
  .uoc-sigv3-btn {
    font-size: 13px;
    padding: 12px 20px;
  }

  /* Ethos */
  .uoc-ethos {
    padding: 40px 0;
  }
  .uoc-ethos-title {
    font-size: 24px;
  }
  .uoc-ethos-body {
    font-size: 13px;
  }
  .uoc-ethos-feat {
    padding: 12px;
    gap: 10px;
  }
  .uoc-ethos-feat h4 {
    font-size: 13px;
  }
  .uoc-ethos-feat p {
    font-size: 12px;
  }

  /* Testimonials */
  .lux-section {
    padding: 40px 0;
  }
  .lux-section-title {
    font-size: 24px;
  }
  .lux-testimonials {
    gap: 12px;
  }
  .lux-testimonial {
    padding: 20px 16px;
  }
  .lux-testi-text {
    font-size: 13px;
    line-height: 1.6;
  }
  .lux-testi-name {
    font-size: 13px;
  }

  /* Instagram */
  .lux-insta-section {
    padding: 40px 0 32px;
  }
  .lux-insta-grid {
    gap: 4px;
  }

  /* Newsletter */
  .lux-newsletter {
    padding: 40px 0;
  }
  .lux-nl-title {
    font-size: 22px;
  }
  .lux-nl-sub {
    font-size: 13px;
  }
  .lux-nl-input {
    padding: 12px 16px;
    font-size: 13px;
  }
  .lux-nl-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ─── 320px — Very small phones ─── */
@media (max-width: 320px) {
  .lux-hero-title {
    font-size: 22px;
  }
  .lux-hero-img-center img {
    width: 120px;
    height: 170px;
  }
  .lux-arch-bg {
    width: 100px;
    height: 160px;
  }
  .lux-hero-bottom {
    margin-top: 12px;
  }
  .lux-hero-stat .lux-stat-num {
    font-size: 20px;
  }
  .lux-hero-stat .lux-stat-text {
    font-size: 11px;
  }

  .uoc-shop-title {
    font-size: 24px;
  }
  .uoc-trending-title {
    font-size: 24px;
  }
  .uoc-sigv3-title-lg {
    font-size: 28px;
  }
  .lux-section-title {
    font-size: 20px;
  }
}

/* =============================================================
   UOC — SNITCH-STYLE REDESIGN
   Clean, minimal, black & white
   ============================================================= */

:root {
  --uoc-font: 'Inter', system-ui, -apple-system, sans-serif;
  --uoc-serif: 'Playfair Display', Georgia, serif;
  --uoc-black: #000000;
  --uoc-white: #ffffff;
  --uoc-gray-50: #fafafa;
  --uoc-gray-100: #f5f5f5;
  --uoc-gray-200: #e5e5e5;
  --uoc-gray-300: #d4d4d4;
  --uoc-gray-400: #a3a3a3;
  --uoc-gray-500: #737373;
  --uoc-gray-600: #525252;
  --uoc-gray-700: #404040;
  --uoc-gray-800: #262626;
  --uoc-gray-900: #171717;
  --uoc-radius: 0px;
  --uoc-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Announcement Bar ─── */
.uoc-announcement {
  background: var(--uoc-black);
  color: var(--uoc-white);
  text-align: center;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.uoc-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.uoc-announcement-sep {
  opacity: 0.3;
}

/* ─── Header ─── */
.uoc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--uoc-white);
  border-bottom: 1px solid var(--uoc-gray-200);
  transition: box-shadow 0.3s ease;
}
.uoc-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.uoc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* ─── Left: hamburger + nav links ─── */
.uoc-header-left {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

/* Hamburger */
.uoc-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.uoc-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--uoc-black);
  transition: var(--uoc-transition);
}
.uoc-hamburger:hover span { background: #555; }

/* Nav links (desktop) */
.uoc-header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.uoc-nav-link {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
  text-decoration: none;
  padding: 6px 12px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.uoc-nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--uoc-black);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.uoc-nav-link:hover { color: var(--uoc-black); }
.uoc-nav-link:hover::after,
.uoc-nav-link.active::after { transform: scaleX(1); }
.uoc-nav-link.active { color: var(--uoc-black); }
.uoc-nav-sale { color: #e11d48 !important; }
.uoc-nav-sale::after { background: #e11d48; }

/* ─── Center: Logo ─── */
.uoc-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}
.uoc-logo img { display: block; }

/* ─── Right: search + icons ─── */
.uoc-header-right {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}

/* Search bar */
.uoc-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F5F5F5;
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  padding: 7px 12px;
  width: 220px;
  transition: all 0.2s;
  margin-right: 6px;
}
.uoc-search-bar:focus-within {
  background: #fff;
  border-color: #222;
  width: 260px;
}
.uoc-search-bar svg { flex-shrink: 0; color: #888; }
.uoc-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 12.5px;
  color: #222;
  font-family: var(--uoc-sans);
  min-width: 0;
}
.uoc-search-bar input::placeholder { color: #AAA; }

/* Mobile search icon — hidden on desktop */
.uoc-icon-search-mobile { display: none; }

/* Header Icons */
.uoc-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #333;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.uoc-header-icon:hover {
  background: #F5F5F5;
  color: var(--uoc-black);
}

/* Badge */
.uoc-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: var(--uoc-black);
  color: var(--uoc-white);
  font-size: 9px;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
  border: 1.5px solid #fff;
}
/* ─── Responsive ─── */
@media (max-width: 900px) {
  .uoc-header-nav { display: none; }
  .uoc-search-bar { display: none; }
  .uoc-icon-search-mobile { display: inline-flex; }
  .uoc-header-icon[title="Account"],
  .uoc-header-icon[title="Sign In"] { display: none; }
}
@media (max-width: 480px) {
  .uoc-header-inner { padding: 0 12px; }
}

/* ─── Sidebar Drawer — The Souled Store Style ─── */
.uoc-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}
.uoc-drawer.open {
  display: block;
}
.uoc-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}
.uoc-drawer-body {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  animation: drawerSlideIn 0.35s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
  box-shadow: 4px 0 30px rgba(0,0,0,0.15);
}
@keyframes drawerSlideIn {
  from { transform: translateX(-100%); opacity: 0.5; }
  to { transform: translateX(0); opacity: 1; }
}

/* ── Drawer Top: Logo + Login + Close ── */
.drawer-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #F0F0F0;
  flex-shrink: 0;
}
.drawer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.drawer-login-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1.5px solid #222;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.drawer-login-btn:hover {
  background: #222;
  color: #FFF;
}
.drawer-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.drawer-close-btn:hover {
  background: #F3F3F3;
  color: #111;
}

/* ── Promo Banner ── */
.drawer-promo {
  background: linear-gradient(135deg, #0D9488, #0F766E);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.drawer-promo-icons {
  display: flex;
  gap: 6px;
  opacity: 0.85;
}

/* ── Department Tabs ── */
.drawer-tabs {
  display: flex;
  border-bottom: 2px solid #F0F0F0;
  flex-shrink: 0;
  background: #FAFAFA;
}
.drawer-tab {
  flex: 1;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #888;
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.drawer-tab:hover {
  color: #333;
}
.drawer-tab.active {
  color: #111;
  border-bottom-color: #111;
}

/* ── Scrollable Content ── */
.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.drawer-scroll::-webkit-scrollbar {
  width: 3px;
}
.drawer-scroll::-webkit-scrollbar-thumb {
  background: #DDD;
  border-radius: 10px;
}

/* ── Category Image Carousel ── */
.drawer-carousel {
  padding: 16px 0 8px;
  position: relative;
}
.drawer-carousel-track {
  display: flex;
  gap: 12px;
  padding: 0 18px 0 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.drawer-carousel-track::-webkit-scrollbar {
  display: none;
}
.drawer-carousel-card {
  flex-shrink: 0;
  width: 100px;
  text-decoration: none;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.drawer-carousel-card img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  object-fit: contain;
  border: 2px solid #F0F0F0;
  transition: border-color 0.3s ease;
}
.drawer-carousel-card:hover img {
  border-color: #222;
}
.drawer-carousel-card span {
  font-size: 11px;
  font-weight: 600;
  color: #444;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}
.drawer-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px 0 4px;
}
.drawer-carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DDD;
  transition: all 0.3s ease;
}
.drawer-carousel-dots .dot.active {
  background: #222;
  width: 16px;
  border-radius: 10px;
}

/* ── Accordion ── */
.drawer-accordion {
  border-top: 1px solid #F0F0F0;
}
.drawer-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  text-align: left;
  transition: background 0.2s ease;
}
.drawer-accordion-header:hover {
  background: #FAFAFA;
}
.drawer-accordion-header .chevron {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  color: #888;
}
.drawer-accordion-header.open .chevron {
  transform: rotate(180deg);
}
.drawer-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}
.drawer-accordion-body.open {
  max-height: 600px;
}

/* ── Section Label ── */
.drawer-section-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  padding: 0 18px 8px;
  letter-spacing: 0.02em;
}

/* ── Category Grid ── */
.drawer-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 4px 14px 16px;
}
.drawer-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 6px 2px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.drawer-cat-item:hover {
  background: #F5F5F5;
}
.drawer-cat-item img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  border: 1px solid #F0F0F0;
}
.drawer-cat-item:hover img {
  border-color: #ccc;
}
.drawer-cat-item span {
  font-size: 10.5px;
  font-weight: 600;
  color: #555;
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}

/* ── Track My Order ── */
.drawer-track-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  transition: background 0.2s ease;
}
.drawer-track-link:hover {
  background: #F8F8F8;
}
.drawer-track-link svg {
  color: #555;
}

/* ── More Links List ── */
.drawer-links-list {
  display: flex;
  flex-direction: column;
  padding: 4px 0 8px;
}
.drawer-links-list a {
  display: block;
  padding: 11px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: all 0.2s ease;
}
.drawer-links-list a:hover {
  background: #F5F5F5;
  color: #111;
  padding-left: 24px;
}

/* ─── Search Modal ─── */
.uoc-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}
.uoc-search-modal.active {
  display: flex;
}
.uoc-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.uoc-search-card {
  position: relative;
  z-index: 10;
  background: var(--uoc-white);
  max-width: 600px;
  width: 90%;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.uoc-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--uoc-gray-200);
  padding-bottom: 12px;
}
.uoc-search-input-wrap input {
  flex: 1;
  font-size: 16px;
  color: var(--uoc-black);
  outline: none;
  border: none;
  font-family: var(--uoc-font);
}
.uoc-search-close {
  cursor: pointer;
  color: var(--uoc-gray-400);
  background: none;
  border: none;
  transition: color 0.2s;
}
.uoc-search-close:hover {
  color: var(--uoc-black);
}
.uoc-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  color: var(--uoc-gray-500);
}
.uoc-search-tags a {
  background: var(--uoc-gray-100);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--uoc-gray-700);
  text-decoration: none;
  transition: var(--uoc-transition);
}
.uoc-search-tags a:hover {
  background: var(--uoc-black);
  color: var(--uoc-white);
}
.uoc-search-results {
  margin-top: 12px;
}

/* ─── HERO ─── */
.uoc-hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.uoc-hero-slider {
  position: absolute;
  inset: 0;
}
.uoc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.uoc-hero-slide.active {
  opacity: 1;
}
.uoc-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uoc-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  color: var(--uoc-white);
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  width: 100%;
}
.uoc-hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--uoc-white);
  color: var(--uoc-black);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.uoc-hero-content h1 {
  font-family: var(--uoc-serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.uoc-hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 440px;
}
.uoc-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── SHOP BY CATEGORY (SNITCH Style) ─── */
.shop-cat-section {
  padding: 60px 0 40px;
  background: #fff;
}
.shop-cat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.shop-cat-arrows {
  display: flex;
  gap: 8px;
}
.shop-cat-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #333;
}
.shop-cat-arrow:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}
.shop-cat-title {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 4px;
}
.shop-cat-title strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0;
  line-height: 1.1;
}
.shop-cat-underline {
  width: 200px;
  height: 3px;
  background: #e11d48;
  margin: 14px 0 36px;
  border-radius: 2px;
}
.shop-cat-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.shop-cat-scroll::-webkit-scrollbar {
  display: none;
}
.shop-cat-item {
  flex: 0 0 220px;
  text-decoration: none;
  color: inherit;
  scroll-snap-align: start;
}
.shop-cat-item-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 20px;
  text-align: left;
}
.shop-cat-item-img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.3s;
}
.shop-cat-item:hover .shop-cat-item-img {
  transform: scale(1.03);
}
@media(max-width:768px) {
  .shop-cat-item { flex: 0 0 160px; }
  .shop-cat-item-img { height: 200px; }
  .shop-cat-title strong { font-size: 26px; }
  .shop-cat-arrows { display: none; }
}
@media(max-width:480px) {
  .shop-cat-item { flex: 0 0 140px; }
  .shop-cat-item-img { height: 170px; }
}
.dept-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  background: #1a1a1a;
  aspect-ratio: 2146 / 732;
  max-height: 400px;
}
.dept-hero-slider {
  position: absolute;
  inset: 0;
}
.dept-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.dept-hero-slide.active {
  opacity: 1;
}
.dept-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.dept-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.dept-hero-left {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}
.dept-hero-left h1 {
  font-family: var(--uoc-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.dept-hero-left h1 span {
  display: block;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
}
.dept-hero-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 28px;
  max-width: 320px;
}
.dept-hero-left .dept-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.dept-hero-right {
  flex: 0 0 60%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 100%;
}
.dept-hero-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  background: #222;
}
.dept-hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dept-hero-card:hover img {
  transform: scale(1.05);
}
.dept-hero-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.dept-hero-bottom {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  background: #fff;
}
.dept-hero-bottom .dept-hero-arrow {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #333;
}
.dept-hero-bottom .dept-hero-arrow:hover {
  background: #e5e7eb;
}
.dept-hero-arrows {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.dept-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  color: #fff;
  flex-shrink: 0;
  pointer-events: all;
}
.dept-hero-arrow:hover {
  background: rgba(255,255,255,0.35);
}
.dept-hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dept-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dept-hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}
@media(max-width:1024px) {
  .dept-hero { max-height: 340px; }
  .dept-hero-left { flex: 0 0 45%; }
  .dept-hero-right { flex: 0 0 55%; }
}
@media(max-width:768px) {
  .dept-hero {
    max-height: 280px;
  }
  .dept-hero-content {
    display: none;
  }
  .dept-hero-arrows { display: none; }
}
@media(max-width:480px) {
  .dept-hero {
    max-height: 200px;
  }
}

/* Buttons */
.uoc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid var(--uoc-black);
  cursor: pointer;
  transition: var(--uoc-transition);
  font-family: var(--uoc-font);
}
.uoc-btn-dark {
  background: var(--uoc-black);
  color: var(--uoc-white);
}
.uoc-btn-dark:hover {
  background: var(--uoc-gray-800);
  border-color: var(--uoc-gray-800);
}
.uoc-btn-outline {
  background: transparent;
  color: var(--uoc-white);
  border-color: rgba(255,255,255,0.5);
}
.uoc-btn-outline:hover {
  background: var(--uoc-white);
  color: var(--uoc-black);
  border-color: var(--uoc-white);
}
.uoc-btn-white {
  background: var(--uoc-white);
  color: var(--uoc-black);
  border-color: var(--uoc-white);
}
.uoc-btn-white:hover {
  background: transparent;
  color: var(--uoc-white);
}

/* ─── CATEGORIES ─── */
.uoc-categories {
  padding: 80px 0;
  background: var(--uoc-white);
}
.uoc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.uoc-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.uoc-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.uoc-cat-card:hover img {
  transform: scale(1.06);
}
.uoc-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.uoc-cat-overlay span {
  font-family: var(--uoc-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--uoc-white);
  letter-spacing: 0.02em;
}

/* ─── MARQUEE ─── */
.uoc-marquee {
  background: var(--uoc-gray-50);
  border-top: 1px solid var(--uoc-gray-200);
  border-bottom: 1px solid var(--uoc-gray-200);
  padding: 14px 0;
  overflow: hidden;
}
.uoc-marquee-track {
  display: flex;
  gap: 40px;
  animation: uocMarquee 30s linear infinite;
  width: max-content;
}
.uoc-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes uocMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
.uoc-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.uoc-marquee-dot {
  color: var(--uoc-gray-400);
  font-size: 12px;
}
.uoc-marquee-item span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--uoc-gray-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── PRODUCTS SECTION ─── */
.uoc-products {
  padding: 80px 0;
  background: var(--uoc-white);
}
.uoc-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.uoc-section-header-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.uoc-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--uoc-gray-500);
  margin-bottom: 8px;
}
.uoc-section-title {
  font-family: var(--uoc-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--uoc-black);
  letter-spacing: -0.02em;
  margin: 0;
}
.uoc-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--uoc-gray-600);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--uoc-gray-200);
  transition: var(--uoc-transition);
  white-space: nowrap;
}
.uoc-view-all:hover {
  background: var(--uoc-black);
  color: var(--uoc-white);
  border-color: var(--uoc-black);
}

/* Product Grid */
.uoc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.uoc-product-card {
  position: relative;
}
.uoc-product-link {
  display: block;
  text-decoration: none;
}
.uoc-product-img {
  position: relative;
  overflow: hidden;
  background: var(--uoc-gray-100);
  aspect-ratio: 3/4;
}
.uoc-img-main, .uoc-img-hover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.uoc-img-hover { opacity: 0; }
.uoc-product-card:hover .uoc-img-main { opacity: 0; transform: scale(1.04); }
.uoc-product-card:hover .uoc-img-hover { opacity: 1; transform: scale(1.04); }

/* Badges */
.uoc-product-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.uoc-badge-sale, .uoc-badge-hot {
  display: inline-block;
  padding: 4px 10px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.uoc-badge-sale { background: var(--uoc-black); color: var(--uoc-white); }
.uoc-badge-hot { background: var(--uoc-gray-900); color: var(--uoc-white); }

/* Wishlist */
.uoc-product-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--uoc-gray-500);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--uoc-transition);
  z-index: 3;
}
.uoc-product-card:hover .uoc-product-wish { opacity: 1; transform: scale(1); }
.uoc-product-wish:hover { background: var(--uoc-black); color: var(--uoc-white); }
.uoc-product-wish.active { background: var(--uoc-black); color: var(--uoc-white); opacity: 1; transform: scale(1); }

/* Quick Add */
.uoc-product-quick {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  z-index: 5;
  border-top: 1px solid var(--uoc-gray-200);
}
.uoc-product-card:hover .uoc-product-quick { transform: translateY(0); }
.uoc-product-quick span {
  font-size: 10px;
  font-weight: 700;
  color: var(--uoc-gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.uoc-product-sizes {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 220px;
}
.uoc-product-sizes button {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  background: var(--uoc-gray-100);
  color: var(--uoc-gray-700);
  border: 1px solid var(--uoc-gray-200);
  cursor: pointer;
  transition: var(--uoc-transition);
}
.uoc-product-sizes button:hover {
  background: var(--uoc-black);
  color: var(--uoc-white);
  border-color: var(--uoc-black);
}

/* Product Info */
.uoc-product-info {
  padding: 14px 0 0;
}
.uoc-product-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--uoc-gray-400);
  display: block;
  margin-bottom: 4px;
}
.uoc-product-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--uoc-black);
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uoc-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.uoc-price-now {
  font-size: 15px;
  font-weight: 700;
  color: var(--uoc-black);
}
.uoc-price-was {
  font-size: 13px;
  color: var(--uoc-gray-400);
  text-decoration: line-through;
}

/* Product Card Action Buttons */
.uoc-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.uoc-btn-add-cart,
.uoc-btn-buy-now {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 6px;
}
.uoc-btn-add-cart {
  background: var(--uoc-black);
  color: var(--uoc-white);
}
.uoc-btn-add-cart:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.uoc-btn-buy-now {
  background: #fff;
  color: var(--uoc-black);
  border: 1.5px solid var(--uoc-black);
}
.uoc-btn-buy-now:hover {
  background: var(--uoc-black);
  color: var(--uoc-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Size Picker Modal */
.uoc-sz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,23,20,.52);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.uoc-sz-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.uoc-sz-modal {
  position: fixed;
  z-index: 9998;
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: min(430px, calc(100% - 32px));
  transform: translate(-50%, -46%);
  background: #fff;
  border: 1px solid #222;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .35s cubic-bezier(.22,1,.36,1);
  max-height: none;
  overflow: hidden;
  padding: 0;
}
.uoc-sz-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.uoc-sz-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e2dc;
}
.uoc-sz-title {
  font-size: 25px;
  font-weight: 400;
  color: #222;
}
.uoc-sz-close {
  width: 34px;
  height: 34px;
  border-radius: 0;
  border: 1px solid #e5e2dc;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
.uoc-sz-close:hover {
  background: #f5f5f5;
}
.uoc-sz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px;
}
.uoc-sz-btn {
  min-height: 46px;
  padding: 10px;
  border: 1px solid #e5e2dc;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  color: #222;
  cursor: pointer;
  transition: all 0.2s;
}
.uoc-sz-btn:hover {
  border-color: #222;
  background: #222;
  color: #fff;
}
.uoc-sz-note {
  padding: 0 20px 20px;
  font-size: 11px;
  color: #888;
  text-align: center;
}

/* ─── FULL WIDTH PROMO ─── */
.uoc-promo {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.uoc-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uoc-promo-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  color: var(--uoc-white);
}
.uoc-promo-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--uoc-white);
  color: var(--uoc-black);
  padding: 5px 14px;
  margin-bottom: 16px;
  width: fit-content;
}
.uoc-promo-content h2 {
  font-family: var(--uoc-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 12px;
}
.uoc-promo-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  max-width: 440px;
}

/* ─── TESTIMONIALS ─── */
.uoc-testimonials {
  padding: 80px 0;
  background: var(--uoc-gray-50);
}
.uoc-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.uoc-testi-card {
  background: var(--uoc-white);
  border: 1px solid var(--uoc-gray-200);
  padding: 28px;
  transition: var(--uoc-transition);
}
.uoc-testi-card:hover {
  border-color: var(--uoc-gray-300);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.uoc-testi-featured {
  border-color: var(--uoc-black);
}
.uoc-testi-stars {
  font-size: 14px;
  color: var(--uoc-black);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.uoc-testi-card p {
  font-size: 14px;
  color: var(--uoc-gray-600);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: italic;
}
.uoc-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--uoc-gray-100);
  padding-top: 16px;
}
.uoc-testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--uoc-black);
  color: var(--uoc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}
.uoc-testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--uoc-black);
}
.uoc-testi-author span {
  font-size: 12px;
  color: var(--uoc-gray-500);
}

/* ─── NEWSLETTER ─── */
.uoc-newsletter {
  padding: 80px 0;
  background: var(--uoc-black);
  color: var(--uoc-white);
}
.uoc-newsletter-inner {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.uoc-newsletter-inner h3 {
  font-family: var(--uoc-serif);
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 12px;
}
.uoc-newsletter-inner p {
  font-size: 14px;
  color: var(--uoc-gray-400);
  margin: 0 0 28px;
}
.uoc-newsletter-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
}
.uoc-newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--uoc-gray-700);
  background: transparent;
  color: var(--uoc-white);
  font-size: 14px;
  font-family: var(--uoc-font);
  outline: none;
  transition: border-color 0.2s;
}
.uoc-newsletter-form input::placeholder { color: var(--uoc-gray-500); }
.uoc-newsletter-form input:focus { border-color: var(--uoc-white); }
.uoc-newsletter-form button {
  padding: 14px 24px;
  background: var(--uoc-white);
  color: var(--uoc-black);
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--uoc-transition);
  font-family: var(--uoc-font);
}
.uoc-newsletter-form button:hover {
  background: var(--uoc-gray-200);
}

/* ─── FOOTER ─── */
.uoc-footer {
  background: var(--uoc-white);
  border-top: 1px solid var(--uoc-gray-200);
  padding: 60px 0 30px;
}
.uoc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.uoc-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--uoc-gray-200);
  margin-bottom: 24px;
}
.uoc-footer-logo {
  margin-bottom: 12px;
}
.uoc-footer-logo img {
  height: 70px;
  width: auto;
}
.uoc-footer-brand p {
  font-size: 13px;
  color: var(--uoc-gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 0 20px;
}
.uoc-footer-social {
  display: flex;
  gap: 10px;
}
.uoc-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--uoc-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--uoc-gray-500);
  text-decoration: none;
  transition: var(--uoc-transition);
}
.uoc-footer-social a:hover {
  background: var(--uoc-black);
  border-color: var(--uoc-black);
  color: var(--uoc-white);
}
.uoc-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--uoc-black);
  margin: 0 0 16px;
}
.uoc-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.uoc-footer-col a {
  font-size: 13px;
  color: var(--uoc-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.uoc-footer-col a:hover {
  color: var(--uoc-black);
}
.uoc-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uoc-footer-bottom p {
  font-size: 12px;
  color: var(--uoc-gray-400);
  margin: 0;
}
.uoc-footer-payments {
  display: flex;
  gap: 8px;
}
.uoc-footer-payments span {
  font-size: 10px;
  font-weight: 600;
  color: var(--uoc-gray-400);
  border: 1px solid var(--uoc-gray-200);
  padding: 4px 8px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .uoc-product-grid { grid-template-columns: repeat(3, 1fr); }
  .uoc-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .uoc-cat-grid { grid-template-columns: 1fr 1fr; }
  .uoc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .uoc-testi-grid { grid-template-columns: 1fr; }
  .uoc-promo { height: 360px; }
  .uoc-promo-content { padding: 0 24px; }
  .uoc-hero { height: 70vh; }
  .uoc-hero-content { padding: 40px 20px; }
  .uoc-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .uoc-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .uoc-cat-grid { grid-template-columns: 1fr; gap: 12px; }
  .uoc-cat-card { aspect-ratio: 4/3; }
  .uoc-hero { height: 60vh; }
  .uoc-hero-content h1 { font-size: 32px; }
  .uoc-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .uoc-product-name { font-size: 12px; }
  .uoc-product-cat { font-size: 9px; }
  .uoc-price-now { font-size: 13px; }
  .uoc-price-was { font-size: 11px; }
  .uoc-btn-add-cart, .uoc-btn-buy-now { font-size: 10px; padding: 8px 10px; }
}

