/* ═══════════════════════════════════════════════════════════════════
   ZEVRA — Premium Streetwear E-Commerce
   style.css — Complete Design System
   ═══════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #0B0B0B;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #222222;
  --stone:       #B8B8B8;
  --off-white:   #F5F5F5;
  --purple:      #6D28D9;
  --purple-light:#7C3AED;
  --purple-dark: #5B21B6;
  --purple-glow: rgba(109,40,217,0.25);
  --border:      rgba(255,255,255,0.07);
  --border-hover:rgba(255,255,255,0.14);

  --font-head:  'Space Grotesk', sans-serif;
  --font-body:  'Manrope', 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.6);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.8);
  --shadow-purple: 0 0 40px rgba(109,40,217,0.3);
}

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



#cursorDot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.3s ease, background 0.25s ease;
  will-change: left, top;
}

#cursorRing {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(124, 58, 237, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, opacity 0.3s ease;
  will-change: left, top;
}

/* On hover — ring grows a little, dot turns purple */
body.cursor-hover #cursorDot {
  background: #A78BFA;
  transform: translate(-50%, -50%) scale(1.5);
}
body.cursor-hover #cursorRing {
  width: 44px;
  height: 44px;
  border-color: rgba(167, 139, 250, 0.6);
}

/* On click — subtle squeeze */
body.cursor-click #cursorDot {
  transform: translate(-50%, -50%) scale(0.6);
}
body.cursor-click #cursorRing {
  width: 22px;
  height: 22px;
  border-color: rgba(167, 139, 250, 0.9);
}

/* Off screen */
body.cursor-out #cursorDot,
body.cursor-out #cursorRing {
  opacity: 0;
}





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

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
input, textarea { font-family: var(--font-body); }

/* ─── PAGE LOADER ──────────────────────────────────────────────── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--off-white);
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { opacity: 0.5; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  overflow: hidden;
}

.loader-fill {
  height: 100%;
  background: var(--purple);
  border-radius: 2px;
  animation: loader-progress 1.2s ease forwards;
}

@keyframes loader-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ─── CONTAINER ─────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-up-delay {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--purple);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12) 100%);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--purple-light);
  border-color: var(--purple-light);
  box-shadow: 0 0 24px rgba(109,40,217,0.5), 0 4px 16px rgba(109,40,217,0.3);
  transform: translateY(-1px);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: var(--off-white);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn-outline-sm {
  padding: 10px 20px;
  background: transparent;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-outline-sm:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}

.btn-add-cart {
  width: 100%;
  padding: 13px;
  background: var(--charcoal);
  color: var(--off-white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-add-cart:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(109,40,217,0.35);
}

/* ─── SECTION LAYOUT ────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--off-white);
}

.section-subtitle {
  margin-top: 16px;
  color: var(--stone);
  font-size: 1rem;
  font-weight: 400;
}

.accent-text {
  color: var(--purple-light);
}

/* ─── NAVBAR ────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(11,11,11,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── LOGO IMAGE ─────────────────────────────────────────────────── */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  /* Blend dark logo bg into the navbar seamlessly */
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 4px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled .nav-logo-img {
  /* Once navbar scrolls and gets dark bg, screen mode blends perfectly */
  mix-blend-mode: screen;
}

.nav-logo:hover .nav-logo-img {
  filter: brightness(1.3) contrast(1.1) drop-shadow(0 0 10px rgba(109,40,217,0.7));
  transform: scale(1.04);
}

/* ── FOOTER LOGO IMAGE ──────────────────────────────────────────── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(1.1) contrast(1.05);
  border-radius: 4px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
  filter: brightness(1.3) drop-shadow(0 0 12px rgba(109,40,217,0.6));
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--stone);
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--purple-light);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--off-white); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--stone);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-btn:hover { color: var(--off-white); background: rgba(255,255,255,0.06); }

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background: var(--purple);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-count.visible { transform: scale(1); }

/* Mobile Menu Toggle */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--off-white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Search Bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.search-bar.active { max-height: 80px; }

