/* ═══════════════════════════════════════════════════════
   HAZE — wearhaze.com
   Brand CSS — Dark Aesthetic, Gen-Z Streetwear
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500&display=swap');

/* ── VARIABLES ──────────────────────────────────────── */
:root {
  --void: #0D0B12;
  --haze-purple: #1A0A2E;
  --smoke: #6B4FA0;
  --ash: #C4B8D8;
  --ghost: #F5F3F7;
  --accent: #8B5CF6;
  --accent-glow: rgba(139, 92, 246, 0.4);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'Montserrat', sans-serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--smoke) var(--void); }
body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--ghost);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--smoke); border-radius: 3px; }

/* ── UTILITIES ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal.visible { 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; }

/* ── LOADING SCREEN ─────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--void);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader .loader-text {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--ghost), var(--smoke), var(--ghost));
  background-size: 200% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 1.5s ease infinite;
}
#loader .loader-bar {
  width: 120px; height: 2px; background: rgba(255,255,255,0.1); margin-top: 1.5rem; border-radius: 1px; overflow: hidden;
}
#loader .loader-bar-inner {
  width: 0%; height: 100%; background: var(--accent); border-radius: 1px;
  animation: loadBar 1.8s var(--transition) forwards;
}
@keyframes loadBar { to { width: 100%; } }
@keyframes shimmer { 0%,100% { background-position: 200% 0; } 50% { background-position: -200% 0; } }

/* ── CURSOR GLOW ────────────────────────────────────── */
.cursor-glow {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,160,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(13, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(107, 79, 160, 0.15);
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.8rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  position: relative;
}
.nav-logo::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--transition);
}
.nav-logo:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ash); transition: color 0.3s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ghost); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--void) !important;
  background: var(--ghost);
  padding: 0.6rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--accent); color: white !important;
  box-shadow: 0 0 30px var(--accent-glow);
}
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 1.5px; background: var(--ghost);
  transition: all 0.3s ease;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(13,11,18,0.3) 0%,
    rgba(13,11,18,0.1) 40%,
    rgba(13,11,18,0.6) 80%,
    rgba(13,11,18,1) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(5rem, 15vw, 14rem);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-shadow: 0 0 80px var(--accent-glow);
  animation: heroFade 1.5s ease forwards;
  opacity: 0;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-tagline {
  font-family: var(--font-label);
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 1.5rem;
  animation: heroFade 1.5s ease 0.3s forwards;
  opacity: 0;
}
.hero-divider {
  width: 60px; height: 1px; background: var(--smoke);
  margin: 2rem auto;
  animation: heroFade 1.5s ease 0.5s forwards;
  opacity: 0;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-label);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ghost);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 2.5rem;
  transition: all 0.4s var(--transition);
  animation: heroFade 1.5s ease 0.7s forwards;
  opacity: 0;
}
.hero-cta:hover {
  background: var(--ghost); color: var(--void);
  border-color: var(--ghost);
  box-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.hero-cta svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
  font-family: var(--font-label);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smoke);
}
.hero-scroll .scroll-line {
  width: 1px; height: 40px; background: linear-gradient(180deg, var(--smoke), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── MARQUEE ────────────────────────────────────────── */
.marquee {
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(107,79,160,0.15);
  border-bottom: 1px solid rgba(107,79,160,0.15);
  background: var(--haze-purple);
}
.marquee-track {
  display: flex; animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.3em;
  color: var(--smoke);
  white-space: nowrap;
  padding: 0 2.5rem;
  display: flex; align-items: center; gap: 2.5rem;
}
.marquee-item .dot {
  width: 4px; height: 4px; background: var(--accent); border-radius: 50%;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ABOUT ──────────────────────────────────────────── */
.about {
  padding: 8rem 0;
  position: relative;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-content { position: relative; }
.about-content .section-title { margin-bottom: 2rem; }
.about-text {
  font-size: 1.05rem; line-height: 1.8; color: var(--ash); font-weight: 300;
  margin-bottom: 2rem;
}
.about-highlight {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--smoke);
  line-height: 1.3;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%; border-radius: 2px;
  transition: transform 0.6s var(--transition);
}
.about-image:hover img { transform: scale(1.02); }
.about-image::before {
  content: ''; position: absolute;
  inset: -1rem; border: 1px solid rgba(107,79,160,0.2);
  z-index: -1; border-radius: 2px;
  transition: inset 0.4s var(--transition);
}
.about-image:hover::before { inset: -0.5rem; }

/* ── STATS BAR ──────────────────────────────────────── */
.stats {
  padding: 4rem 0;
  background: var(--haze-purple);
  border-top: 1px solid rgba(107,79,160,0.2);
  border-bottom: 1px solid rgba(107,79,160,0.2);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800; color: var(--ghost);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-label);
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--smoke);
  margin-top: 0.5rem;
}

/* ── PRODUCTS ───────────────────────────────────────── */
.products {
  padding: 8rem 0;
  position: relative;
}
.products-header {
  text-align: center; margin-bottom: 4rem;
}
.products-header .section-title { margin-bottom: 1rem; }
.products-subtitle {
  font-family: var(--font-body);
  font-size: 1rem; color: var(--ash); font-weight: 300;
}

.products-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}
.product-card {
  position: relative; overflow: hidden;
  background: var(--haze-purple);
  border: 1px solid rgba(107,79,160,0.1);
  transition: all 0.5s var(--transition);
  cursor: pointer;
  group: true;
}
.product-card:hover {
  border-color: rgba(107,79,160,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.product-image {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: var(--void);
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.6s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.08);
}
.product-tag {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-family: var(--font-label);
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--accent); color: white;
  padding: 0.3rem 0.6rem;
}
.product-info { padding: 1.2rem; }
.product-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.75rem; color: var(--ash); font-weight: 300;
  margin-bottom: 0.8rem;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--accent);
}
.product-price .usd {
  font-size: 0.75rem; color: var(--smoke); font-weight: 400;
  margin-left: 0.3rem;
}
.product-btn {
  width: 100%; padding: 0.8rem;
  font-family: var(--font-label);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ghost);
  background: transparent;
  border-top: 1px solid rgba(107,79,160,0.15);
  transition: all 0.3s ease;
}
.product-btn:hover {
  background: var(--accent); color: white;
}

