/* ===================================================== */
/* ATSTIX - Styles                                       */
/* ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=Bricolage+Grotesque:wght@600;700;800&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-soft: #12121a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text: #f5f5f7;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;

  --violet: #8b5cf6;
  --fuchsia: #d946ef;
  --pink: #ec4899;
  --orange: #f97316;
  --emerald: #10b981;
  --cyan: #06b6d4;
  --amber: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #d946ef 50%, #ec4899 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #d946ef 100%);
  --gradient-cool: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);

  --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lift: 0 20px 60px rgba(139, 92, 246, 0.25);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  font-size: 16px;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(at 20% 20%, rgba(139, 92, 246, 0.18) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(236, 72, 153, 0.18) 0px, transparent 50%),
    radial-gradient(at 0% 80%, rgba(6, 182, 212, 0.14) 0px, transparent 50%),
    radial-gradient(at 80% 80%, rgba(249, 115, 22, 0.12) 0px, transparent 50%);
  animation: mesh-flow 20s ease-in-out infinite alternate;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes mesh-flow {
  0%   { transform: scale(1) translate(0, 0) rotate(0deg); }
  100% { transform: scale(1.1) translate(-20px, 20px) rotate(2deg); }
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  filter: blur(20px);
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.font-display { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; }
.font-mono { font-family: 'Space Grotesk', monospace; }

.gradient-text,
.gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1200px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slide-down 0.6s var(--ease-out) both;
}

@keyframes slide-down {
  from { opacity: 0; transform: translate(-50%, -20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--violet);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.7; }
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease-smooth);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-link:hover {
  color: var(--text);
  background: var(--bg-card);
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.45);
}

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

.cart-count {
  background: white;
  color: var(--violet);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  min-width: 22px;
  text-align: center;
  display: none;
}

.cart-count.visible {
  display: inline-block;
  animation: bounce-in 0.4s var(--ease-spring);
}

@keyframes bounce-in {
  0%   { transform: scale(0); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fade-up 0.8s var(--ease-out) 0.1s both;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.hero-title .gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 6s ease-in-out infinite;
  display: inline-block;
}

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

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  animation: fade-up 0.8s var(--ease-out) 0.3s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.4s both;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.5s both;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}

.hero-stat-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary:hover::before { transform: translateX(100%); }

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(139, 92, 246, 0.5);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--bg-card);
  color: var(--text);
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--violet);
  transform: translateY(-2px);
}

/* ============ FLOATING STICKERS ============ */
.floating-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-sticker {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0.7;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-30px) rotate(calc(var(--rot, 0deg) + 5deg)); }
}

/* ============ SECTIONS ============ */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

/* ============ TYPES GRID ============ */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.type-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  backdrop-filter: blur(20px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  text-align: left;
  display: block;
  width: 100%;
  font-family: inherit;
  color: inherit;
}

.type-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.type-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--type-color, var(--violet)), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
}

.type-card:hover {
  transform: translateY(-10px);
  border-color: var(--type-color, var(--border-strong));
  box-shadow: 0 20px 60px color-mix(in srgb, var(--type-color, #8b5cf6) 30%, transparent);
}

.type-card:hover .type-card-glow { opacity: 0.15; }

.type-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  margin-bottom: 16px;
  z-index: 1;
}

.type-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.type-card:hover .type-card-img {
  transform: scale(1.1) rotate(-3deg);
}

.type-card-body {
  position: relative;
  z-index: 1;
}

.type-card-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.type-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.type-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s var(--ease-smooth);
  color: var(--text);
}

.type-card:hover .type-card-cta {
  background: var(--gradient-primary);
  border-color: transparent;
}

.premium-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

/* ============ HORS STOCK ============ */
.oos-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}

.oos-stamp {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(239, 68, 68, 0.95);
  color: white;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: 3px solid white;
  border-radius: 6px;
  transform: rotate(-12deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

/* Type card hors stock */
.type-card.out-of-stock {
  cursor: not-allowed;
  opacity: 0.75;
}

.type-card.out-of-stock:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border) !important;
}

.type-card.out-of-stock .type-card-img {
  filter: grayscale(0.4);
}

.type-card-cta.disabled {
  background: rgba(239, 68, 68, 0.1) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #f87171 !important;
  cursor: not-allowed;
}

.type-card.out-of-stock:hover .type-card-cta { background: rgba(239, 68, 68, 0.15) !important; }

/* Type picker card hors stock */
.type-picker-card.out-of-stock {
  cursor: not-allowed;
  opacity: 0.6;
}

.type-picker-card.out-of-stock:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: var(--border) !important;
}

.type-picker-card.out-of-stock img {
  filter: grayscale(0.5);
}

.type-picker-card.out-of-stock .oos-overlay {
  border-radius: 10px;
}

.type-picker-card.out-of-stock .oos-stamp {
  font-size: 10px;
  padding: 4px 10px;
  border-width: 2px;
}

.type-picker-card.out-of-stock .oos-badge {
  font-size: 8px;
  padding: 3px 7px;
}

.tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  z-index: 2;
}