.search-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-inner input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--off-white);
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 8px 0;
}

.search-inner input::placeholder { color: var(--stone); }

.search-inner button {
  background: transparent;
  color: var(--stone);
  font-size: 1rem;
  padding: 8px;
  transition: var(--transition);
}

.search-inner button:hover { color: var(--off-white); }
.search-inner svg { color: var(--stone); flex-shrink: 0; }

/* ─── CART DRAWER ───────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  background: var(--charcoal);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--border);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-title {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.9rem;
}

.cart-close:hover { background: rgba(255,255,255,0.12); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-track { background: transparent; }
.cart-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 0;
  color: var(--stone);
  text-align: center;
}

.cart-empty svg { opacity: 0.4; }
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--charcoal-2);
  overflow: hidden;
  flex-shrink: 0;
}

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

.cart-item-info { flex: 1; }

.cart-item-name {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--off-white);
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--purple-light);
  font-weight: 600;
}

.cart-item-remove {
  background: transparent;
  color: var(--stone);
  font-size: 0.8rem;
  padding: 4px;
  margin-top: 8px;
  display: block;
  transition: var(--transition);
}

.cart-item-remove:hover { color: #ef4444; }

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: none;
}

.cart-footer.visible { display: block; }

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

#cartTotal { color: var(--purple-light); font-size: 1.1rem; }

.cart-note {
  font-size: 0.72rem;
  color: var(--stone);
  margin-bottom: 16px;
}

/* ─── TOAST ─────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--off-white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border-hover);
  box-shadow: var(--shadow-md);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ─── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(109,40,217,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(109,40,217,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #0B0B0B 0%, #0d0d0d 100%);
}

/* Concrete texture overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--purple-light);
  display: inline-block;
}

.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--purple-light);
  display: inline-block;
  position: relative;
}

.hero-sub {
  color: var(--stone);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.02em;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.hero-img-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: 0 0 80px rgba(109,40,217,0.2), 0 0 120px rgba(109,40,217,0.1);
  pointer-events: none;
}

.hero-float-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}

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

.float-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  font-weight: 600;
}

.float-name {
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--off-white);
  letter-spacing: 0.05em;
}

.float-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple-light);
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--stone);
  font-weight: 500;
}

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

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── MARQUEE ───────────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
}

.marquee-track { display: flex; overflow: hidden; }

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-right: 24px;
  will-change: transform;
}

.marquee-content span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--stone);
  text-transform: uppercase;
}

.marquee-content .sep {
  color: var(--purple);
  font-size: 0.5rem;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── COLLECTIONS — PREMIUM BENTO REDESIGN ──────────────────────── */
.collections-section { background: var(--black); }

/* ── Split Header ── */
.coll-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.coll-header-left { flex-shrink: 0; }
.coll-header-left .section-title { text-align: left; }
.coll-header-left .section-label { text-align: left; }
.coll-header-right {
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 6px;
}
.coll-header-desc {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
  text-align: right;
}

/* ── Bento Layout ── */
.coll-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.coll-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
}

/* ── Shared image wrap ── */
.coll-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.coll-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Shared gradient overlay ── */
.coll-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.5s ease;
}

/* ── Shared top bar (number + tag) ── */
.coll-top-bar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}
.coll-number {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.coll-tag {
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.coll-tag-live {
  background: rgba(109,40,217,0.25);
  border-color: rgba(109,40,217,0.5);
  color: #A78BFA;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,40,217,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(109,40,217,0); }
}

/* ══ FEATURE CARD (big left) ══ */
.coll-feature-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 580px;
  cursor: pointer;
  background: var(--charcoal);
}
.coll-feature-card .coll-gradient {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.05) 70%,
    transparent 100%
  );
}
.coll-feature-card:hover .coll-img-wrap img { transform: scale(1.07); }
.coll-feature-card:hover .coll-number { color: var(--purple-light); }
.coll-feature-card:hover .coll-tag {
  background: rgba(109,40,217,0.3);
  border-color: rgba(109,40,217,0.5);
  color: #C4B5FD;
}