/* ── QUICK VIEW BUTTON ──────────────────────────────── */
.quick-view-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(13, 11, 18, 0.85);
  color: var(--ghost);
  font-family: var(--font-label);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0; visibility: hidden;
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(8px);
  z-index: 10;
  white-space: nowrap;
}
.product-card:hover .quick-view-btn {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.quick-view-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* ── QUICK VIEW MODAL ───────────────────────────────── */
.quick-view-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--transition);
  backdrop-filter: blur(8px);
  padding: 2rem;
}
.quick-view-modal.active { opacity: 1; visibility: visible; }
.qv-content {
  background: var(--haze-purple);
  width: 100%; max-width: 900px;
  max-height: 90vh; overflow-y: auto;
  border: 1px solid rgba(107,79,160,0.2);
  display: flex; position: relative;
  transform: translateY(20px);
  transition: transform 0.4s var(--transition);
}
.quick-view-modal.active .qv-content { transform: translateY(0); }
.qv-close {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 1.5rem; color: var(--ash);
  cursor: pointer; z-index: 10;
  transition: color 0.2s;
}
.qv-close:hover { color: var(--ghost); }

.qv-image {
  flex: 1; background: var(--void);
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.qv-image img { width: 100%; height: 100%; object-fit: cover; }
.qv-details {
  flex: 1; padding: 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.qv-title {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  text-transform: uppercase; margin-bottom: 0.5rem;
}
.qv-price {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--accent);
  margin-bottom: 1.5rem;
}
.qv-desc {
  font-size: 0.9rem; color: var(--ash); line-height: 1.6;
  margin-bottom: 2rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(107,79,160,0.15);
}
.qv-add-btn {
  width: 100%; padding: 1.2rem;
  background: var(--accent); color: white;
  font-family: var(--font-label); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s;
  margin-top: 1.5rem;
}
.qv-add-btn:hover { background: #7c3aed; box-shadow: 0 0 30px var(--accent-glow); }

@media (max-width: 768px) {
  .qv-content { flex-direction: column; }
  .qv-image { min-height: 300px; }
  .qv-details { padding: 2rem; }
  .quick-view-modal { padding: 1rem; }
}

/* ── LOOKBOOK ───────────────────────────────────────── */
.lookbook {
  padding: 8rem 0;
  background: var(--haze-purple);
  position: relative;
  overflow: hidden;
}
.lookbook::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--void), transparent);
  z-index: 1;
}
.lookbook-content {
  position: relative; z-index: 2;
}
.lookbook-header {
  text-align: center; margin-bottom: 4rem;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lookbook-item {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.lookbook-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.4s ease;
  filter: brightness(0.7) saturate(0.9);
}
.lookbook-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1);
}
.lookbook-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,11,18,0.8) 100%);
}
.lookbook-item .lookbook-label {
  position: absolute; bottom: 1rem; left: 1rem;
  z-index: 1;
  font-family: var(--font-label);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ash);
}

/* ── BRAND QUOTE ────────────────────────────────────── */
.brand-quote {
  padding: 8rem 0;
  text-align: center;
  position: relative;
}
.brand-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ghost);
  position: relative;
}
.brand-quote blockquote::before {
  content: '"'; position: absolute;
  top: -2rem; left: -1rem;
  font-size: 8rem; color: var(--smoke); opacity: 0.2;
  line-height: 1;
}
.brand-quote .quote-author {
  font-family: var(--font-label);
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--smoke);
  margin-top: 2rem;
}

/* ── NEWSLETTER ─────────────────────────────────────── */
.newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--haze-purple), var(--void));
  border-top: 1px solid rgba(107,79,160,0.2);
}
.newsletter-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.newsletter .section-title { margin-bottom: 1rem; font-size: 3rem; }
.newsletter-desc {
  color: var(--ash); font-weight: 300; margin-bottom: 2.5rem; line-height: 1.7;
}
.newsletter-form {
  display: flex; gap: 0;
  border: 1px solid rgba(107,79,160,0.3);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.newsletter-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(139,92,246,0.1);
}
.newsletter-form input {
  flex: 1; padding: 1rem 1.5rem;
  background: transparent; border: none; outline: none;
  color: var(--ghost);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: var(--smoke); }