/* ============ PACKS ============ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pack-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 32px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-strong);
}

.pack-card.s { background: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%); }
.pack-card.m { background: linear-gradient(135deg, #d946ef 0%, #ec4899 100%); }
.pack-card.l { background: linear-gradient(135deg, #ec4899 0%, #f97316 100%); }

.pack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3), transparent 50%);
  pointer-events: none;
}

.pack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.15) 1px, transparent 2px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.12) 1px, transparent 2px),
    radial-gradient(circle at 40% 50%, rgba(255,255,255,0.1) 1px, transparent 2px);
  background-size: 30px 30px, 50px 50px, 70px 70px;
  opacity: 0.6;
  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(139, 92, 246, 0.5);
}

.pack-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pack-emoji {
  font-size: 72px;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.pack-card:hover .pack-emoji {
  transform: scale(1.2) rotate(-10deg);
}

.pack-content {
  position: relative;
  z-index: 1;
  color: white;
}

.pack-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.pack-desc {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.pack-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pack-stat {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.pack-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.pack-price {
  font-family: 'Space Grotesk', monospace;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pack-original {
  font-size: 18px;
  opacity: 0.7;
  text-decoration: line-through;
}

.pack-add {
  background: white;
  color: #18181b;
  border: none;
  padding: 16px 24px;
  border-radius: 100px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  font-size: 15px;
  transition: all 0.2s var(--ease-spring);
  position: relative;
  z-index: 1;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pack-card:hover .pack-add {
  background: #000;
  color: white;
}

/* ============ FEATURES ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  transition: all 0.3s;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.feature:hover::before { transform: scaleX(1); }

.feature:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-step {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ CART DRAWER ============ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

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

.drawer-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
}

.drawer-close:hover {
  background: var(--bg-card-hover);
  transform: rotate(90deg);
}

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

.cart-items::-webkit-scrollbar { width: 6px; }
.cart-items::-webkit-scrollbar-track { background: transparent; }
.cart-items::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 100px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  align-items: center;
  animation: cart-item-in 0.4s var(--ease-spring) both;
}

@keyframes cart-item-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-soft);
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-pack {
  font-size: 11px;
  color: var(--violet);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 2px;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'Space Grotesk', monospace;
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 100px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: inherit;
  transition: all 0.2s;
}

.cart-qty-btn:hover {
  background: var(--violet);
  color: white;
}

.cart-qty-value {
  min-width: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Space Grotesk', monospace;
}

.cart-remove {
  width: 26px;
  height: 26px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: inherit;
}

.cart-remove:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #f87171;
}

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--text-muted);
  gap: 16px;
}

.cart-empty-icon {
  font-size: 56px;
  opacity: 0.5;
  margin-bottom: 8px;
  animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.cart-empty-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
}

.cart-row.total {
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
  font-family: 'Space Grotesk', monospace;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.4s var(--ease-spring);
}

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

.modal::-webkit-scrollbar { width: 6px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 100px;
}

.modal-header {
  padding: 28px 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.modal-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal-body { padding: 24px 28px; }

.modal-footer {
  padding: 0 28px 28px;
  display: flex;
  gap: 12px;
}

/* ============ PICKER (pack picker) ============ */
.picker-hero {
  margin-bottom: 24px;
}

.picker-hero-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.picker-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--type-color), transparent 40%);
  opacity: 0.15;
  pointer-events: none;
}

.picker-hero-card img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.picker-hero-info {
  position: relative;
  z-index: 1;
}

.picker-hero-tag {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 4px;
}

.picker-hero-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

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

.picker-packs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.picker-pack-option {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  font-family: inherit;
  color: var(--text);
  text-align: center;
}

.picker-pack-option:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.picker-pack-option.popular {
  border-color: var(--fuchsia);
  background: linear-gradient(180deg, rgba(217, 70, 239, 0.08), transparent);
}

.picker-pack-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.picker-pack-emoji {
  font-size: 32px;
  margin-bottom: 8px;
}

.picker-pack-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}

.picker-pack-qty {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.picker-pack-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.picker-pack-price {
  font-family: 'Space Grotesk', monospace;
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.picker-pack-original {
  font-size: 11px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.picker-pack-discount {
  margin-top: 8px;
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* ============ TYPE PICKER ============ */
.type-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.type-picker-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  font-family: inherit;
  color: inherit;
  text-align: left;
}

.type-picker-card:hover {
  border-color: var(--type-color, var(--violet));
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--type-color, #8b5cf6) 25%, transparent);
}

.type-picker-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
}

.type-picker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.type-picker-card:hover .type-picker-img-wrap img {
  transform: scale(1.1);
}

.type-picker-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
}

.type-picker-tag {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============ FORM ============ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row.three { grid-template-columns: 1fr 1fr 1fr; }

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

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}

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

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
}

/* ============ SHIPPING OPTIONS ============ */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shipping-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  font-family: inherit;
  color: var(--text);
  text-align: left;
  overflow: hidden;
}

.shipping-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.shipping-option:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.shipping-option.selected {
  border-color: var(--violet);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.06), rgba(236, 72, 153, 0.04));
  box-shadow: 0 6px 24px rgba(139, 92, 246, 0.2);
}

.shipping-option.selected::before { opacity: 1; }

.shipping-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--gradient-primary);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
  z-index: 1;
}

.shipping-head {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.shipping-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.shipping-option.selected .shipping-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
}

.shipping-info {
  flex: 1;
  min-width: 0;
}

.shipping-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.shipping-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.shipping-price {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800;
  font-size: 18px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.shipping-check {
  width: 26px;
  height: 26px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
  flex-shrink: 0;
}

.shipping-option.selected .shipping-check {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

.shipping-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 58px;
  position: relative;
  z-index: 1;
}

.shipping-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.shipping-perk svg {
  width: 12px;
  height: 12px;
  color: var(--text-dim);
  flex-shrink: 0;
}

.shipping-option.selected .shipping-perk svg {
  color: #34d399;
}

.shipping-option.selected .shipping-perk {
  color: var(--text);
}

@media (max-width: 600px) {
  .shipping-perks { padding-left: 0; }
}

/* ============ SHIPPING MINI (panier drawer) ============ */
.shipping-mini {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.shipping-mini-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 10px;
}

.shipping-mini-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.shipping-mini-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  font-family: inherit;
  color: var(--text);
  text-align: left;
  overflow: hidden;
}

.shipping-mini-option:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.shipping-mini-option.selected {
  border-color: var(--violet);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.25);
}

.shipping-mini-icon {
  font-size: 24px;
  line-height: 1;
}

.shipping-mini-info {
  flex: 1;
  width: 100%;
}

.shipping-mini-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 2px;
}

.shipping-mini-delay {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
}

.shipping-mini-price {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800;
  font-size: 16px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.shipping-mini-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--gradient-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
  animation: bounce-in 0.4s var(--ease-spring);
}

/* ============ PAYMENT BOX ============ */
.payment-box {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
  border: 1px solid var(--violet);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.payment-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.payment-phone {
  font-family: 'Space Grotesk', monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  cursor: pointer;
  user-select: all;
  margin-top: 4px;
}

.payment-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 8px;
}

