/* ============================================
   Stanfass - E-Commerce Design Tokens (Street Edition)
   ============================================ */

:root {
  --color-primary: #1a1a1a;
  --color-primary-light: #333333;
  --color-secondary: #f5f5f5;
  --color-accent: #c9a96e;
  --color-accent-alt: #e63946;
  
  --color-bg: #fafafa;
  --color-bg-alt: #f0f0f0;
  --color-surface: #ffffff;
  
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #555555;
  --color-text-muted: #888888;
  --color-text-inverse: #ffffff;
  
  --color-border: #ddd;
  --color-border-light: #eee;
  
  --color-street-yellow: #ffeb3b;
  --color-street-pink: #ff0080;
  --color-street-cyan: #00ffff;
  --color-street-lime: #bfff00;
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-street: 'Oswald', sans-serif;
  --font-graffiti: 'Permanent Marker', cursive, sans-serif;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  
  --leading-tight: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 400ms ease;
  
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   Header
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--color-primary);
}

.header__container {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: var(--space-3) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-street);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  position: relative;
}

.header__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent-alt);
}

.header__nav {
  display: flex;
  gap: var(--space-8);
}

.header__link {
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.header__link::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-alt);
  transition: width var(--transition-normal);
}

.header__link:hover {
  color: var(--color-text-primary);
}

.header__link:hover::before {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-primary);
  transition: color var(--transition-fast);
}

.header__cart-btn:hover {
  color: var(--color-text-secondary);
}

.header__cart-btn svg {
  width: 22px;
  height: 22px;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  transition: all var(--transition-normal);
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  
  .header__menu-btn {
    display: flex;
  }
}

/* ============================================
   Micro-Interactions & Hover Effects
   ============================================ */

/* Magnetic Button Effect */
.btn {
  position: relative;
  overflow: hidden;
}

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

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

.btn:active {
  transform: scale(0.95);
}

/* Product Card Hover States */
.product-card__image {
  position: relative;
  overflow: hidden;
}

.product-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,0,128,0.1), rgba(0,255,255,0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.product-card:hover .product-card__image::before {
  opacity: 1;
}

/* Quick View Overlay */
.product-card__quick-view {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: 20;
}

.product-card:hover .product-card__quick-view {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Heart/Save Button */
.save-btn {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 15;
}

.save-btn:hover {
  transform: scale(1.1);
}

.save-btn.active {
  background: var(--color-street-pink);
  color: white;
}

/* Size Selector on Hover */
.size-selector {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-1);
  opacity: 0;
  transition: all var(--transition-normal);
}

.product-card:hover .size-selector {
  opacity: 1;
  bottom: 70px;
}

.size-selector span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-street);
  font-size: 10px;
  font-weight: 600;
  background: white;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-selector span:hover,
.size-selector span.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* Color Swatches */
.color-swatches {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  opacity: 0;
  transition: all var(--transition-normal);
}

.product-card:hover .color-swatches {
  opacity: 1;
  bottom: 45px;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform var(--transition-fast);
}

.color-swatch:hover,
.color-swatch.active {
  transform: scale(1.2);
}

/* Add to Cart Button Animation */
.add-btn {
  width: 100%;
  padding: var(--space-3);
  font-family: var(--font-street);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.add-btn::before {
  content: 'ADDED +';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.add-btn:hover {
  background: var(--color-accent-alt);
}

.add-btn.added::before {
  opacity: 1;
}

.add-btn.added span {
  opacity: 0;
}

.add-btn span {
  transition: opacity var(--transition-fast);
}

/* Price Tag Animation */
.product-card__price {
  position: relative;
}

.product-card__price::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 120%;
  height: 120%;
  background: var(--color-street-yellow);
  z-index: -1;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card__price::before {
  transform: translate(-50%, -50%) scale(1);
  animation: priceFlash 0.6s ease;
}

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

/* Filter Pills Hover Animation */
.products__filter {
  position: relative;
  overflow: hidden;
}

.products__filter::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.products__filter:hover::after {
  left: 100%;
}

/* Header Sticky Animation */
.header {
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: var(--space-2) 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header.scrolled .header__logo {
  font-size: var(--text-xl);
}

/* Cart Bounce Animation */
.header__cart-btn.bounce {
  animation: cartBounce 0.5s ease;
}

@keyframes cartBounce {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.1); }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-street-pink), var(--color-street-cyan), var(--color-street-lime));
  z-index: 1000;
  width: 0%;
  transition: width 0.1s ease;
}

/* Infinite Scroll Loader */
.scroll-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  gap: var(--space-2);
}