.newsletter-form button {
  padding: 1rem 2rem;
  font-family: var(--font-label);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--accent); color: white;
  transition: background 0.3s ease;
}
.newsletter-form button:hover { background: #7c3aed; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(107,79,160,0.1);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-weight: 900; font-size: 2rem;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem; color: var(--ash); line-height: 1.7; font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-label);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.85rem; color: var(--ash); font-weight: 300;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--ghost); }

.footer-social {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(107,79,160,0.2);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--accent);
  background: var(--accent);
}
.footer-social svg { width: 14px; height: 14px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(107,79,160,0.1);
}
.footer-bottom p {
  font-size: 0.75rem; color: var(--smoke); font-weight: 300;
}

/* ── MOBILE MENU ────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--void);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  text-transform: uppercase;
  color: var(--ghost);
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--accent); }

/* ── CART ICON BUTTON ───────────────────────────────── */
.cart-icon-btn {
  position: relative;
  color: var(--ghost);
  transition: color 0.3s;
  display: flex; align-items: center;
}
.cart-icon-btn:hover { color: var(--accent); }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--accent); color: white;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-label);
}

/* ── CART DRAWER ────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: 400px; max-width: 95vw;
  background: var(--haze-purple);
  border-left: 1px solid rgba(107,79,160,0.2);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(107,79,160,0.15);
}
.cart-title {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 0.6rem;
}
.cart-close-btn {
  color: var(--ash); font-size: 1.2rem;
  transition: color 0.2s;
}
.cart-close-btn:hover { color: var(--ghost); }

.cart-body {
  flex: 1; overflow-y: auto; padding: 1rem;
}
.cart-body::-webkit-scrollbar { width: 4px; }
.cart-body::-webkit-scrollbar-thumb { background: var(--smoke); }

.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 0.8rem;
  color: var(--ash);
}
.cart-empty-icon { font-size: 3rem; }
.cart-empty p { font-weight: 500; }
.cart-empty span { font-size: 0.8rem; color: var(--smoke); }

.cart-item {
  display: flex; gap: 0.8rem; padding: 0.8rem;
  border-bottom: 1px solid rgba(107,79,160,0.1);
  align-items: center;
}
.cart-item-img {
  width: 72px; height: 72px; flex-shrink: 0;
  overflow: hidden; background: var(--void);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-size { font-size: 0.72rem; color: var(--ash); margin: 0.1rem 0 0.3rem; }
.cart-item-price { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--accent); }
.cart-item-controls {
  display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0;
}
.cart-qty-btn {
  width: 26px; height: 26px;
  border: 1px solid rgba(107,79,160,0.3); color: var(--ghost);
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-qty-btn:hover { background: var(--accent); border-color: var(--accent); }
.cart-qty { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-remove {
  color: rgba(248,113,113,0.5); font-size: 0.8rem; transition: color 0.2s;
  padding: 0.2rem; margin-left: 0.2rem;
}
.cart-remove:hover { color: #f87171; }

.cart-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(107,79,160,0.15);
}
.cart-subtotals { margin-bottom: 1rem; }
.cart-row {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--ash);
  padding: 0.3rem 0;
}
.cart-grand {
  font-size: 1rem; font-weight: 700;
  color: var(--ghost); border-top: 1px solid rgba(107,79,160,0.15);
  margin-top: 0.4rem; padding-top: 0.6rem;
}
.cart-checkout-btn {
  width: 100%; padding: 1rem;
  background: var(--accent); color: white;
  font-family: var(--font-label); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 0.6rem;
}
.cart-checkout-btn:hover { background: #7c3aed; }
.cart-continue {
  display: block; text-align: center;
  font-family: var(--font-label); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--smoke); transition: color 0.3s;
  padding: 0.3rem;
}
.cart-continue:hover { color: var(--ash); }

/* ── SIZE SELECTOR ──────────────────────────────────── */
.size-selector {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 0.7rem; margin-bottom: 0.3rem;
}
.size-btn {
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(107,79,160,0.2);
  font-family: var(--font-label); font-size: 0.6rem;
  font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--ash);
  cursor: pointer; transition: all 0.2s;
  user-select: none;
}
.size-btn:hover { border-color: var(--accent); color: var(--ghost); }
.size-btn.selected { background: var(--accent); border-color: var(--accent); color: white; }

/* ── TOAST ──────────────────────────────────────────── */
.haze-toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px);
  z-index: 9999; background: var(--haze-purple);
  border: 1px solid rgba(107,79,160,0.3);
  padding: 0.8rem 2rem; font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0; transition: all 0.35s var(--transition);
  pointer-events: none;
}
.haze-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── SHAKE ANIMATION ────────────────────────────────── */
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%,60% { transform: translateX(-5px); }
  40%,80% { transform: translateX(5px); }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(4rem, 20vw, 8rem); }
  .about-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .container { padding: 0 1.2rem; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; max-width: 100%; }
}