/* ============ SUCCESS ============ */
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: white;
  animation: bounce-in 0.6s var(--ease-spring);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
}

.success-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
}

.success-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.order-number-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.order-number-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.order-number-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 24px;
  font-weight: 700;
  user-select: all;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ TOAST ============ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  max-width: 380px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  animation: toast-in 0.4s var(--ease-spring);
  pointer-events: auto;
}

.toast.success { border-left: 3px solid var(--emerald); }
.toast.error   { border-left: 3px solid #ef4444; }
.toast.info    { border-left: 3px solid var(--violet); }

.toast-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.toast-content { flex: 1; }
.toast-title { font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.toast-msg { font-size: 12px; color: var(--text-muted); }

@keyframes toast-in {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.toast.out { animation: toast-out 0.3s var(--ease-smooth) forwards; }

@keyframes toast-out {
  to { transform: translateX(120%); opacity: 0; }
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

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

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

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

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

/* ============ CONFETTI ============ */
@keyframes confetti-fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.confetti {
  position: fixed;
  width: 10px;
  height: 14px;
  z-index: 9999;
  pointer-events: none;
  animation: confetti-fall 2s ease-in forwards;
}

/* ============ USER MENU ============ */
.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px 16px !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  transition: all 0.25s var(--ease-spring) !important;
}

.auth-btn:hover {
  background: var(--gradient-primary) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-avatar-btn {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  background: var(--gradient-primary);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-spring);
  font-family: inherit;
  position: relative;
  overflow: visible;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
}

.user-avatar-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--pink), var(--orange));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
  filter: blur(8px);
}

.user-avatar-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(139, 92, 246, 0.55);
}

.user-avatar-btn:hover::before { opacity: 0.6; }

.user-avatar-chevron {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--bg-soft);
  border: 2px solid var(--bg);
  color: var(--text);
  width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  transition: transform 0.3s;
}

.user-dropdown.open ~ .user-avatar-chevron,
.user-menu:has(.user-dropdown.open) .user-avatar-chevron {
  transform: rotate(180deg);
}

/* Bouton "Mes commandes" direct dans la nav */
.nav-orders-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  font-family: inherit;
  backdrop-filter: blur(10px);
}

.nav-orders-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}

.nav-orders-btn .cart-count {
  background: var(--gradient-primary);
  color: white;
}

.nav-orders-btn:hover .cart-count {
  background: white;
  color: var(--violet);
}

.user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 15px;
  font-family: 'Bricolage Grotesque', sans-serif;
  letter-spacing: -0.02em;
}

.user-avatar.large {
  width: 56px;
  height: 56px;
  font-size: 24px;
  background: var(--gradient-primary);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

/* DROPDOWN — ULTRA propre */
.user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 300px;
  background: rgba(15, 15, 22, 0.92);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px) scale(0.92);
  transform-origin: top right;
  transition: opacity 0.25s var(--ease-out), transform 0.3s var(--ease-spring), visibility 0.25s;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  z-index: 200;
  overflow: hidden;
}

.user-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.25), transparent 70%);
  pointer-events: none;
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 14px 14px;
  position: relative;
}

.user-dropdown-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.user-dropdown-email {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.user-dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 6px 8px;
}

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s var(--ease-smooth);
  text-align: left;
  font-family: inherit;
  position: relative;
}

.user-dropdown-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(2px);
}

.user-dropdown-item > span:first-child {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 10px;
  flex-shrink: 0;
}

.user-dropdown-item:hover > span:first-child {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.user-dropdown-badge {
  margin-left: auto;
  background: var(--gradient-primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  display: none;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.5);
}

/* ============ AUTH MODAL — MAGNIFIQUE ============ */
.auth-tabs {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
}

.auth-tab {
  flex: 1;
  padding: 11px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s var(--ease-smooth);
  position: relative;
  z-index: 1;
}

.auth-tab.active {
  color: white;
}

/* Pill animée derrière */
.auth-tabs::before {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  background: var(--gradient-primary);
  border-radius: 100px;
  transition: transform 0.4s var(--ease-spring);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  z-index: 0;
}

.auth-tabs[data-mode="signup"]::before {
  transform: translateX(100%);
}

.auth-switch {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-muted);
}

.link-btn {
  background: none;
  border: none;
  color: var(--violet);
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  margin-left: 4px;
  transition: all 0.2s;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
}

.link-btn:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--pink);
}

.form-help {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

/* Mini gradient banner sur le auth modal header */
#authModal .modal {
  position: relative;
  overflow: hidden;
}

#authModal .modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse at top, rgba(139, 92, 246, 0.2), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#authModal .modal-header,
#authModal .modal-body {
  position: relative;
  z-index: 1;
}

/* ============ MY ORDERS — MAGNIFIQUE ============ */
.my-order-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 14px;
  animation: cart-item-in 0.5s var(--ease-spring) both;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.my-order-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.7;
}

.my-order-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.my-order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
  gap: 12px;
}

.my-order-number {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  font-size: 15px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.my-order-date {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-pill.status-pending    { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.35); box-shadow: 0 0 12px rgba(245, 158, 11, 0.2); }
.status-pill.status-processing { background: rgba(6, 182, 212, 0.15); color: #22d3ee; border: 1px solid rgba(6, 182, 212, 0.35); box-shadow: 0 0 12px rgba(6, 182, 212, 0.2); }
.status-pill.status-shipped    { background: rgba(139, 92, 246, 0.15); color: #a78bfa; border: 1px solid rgba(139, 92, 246, 0.35); box-shadow: 0 0 12px rgba(139, 92, 246, 0.2); }
.status-pill.status-delivered  { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.35); box-shadow: 0 0 12px rgba(16, 185, 129, 0.2); }
.status-pill.status-cancelled  { background: rgba(239, 68, 68, 0.15); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.35); }

.my-order-items {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  margin-bottom: 14px;
}

.my-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: background 0.2s;
}