/* Bottom info block */
.coll-bottom-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px;
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.coll-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.coll-category {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--purple-light);
  text-transform: uppercase;
}
.coll-items-count {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}
.coll-feature-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 14px;
}
.coll-desc-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Shop Collection button */
.coll-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.coll-shop-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.coll-shop-btn:hover::before { opacity: 1; }
.coll-shop-btn span, .coll-shop-btn svg { position: relative; z-index: 1; }
.coll-shop-btn:hover {
  border-color: var(--purple-light);
  box-shadow: 0 0 24px rgba(109,40,217,0.4);
  transform: translateY(-2px);
}
.coll-shop-btn svg {
  transition: transform 0.3s ease;
}
.coll-shop-btn:hover svg { transform: translateX(4px); }

/* ══ SMALL CARDS (right stack) ══ */
.coll-small-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.4s ease;
}
.coll-small-card .coll-gradient {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.coll-small-card:hover .coll-img-wrap img { transform: scale(1.08); }
.coll-small-card:hover {
  border-color: rgba(109,40,217,0.35);
  box-shadow: 0 12px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(109,40,217,0.2);
}
.coll-small-card:hover .coll-number { color: var(--purple-light); }

/* Small card info — horizontal layout */
.coll-small-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.coll-small-name {
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.coll-small-desc {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  margin-top: 4px;
  max-width: 200px;
}

/* Arrow button */
.coll-arrow-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.coll-small-card:hover .coll-arrow-btn {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(109,40,217,0.5);
  transform: scale(1.1) rotate(45deg);
}
.coll-arrow-btn svg { transition: transform 0.3s ease; }
.coll-small-card:hover .coll-arrow-btn svg { transform: rotate(-45deg); }

/* Limited card special treatment */
.coll-limited .coll-gradient {
  background: linear-gradient(
    to top,
    rgba(109,40,217,0.35) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.1) 100%
  );
}
.coll-limited:hover .coll-gradient {
  background: linear-gradient(
    to top,
    rgba(109,40,217,0.5) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .coll-bento { grid-template-columns: 1fr; }
  .coll-feature-card { min-height: 460px; }
  .coll-stack { grid-template-rows: unset; grid-template-columns: 1fr 1fr; }
  .coll-small-card { min-height: 180px; }
  .coll-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .coll-header-right { align-items: flex-start; }
  .coll-header-desc { text-align: left; }
}
@media (max-width: 640px) {
  .coll-stack { grid-template-columns: 1fr; }
  .coll-small-card { min-height: 160px; }
  .coll-feature-card { min-height: 380px; }
  .coll-bottom-info { padding: 24px 20px; }
  .coll-feature-name { font-size: 1.8rem; }
}



/* ─── PRODUCTS ──────────────────────────────────────────────────── */
.bestsellers-section { background: var(--charcoal); }

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 20px;
  background: transparent;
  color: var(--stone);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  transition: var(--transition);
  text-transform: uppercase;
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  border-color: var(--purple);
  background: rgba(109,40,217,0.15);
}

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

.product-card {
  background: var(--charcoal-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #000;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

.quick-view-btn {
  padding: 12px 24px;
  background: rgba(255,255,255,0.95);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform 0.3s ease, background 0.2s;
}

.product-card:hover .quick-view-btn { transform: translateY(0); }
.quick-view-btn:hover { background: var(--purple); color: #fff; }

.wishlist-product-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.wishlist-product-btn:hover,
.wishlist-product-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  transform: scale(1.1);
}

.wishlist-product-btn.active svg { fill: #fff; }

.product-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--off-white);
  color: var(--black);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: 4px;
  text-transform: uppercase;
}

.product-badge-tag.new {
  background: var(--purple);
  color: #fff;
}

.product-info { padding: 20px; }

.product-category {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.stars { color: #F59E0B; font-size: 0.8rem; letter-spacing: 1px; }

.rating-count {
  font-size: 0.7rem;
  color: var(--stone);
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white);
}

.product-price-old {
  font-size: 0.8rem;
  color: var(--stone);
  text-decoration: line-through;
}

.product-sizes {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 6px 11px;
  background: transparent;
  color: var(--stone);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.size-btn:hover,
.size-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ─── BRAND STORY ───────────────────────────────────────────────── */
.story-section { background: var(--black); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-img-col { position: relative; }

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter var(--transition-slow);
}

.story-img-wrap:hover img { filter: grayscale(0%); }

.story-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(109,40,217,0.5);
}

.badge-year {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.badge-num {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.story-text-col { padding: 20px 0; }

.story-body {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.story-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── WHY ZEVRA ─────────────────────────────────────────────────── */
.why-section {
  background: var(--charcoal);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109,40,217,0.05) 0%, transparent 60%);
  pointer-events: none;
}

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

.why-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(109,40,217,0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  border-color: rgba(109,40,217,0.4);
  box-shadow: 0 0 32px rgba(109,40,217,0.15), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

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

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(109,40,217,0.12);
  border: 1px solid rgba(109,40,217,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-light);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 0 24px rgba(109,40,217,0.4);
}

.why-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.why-desc {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.7;
  font-weight: 400;
}

/* ─── POSTERS ───────────────────────────────────────────────────── */
.posters-section { background: var(--black); }

.posters-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.poster-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.poster-item.poster-tall { grid-row: span 2; }

.poster-img-wrap {
  position: relative;
  height: 100%;
  min-height: 260px;
}

.poster-item.poster-tall .poster-img-wrap {
  min-height: 540px;
}

.poster-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.poster-item:hover .poster-img-wrap img { transform: scale(1.06); }

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.poster-item:hover .poster-overlay { opacity: 1; }

.poster-info { display: flex; flex-direction: column; gap: 8px; }

.poster-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.poster-price {
  font-size: 0.75rem;
  color: var(--purple-light);
  font-weight: 600;
}

/* ─── REVIEWS ───────────────────────────────────────────────────── */
.reviews-section { background: var(--charcoal); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.big-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }

.rating-label {
  font-size: 0.8rem;
  color: var(--stone);
}

.reviews-carousel-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.reviews-carousel { position: relative; min-height: 260px; }

.review-card {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.review-stars { color: #F59E0B; font-size: 1rem; letter-spacing: 2px; }

.review-text {
  font-size: 1.05rem;
  color: var(--off-white);
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--off-white);
  font-family: var(--font-head);
}

.reviewer-meta {
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(109,40,217,0.4);
}

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 6px;
  height: 6px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--purple-light);
  width: 20px;
  border-radius: 3px;
}

/* ─── NEWSLETTER ─────────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #111018 50%, #0d0b14 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(109,40,217,0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
}

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

.newsletter-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 20px;
}

.newsletter-sub {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-form { margin-bottom: 24px; }

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 12px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.newsletter-input-wrap:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(109,40,217,0.15);
}

.newsletter-input-wrap input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  color: var(--off-white);
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.newsletter-input-wrap input::placeholder { color: var(--stone); }

.newsletter-input-wrap .btn-primary {
  border-radius: 0;
  border: none;
  border-left: 1.5px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.newsletter-privacy {
  font-size: 0.7rem;
  color: var(--stone);
}

.payment-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.payment-icon {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--stone);
  letter-spacing: 0.05em;
  font-family: var(--font-head);
}

.payment-icon.upi-icon { color: #10B981; border-color: rgba(16,185,129,0.3); }
.payment-icon.gpay-icon { color: #4285F4; border-color: rgba(66,133,244,0.3); }
.payment-icon.phonepe-icon { color: #6D28D9; border-color: rgba(109,40,217,0.4); }

/* ─── FOOTER ────────────────────────────────────────────────────── */
.footer { background: #080808; }

.footer-top { padding: 80px 0 60px; border-bottom: 1px solid var(--border); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}



.footer-tagline {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(184,184,184,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.82rem;
  color: rgba(184,184,184,0.7);
  transition: var(--transition);
  line-height: 1.4;
}

.footer-link:hover { color: var(--off-white); padding-left: 6px; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-cod-badge {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(109,40,217,0.1);
  border: 1px solid rgba(109,40,217,0.25);
  border-radius: var(--radius-sm);
}

.cod-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--off-white);
}

.cod-sub {
  font-size: 0.68rem;
  color: var(--stone);
  margin-top: 2px;
}

.footer-bottom { padding: 20px 0; }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  font-size: 0.75rem;
  color: var(--stone);
}

.footer-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-pay-icon {
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--stone);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

/* ─── MOBILE BOTTOM BAR ─────────────────────────────────────────── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.mobile-cart-btn {
  width: 100%;
  padding: 15px;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.mobile-cart-btn:hover {
  background: var(--purple-light);
  box-shadow: var(--shadow-purple);
}

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .posters-masonry { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-img { max-height: 50vh; width: auto; margin: 0 auto; }
  .hero-float-badge { left: 0; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .story-img-badge { right: 16px; bottom: 16px; }
  .section { padding: 72px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  /* Mobile nav open */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    padding: 40px 32px;
    gap: 28px;
    align-items: flex-start;
  }

  .nav-links.mobile-open .nav-link {
    font-size: 1.4rem;
    color: var(--off-white);
    letter-spacing: 0.08em;
  }

  .hero-heading { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 0.92rem; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { width: 100%; text-align: center; justify-content: center; }

  .collections-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .posters-masonry { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .mobile-bottom-bar { display: block; }
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }

  .review-card { padding: 28px; }
  .review-text { font-size: 0.9rem; }

  .newsletter-input-wrap { flex-direction: column; border-radius: var(--radius-sm); }
  .newsletter-input-wrap .btn-primary {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    border-left: none;
    border-top: 1.5px solid rgba(255,255,255,0.1);
    width: 100%;
  }
  .newsletter-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .posters-masonry { grid-template-columns: 1fr; }
  .poster-item.poster-tall { grid-row: span 1; }
  .hero-badges { flex-direction: column; gap: 8px; }
  .story-stats { flex-direction: column; gap: 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .container { padding: 0 16px; }
}

/* ─── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--charcoal-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple-dark); }

/* ─── FOCUS STYLES ──────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ─── SELECTION ─────────────────────────────────────────────────── */
::selection { background: rgba(109,40,217,0.3); color: #fff; }

/* ─── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-content { animation: none; }
}

/* ══════════════════════════════════════════════════════════════════
   VISUAL ENHANCEMENT LAYER — Premium Upgrades
   ══════════════════════════════════════════════════════════════════ */

/* ─── GLOBAL SUBTLE AMBIENT GLOW ─────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 30% 25% at 15% 20%, rgba(109,40,217,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 25% 30% at 85% 80%, rgba(109,40,217,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: bgDrift 20s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(2%, 1%); }
}

/* ─── HERO — ANIMATED BORDER ON IMAGE ───────────────────────────── */
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(109,40,217,0.6) 60deg,
    rgba(124,58,237,0.8) 120deg,
    rgba(139,92,246,0.4) 180deg,
    transparent 240deg,
    rgba(109,40,217,0.3) 300deg,
    transparent 360deg
  );
  animation: rotateBorder 6s linear infinite;
  z-index: -1;
}
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ─── HERO ACCENT — SHIMMER TEXT ────────────────────────────────── */
.hero-accent {
  background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 30%, #7C3AED 60%, #C4B5FD 80%, #7C3AED 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ─── HERO VISUAL — GLOWING ORB ─────────────────────────────────── */
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.16) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50%       { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ─── HERO EYEBROW — LIVE DOT ────────────────────────────────────── */
.hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  margin-left: 12px;
  animation: dotBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--purple-light);
  vertical-align: middle;
}
@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.5); }
}