.scroll-loader span {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: loaderBounce 1s ease-in-out infinite;
}

.scroll-loader span:nth-child(2) { animation-delay: 0.1s; }
.scroll-loader span:nth-child(3) { animation-delay: 0.2s; }

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

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, var(--color-bg) 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Cursor Follower (Optional) */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-accent-alt);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-follower.hover {
  width: 40px;
  height: 40px;
  background: rgba(230, 57, 70, 0.1);
}

@media (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-10);
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-accent-alt);
  transition: left var(--transition-normal);
  z-index: -1;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border: 2px solid var(--color-primary);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-text-inverse);
  border-color: var(--color-accent-alt);
}

.btn--primary:hover::before {
  left: 0;
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  padding: var(--space-24) var(--space-6);
  padding-top: calc(var(--space-24) + 60px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(230, 57, 70, 0.03) 80px,
      rgba(230, 57, 70, 0.03) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(230, 57, 70, 0.03) 80px,
      rgba(230, 57, 70, 0.03) 81px
    );
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpeg');
  background-size: cover;
  background-position: center;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 600px;
  color: var(--color-text-inverse);
}

.hero__label {
  display: inline-block;
  font-family: var(--font-street);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-alt);
  margin-bottom: var(--space-6);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--color-accent-alt);
}

.hero__title {
  font-family: var(--font-street);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-6);
  text-shadow: 3px 3px 0 var(--color-accent-alt);
  position: relative;
  animation: glitchText 3s infinite;
}

.hero__title::before,
.hero__title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}

.hero__title::before {
  text-shadow: -2px 0 #0ff;
  animation: glitchClip 2s infinite linear alternate-reverse;
}

.hero__title::after {
  text-shadow: 2px 0 #f0f;
  animation: glitchClip2 3s infinite linear alternate-reverse;
}

@keyframes glitchText {
  0%, 90%, 100% { text-shadow: 3px 3px 0 var(--color-accent-alt); }
  92% { text-shadow: -3px 3px 0 #0ff, 3px -3px 0 #f0f; }
  94% { text-shadow: 3px 3px 0 var(--color-accent-alt); }
  96% { text-shadow: -2px -2px 0 #0ff, 2px 2px 0 #f0f; }
}

@keyframes glitchClip {
  0% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
  20% { clip-path: inset(60% 0 10% 0); transform: translate(2px, 0); }
  40% { clip-path: inset(40% 0 40% 0); transform: translate(-1px, 0); }
  60% { clip-path: inset(80% 0 5% 0); transform: translate(1px, 0); }
  80% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 0); }
  100% { clip-path: inset(50% 0 30% 0); transform: translate(0, 0); }
}

@keyframes glitchClip2 {
  0% { clip-path: inset(70% 0 10% 0); transform: translate(2px, 0); }
  20% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 0); }
  40% { clip-path: inset(50% 0 30% 0); transform: translate(1px, 0); }
  60% { clip-path: inset(20% 0 60% 0); transform: translate(-1px, 0); }
  80% { clip-path: inset(90% 0 5% 0); transform: translate(2px, 0); }
  100% { clip-path: inset(30% 0 50% 0); transform: translate(0, 0); }
}

.hero__noise {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: noiseShift 0.5s steps(5) infinite;
}

@keyframes noiseShift {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-5%, -5%); }
  40% { transform: translate(5%, 0); }
  60% { transform: translate(-2%, 5%); }
  80% { transform: translate(3%, -3%); }
  100% { transform: translate(0, 0); }
}

.hero__splatter {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(40px);
}

.hero__splatter--1 {
  width: 300px;
  height: 300px;
  background: var(--color-accent-alt);
  top: 10%;
  right: -50px;
  animation: floatBlob 8s ease-in-out infinite;
}

.hero__splatter--2 {
  width: 200px;
  height: 200px;
  background: #0ff;
  bottom: 15%;
  left: -30px;
  animation: floatBlob 10s ease-in-out infinite reverse;
}

.hero__splatter--3 {
  width: 250px;
  height: 250px;
  background: #f0f;
  top: 50%;
  right: 20%;
  animation: floatBlob 12s ease-in-out infinite;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.1); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 10px) scale(1.05); }
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.hero__stat {
  text-align: center;
}

.hero__stat-num {
  display: block;
  font-family: var(--font-street);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-text-inverse);
  letter-spacing: 0.05em;
}

.hero__stat-label {
  font-family: var(--font-street);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-accent-alt);
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 4;
}

.hero__scroll-hint span {
  font-family: var(--font-street);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent-alt);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.hero__tagline {
  font-family: var(--font-street);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
  max-width: 500px;
}