.my-order-item:hover { background: var(--bg-card); }

.my-order-item + .my-order-item {
  border-top: 1px solid var(--border);
}

.my-order-item img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.my-order-item-info {
  flex: 1;
  min-width: 0;
}

.my-order-item-pack {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--violet);
  font-weight: 800;
  margin-bottom: 3px;
}

.my-order-item-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.my-order-item-qty {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800;
  color: var(--text);
  font-size: 14px;
  background: var(--bg-card);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.my-order-more {
  padding: 10px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.my-order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.my-order-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.my-order-total {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800;
  font-size: 22px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.my-order-twint {
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(249, 115, 22, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.my-order-twint > span:first-child {
  font-size: 16px;
  flex-shrink: 0;
}

.my-order-twint strong {
  color: #fbbf24;
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  cursor: pointer;
  user-select: all;
}

/* ===== Timeline progression ===== */
.my-order-timeline {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 4px;
  margin-bottom: 8px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.timeline-step.active { opacity: 1; }

.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s var(--ease-spring);
}

.timeline-step.active .timeline-dot {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.timeline-step.current .timeline-dot {
  transform: scale(1.2);
  animation: timeline-pulse 1.8s ease-in-out infinite;
}

@keyframes timeline-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4); }
  50%      { box-shadow: 0 4px 20px rgba(139, 92, 246, 0.8), 0 0 0 6px rgba(139, 92, 246, 0.2); }
}

.timeline-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  white-space: nowrap;
}

.timeline-step.active .timeline-label { color: var(--text); }

.timeline-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  align-self: flex-start;
  margin-top: 14px;
  transition: background 0.4s;
}

.timeline-line.active {
  background: var(--gradient-primary);
}

/* ===== Boutons confirm / report ===== */
.my-order-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.btn-confirm-received {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #10b981, #06b6d4);
  border: none;
  color: white;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.35);
}

.btn-confirm-received:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
}

.btn-report-problem {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
  font-family: inherit;
  font-weight: 600;
  font-size: 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-report-problem:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #fff;
}

.my-order-info {
  margin-top: 10px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 10px;
}

.my-order-delivered {
  margin-top: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 12px;
  font-size: 13px;
  color: #34d399;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===================================================== */
/* STATUS CARD 3D — ULTRA STYLÉ                          */
/* ===================================================== */

.status-card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  padding: 20px;
  perspective: 1400px;
}

.status-card-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.status-card {
  width: 100%;
  max-width: 440px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: translateY(80px) rotateX(-25deg) scale(0.85);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 50px 100px -20px rgba(0, 0, 0, 0.7),
    0 30px 60px -30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
}

.status-card-overlay.open .status-card {
  transform: translateY(0) rotateX(0) scale(1);
  opacity: 1;
}

.status-card-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
  font-family: inherit;
}

.status-card-close:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: rotate(90deg);
}

/* ===== SCÈNES 3D ===== */
.status-card-scene {
  position: relative;
  height: 220px;
  overflow: hidden;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PENDING — Serveur en attente */
.scene-pending {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
}
.scene-pending::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.3), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.3), transparent 40%);
}

/* PROCESSING — Usine */
.scene-processing {
  background: linear-gradient(135deg, #0c4a6e 0%, #155e75 50%, #06b6d4 100%);
}
.scene-processing::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.4), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.3), transparent 40%);
}

/* SHIPPED — Camion postal */
.scene-shipped {
  background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #d946ef 100%);
}
.scene-shipped::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 80%, rgba(217, 70, 239, 0.4), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3), transparent 40%);
}

/* DELIVERED — Maison */
.scene-delivered {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #10b981 100%);
}
.scene-delivered::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 90%, rgba(251, 191, 36, 0.4), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.3), transparent 40%);
}

/* CANCELLED — Rouge */
.scene-cancelled {
  background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #b91c1c 100%);
}

/* Grid floor (effet sol 3D) */
.scene-grid {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) perspective(400px) rotateX(60deg);
  width: 200%; height: 100px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,0.15) 50%, transparent 51%) 0 0 / 30px 30px,
    linear-gradient(0deg, transparent 49%, rgba(255,255,255,0.15) 50%, transparent 51%) 0 0 / 30px 30px;
  mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

/* Particules flottantes */
.scene-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  animation: particle-float 4s ease-in-out infinite;
}

@keyframes particle-float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%      { transform: translateY(-20px); opacity: 1; }
}

/* ===== ICÔNES 3D ===== */
.scene-icon {
  position: relative;
  z-index: 2;
  font-size: 110px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: icon-float 3s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(3deg); }
}

/* Server pour pending */
.scene-server {
  width: 130px; height: 150px;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  animation: server-tilt 4s ease-in-out infinite;
}

@keyframes server-tilt {
  0%, 100% { transform: rotateY(-15deg) rotateX(8deg); }
  50%      { transform: rotateY(15deg) rotateX(8deg); }
}

.server-body {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #18181b 0%, #27272a 100%);
  border-radius: 12px;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid #3f3f46;
  overflow: hidden;
}

.server-led {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  top: 12px;
}