/* ─── HERO BADGES — HOVER LIFT ───────────────────────────────────── */
.badge {
  cursor: default;
  transition: var(--transition);
}
.badge:hover {
  border-color: rgba(109,40,217,0.4);
  background: rgba(109,40,217,0.08);
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(109,40,217,0.15);
}

/* ─── SECTION DIVIDER GLOW ───────────────────────────────────────── */
.section::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(109,40,217,0.15) 25%,
    rgba(109,40,217,0.35) 50%,
    rgba(109,40,217,0.15) 75%,
    transparent 100%
  );
  margin-top: 100px;
}
.newsletter-section::after,
.custom-design-section::after,
.footer::after { display: none; }

/* ─── CUSTOM DESIGN COMMUNITY — PREMIUM BENTO REDESIGN ─────────────── */
.custom-design-section {
  background: var(--black);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Floating Ambient Orb */
.cd-glow-orb {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
@keyframes floatOrb {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-45%, -45%) scale(1.2); opacity: 1; }
}

.cd-bento {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

/* Left Panel */
.cd-bento-left {
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  backdrop-filter: blur(24px);
  box-shadow: inset 0 0 0 1px rgba(109, 40, 217, 0.1), 0 24px 64px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cd-bento-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
}

.cd-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--purple-light);
  margin-bottom: 20px;
}
.cd-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 24px;
}
.cd-accent {
  background: linear-gradient(135deg, #F5F5F5 0%, #A78BFA 60%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cd-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 90%;
}
.cd-action-area {
  margin-top: auto;
}
.cd-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cd-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.cd-btn:hover::after { left: 150%; }
.cd-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(109, 40, 217, 0.5);
}
.cd-btn svg { transition: transform 0.3s ease; }
.cd-btn:hover svg { transform: translateX(4px); }