.hero__social-proof {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.hero__social-proof span {
  font-family: var(--font-street);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   Marquee Banner
   ============================================ */

.marquee {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-4) 0;
  overflow: hidden;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-primary), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-primary), transparent);
}

.marquee__track {
  display: flex;
  gap: var(--space-10);
  animation: marquee 20s linear infinite;
}

.marquee__content {
  display: flex;
  gap: var(--space-10);
  flex-shrink: 0;
}

.marquee__text {
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-accent-alt);
}

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

/* ============================================
   Products Section
   ============================================ */

.products {
  padding: var(--space-16) var(--space-6);
  background: var(--color-bg);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-primary) 0,
    var(--color-primary) 20px,
    var(--color-accent-alt) 20px,
    var(--color-accent-alt) 40px
  );
}

.products__container {
  max-width: var(--container-xl);
  margin: 0 auto;
}

.products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  gap: var(--space-6);
}

.products__title {
  font-family: var(--font-street);
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  position: relative;
  padding-left: var(--space-6);
}

.products__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: var(--color-accent-alt);
}

.products__filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.products__filter {
  font-family: var(--font-street);
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.products__filter:hover {
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.products__filter.active {
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  
  .products__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Product Card
   ============================================ */

.product-card {
  position: relative;
}

.product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: var(--space-4);
  border: 2px solid var(--color-border-light);
  transition: all var(--transition-normal);
}

.product-card:hover .product-card__image {
  border-color: var(--color-accent-alt);
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--color-accent-alt);
}

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

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

.product-card__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.product-card:hover .product-card__actions {
  transform: translateY(0);
}

.product-card__btn {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-street);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  background: var(--color-primary);
  border-radius: 0;
  transition: all var(--transition-fast);
}

.product-card__btn:hover {
  background: var(--color-accent-alt);
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-card__name {
  font-family: var(--font-street);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.product-card__price {
  font-family: var(--font-street);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-accent-alt);
}

/* ============================================
   Product Badges
   ============================================ */

.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  z-index: 5;
  font-family: var(--font-street);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  animation: badgePulse 2s ease-in-out infinite;
}

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

.product-card__badge--hot {
  background: var(--color-accent-alt);
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 85% 100%, 0 100%);
  padding-bottom: var(--space-2);
}

.product-card__badge--trending {
  background: #000;
  color: #0ff;
  border: 1px solid #0ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
  animation: badgePulse 2s ease-in-out infinite, neonBadge 1.5s ease-in-out infinite alternate;
}

@keyframes neonBadge {
  from { box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
  to { box-shadow: 0 0 15px rgba(0, 255, 255, 0.6), 0 0 30px rgba(0, 255, 255, 0.2); }
}

.product-card__badge--new {
  background: #c0ff00;
  color: #000;
  font-weight: 800;
}

.product-card__badge--selling {
  background: #000;
  color: #ff0;
  border: 1px solid #ff0;
  animation: badgePulse 1.5s ease-in-out infinite;
}

.product-card__badge--limited {
  background: linear-gradient(135deg, #c9a96e, #e8d5a3);
  color: #000;
}

.product-card__badge--grail {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #c9a96e;
  border: 1px solid #c9a96e;
  text-shadow: 0 0 10px rgba(201, 169, 110, 0.5);
}

/* ============================================
   Cart Drawer
   ============================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: var(--z-modal);
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.active {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--color-surface);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--color-border-light);
}

.cart-drawer__title {
  font-family: var(--font-street);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-primary);
}

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.cart-drawer__close:hover {
  color: var(--color-text-primary);
}

.cart-drawer__close svg {
  width: 20px;
  height: 20px;
}

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-6);
}

.cart-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.cart-empty p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

.cart-drawer__footer {
  padding: var(--space-6);
  border-top: 1px solid var(--color-border-light);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.cart-drawer__subtotal span:first-child {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-secondary);
}

.cart-drawer__subtotal span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
}

.cart-drawer__checkout {
  width: 100%;
}

/* ============================================
   Cart Item
   ============================================ */

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
}

.cart-item__info {
  flex: 1;
}

.cart-item__name {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.cart-item__price {
  font-weight: 600;
  color: var(--color-text-secondary);
}

.cart-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.cart-item__remove:hover {
  color: var(--color-text-primary);
}

.cart-item__remove svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  padding: var(--space-16) var(--space-6);
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.footer__container {
  max-width: var(--container-xl);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: inline-block;
  font-family: var(--font-street);
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  position: relative;
}

.footer__logo::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-accent-alt);
  margin-top: var(--space-2);
}