.server-led-1 { left: 14px; background: #10b981; box-shadow: 0 0 10px #10b981; animation: led-blink 1.5s infinite; }
.server-led-2 { left: 28px; background: #fbbf24; box-shadow: 0 0 10px #fbbf24; animation: led-blink 1.5s 0.5s infinite; }
.server-led-3 { left: 42px; background: #ef4444; box-shadow: 0 0 10px #ef4444; animation: led-blink 1.5s 1s infinite; }

@keyframes led-blink {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

.server-rack {
  position: absolute;
  left: 12px; right: 12px;
  height: 18px;
  background: linear-gradient(180deg, #3f3f46, #27272a);
  border-radius: 4px;
  border: 1px solid #52525b;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}
.server-rack::before, .server-rack::after {
  content: '';
  width: 6px; height: 6px;
  background: rgba(139, 92, 246, 0.7);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.8);
}
.server-rack-1 { top: 38px; }
.server-rack-2 { top: 64px; }
.server-rack-3 { top: 90px; }
.server-rack-4 { top: 116px; }

/* Usine pour processing */
.scene-factory {
  position: relative;
  width: 170px; height: 130px;
  z-index: 2;
}

.factory-body {
  position: absolute;
  bottom: 0; left: 20%;
  width: 60%; height: 70%;
  background: linear-gradient(180deg, #475569 0%, #334155 100%);
  border-radius: 6px 6px 0 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.factory-window {
  position: absolute;
  width: 14px; height: 14px;
  background: #fbbf24;
  border-radius: 2px;
  box-shadow: 0 0 12px #fbbf24;
  animation: window-flicker 2s infinite;
}

@keyframes window-flicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.factory-window-1 { bottom: 10%; left: 28%; }
.factory-window-2 { bottom: 10%; right: 28%; }
.factory-window-3 { top: 22%; left: 38%; animation-delay: 0.5s; }

.factory-chimney {
  position: absolute;
  bottom: 60%;
  width: 16px; height: 38px;
  background: linear-gradient(180deg, #1e293b, #334155);
  border-radius: 2px 2px 0 0;
}

.factory-chimney-1 { left: 30%; }
.factory-chimney-2 { right: 30%; height: 50px; bottom: 60%; }

.factory-smoke {
  position: absolute;
  width: 30px; height: 30px;
  background: radial-gradient(circle, rgba(203, 213, 225, 0.6), transparent 70%);
  border-radius: 50%;
  animation: smoke-rise 3s ease-out infinite;
}

@keyframes smoke-rise {
  0%   { transform: translate(-50%, 0) scale(0.5); opacity: 0; }
  20%  { opacity: 0.9; }
  100% { transform: translate(-50%, -80px) scale(2); opacity: 0; }
}

.factory-smoke-1 { left: 32%; top: 10%; animation-delay: 0s; }
.factory-smoke-2 { right: 25%; top: 5%; animation-delay: 1s; }
.factory-smoke-3 { left: 38%; top: 12%; animation-delay: 2s; }

/* Camion postal pour shipped */
.scene-truck {
  position: relative;
  width: 200px; height: 110px;
  z-index: 2;
  animation: truck-drive 3s ease-in-out infinite;
}

@keyframes truck-drive {
  0%, 100% { transform: translateX(-12px); }
  50%      { transform: translateX(12px); }
}

.truck-cabin {
  position: absolute;
  bottom: 15px; left: 0;
  width: 60px; height: 60px;
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  border-radius: 14px 4px 4px 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.truck-window {
  position: absolute;
  top: 10px; left: 10px;
  width: 40px; height: 22px;
  background: linear-gradient(180deg, #93c5fd, #60a5fa);
  border-radius: 6px 2px 2px 2px;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.5);
}

.truck-body {
  position: absolute;
  bottom: 15px; left: 55px;
  width: 130px; height: 78px;
  background: linear-gradient(180deg, #fafafa 0%, #d4d4d4 100%);
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.truck-body::before {
  content: '✉';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ef4444;
}

.truck-wheel {
  position: absolute;
  bottom: 0;
  width: 22px; height: 22px;
  background: radial-gradient(circle at 30% 30%, #525252, #18181b);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #71717a;
  animation: wheel-spin 0.5s linear infinite;
}

@keyframes wheel-spin { to { transform: rotate(360deg); } }

.truck-wheel-1 { left: 16px; }
.truck-wheel-2 { left: 150px; }

.truck-line {
  position: absolute;
  bottom: 4px;
  width: 12px; height: 3px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: road-line 0.6s linear infinite;
}

@keyframes road-line {
  from { transform: translateX(0); }
  to   { transform: translateX(-30px); }
}

.truck-line-1 { left: 40%; }
.truck-line-2 { left: 65%; animation-delay: 0.2s; }
.truck-line-3 { left: 90%; animation-delay: 0.4s; }

/* Maison pour delivered */
.scene-house {
  position: relative;
  width: 170px; height: 160px;
  z-index: 2;
  animation: house-bounce 2s ease-in-out infinite;
}

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

.house-roof {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 95px solid transparent;
  border-right: 95px solid transparent;
  border-bottom: 60px solid #ef4444;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.house-body {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 150px; height: 100px;
  background: linear-gradient(180deg, #fafafa 0%, #e5e5e5 100%);
  border-radius: 4px 4px 0 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.house-door {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 50px;
  background: linear-gradient(180deg, #92400e 0%, #78350f 100%);
  border-radius: 6px 6px 0 0;
}

.house-door::after {
  content: '';
  position: absolute;
  right: 5px; top: 50%;
  width: 4px; height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 6px #fbbf24;
}

.house-window {
  position: absolute;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #fef3c7, #fbbf24);
  border-radius: 4px;
  top: 18px;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  animation: window-glow 2s ease-in-out infinite;
}

@keyframes window-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(251, 191, 36, 0.5); }
  50%      { box-shadow: 0 0 30px rgba(251, 191, 36, 0.9); }
}

.house-window-1 { left: 18px; }
.house-window-2 { right: 18px; }

.house-package {
  position: absolute;
  bottom: -4px; right: -10px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
  animation: package-arrive 1.5s ease-out;
}

.house-package::before, .house-package::after {
  content: '';
  position: absolute;
  background: #b91c1c;
}

.house-package::before {
  top: 0; bottom: 0; left: 50%;
  width: 3px;
  transform: translateX(-50%);
}

.house-package::after {
  left: 0; right: 0; top: 50%;
  height: 3px;
  transform: translateY(-50%);
}

@keyframes package-arrive {
  from { transform: translate(40px, -40px) rotate(180deg); opacity: 0; }
  to   { transform: translate(0, 0) rotate(0); opacity: 1; }
}

/* ===== CONTENT ===== */
.status-card-content {
  padding: 28px 28px 28px;
  text-align: center;
  position: relative;
}

.status-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.status-card-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.status-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.status-card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.status-card-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 20px;
}

.status-card-order-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
}

.status-card-order-num {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  font-size: 16px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.status-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.status-card-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.55);
}

/* ============ POKÉMON COMING SOON ============ */
.pokemon-nav-link {
  position: relative;
}

.nav-soon-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #000;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(251, 191, 36, 0.5); }
  50%      { transform: scale(1.1); box-shadow: 0 0 20px rgba(251, 191, 36, 0.8); }
}

.pokemon-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* ========== BG PARALLAX ULTRA STYLÉ ========== */
.pokemon-parallax-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.pokemon-bg-logo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(120px, 22vw, 380px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(251, 191, 36, 0.12);
  white-space: nowrap;
  user-select: none;
  will-change: transform;
  line-height: 0.85;
  z-index: 0;
}

.pokemon-bg-logo-2 {
  top: auto;
  bottom: 5%;
  font-size: clamp(80px, 16vw, 260px);
  -webkit-text-stroke: 2px rgba(239, 68, 68, 0.1);
  color: transparent;
  letter-spacing: -0.04em;
}

/* PokéBalls miniatures qui flottent en background */
.floating-poke {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    linear-gradient(to bottom, #ef4444 0%, #ef4444 49%, #18181b 49%, #18181b 53%, #fafafa 53%, #fafafa 100%);
  box-shadow:
    inset -4px -4px 12px rgba(0, 0, 0, 0.3),
    inset 4px 4px 8px rgba(255, 255, 255, 0.2),
    0 12px 30px rgba(239, 68, 68, 0.25);
  opacity: 0.5;
  will-change: transform;
}

.floating-poke::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22%; height: 22%;
  background: #fafafa;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #18181b, 0 0 0 6px #fafafa;
}

.ball-1 { top: 12%; left: 6%;  width: 80px; height: 80px; animation: ball-spin-1 18s linear infinite; }
.ball-2 { top: 65%; left: 12%; width: 50px; height: 50px; animation: ball-spin-2 22s linear infinite; opacity: 0.4; }
.ball-3 { top: 20%; right: 8%; width: 60px; height: 60px; animation: ball-spin-1 25s linear infinite reverse; opacity: 0.45; }
.ball-4 { top: 72%; right: 18%; width: 90px; height: 90px; animation: ball-spin-2 30s linear infinite; opacity: 0.55; }

@keyframes ball-spin-1 {
  0%   { transform: rotate(0deg) translateY(0); }
  50%  { transform: rotate(180deg) translateY(-20px); }
  100% { transform: rotate(360deg) translateY(0); }
}

@keyframes ball-spin-2 {
  0%   { transform: rotate(0deg) translateX(0); }
  50%  { transform: rotate(-180deg) translateX(15px); }
  100% { transform: rotate(-360deg) translateX(0); }
}

/* Éclairs/étoiles flottants */
.floating-bolt {
  position: absolute;
  font-size: 32px;
  opacity: 0.4;
  filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
  will-change: transform;
  animation: bolt-pulse 3s ease-in-out infinite;
}

@keyframes bolt-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.9) rotate(0deg); }
  50%      { opacity: 0.9; transform: scale(1.2) rotate(15deg); }
}

.bolt-1 { top: 25%; left: 18%;  font-size: 38px; animation-delay: 0s; color: #fbbf24; }
.bolt-2 { top: 40%; right: 6%;  font-size: 28px; animation-delay: 0.6s; color: #fbbf24; }
.bolt-3 { top: 78%; left: 30%;  font-size: 24px; animation-delay: 1.2s; color: #f59e0b; }
.bolt-4 { top: 15%; right: 25%; font-size: 30px; animation-delay: 1.8s; color: #fbbf24; }
.bolt-5 { top: 60%; left: 40%;  font-size: 36px; animation-delay: 2.4s; color: #fbbf24; }

/* Le contenu doit être au-dessus */
.pokemon-section .container {
  position: relative;
  z-index: 1;
}

/* Reveal animations on scroll */
.reveal-hidden {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out),
    filter 0.8s var(--ease-out);
}

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

/* Variantes plus dramatiques */
.pokemon-title.reveal-hidden { transform: translateY(60px) scale(0.95); }
.pokeball-wrap.reveal-hidden { transform: translateY(60px) rotate(-15deg) scale(0.8); }
.pokeball-wrap.reveal-visible { transform: translateY(0) rotate(0) scale(1); transition-duration: 1s; }

.pokemon-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(239, 68, 68, 0.2), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(251, 191, 36, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(15, 15, 22, 0.95), rgba(20, 12, 12, 0.95));
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(239, 68, 68, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Bande "construction" animée */
.construction-tape {
  background: repeating-linear-gradient(
    -45deg,
    #fbbf24 0px,
    #fbbf24 20px,
    #18181b 20px,
    #18181b 40px
  );
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 0;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.construction-tape::before {
  content: attr(data-text);
  display: inline-block;
}

.construction-tape {
  background-size: 40px 100%;
  animation: tape-slide 8s linear infinite;
  text-align: center;
  text-shadow: 2px 2px 0 #000;
}

.construction-tape.reverse {
  animation: tape-slide-reverse 8s linear infinite;
  background: repeating-linear-gradient(
    45deg,
    #ef4444 0px,
    #ef4444 20px,
    #18181b 20px,
    #18181b 40px
  );
}

@keyframes tape-slide {
  from { background-position: 0 0; }
  to   { background-position: 40px 0; }
}

@keyframes tape-slide-reverse {
  from { background-position: 0 0; }
  to   { background-position: -40px 0; }
}

.pokemon-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 60px 48px;
  align-items: center;
}

.pokemon-eyebrow {
  background: rgba(239, 68, 68, 0.12) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
  color: #fca5a5 !important;
}

.pokemon-soon-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.pokemon-live-dot {
  background: #10b981 !important;
  box-shadow: 0 0 10px #10b981 !important;
}

.pokemon-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-pokemon-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(251, 191, 36, 0.4);
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  backdrop-filter: blur(10px);
}

.btn-pokemon-outline:hover {
  background: rgba(251, 191, 36, 0.15);
  border-color: #fbbf24;
  transform: translateY(-2px);
}

/* ============ POKEMON PACKS GRID ============ */
.pokemon-packs-section {
  margin-top: 60px;
}

.pokemon-packs-header {
  text-align: center;
  margin-bottom: 32px;
}

.pokemon-packs-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}

.pokemon-packs-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.pokemon-packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pokepack-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 28px 24px;
  transition: all 0.4s var(--ease-out);
  backdrop-filter: blur(20px);
  text-align: center;
  overflow: hidden;
}

.pokepack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(ellipse at top, var(--pack-color), transparent 60%);
  opacity: 0.2;
  pointer-events: none;
  transition: opacity 0.4s;
}

.pokepack-card:hover {
  transform: translateY(-8px);
  border-color: var(--pack-color);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--pack-color, #8b5cf6) 30%, transparent);
}

.pokepack-card:hover::before { opacity: 0.4; }

.pokepack-card.popular {
  border-color: rgba(167, 139, 250, 0.4);
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.06), var(--bg-card));
}

.pokepack-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: black;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
  z-index: 2;
}

.pokepack-icon {
  font-size: 64px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  margin-bottom: 8px;
  display: inline-block;
  transition: transform 0.4s var(--ease-spring);
  position: relative;
  z-index: 1;
}

.pokepack-card:hover .pokepack-icon {
  transform: scale(1.15) rotate(-8deg);
}

.pokepack-rarity {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pack-color);
  background: color-mix(in srgb, var(--pack-color, #8b5cf6) 15%, transparent);
  border: 1px solid color-mix(in srgb, var(--pack-color, #8b5cf6) 35%, transparent);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.pokepack-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pokepack-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pokepack-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.pokepack-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.pokepack-perk svg {
  color: #34d399;
  flex-shrink: 0;
}

.pokepack-price {
  font-family: 'Space Grotesk', monospace;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--pack-color), #ec4899);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.pokepack-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--pack-color), #ec4899);
  border: none;
  color: white;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--pack-color, #8b5cf6) 40%, transparent);
}

.pokepack-add:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--pack-color, #8b5cf6) 55%, transparent);
}

.pokepack-add:disabled {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  cursor: not-allowed;
  box-shadow: none;
}

.pokepack-card.out-of-stock {
  position: relative;
}

.pokepack-card.out-of-stock > *:not(.oos-overlay-full) {
  filter: grayscale(0.7) blur(0.5px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.oos-overlay-full {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  gap: 14px;
  filter: none !important;
  opacity: 1 !important;
}

.oos-stamp-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 800;
  padding: 14px 28px;
  background: rgba(239, 68, 68, 0.95);
  color: white;
  border: 4px solid white;
  border-radius: 12px;
  transform: rotate(-6deg);
  letter-spacing: 0.08em;
  box-shadow: 0 16px 36px rgba(239, 68, 68, 0.5);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.oos-restock {
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
  text-align: center;
}

.pokepack-add:disabled,
.pokepack-add[aria-disabled="true"] {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(185, 28, 28, 0.15)) !important;
  color: #f87171 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  pointer-events: none;
  opacity: 0.6;
}

/* ============ SINGLE HERO PACK (centered, larger) ============ */
.pokemon-packs-grid.single-pack {
  display: flex;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.pokepack-card.hero-pack {
  width: 100%;
  max-width: 640px;
  padding: 36px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.08), var(--bg-card));
  border: 2px solid rgba(167, 139, 250, 0.3);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.pokepack-card.hero-pack::before {
  height: 200px;
  opacity: 0.4;
}

.pokepack-card.hero-pack:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
  box-shadow: 0 28px 70px rgba(139, 92, 246, 0.4);
}

.pokepack-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.pokepack-hero-icon {
  font-size: 84px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  animation: pokeball-bounce 3s ease-in-out infinite;
  flex-shrink: 0;
  line-height: 1;
}

.pokepack-hero-info {
  flex: 1;
  min-width: 0;
}

.pokepack-hero .pokepack-name {
  font-size: 30px;
  margin-bottom: 6px;
}

.pokepack-hero .pokepack-desc {
  font-size: 14px;
  margin-bottom: 12px;
}

.pokepack-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pokepack-hero .pokepack-price {
  margin-bottom: 0;
  font-size: 42px;
}

.pokepack-quantity {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Grid des raretés */
.pokepack-rarity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.rarity-tier {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s var(--ease-out);
}

.rarity-tier:hover {
  border-color: var(--violet);
  transform: translateY(-2px);
}

.rarity-tier-symbol {
  font-family: 'Space Grotesk', monospace;
  font-size: 20px;
  font-weight: 800;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--text);
}

.rarity-tier-info {
  flex: 1;
  min-width: 0;
}

.rarity-tier-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 1px;
}

.rarity-tier-chance {
  font-size: 11px;
  color: var(--text-muted);
}

/* Warning */
.pokepack-warning {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.05));
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.pokepack-warning strong { color: #fbbf24; }

.pokepack-add.hero-add {
  padding: 18px 28px;
  font-size: 16px;
  border-radius: 16px;
  background: var(--gradient-primary);
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.45);
}

.pokepack-add.hero-add:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 48px rgba(139, 92, 246, 0.6);
}

@media (max-width: 600px) {
  .pokepack-hero {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .pokepack-card.hero-pack { padding: 28px 22px; }
  .pokepack-hero .pokepack-name { font-size: 24px; }
  .pokepack-hero .pokepack-price { font-size: 36px; }
}

/* ============ STOCK TAGS (shop) ============ */
.stock-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin: 8px 0;
  letter-spacing: 0.02em;
}

.stock-tag.ok  { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.stock-tag.mid { background: rgba(16, 185, 129, 0.1);  color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.25); }
.stock-tag.low {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(249, 115, 22, 0.12));
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.4);
  animation: stock-pulse 1.8s ease-in-out infinite;
}
.stock-tag.oos { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

@keyframes stock-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50%      { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2); }
}