.cd-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* Right Panel */
.cd-bento-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.cd-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  min-height: 240px;
}
.cd-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cd-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.4) 50%, rgba(11, 11, 11, 0.1) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}
.cd-feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, rgba(109, 40, 217, 0.3), transparent 60%);
  opacity: 0;
  z-index: 2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.cd-feature-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}
.cd-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 40, 217, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}
.cd-feature-card:hover .cd-feature-img {
  transform: scale(1.08);
}
.cd-feature-card:hover::after {
  opacity: 1;
}
.cd-feature-icon {
  font-size: 2rem;
  margin-bottom: auto;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}
.cd-feature-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.cd-feature-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ─── CTA BANNER — SLEEK UPGRADE ────────────────────────────────── */
.cta-banner {
  background: var(--black);
  padding: 0 0 60px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(20,10,40,1) 100%);
  padding: 40px 64px;
  border-radius: 100px;
  border: 1px solid rgba(109, 40, 217, 0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(109,40,217,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.cta-banner-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}
.btn-cta-banner {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.btn-cta-banner:hover {
  background: var(--purple-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.4);
}

.nav-link-custom {
  color: var(--purple-light) !important;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(109, 40, 217, 0.4);
}
.nav-link-custom:hover {
  color: #fff !important;
  text-shadow: 0 0 20px rgba(167, 139, 250, 0.6);
}

/* ─── PROCESS STEPS — LUXURY ANIMATION ───────────────────────────── */
.cd-process {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.cd-process-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--purple-light);
  margin-bottom: 60px;
  text-transform: uppercase;
}
.cd-process-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
.cd-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-step-glow {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 80px;
  height: 80px;
  background: var(--purple-light);
  filter: blur(40px);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.cd-step:hover .cd-step-glow { opacity: 0.5; }
.cd-step-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.cd-step:hover .cd-step-num { color: var(--purple-light); }
.cd-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(26,26,26,0.8);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cd-step:hover .cd-step-icon {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(109, 40, 217, 0.5);
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  box-shadow: 0 16px 32px rgba(109, 40, 217, 0.4);
}
.cd-step h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cd-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
.cd-step-line {
  flex: 0.8;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 64px; /* Aligns with middle of icon (16px num + 32px half icon + 16px spacing) */
  position: relative;
  overflow: hidden;
}
.cd-step-line-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 100%;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  transform: translateX(-100%);
  animation: lineScan 4.5s infinite linear;
}
@keyframes lineScan {
  0% { transform: translateX(-100%); }
  33% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Responsive Custom Design */
@media (max-width: 992px) {
  .cd-bento { grid-template-columns: 1fr; }
  .cd-bento-left { padding: 48px 32px; }
  .cta-banner-inner { border-radius: var(--radius-lg); flex-direction: column; text-align: center; gap: 24px; padding: 40px 24px; }
  
  .cd-process-track {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .cd-step-line {
    flex: none;
    width: 1px;
    height: 40px;
    margin: -20px 0;
  }
  .cd-step-line-fill {
    background: linear-gradient(180deg, transparent, var(--purple-light), transparent);
    animation: lineScanVert 4.5s infinite linear;
  }
}
@keyframes lineScanVert {
  0% { transform: translateY(-100%); }
  33% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

@media (max-width: 640px) {
  .cd-bento-right { grid-template-columns: 1fr; }
  .cd-title { font-size: 2.2rem; }
}


/* ─── MARQUEE — FADE EDGES ───────────────────────────────────────── */
.marquee-section {
  background: linear-gradient(90deg, var(--black) 0%, var(--charcoal) 20%, var(--charcoal) 80%, var(--black) 100%);
  border-top: 1px solid rgba(109,40,217,0.2);
  border-bottom: 1px solid rgba(109,40,217,0.2);
  position: relative;
}
.marquee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 8%, transparent 92%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}
.marquee-content .sep {
  animation: sepGlow 2s ease-in-out infinite;
}
@keyframes sepGlow {
  0%, 100% { text-shadow: 0 0 4px var(--purple); color: var(--purple); }
  50%       { text-shadow: 0 0 14px var(--purple-light); color: var(--purple-light); }
}

/* ─── SHOPIFY PRODUCTS LOADER ──────────────────────────────────────── */
.products-loader {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 20px;
}
.loader-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.products-loader p {
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

/* ─── COLLECTION CARDS — BORDER GLOW ────────────────────────────── */
.collection-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.collection-card:hover {
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(109,40,217,0.3);
}
.collection-card:hover .collection-name {
  text-shadow: 0 0 20px rgba(255,255,255,0.25);
}

/* ─── PRODUCT CARDS — GLOW RING ──────────────────────────────────── */
.product-card:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(109,40,217,0.25), 0 0 40px rgba(109,40,217,0.08);
}

/* Price gradient */
.product-price {
  background: linear-gradient(135deg, #F5F5F5 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Add-to-cart success flash */
.btn-add-cart.added {
  background: #10B981;
  border-color: #10B981;
}

/* ─── WHY CARDS — DEEPER GLASS ───────────────────────────────────── */
.why-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(109,40,217,0.04) 100%);
}
.why-card:hover {
  background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(109,40,217,0.1) 100%);
}
@keyframes iconPop {
  from { transform: scale(1); }
  50%  { transform: scale(1.15); }
  to   { transform: scale(1.05); }
}
.why-card:hover .why-icon { animation: iconPop 0.35s cubic-bezier(0.34,1.56,0.64,1) forwards; }

/* ─── STORY SECTION — GLOW BG ────────────────────────────────────── */
.story-section {
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,40,217,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

/* Story image premium border */
.story-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, rgba(109,40,217,0.35) 0%, transparent 50%, rgba(109,40,217,0.15) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

/* Stats gradient numbers */
.stat-num {
  background: linear-gradient(135deg, #F5F5F5 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── POSTER SECTION — FRAME + SHADOW ───────────────────────────── */
.poster-img-wrap::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius) - 4px);
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.poster-item:hover .poster-img-wrap::before { border-color: rgba(109,40,217,0.3); }
.poster-item {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.5s ease;
}
.poster-item:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(109,40,217,0.25);
  transform: translateY(-6px) scale(1.01);
}

/* ─── REVIEW CARD — LUXURY ────────────────────────────────────────── */
.review-card.active {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(109,40,217,0.06) 100%);
  border-color: rgba(109,40,217,0.25);
  box-shadow: 0 0 0 1px rgba(109,40,217,0.1), 0 20px 60px rgba(0,0,0,0.4);
}
.review-card.active::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 28px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(109,40,217,0.1);
  font-family: Georgia, serif;
  pointer-events: none;
}
.reviewer-avatar {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
  box-shadow: 0 0 16px rgba(109,40,217,0.4);
}