.footer__tagline {
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.footer__links {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col h4 {
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.footer__col a {
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__col a:hover {
  color: var(--color-accent-alt);
}

/* ============================================
   Newsletter Section
   ============================================ */

.newsletter {
  position: relative;
  padding: var(--space-20) var(--space-6);
  background: var(--color-primary);
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.02) 60px,
      rgba(255, 255, 255, 0.02) 61px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.02) 60px,
      rgba(255, 255, 255, 0.02) 61px
    );
  pointer-events: none;
}

.newsletter::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-accent-alt) 0,
    var(--color-accent-alt) 15px,
    #0ff 15px,
    #0ff 30px,
    #f0f 30px,
    #f0f 45px,
    #ff0 45px,
    #ff0 60px
  );
}

.newsletter__graffiti {
  position: absolute;
  font-family: var(--font-street);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.newsletter__graffiti--left {
  font-size: clamp(6rem, 20vw, 15rem);
  top: 50%;
  left: -2%;
  transform: translateY(-50%) rotate(-5deg);
}

.newsletter__graffiti--right {
  font-size: clamp(6rem, 20vw, 15rem);
  top: 50%;
  right: -2%;
  transform: translateY(-50%) rotate(5deg);
}

.newsletter__container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.newsletter__content {
  text-align: center;
}

.newsletter__tag {
  display: inline-block;
  font-family: var(--font-street);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent-alt);
  margin-bottom: var(--space-4);
  padding: var(--space-1) var(--space-4);
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.newsletter__title {
  font-family: var(--font-street);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  margin-bottom: var(--space-4);
  text-shadow: 2px 2px 0 rgba(230, 57, 70, 0.3);
}

.newsletter__text {
  font-family: var(--font-street);
  font-size: var(--text-base);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-street);
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  color: var(--color-text-inverse);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 0;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.newsletter__input:focus {
  border-color: var(--color-accent-alt);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter__btn {
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-street);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  background: var(--color-accent-alt);
  border: 2px solid var(--color-accent-alt);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.newsletter__btn:hover {
  background: transparent;
  color: var(--color-accent-alt);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

.newsletter__stats {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
  font-family: var(--font-street);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.newsletter__stats strong {
  color: var(--color-street-yellow);
}

/* ============================================
   Floating Graffiti Tags
   ============================================ */

.graffiti-tag {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  font-family: var(--font-street);
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.04;
  color: var(--color-accent-alt);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.05em;
  writing-mode: vertical-rl;
  user-select: none;
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer__brand {
    max-width: none;
  }
  
  .footer__links {
    justify-content: center;
    gap: var(--space-10);
  }
}

@media (max-width: 480px) {
  .newsletter__form {
    flex-direction: column;
  }
  
  .newsletter__input {
    border-right: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
  }
  
  .newsletter__input:focus {
    border-color: var(--color-accent-alt);
  }
  
  .hero__stats {
    gap: var(--space-4);
  }
  
  .hero__stat-num {
    font-size: var(--text-2xl);
  }
}

/* Street Sticker Badges */
.sticker-badge {
  position: absolute;
  font-family: var(--font-graffiti);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  transform: rotate(-5deg);
  z-index: 10;
  animation: stickerWiggle 3s ease-in-out infinite;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.sticker-badge--drop {
  top: 10%;
  right: 5%;
  background: var(--color-street-pink);
  color: white;
}

.sticker-badge--limited {
  bottom: 15%;
  left: 3%;
  background: var(--color-street-yellow);
  color: black;
  transform: rotate(8deg);
}

.sticker-badge--vip {
  top: 40%;
  right: 2%;
  background: var(--color-street-cyan);
  color: black;
  transform: rotate(-12deg);
}

@keyframes stickerWiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(-3deg); }
}

/* Spray Paint Splatter Decorations */
.spray-paint {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.08;
}

.spray-paint--1 {
  width: 150px;
  height: 150px;
  background: var(--color-street-pink);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 20%;
  left: 5%;
  animation: sprayFloat 6s ease-in-out infinite;
}

.spray-paint--2 {
  width: 100px;
  height: 120px;
  background: var(--color-street-cyan);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 50%;
  right: 8%;
  animation: sprayFloat 8s ease-in-out infinite reverse;
}

.spray-paint--3 {
  width: 120px;
  height: 100px;
  background: var(--color-street-lime);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  left: 10%;
  animation: sprayFloat 7s ease-in-out infinite;
}

@keyframes sprayFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -15px) rotate(5deg); }
  66% { transform: translate(-8px, 8px) rotate(-3deg); }
}