.pokepack-stock-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pokepack-stock-bar .stock-tag {
  padding: 6px 14px;
  font-size: 13px;
}

.shop-card-stock-warn,
.shop-card-stock-ok {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin: 4px 0 8px;
  display: inline-block;
}

.shop-card-stock-warn {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.shop-card-stock-ok {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

/* ============ POKEMON CARDS (singles) — SHOP ============ */
.pokemon-cards-section {
  margin-top: 80px;
}

.cards-shop-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
  max-width: 600px;
}

.pokemon-singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(20px);
}

.shop-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--violet);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.35);
}

.shop-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 5/7;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  overflow: hidden;
}

.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}

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

.shop-card-condition {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 11px;
  border-radius: 100px;
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 2;
}

.cond-nm { background: rgba(16, 185, 129, 0.9); color: white; }
.cond-ex { background: rgba(6, 182, 212, 0.9);  color: white; }
.cond-lp { background: rgba(251, 191, 36, 0.9); color: #18181b; }
.cond-pl { background: rgba(249, 115, 22, 0.9); color: white; }

.shop-card-rarity {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.95), rgba(249, 115, 22, 0.95));
  color: #18181b;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.shop-card-body {
  padding: 14px;
}

.shop-card-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.shop-card-price {
  font-family: 'Space Grotesk', monospace;
  font-weight: 800;
  font-size: 18px;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s;
}

