/* ==========================================================================
   ALIMAÑA VINYL TOYS - DESIGN SYSTEM & STYLESHEET
   Aesthetics: Urban Vinyl Toy Collectible, Streetwear Cyber-Retro & Dark Neon
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-primary: #0a0e0c;
  --bg-surface: #111713;
  --bg-surface-elevated: #18221c;
  --bg-card: #151d18;
  --bg-card-hover: #1e2a22;
  
  --alimana-lime: #ACC93B;
  --alimana-lime-glow: rgba(172, 201, 59, 0.4);
  --alimana-green: #3A892E;
  --alimana-green-dark: #275c1f;
  --alimana-slate: #364234;
  --alimana-cream: #ECEFE9;
  
  --neon-cyan: #55efc4;
  --neon-glow: #00ff88;
  --neon-red: #ff4757;
  --neon-orange: #ff9f43;
  
  --text-primary: #f5f6fa;
  --text-secondary: #a4b0be;
  --text-muted: #747d8c;
  --text-inverse: #0a0e0c;
  
  --border-subtle: rgba(172, 201, 59, 0.15);
  --border-active: rgba(172, 201, 59, 0.5);
  --glass-bg: rgba(17, 23, 19, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  --font-accent: 'Permanent Marker', cursive;

  /* Layout */
  --header-height: 72px;
  --container-max-width: 1240px;
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glow UV Night Mode */
[data-glow-mode="true"] {
  --bg-primary: #050806;
  --bg-surface: #0a110d;
  --bg-card: #0d1711;
  --alimana-lime: #00ff88;
  --alimana-lime-glow: rgba(0, 255, 136, 0.7);
  --border-subtle: rgba(0, 255, 136, 0.4);
  --border-active: #00ff88;
  --text-primary: #ffffff;
}

[data-glow-mode="true"] .stage-toy-img {
  filter: drop-shadow(0 0 35px #00ff88) brightness(1.2) contrast(1.1);
}

[data-glow-mode="true"] .top-ticker {
  background: #00ff88;
  color: #000000;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 40px);
  max-width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
  overflow-x: clip;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(172, 201, 59, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(58, 137, 46, 0.06) 0%, transparent 50%),
    linear-gradient(to bottom, var(--bg-primary), #070a08);
  min-height: 100vh;
}

@supports not (overflow-x: clip) {
  html, body {
    overflow-x: hidden;
  }
}

header, main, section, footer, .top-ticker, .site-header, .legacy-banner-strip, .section-container, .header-container {
  max-width: 100%;
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   TOP TICKER BAR
   ========================================================================== */
.top-ticker {
  background: var(--alimana-green);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
  transition: all var(--transition-normal);
}

.ticker-content {
  display: inline-flex;
  gap: 3rem;
  animation: tickerScroll 28s linear infinite;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.ticker-content span i {
  color: var(--alimana-lime);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--border-active);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 15px var(--alimana-lime-glow);
  position: relative;
}

.brand-tag::after {
  content: '™';
  font-size: 0.65rem;
  color: var(--alimana-lime);
  position: absolute;
  top: -2px;
  right: -12px;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--alimana-lime);
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--border-radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.nav-link i {
  font-size: 0.8rem;
  color: var(--alimana-lime);
  opacity: 0.7;
  transition: transform var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(172, 201, 59, 0.12);
}

.nav-link:hover i {
  transform: translateY(-2px);
  opacity: 1;
}

.nav-btn-cta {
  background: var(--alimana-lime) !important;
  color: #0a0e0c !important;
  font-weight: 700 !important;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.nav-btn-cta i {
  color: #0a0e0c !important;
  opacity: 1 !important;
}

.nav-btn-cta:hover {
  background: #c4e538 !important;
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--alimana-lime-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.glow-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(172, 201, 59, 0.15);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: all var(--transition-fast);
}

.glow-toggle-btn:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.3rem;
  color: var(--text-primary);
  padding: 0.4rem;
}

/* ==========================================================================
   LEGACY BANNER STRIP
   ========================================================================== */
.legacy-banner-strip {
  width: 100%;
  background-color: #060a08;
  background-image: 
    radial-gradient(ellipse at center, rgba(8, 14, 10, 0.5) 0%, rgba(0, 0, 0, 0.92) 100%),
    url('../assets/img/alimana-bg-pattern.jpg');
  background-repeat: repeat;
  background-size: 340px auto;
  background-position: center;
  border-bottom: 2px solid var(--alimana-green);
  border-top: 1px solid rgba(172, 201, 59, 0.2);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.95);
  padding: 1.25rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.banner-wrapper {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.9), 0 0 30px rgba(172, 201, 59, 0.35);
  border: 2px solid var(--border-active);
}

.legacy-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: contrast(1.05) brightness(1.02);
  transition: transform var(--transition-slow);
}

.legacy-banner-strip:hover .legacy-banner-img {
  transform: scale(1.01);
}

.banner-glow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 40%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 4rem 1.5rem 5rem;
  position: relative;
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(172, 201, 59, 0.12);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.highlight-lime {
  color: var(--alimana-lime);
  position: relative;
  text-shadow: 0 0 20px var(--alimana-lime-glow);
}

.hero-description {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--border-radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-primary {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 20px var(--alimana-lime-glow);
}

.btn-primary:hover {
  background: #c4e538;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--alimana-lime-glow);
}

.btn-secondary {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
}

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

.btn-lime-full {
  background: var(--alimana-lime);
  color: #0a0e0c;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.btn-lime-full:hover {
  background: #c4e538;
  box-shadow: 0 0 25px var(--alimana-lime-glow);
  transform: translateY(-2px);
}

/* Quick Stats */
.quick-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--alimana-lime);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero Visualizer Card */
.hero-visualizer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: 1.75rem;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--alimana-lime);
  font-weight: 700;
}