/* Sticker Collection on Products */
.sticker {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-graffiti);
  font-size: 0.6rem;
  text-transform: uppercase;
  border-radius: 50%;
  transform: rotate(15deg);
  z-index: 15;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  animation: stickerPop 0.5s ease forwards;
}

.sticker--hot {
  background: var(--color-street-pink);
  color: white;
  top: 8px;
  right: 8px;
}

.sticker--new {
  background: var(--color-street-yellow);
  color: black;
  top: 8px;
  left: 8px;
  transform: rotate(-10deg);
}

.sticker--sold {
  background: var(--color-accent-alt);
  color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  width: 60px;
  height: 60px;
  font-size: 0.7rem;
}

@keyframes stickerPop {
  0% { transform: scale(0) rotate(0deg); opacity: 0; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(15deg); opacity: 1; }
}

.product-card:hover .sticker {
  animation: stickerWiggle 2s ease-in-out infinite;
}

/* Neon Glow Text Effect */
.neon-text {
  color: var(--color-text-inverse);
  text-shadow: 
    0 0 5px currentColor,
    0 0 10px currentColor,
    0 0 20px currentColor,
    0 0 40px currentColor;
  animation: neonFlicker 3s ease-in-out infinite;
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 5px currentColor,
      0 0 10px currentColor,
      0 0 20px currentColor,
      0 0 40px currentColor;
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Street Tag Element */
.street-tag {
  font-family: var(--font-graffiti);
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--color-primary);
  opacity: 0.06;
  position: absolute;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.street-tag--1 {
  top: 15%;
  left: 3%;
  transform: rotate(-8deg);
}

.street-tag--2 {
  top: 45%;
  right: 4%;
  transform: rotate(5deg);
}

.street-tag--3 {
  bottom: 25%;
  left: 8%;
  transform: rotate(-3deg);
  color: var(--color-accent-alt);
}

.street-tag--4 {
  bottom: 5%;
  right: 6%;
  transform: rotate(10deg);
  color: var(--color-street-cyan);
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px) skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px) skewX(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes sprayReveal {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    opacity: 1;
  }
}

@keyframes stampIn {
  0% {
    opacity: 0;
    transform: scale(2) rotate(-10deg);
  }
  60% {
    transform: scale(0.9) rotate(2deg);
  }
  80% {
    transform: scale(1.05) rotate(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Spray Paint Reveal */
.spray-reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.spray-reveal.animate-in {
  animation: sprayReveal 0.8s ease forwards;
}

/* Staggered Grid Animation */
.product-card {
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0ms; }
.product-card:nth-child(2) { animation-delay: 50ms; }
.product-card:nth-child(3) { animation-delay: 100ms; }
.product-card:nth-child(4) { animation-delay: 150ms; }
.product-card:nth-child(5) { animation-delay: 200ms; }
.product-card:nth-child(6) { animation-delay: 250ms; }
.product-card:nth-child(7) { animation-delay: 300ms; }
.product-card:nth-child(8) { animation-delay: 350ms; }
.product-card:nth-child(9) { animation-delay: 400ms; }
.product-card:nth-child(10) { animation-delay: 450ms; }
.product-card:nth-child(11) { animation-delay: 500ms; }
.product-card:nth-child(12) { animation-delay: 550ms; }

/* Product Card Extra Hover */
.product-card--hovered {
  z-index: 2;
}

/* Marquee Neon Glow */
.marquee__text {
  animation: marqueeGlow 2s ease-in-out infinite alternate;
}

@keyframes marqueeGlow {
  from { text-shadow: 0 0 5px rgba(230, 57, 70, 0.3); }
  to { text-shadow: 0 0 15px rgba(230, 57, 70, 0.6), 0 0 30px rgba(230, 57, 70, 0.2); }
}

/* Filter Button Glitch on Active */
.products__filter.active {
  animation: filterActive 0.3s ease;
}

@keyframes filterActive {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Newsletter section reveal */
.newsletter__content.animate-on-scroll {
  transform: translateY(40px);
}

.newsletter__content.animate-in {
  animation: slideUp 0.8s ease forwards;
}

/* Add to bag pulse */
.product-card__btn--added {
  animation: addedPulse 0.4s ease;
}

@keyframes addedPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); background: #0f0; }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .product-card {
    animation: none;
    opacity: 1;
  }
  .hero__title::before,
  .hero__title::after {
    animation: none;
  }
  .hero__title {
    animation: none;
  }
  .hero__noise {
    animation: none;
  }
  .hero__splatter {
    animation: none;
  }
  .product-card__badge {
    animation: none;
  }
  .marquee__text {
    animation: none;
  }
}