.shop-card:hover .shop-card-cta {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* Card detail modal */
.card-detail-image-wrap {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 5/7;
  margin: 0 auto 24px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.card-detail-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-detail-info {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
}

.card-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.card-detail-row:last-child { border-bottom: none; }

.card-detail-row span {
  color: var(--text-muted);
}

.card-detail-row strong {
  font-weight: 700;
  color: var(--text);
}

.card-detail-description {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-detail-row-label {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.card-detail-description p {
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
  white-space: pre-wrap;
}

.card-detail-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 14px;
}

.card-detail-price-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2px;
}

.card-detail-price {
  font-family: 'Space Grotesk', monospace;
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.card-detail-add {
  flex: 1;
  justify-content: center;
  max-width: 240px;
}

.pokemon-title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.pokemon-stripe {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  background: linear-gradient(180deg, #fbbf24 0%, #fbbf24 48%, #ef4444 52%, #ef4444 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  text-shadow: 0 0 60px rgba(251, 191, 36, 0.3);
  position: relative;
}

.pokemon-subtitle-text {
  display: block;
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: var(--text);
  margin-top: 8px;
  letter-spacing: -0.02em;
}

.pokemon-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.pokemon-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pokemon-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s var(--ease-out);
}

.pokemon-feature:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateX(4px);
}

.pokemon-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
}

.pokemon-feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}

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