.pulse-dot {
  font-size: 0.55rem;
  color: var(--alimana-lime);
  animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.card-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
}

.visualizer-stage {
  min-height: 360px;
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.12) 0%, rgba(10, 14, 12, 0.8) 70%);
  border-radius: var(--border-radius-lg);
  border: 1px dashed rgba(172, 201, 59, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.glow-halo {
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, var(--alimana-lime-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.stage-toy-img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  transition: all var(--transition-normal);
  z-index: 2;
  animation: floatToy 5s ease-in-out infinite;
}

@keyframes floatToy {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

.radar-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--alimana-lime), transparent);
  box-shadow: 0 0 10px var(--alimana-lime);
  opacity: 0.4;
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanLine {
  0% { top: 0%; opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Variant controls */
.variant-controls {
  margin-top: 1.25rem;
  background: var(--bg-surface-elevated);
  padding: 1rem 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.control-label {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--c);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  position: relative;
}

.swatch-btn.active {
  border-color: #ffffff;
  transform: scale(1.18);
  box-shadow: 0 0 12px var(--c);
}

.variant-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0.6rem;
  font-family: var(--font-mono);
}

/* ==========================================================================
   GLOBAL SECTION COMMONS
   ========================================================================== */
.section-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-badge-center {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(172, 201, 59, 0.1);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SPORE TROOPER STORY & EDITIONS
   ========================================================================== */
.spore-feature-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.6) 50%, transparent);
}

.spore-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

.spore-story-card, .editions-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  position: relative;
}

.card-heading {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-heading i {
  color: var(--alimana-lime);
}

.card-text {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-size: 1.02rem;
}

.specs-pill-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0;
}