/* ─── NEWSLETTER — GRID BG + GRADIENT TITLE ──────────────────────── */
.newsletter-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(109,40,217,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(109,40,217,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 100% 100%, rgba(109,40,217,0.07) 0%, transparent 50%),
    linear-gradient(180deg, #0a0814 0%, #0B0B0B 100%);
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109,40,217,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109,40,217,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.newsletter-title {
  background: linear-gradient(135deg, #F5F5F5 0%, #C4B5FD 50%, #F5F5F5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 6s linear infinite;
}
.newsletter-title .accent-text {
  background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 40%, #C4B5FD 60%, #7C3AED 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

/* ─── FOOTER — GLOWING TOP BORDER ────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(109,40,217,0.3) 20%,
    rgba(139,92,246,0.6) 50%,
    rgba(109,40,217,0.3) 80%,
    transparent 100%
  );
}
.footer-col-title {
  position: relative;
  padding-bottom: 12px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--purple-light);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.footer-col:hover .footer-col-title::after { width: 44px; }

/* ─── BUTTONS — SHIMMER SWEEP ─────────────────────────────────────── */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 150%; }

/* ─── CART — UPGRADE ──────────────────────────────────────────────── */
.cart-drawer {
  background: linear-gradient(180deg, #1c1c1c 0%, #141414 100%);
}
.cart-header {
  background: linear-gradient(180deg, rgba(109,40,217,0.07) 0%, transparent 100%);
}
.cart-title {
  background: linear-gradient(135deg, #F5F5F5 0%, #A78BFA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── TOAST — GLOW ────────────────────────────────────────────────── */
.toast {
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(30,18,50,0.98) 100%);
  border-color: rgba(109,40,217,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(109,40,217,0.2);
}

/* ─── PAGE LOADER — GRADIENT ──────────────────────────────────────── */
.loader-logo {
  background: linear-gradient(135deg, #F5F5F5 0%, #A78BFA 50%, #F5F5F5 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-logo 1.5s ease-in-out infinite, shimmerText 3s linear infinite;
}
.loader-fill {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-light), #A78BFA);
  box-shadow: 0 0 12px rgba(109,40,217,0.6);
}

/* ─── HERO FLOAT BADGE — UPGRADE ─────────────────────────────────── */
.hero-float-badge {
  background: linear-gradient(135deg, rgba(26,26,26,0.96) 0%, rgba(30,18,50,0.96) 100%);
  border-color: rgba(109,40,217,0.35);
}
.float-price {
  font-size: 0.95rem;
  background: linear-gradient(135deg, #A78BFA 0%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── MOBILE BAR — GRADIENT ───────────────────────────────────────── */
.mobile-cart-btn {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-light) 100%);
  overflow: hidden;
  position: relative;
}
.mobile-cart-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.mobile-cart-btn:hover::after { left: 150%; }

/* ─── FILTER ACTIVE GLOW ──────────────────────────────────────────── */
.filter-btn.active { box-shadow: 0 0 16px rgba(109,40,217,0.3); }

/* ─── MOBILE FIXES ────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-img-wrap::before { animation: none; }
  .hero-visual::before   { width: 250px; height: 250px; }
  body::before           { display: none; }
  .story-section::before { display: none; }
}