.btn-pokemon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #fbbf24, #ef4444);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(239, 68, 68, 0.35);
  transition: all 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

.btn-pokemon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-pokemon:hover::before { transform: translateX(100%); }

.btn-pokemon:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.5);
}

/* PokéBall — CSS pure */
.pokemon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}

.pokeball-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}

.pokeball {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(239, 68, 68, 0.4),
    inset -10px -10px 30px rgba(0, 0, 0, 0.3),
    inset 10px 10px 30px rgba(255, 255, 255, 0.15);
  animation: pokeball-bounce 3s ease-in-out infinite;
}

@keyframes pokeball-bounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-20px) rotate(3deg); }
}

.pokeball-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #ff4d4d 0%, #ef4444 50%, #b91c1c 100%);
}

.pokeball-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 50%, #a3a3a3 100%);
}

.pokeball-band {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 14%;
  background: #18181b;
  transform: translateY(-50%);
  z-index: 1;
}

.pokeball-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28%;
  height: 28%;
  background: linear-gradient(135deg, #fafafa, #d4d4d4);
  border-radius: 50%;
  z-index: 2;
  box-shadow:
    inset 3px 3px 8px rgba(255, 255, 255, 0.9),
    inset -3px -3px 8px rgba(0, 0, 0, 0.2),
    0 0 0 6px #18181b,
    0 0 0 12px #fafafa,
    0 0 30px rgba(251, 191, 36, 0.4);
  animation: pokeball-button-glow 2s ease-in-out infinite;
}

@keyframes pokeball-button-glow {
  0%, 100% { box-shadow: inset 3px 3px 8px rgba(255, 255, 255, 0.9), inset -3px -3px 8px rgba(0, 0, 0, 0.2), 0 0 0 6px #18181b, 0 0 0 12px #fafafa, 0 0 30px rgba(251, 191, 36, 0.4); }
  50%      { box-shadow: inset 3px 3px 8px rgba(255, 255, 255, 0.9), inset -3px -3px 8px rgba(0, 0, 0, 0.2), 0 0 0 6px #18181b, 0 0 0 12px #fafafa, 0 0 50px rgba(251, 191, 36, 0.8); }
}

/* Étoiles autour de la PokéBall */
.poke-star {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-size: 24px;
  animation: star-twinkle 2.5s ease-in-out infinite;
  animation-delay: var(--delay);
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.6));
  pointer-events: none;
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .pokemon-content {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }
  .pokemon-right { min-height: 280px; }
  .pokeball-wrap { width: 220px; height: 220px; }
}

@media (max-width: 768px) {
  .nav { padding: 10px 16px; }
  .nav-link.hide-mobile { display: none; }
  .logo { font-size: 20px; }
  .container { padding: 0 16px; }
  section { padding: 60px 0; }
  .hero { padding: 100px 16px 60px; }
  .hero-stats { gap: 16px; }
  .hero-stat-divider { display: none; }
  .form-row,
  .form-row.three { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; text-align: center; }
  .picker-packs { grid-template-columns: 1fr; }
  .type-picker-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }

  .pokemon-section { padding: 60px 0; }
  .pokemon-wrap { border-radius: 24px; }
  .pokemon-content { padding: 32px 20px; }
  .pokeball-wrap { width: 180px; height: 180px; }
  .construction-tape { font-size: 11px; padding: 8px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bg-mesh, .floating-sticker, .cursor-glow { display: none; }
}