.spec-pill {
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spec-pill i {
  color: var(--alimana-lime);
}

.banner-preview-box {
  margin-top: 1.5rem;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.rounded-banner-img {
  width: 100%;
  transition: transform var(--transition-normal);
}

.rounded-banner-img:hover {
  transform: scale(1.03);
}

.editions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.edition-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-surface-elevated);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.edition-item:hover {
  border-color: var(--border-active);
  transform: translateX(5px);
  background: var(--bg-card-hover);
}

.edition-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.edition-indicator.color-green { background: #55efc4; box-shadow: 0 0 10px #55efc4; }
.edition-indicator.color-red { background: #ff4757; box-shadow: 0 0 10px #ff4757; }
.edition-indicator.color-black { background: #2f3542; border: 1px solid #747d8c; }
.edition-indicator.color-glow { background: #00ff88; box-shadow: 0 0 12px #00ff88; }
.edition-indicator.color-white { background: #ffffff; box-shadow: 0 0 8px rgba(255,255,255,0.7); }

.edition-info h4 {
  font-size: 0.95rem;
  color: #ffffff;
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}

.edition-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.editions-footer-action {
  margin-top: 2rem;
}

/* ==========================================================================
   CATALOG SECTION
   ========================================================================== */
.catalog-section {
  padding: 6rem 0;
}

.catalog-filters {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-surface);
  padding: 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.filter-tab.active, .filter-tab:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.toy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.toy-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--alimana-lime-glow);
}

.toy-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  background: rgba(10, 14, 12, 0.85);
  border: 1px solid var(--border-active);
  color: var(--alimana-lime);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
}

.toy-card-badge.glow-badge {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border-color: #00ff88;
}

.toy-card-badge.plush-badge {
  background: rgba(255, 159, 67, 0.2);
  color: #ff9f43;
  border-color: #ff9f43;
}

.toy-card-badge.promo-badge {
  background: rgba(255, 71, 87, 0.2);
  color: #ff4757;
  border-color: #ff4757;
}

.toy-card-image-wrap {
  height: 240px;
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.08) 0%, rgba(10, 14, 12, 0.9) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.toy-card-img {
  max-height: 200px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.toy-card:hover .toy-card-img {
  transform: scale(1.08) rotate(-1deg);
}

.toy-card-image-wrap.plush-bg {
  background: radial-gradient(circle at center, rgba(255, 159, 67, 0.15) 0%, rgba(10, 14, 12, 0.9) 80%);
}

.plush-visual-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ff9f43;
}

.plush-text-label {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
}

.toy-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.toy-card-type {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.toy-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.toy-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.toy-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.toy-status {
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.toy-status.in-stock { color: var(--alimana-lime); }
.toy-status.glow-text { color: #00ff88; }
.toy-price {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.btn-card-detail {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--alimana-lime);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: transform var(--transition-fast);
}

.btn-card-detail:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ==========================================================================
   ABOUT / THE COLLECTIVE
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: radial-gradient(circle at right center, rgba(58, 137, 46, 0.08) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.polaroid-card {
  background: #f1f2f6;
  padding: 1rem 1rem 1.75rem;
  border-radius: var(--border-radius-md);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(172, 201, 59, 0.15);
  transform: rotate(-2deg);
  transition: transform var(--transition-normal);
  position: relative;
}

.polaroid-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.polaroid-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff4757;
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.polaroid-img {
  width: 100%;
  border-radius: 4px;
  filter: contrast(1.05);
}

.polaroid-caption {
  margin-top: 1rem;
  text-align: center;
}

.polaroid-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2f3542;
  font-family: var(--font-mono);
}

.polaroid-sub {
  font-size: 0.72rem;
  color: #747d8c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.legacy-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  position: relative;
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--alimana-lime);
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.legacy-quote-card p {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-style: italic;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.about-p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.skill-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.skill-icon {
  font-size: 1.3rem;
  color: var(--alimana-lime);
  background: rgba(172, 201, 59, 0.1);
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.skill-item h4 {
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.skill-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.7) 50%, transparent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-card:hover {
  border-color: var(--border-active);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--alimana-lime-glow);
}

.gallery-img-wrap {
  height: 250px;
  position: relative;
  overflow: hidden;
  background: #000;
}

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

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

.gallery-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 12, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--alimana-lime);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.gallery-hover-overlay span {
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-tag {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.4rem;
}

.gallery-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.gallery-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-box:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.service-box.highlight-service {
  border-color: var(--border-active);
  background: linear-gradient(145deg, var(--bg-card), #16241a);
  box-shadow: 0 0 25px rgba(172, 201, 59, 0.15);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--alimana-lime);
  margin-bottom: 1.5rem;
}

.service-icon-wrap.lime-icon {
  background: var(--alimana-lime);
  color: #0a0e0c;
  box-shadow: 0 0 15px var(--alimana-lime-glow);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

.service-bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-bullets li i {
  color: var(--alimana-lime);
  font-size: 0.75rem;
}

/* ==========================================================================
   COMMUNITY / FRIENDS LINKS
   ========================================================================== */
.community-section {
  padding: 6rem 0;
  background: radial-gradient(circle at left center, rgba(172, 201, 59, 0.05) 0%, transparent 60%);
}

.friends-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.friend-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.friend-card:hover {
  border-color: var(--border-active);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.friend-banner-wrap {
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.friend-banner-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.friend-name {
  font-size: 0.85rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.friend-name i {
  font-size: 0.7rem;
  color: var(--alimana-lime);
}

/* ==========================================================================
   CONTACT & QUOTE SECTION
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(17, 23, 19, 0.9) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-icon {
  font-size: 1.3rem;
  color: var(--alimana-lime);
  background: rgba(172, 201, 59, 0.1);
  padding: 0.8rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.contact-link:hover {
  color: var(--alimana-lime);
}

.social-links-box {
  margin-top: 1.5rem;
}

.social-box-title {
  font-size: 0.88rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.social-badges-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.social-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.65rem 1rem;
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-badge-btn:hover {
  border-color: var(--alimana-lime);
  color: #ffffff;
  transform: translateX(4px);
}

.social-badge-btn.flickr i { color: #ff0084; }
.social-badge-btn.facebook i { color: #1877f2; }
.social-badge-btn.twitter i { color: #1da1f2; }

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.form-title i {
  color: var(--alimana-lime);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-family: var(--font-mono);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.8rem 1rem;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--alimana-lime);
  box-shadow: 0 0 15px var(--alimana-lime-glow);
  background: var(--bg-surface);
}

.form-select option {
  background: var(--bg-surface-elevated);
  color: #ffffff;
}

.form-success-msg {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--alimana-lime);
}

.form-success-msg h4 {
  font-size: 1.4rem;
  color: #ffffff;
  margin: 1rem 0 0.5rem;
}

.form-success-msg p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ==========================================================================
   MODALS & LIGHTBOXES
   ========================================================================== */
.modal-overlay, .lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active, .lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-xl);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--alimana-lime-glow);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn, .lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover, .lightbox-close:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
  transform: rotate(90deg);
}

.modal-content {
  padding: 2.5rem;
}

/* Modal Content Inner Layout */
.modal-grid-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.modal-toy-preview {
  background: radial-gradient(circle at center, rgba(172, 201, 59, 0.15) 0%, rgba(10, 14, 12, 0.9) 80%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.modal-toy-img {
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.8));
}

.modal-toy-details h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.modal-tag {
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--alimana-lime);
  margin-bottom: 1rem;
  display: block;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-specs-table td {
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.modal-specs-table td:first-child {
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.modal-specs-table td:last-child {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
}

/* Lightbox overlay components */
.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightboxImg {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-active);
  box-shadow: 0 0 35px var(--alimana-lime-glow);
}

.lightbox-caption {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--alimana-lime);
  color: #0a0e0c;
}

.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

/* ==========================================================================
   FAQ & KNOWLEDGE BASE SECTION (AEO & GEO)
   ========================================================================== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-card:hover {
  border-color: var(--border-active);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(172, 201, 59, 0.15);
}

.faq-question {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.35;
}

.faq-question i {
  color: var(--alimana-lime);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-answer strong {
  color: #ffffff;
}

.faq-answer em {
  color: var(--alimana-lime);
  font-style: italic;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #060907;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 3.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand-title {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 400px;
}

.footer-heading {
  font-size: 0.95rem;
  font-family: var(--font-mono);
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--alimana-lime);
}

.retro-counter-box {
  background: var(--bg-card);
  border: 1px solid var(--border-active);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0 15px rgba(172, 201, 59, 0.15);
}

.counter-label {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.counter-digits {
  display: flex;
  gap: 4px;
}

.counter-digits span {
  background: #000000;
  color: var(--alimana-lime);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(172, 201, 59, 0.3);
  text-shadow: 0 0 8px var(--alimana-lime-glow);
}

.counter-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.credits-legacy {
  font-style: italic;
  font-size: 0.78rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (FULL FLUID ARCHITECTURE)
   ========================================================================== */

/* --- 1. Large Desktop / Ultrawide (> 1200px) --- */
@media (min-width: 1201px) {
  .hero-container {
    grid-template-columns: 1.25fr 1fr;
    align-items: center;
  }
}

/* --- 2. Medium Laptops / Small Desktops (993px - 1200px) --- */
@media (max-width: 1200px) {
  .section-container, .header-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-container {
    grid-template-columns: 1.15fr 1fr;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .spore-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- 3. Tablets (769px - 992px) --- */
@media (max-width: 992px) {
  :root {
    --header-height: 68px;
    --section-padding: 4rem 1.25rem;
  }

  .header-container {
    padding: 0 1.25rem;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    color: var(--alimana-lime);
    background: rgba(172, 201, 59, 0.12);
    border: 1px solid var(--border-active);
    border-radius: var(--border-radius-sm);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(8, 12, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--border-active);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95);
    padding: 1.5rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .main-nav.mobile-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-btn-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .spore-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .friends-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* --- 4. Mobile Devices (Landscape & Portrait <= 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
    --section-padding: 3.25rem 1rem;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  .header-container {
    padding: 0 1rem;
  }

  .brand-tag {
    font-size: 1.3rem;
  }

  .brand-sub {
    font-size: 0.55rem;
  }

  .glow-toggle-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }

  .hero-section {
    padding: 1.75rem 0 2.5rem;
  }

  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    line-height: 1.15;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-badge {
    justify-content: center;
    font-size: 0.82rem;
  }

  .hero-teaser-card {
    padding: 1.25rem;
  }

  .toy-preview-box {
    height: 260px;
  }

  .swatch-group {
    justify-content: center;
  }

  .swatch-btn {
    width: 44px;
    height: 44px;
  }

  /* Catalog Horizontal Touch Swipe */
  .catalog-filters {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
    scrollbar-width: none;
  }

  .catalog-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.85rem;
    padding: 0.55rem 0.95rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .toy-card {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .quick-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .stat-num {
    font-size: 1.35rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .friends-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .friend-banner-wrap {
    height: 60px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-card {
    padding: 1.25rem;
  }

  .contact-form-card {
    padding: 1.5rem 1.15rem;
  }

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

  /* Prevent auto-zoom on iOS Safari */
  .form-input, .form-select, .form-textarea {
    font-size: 16px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal-grid-inner {
    grid-template-columns: 1fr;
  }

  .modal-toy-preview {
    min-height: 220px;
  }

  .lightbox-img-wrapper img {
    max-width: 94vw;
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .lightbox-nav.prev { left: 0.35rem; }
  .lightbox-nav.next { right: 0.35rem; }
}

/* --- 5. Small Mobile Phones (<= 480px) --- */
@media (max-width: 480px) {
  :root {
    --section-padding: 2.75rem 0.85rem;
  }

  .quick-stats-grid {
    grid-template-columns: 1fr;
  }

  .friends-grid {
    grid-template-columns: 1fr;
  }

  .ticker-content span {
    font-size: 0.72rem;
    margin-right: 1.5rem;
  }

  .legacy-banner-strip {
    padding: 0.5rem;
    background-size: 200px auto;
  }

  .banner-wrapper {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  }

  .retro-counter-box {
    width: 100%;
    justify-content: space-between;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}
