/** Shopify CDN: Minification failed

Line 3218:1 Unexpected "}"
Line 3435:20 Unexpected "{"
Line 3435:29 Expected ":"
Line 3435:36 Unexpected "{"

**/
/*
 * SOKUDO CORE CSS: The Tri-Mutation Design System
 * 1. Apple Minimalism (Negative Space, Monospace Specs)
 * 2. Supreme Streetwear (Heavy Italic Sans-Serif, High Contrast)
 * 3. The Animated World (Rubberhose Manga UI)
 */

:root {
  --color-base-bg: #000000; /* Strict Pitch Black Background */
  --color-base-text: #FFFFFF;
  --color-accent-neon: #ff2a2b;
  
  --font-header: 'Impact', sans-serif;
  --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  
  --spacing-global: 4rem;
}

/* Global Tactile Brutalism Override */
* {
  border-radius: 0px !important;
}

body {
  background-color: var(--color-base-bg);
  color: var(--color-base-text);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* Override Dawn base CSS — section wrappers must be transparent */
.shopify-section {
  background: transparent !important;
}

/* Strip all product outlines/borders from showcases, collections, catalog, and images globally */
.card,
.card-wrapper,
.card__inner,
.product-card,
.carousel-product-card,
.hero-highlight-card,
.grid__item .card,
.grid__item .card-wrapper,
.hero-highlight-img-wrapper,
.product-card img,
.fast-lane-card img,
.carousel-product-card img,
.showroom-gallery img,
.product-gallery img {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}

/* Gritty Underground Film Grain — LIVE STATIC */
body::before {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200vw;
  height: 200vh;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
  opacity: 0.1;
  z-index: 45;
  animation: staticDrift 0.3s steps(10) infinite;
}

@keyframes staticDrift {
  0% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(2%, 2%); }
  30% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -2%); }
  50% { transform: translate(-1%, 1%); }
  60% { transform: translate(1%, -1%); }
  70% { transform: translate(-2%, -1%); }
  80% { transform: translate(2%, 1%); }
  90% { transform: translate(-1%, 2%); }
  100% { transform: translate(1%, -2%); }
}

/* Fix cart overlap */
body.template-cart #MainContent,
body.template-page #MainContent,
body.template-collection #MainContent,
body.template-product #MainContent {
  padding-top: 100px;
}

/* Fast Lane Utilities */
.fast-lane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: var(--spacing-global);
}

.streetwear-header {
  font-family: var(--font-header);
  font-style: italic;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.monospace-spec {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Lookbook Lane Utilities */
.lookbook-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--spacing-global) * 2);
}

/* Global Header */
.global-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 2rem;
  min-height: 80px;
  height: auto;
  background: var(--color-base-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  box-sizing: border-box;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}
.header-action-right {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.logo-container {
  text-align: center;
}
.logo-text {
  text-decoration: none;
  color: var(--color-base-text);
  font-size: 2rem;
  margin: 0;
}
.menu-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.menu-link {
  text-decoration: none;
  color: var(--color-base-text);
  font-weight: bold;
}
.cart-toggle-btn {
  background: transparent;
  border: 1px solid var(--color-base-text);
  color: var(--color-base-text);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: bold;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--color-base-bg);
  border-left: 2px solid var(--color-base-text);
  padding: 2rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
  z-index: 10100;
  overflow-y: auto;
}
.cart-drawer.hidden {
  transform: translateX(100%);
}
/* --- Cart Drawer Close and Navigation Overrides --- */
/* --- Cart Drawer Close and Navigation Overrides --- */
.close-cart-btn {
  background: transparent !important;
  color: var(--color-base-text) !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.95rem !important;
  font-weight: bold !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-style: normal !important;
  cursor: pointer !important;
  transition: color 0.1s steps(2);
  display: inline-flex;
  align-items: center;
}
.close-cart-btn:hover {
  color: var(--color-accent-neon) !important;
}

/* Menu Drawer - Immersive JDM Style */
.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  max-width: 100vw;
  height: 100vh;
  background: #000000; /* Strict Pitch Black Background */
  backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10100;
  overflow-y: auto;
  box-shadow: 20px 0 50px rgba(0,0,0,0.8);
}
.menu-drawer:not(.hidden) {
  transform: translateX(0);
}
.close-menu-btn {
  background: transparent !important;
  color: var(--color-base-text) !important;
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-mono) !important;
  font-size: 0.95rem !important;
  font-weight: bold !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  font-style: normal !important;
  cursor: pointer !important;
  transition: color 0.1s steps(2);
  display: inline-flex;
  align-items: center;
}
.close-menu-btn:hover {
  color: var(--color-accent-neon) !important;
}
.drawer-menu-list {
  list-style: none;
  padding: 0;
}
.drawer-menu-list li {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-drawer-link {
  text-decoration: none;
  color: var(--color-base-text);
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  transition: color 0.2s, transform 0.2s;
}
.menu-drawer-link:hover {
  color: #ccc;
  transform: translateX(10px);
}
.menu-desc {
  margin-top: 0.8rem;
  color: #888;
  padding-left: 50px;
}
.character-ui-icon {
  width: 64px;
  height: 64px;
  border-radius: 0;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 18px;
  flex-shrink: 0;
  background: transparent;
}

/* Global JDM Loading Spinner */
.jdm-spinner-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.jdm-spinner-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: auto;
}
.jdm-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--color-base-text);
  border-radius: 50%;
  animation: jdm-spin 1s cubic-bezier(0.6, 0.2, 0.4, 0.8) infinite;
}
@keyframes jdm-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Terminal Boot Screen */
#TerminalBoot {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  color: #00ff00; /* Neon JDM Green */
  font-family: var(--font-mono);
  padding: 3rem;
  box-sizing: border-box;
  z-index: 10000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#TerminalBoot::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 10001;
  background-size: 100% 3px, 3px 100%;
  pointer-events: none;
}

.terminal-content {
  max-width: 800px;
  line-height: 1.6;
  font-size: 1.1rem;
  text-shadow: 0 0 5px #00ff00;
}

.terminal-line {
  margin-bottom: 0.8rem;
  opacity: 0;
  transform: translateY(5px);
  animation: printLine 0.2s forwards;
}

.terminal-cursor {
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-color: #00ff00;
  margin-left: 5px;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}

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

@keyframes blink {
  50% { opacity: 0; }
}

#TerminalBoot.fade-out {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

/* ============================================
   PHASE 3: FULL VISUAL LAYER
   ============================================ */

/* --- Global Link & Image Reset --- */
a { color: var(--color-base-text); }
a:hover { color: var(--color-accent-neon); }
img { max-width: 100%; height: auto; display: block; }

/* --- Button System --- */
.btn-primary,
.btn-add-to-cart,
.btn-showroom-add,
.btn-checkout,
.btn-quick-add {
  display: inline-block;
  background: var(--color-base-text);
  color: var(--color-base-bg);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 2px solid var(--color-base-text);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary:hover,
.btn-add-to-cart:hover,
.btn-showroom-add:hover,
.btn-checkout:hover,
.btn-quick-add:hover {
  background: var(--color-accent-neon);
  color: var(--color-base-bg);
  border-color: var(--color-accent-neon);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.btn-outline,
.btn-fast-lane {
  display: inline-block;
  background: transparent;
  color: var(--color-base-text);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  border: 2px solid var(--color-base-text);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover,
.btn-fast-lane:hover {
  background: var(--color-base-text);
  color: var(--color-base-bg);
}

/* --- Product Detail Page (Hardware / Fast Lane) --- */
.product-pdp-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-global) 2rem;
}
.product-gallery img {
}
.product-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.product-details .price {
  font-size: 1.4rem;
  color: var(--color-accent-neon);
}
.blueprint-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
}
.blueprint-block h3 {
  color: var(--color-accent-neon);
  margin-bottom: 0.5rem;
}
.product-description {
  margin-top: 1rem;
  line-height: 1.8;
  opacity: 0.8;
}
.add-to-cart-form {
  margin-top: 1rem;
}

/* --- Product Showroom (Apparel / Lookbook Lane) --- */
.showroom-pdp-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}
.showroom-gallery {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}
.showroom-gallery .premium-image {
  max-height: 85vh;
  width: auto;
  object-fit: contain;
}
.showroom-details {
  padding: calc(var(--spacing-global) * 1.5) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}
.minimalist-header {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.showroom-details .price {
  font-size: 1.6rem;
  color: var(--color-accent-neon);
}
.lookbook-desc {
  line-height: 1.8;
  opacity: 0.7;
}

/* --- Custom Size Selector --- */
.custom-size-selector {
  margin: 1rem 0;
}
.custom-size-selector label {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hidden-radio {
  display: none;
}
.size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-base-text);
  cursor: pointer;
  transition: all 0.15s;
}
.size-btn:hover {
  border-color: var(--color-base-text);
  background: rgba(255, 255, 255, 0.05);
}
.hidden-radio:checked + .size-btn {
  background: var(--color-base-text);
  color: var(--color-base-bg);
  border-color: var(--color-base-text);
}

/* --- Collection Grid --- */
.collection-grid-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-global) 2rem;
}
.filter-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 2rem;
}
.filter-sidebar h3 {
  margin-bottom: 1rem;
}
.filter-list {
  list-style: none;
  padding: 0;
}
.filter-list li {
  margin-bottom: 0.6rem;
}
.filter-list a {
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.filter-list a:hover {
  opacity: 1;
  color: var(--color-accent-neon);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.product-card {
  position: relative;
  overflow: hidden;
  border: none !important;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-2px);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.product-card h3 {
  padding: 0.8rem 1rem 0;
}
.product-card .price {
  padding: 0.3rem 1rem 1rem;
  color: var(--color-accent-neon);
}
.product-card a {
  text-decoration: none;
}

/* Price Tier Visual Cues */
.tier-heavyweight {
  border-left: 3px solid var(--color-accent-neon);
}
.tier-core {
  border-left: 3px solid #00ff00;
}
.tier-hardware {
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}

/* --- Fast Lane Card --- */
.fast-lane-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}
.fast-lane-card {
  border: none !important;
  overflow: hidden;
  transition: transform 0.2s;
}
.fast-lane-card:hover {
  transform: translateY(-2px);
}
.fast-lane-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.fast-lane-info {
  padding: 1rem;
}
.fast-lane-info h3 {
  margin-bottom: 0.3rem;
}
.fast-lane-info .price {
  color: var(--color-accent-neon);
  margin-bottom: 0.8rem;
}
.quick-add-form {
  margin-top: 0.5rem;
}
.quick-add-form .btn-quick-add {
  width: 100%;
  padding: 10px;
  font-size: 0.75rem;
}

/* --- Lookbook Gallery --- */
.lookbook-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
}
.lookbook-image-wrapper {
  overflow: hidden;
}
.lookbook-image-wrapper img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.lookbook-item:hover .lookbook-image-wrapper img {
  transform: scale(1.03);
}
.lookbook-meta {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lookbook-title {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.lookbook-desc {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.lookbook-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.lookbook-link:hover {
  border-color: var(--color-accent-neon);
}

/* --- Cart Drawer Item List --- */
.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cart-drawer-header h2 {
  font-size: 1.8rem;
  margin: 0;
  letter-spacing: 0.15em;
  font-family: var(--font-header);
  font-style: italic;
  text-transform: uppercase;
}
.cart-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cart-item {
  display: flex;
  align-items: center; /* Vertically center the text and image perfectly */
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding: 0 !important;
}
.item-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the text vertically next to image */
  gap: 0.4rem;
}
.item-info span:first-child {
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: var(--color-base-text);
  line-height: 1.3;
}
.item-info span:last-child {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.cart-drawer-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.subtotal {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.btn-checkout {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}

/* --- Cart Page (Full /cart route) --- */
.cart-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-global) 2rem;
}
.cart-page-container h1 {
  margin-bottom: 2rem;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  padding: 1rem 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.cart-row td {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}
.cart-item-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.cart-item-title a {
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
}
.variant-label {
  display: block;
  opacity: 0.5;
  font-size: 0.75rem;
}
.item-price {
  display: block;
  color: var(--color-accent-neon);
  margin-top: 0.3rem;
}
.cart-item-qty input {
  width: 50px;
  padding: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-base-text);
  font-family: var(--font-mono);
  text-align: center;
}
.cart-item-total {
  font-size: 1rem;
}
.cart-page-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page-total {
  font-size: 1.3rem;
}
.cart-page-actions {
  display: flex;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  padding: 6rem 2rem;
}
.cart-empty p {
  margin-bottom: 2rem;
  opacity: 0.6;
}

/* --- 404 Page --- */
.error-404-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 2rem;
}
.error-404-inner {
  text-align: center;
  max-width: 600px;
}
.error-code {
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-accent-neon), #00ff00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.error-msg {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.error-sub {
  opacity: 0.5;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Main Page --- */
.main-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-global) 2rem;
}
.main-page-container h1 {
  margin-bottom: 2rem;
}

/* --- Editorial Content (Garage / Lore) --- */
.editorial-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem var(--spacing-global);
}
.editorial-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.editorial-block:last-child {
  border-bottom: none;
}
.editorial-block img {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.editorial-block .rte {
  line-height: 1.8;
  opacity: 0.85;
}

/* --- Footer Enhancements --- */
.global-footer {
  opacity: 0.5;
  transition: opacity 0.3s;
}
.global-footer:hover {
  opacity: 1;
}

/* --- Homepage Hero --- */
.index-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-section {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 900px) {
  .product-pdp-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .showroom-pdp-container {
    grid-template-columns: 1fr;
  }
  .showroom-details {
    padding: 2rem;
    border-left: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }
  .collection-grid-container {
    grid-template-columns: 1fr;
  }
  .filter-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .lookbook-gallery {
    grid-template-columns: 1fr;
  }
  .cart-page-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .cart-page-actions {
    flex-direction: column;
  }
  .error-code {
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .global-header {
    padding: 0.3rem 0.85rem;
    min-height: 60px;
  }
  .header-inner {
    padding: 0;
  }
  .logo-container img {
    height: 44px !important;
    width: auto !important;
  }
  .cart-toggle-btn {
    padding: 0.3rem 0.55rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .header-action-right {
    gap: 0.6rem;
  }
  .menu-toggle-btn {
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0;
  }
  .streetwear-header {
    font-size: 2rem;
  }
  .hero-section h1 {
    font-size: 2rem !important;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .fast-lane-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
  .cart-drawer {
    width: 100vw;
  }
  .menu-drawer {
    width: 100vw;
  }
}



/* Animated static overlay on top of garage */
.garage-static-overlay {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 256 256%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22/%3E%3C/svg%3E');
  opacity: 0.045;
  animation: staticDrift 0.2s steps(4) infinite;
  pointer-events: none;
  z-index: 2;
}



/* ============================================
   GARAGE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .slide-info-card {
    top: auto;
    bottom: auto;
    top: 5%;
    left: 3%;
    right: 3%;
    max-width: none;
  }
  .slide-stat-card {
    top: auto;
    bottom: 15%;
    right: 3%;
    left: auto;
    width: 260px;
  }
  .slide-car {
    bottom: 0;
    left: -10%;
    width: 70%;
    transform: none;
  }
  .slide-character {
    bottom: 0;
    left: auto;
    right: 5%;
    transform: none;
  }
  .character-img {
    height: 50vh;
  }
  .carousel-prev { left: 30%; bottom: 6%; top: auto; transform: none; }
  .carousel-next { right: 30%; bottom: 6%; top: auto; transform: none; }
}

@media (max-width: 600px) {
  .character-garage {
    height: 100svh;
  }
  .slide-info-card {
    display: none;
  }
  .slide-stat-card {
    bottom: 12%;
    right: 2%;
    left: 2%;
    width: auto;
  }
  .slide-car {
    bottom: 10%;
    left: -20%;
    width: 80%;
    opacity: 0.4;
    transform: none;
  }
  .slide-character {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 15%;
  }
  .character-img {
    height: 40vh;
  }
  .carousel-prev { left: 10%; bottom: 4%; top: auto; transform: none; }
  .carousel-next { right: 10%; bottom: 4%; top: auto; transform: none; }
}

/* Tactile Brutalist Terminal Buttons for Cart Drawer */
.cart-terminal-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-family: var(--font-mono) !important;
  font-size: 0.9rem !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 14px 0 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.15s steps(2);
  border-radius: 0px !important;
}

.cart-btn-primary {
  background-color: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
}

.cart-btn-primary:hover {
  background-color: #d6d6d6 !important;
  color: #000000 !important;
  border-color: #d6d6d6 !important;
}

.cart-btn-secondary {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

.cart-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.32) !important;
}

/* Responsive PDP Thumbnail Image Grid */
.product-thumbnails-grid,
.showroom-thumbnails-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  width: 100%;
  margin-top: 1.5rem;
  box-sizing: border-box;
}

.pdp-thumbnail-wrapper {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.1s steps(2);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.pdp-thumbnail-wrapper.active {
  opacity: 1 !important;
  border-color: #ffffff !important;
  outline: 1px solid #ffffff !important;
}

.pdp-thumbnail-wrapper:hover {
  opacity: 0.8;
  border-color: rgba(255, 255, 255, 0.6);
}

.pdp-thumbnail-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Override PDP images backgrounds to absolute black */
.showroom-gallery {
  background: #000000 !important;
}
.blueprint-block {
  background: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

/* ============================================
   SOKUDO STYLIN — STREETWEAR SHOWROOM STYLES
   ============================================ */

body.theme-active-eighty {
  --theme-neon-color: #ffb700;
  --theme-neon-glow: 0 0 12px rgba(255,183,0,0.75);
}

.sokudo-stylin-showroom {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

/* STYLIN STREETWEAR HERO HEADER */
.showroom-title-block {
  text-align: center;
  margin-bottom: 5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 3rem;
}
.showroom-logo-img {
  max-width: 320px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
.showroom-subtitle {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #ffb700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(255, 183, 0, 0.25);
}
.showroom-tagline {
  font-family: var(--font-header);
  font-size: 2.2rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 700px;
  margin: 0 auto;
}

/* JDM VIP CAR BLUEPRINT PANEL */
.stylin-blueprint-section {
  margin-bottom: 6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
  padding: 2.5rem;
  position: relative;
}
.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.blueprint-canvas {
  position: relative;
  width: 100%;
  height: 480px;
  background: radial-gradient(circle, rgba(255,183,0,0.04) 0%, transparent 75%), 
              linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px, 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blueprint-car-bg {
  max-height: 82%;
  width: auto;
  opacity: 0.18;
  filter: grayscale(1) invert(1) contrast(1.1);
  transition: opacity 0.4s ease;
  object-fit: contain;
}
.blueprint-canvas:hover .blueprint-car-bg {
  opacity: 0.28;
}

/* Blueprint nodes */
.blueprint-node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(255, 183, 0, 0.3);
  border: 2px solid #ffb700;
  border-radius: 50% !important;
  cursor: pointer;
  z-index: 10;
}
.blueprint-node::after {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border: 2px solid #ffb700;
  border-radius: 50% !important;
  animation: pulseNode 2s infinite;
  pointer-events: none;
}
@keyframes pulseNode {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Hover tooltips */
.blueprint-node-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 250px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #ffb700;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.9), 0 0 15px rgba(255,183,0,0.15);
  pointer-events: none;
  z-index: 20;
  text-align: left;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.blueprint-node-content::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #000;
  border-right: 1px solid #ffb700;
  border-bottom: 1px solid #ffb700;
}
.blueprint-node:hover .blueprint-node-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.blueprint-node-content h4 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 0.95rem;
  color: #ffb700;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.blueprint-node-content p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

/* Node Positions (Calculated perfectly for VIP LS400 build chassis elements) */
#node-suspension { top: 68%; left: 47%; }
#node-engine { top: 58%; left: 44%; }
#node-fitment { top: 66%; left: 54%; }
#node-interior { top: 48%; left: 51%; }
#node-exhaust { top: 62%; left: 57%; }

/* JDM STICKER BOMB DECK */
.sticker-bomb-deck {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}
.sticker-wall-container {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.01);
  padding: 1.5rem;
}
.sticker-wall {
  position: relative;
  height: 380px;
  background-color: #050505;
  background-image: url('data:image/svg+xml;utf8,%3Csvg width=%2240%22 height=%2240%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M0 0h40v40H0z%22 fill=%22none%22/%3E%3Cpath d=%22M0 0h40v1H0zm0 0h1v40H0z%22 fill=%22rgba(255,255,255,0.015)%22/%3E%3C/svg%3E');
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.9);
}
.sticker-wall::before {
  content: '// DRIFT_DECAL_BOMB_BOARD';
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* Sticker items */
.slap-sticker {
  position: absolute;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6));
  max-width: 140px;
}
.slap-sticker:hover {
  transform: scale(1.12) rotate(4deg) !important;
  filter: drop-shadow(0 15px 25px rgba(255,183,0,0.35)) brightness(1.1) !important;
  z-index: 100 !important;
}

/* Default positions for overlapping sticker aesthetics */
#sticker-decal { top: 12%; left: 8%; transform: rotate(-8deg); z-index: 5; }
#sticker-logo { top: 22%; left: 45%; transform: rotate(6deg); z-index: 8; max-width: 170px; }
#sticker-eighty { top: 48%; left: 18%; transform: rotate(-15deg); z-index: 15; max-width: 120px; }
#sticker-wheelie { top: 52%; left: 62%; transform: rotate(12deg); z-index: 10; max-width: 100px; }
#sticker-dash { top: 10%; left: 68%; transform: rotate(-4deg); z-index: 6; max-width: 110px; }
#sticker-warning { bottom: 8%; left: 42%; transform: rotate(-6deg); z-index: 12; max-width: 90px; }

/* Sticker focus details box */
.slap-info-panel {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2.5rem;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.slap-info-panel.highlight-active {
  border-color: #ffb700;
  box-shadow: 0 0 30px rgba(255,183,0,0.18);
}
.slap-info-panel .specs-title {
  color: #ffb700;
  font-size: 0.72rem;
}
.slap-info-panel h3 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.8rem;
  line-height: 1.1;
}
.slap-info-panel .price {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
}
.slap-info-panel .specs-list {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.slap-info-panel .specs-list span {
  display: block;
}

/* BORDERLESS STREETWEAR CURATION GRID */
.streetwear-grid-wrapper {
  margin-top: 5rem;
}
.streetwear-grid-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.2rem;
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.streetwear-grid-header h2 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.03em;
}
.streetwear-grid-header .marquee-count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.streetwear-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3.5rem;
}
.streetwear-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none !important;
  background: transparent !important;
}
.streetwear-product-card:hover {
  transform: translateY(-4px);
}
.streetwear-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #070707;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.streetwear-img-container img:not(.streetwear-char-overlay) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: none !important;
}
.streetwear-char-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.96);
  pointer-events: none;
  z-index: 5;
  background: rgba(0, 0, 0, 0.4);
  border: none !important;
}
.streetwear-product-card:hover .streetwear-char-overlay {
  opacity: 1;
  transform: scale(1.05);
}
.streetwear-product-card:hover .streetwear-img-container img:not(.streetwear-char-overlay) {
  transform: scale(1.03);
  filter: blur(4px) brightness(0.5);
}

/* Card details metadata */
.streetwear-meta {
  padding: 1.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.streetwear-specs-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #ffb700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.streetwear-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s;
}
.streetwear-title:hover {
  color: #ffb700;
}
.streetwear-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}
.streetwear-tech-specs {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
  line-height: 1.4;
}
.streetwear-tech-specs span {
  display: block;
}

/* Bypassing standard theme container bounds on grid layout */
.streetwear-product-card a {
  text-decoration: none;
}

/* RESPONSIVE LAYOUT MATRIX */
@media (max-width: 900px) {
  .sticker-bomb-deck {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .slap-info-panel {
    height: auto;
    padding: 2rem 1.5rem;
  }
  .blueprint-canvas {
    height: 360px;
  }
  #node-suspension { left: 34%; }
  #node-engine { left: 24%; }
  #node-fitment { left: 71%; }
  #node-interior { left: 52%; }
  #node-exhaust { left: 81%; }
}

@media (max-width: 600px) {
  .sokudo-stylin-showroom {
    padding: 2.5rem 1rem;
  }
  .showroom-tagline {
    font-size: 1.6rem;
  }
  .blueprint-canvas {
    height: 280px;
  }
  .blueprint-node {
    width: 16px;
    height: 16px;
  }
  .blueprint-node-content {
    width: 200px;
  }
  .slap-sticker {
    max-width: 90px;
  }
  #sticker-logo {
    max-width: 110px;
  }
  .streetwear-showroom-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================
   SOKUDO STYLIN — RETRO VHS SHOWCASE STYLES
   ============================================ */

.sokudo-vhs-section {
  padding: 6rem 2rem;
  background-color: #000000;
  position: relative;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.vhs-frame-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #050505;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.95), 0 0 30px rgba(255, 183, 0, 0.05);
}
.vhs-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.25) brightness(0.7);
  display: block;
}
.vhs-crt-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.28) 50%), 
              linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.04));
  background-size: 100% 4px, 6px 100%;
  animation: staticFlicker 0.15s infinite;
}
@keyframes staticFlicker {
  0% { opacity: 0.95; }
  50% { opacity: 1; }
  100% { opacity: 0.95; }
}

/* CRT Distortions */
.vhs-crt-line {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 8px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
  pointer-events: none;
  z-index: 11;
  animation: rollScanline 12s linear infinite;
}
@keyframes rollScanline {
  0% { top: -2%; }
  100% { top: 102%; }
}

/* Retro HUD viewfinder overlays */
.vhs-viewfinder-data {
  position: absolute;
  top: 25px; left: 30px; right: 30px; bottom: 25px;
  pointer-events: none;
  z-index: 12;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}
.vhs-header-data {
  display: flex;
  justify-content: space-between;
}
.vhs-footer-data {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.vhs-rec-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #ff0000;
  border-radius: 0px !important;
  margin-right: 6px;
  animation: vhsBlink 1s infinite steps(2);
}
@keyframes vhsBlink {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.vhs-play-state {
  color: #ffb700;
  text-shadow: 0 0 8px rgba(255,183,0,0.5);
}

/* Custom telemetry text panel over video */
.vhs-telemetry-overlay {
  position: absolute;
  bottom: 45px;
  left: 45px;
  z-index: 15;
  max-width: 480px;
  pointer-events: auto;
  text-shadow: 0 3px 12px rgba(0,0,0,0.95);
}
.vhs-telemetry-overlay h2 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 1.0;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
}
.vhs-telemetry-overlay p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Playback overlays button */
.vhs-control-trigger {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px; height: 70px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 16;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s;
}
.vhs-frame-container:hover .vhs-control-trigger {
  opacity: 1;
}
.vhs-control-trigger:hover {
  background: rgba(255, 183, 0, 0.85);
  border-color: #ffb700;
  transform: translate(-50%, -50%) scale(1.08);
}
.vhs-control-trigger svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

/* ============================================
   SOKUDO STYLIN — VIRTUAL LOOKBOOK MAGAZINE
   ============================================ */

.virtual-catalog-section {
  padding: 6rem 2rem;
  background-color: #000000;
  position: relative;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.catalog-deck-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.catalog-deck-header {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1.2rem;
  margin-bottom: 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.catalog-deck-header h2 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.03em;
}
.catalog-nav-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.catalog-nav-btn {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, text-shadow 0.2s;
  background: none;
  border: none;
  padding: 0;
  text-transform: uppercase;
}
.catalog-nav-btn:hover:not(:disabled) {
  color: #ffb700;
  text-shadow: 0 0 8px rgba(255,183,0,0.4);
}
.catalog-nav-btn:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

/* Horizontal sliding page deck */
.catalog-deck-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.catalog-deck {
  display: flex;
  gap: 3.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
.catalog-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.catalog-page:hover {
  border-color: rgba(255, 183, 0, 0.4);
  box-shadow: 0 0 35px rgba(255, 183, 0, 0.08);
}
.catalog-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background-color: #070707;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.catalog-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-page:hover .catalog-image-frame img {
  transform: scale(1.04);
}
.catalog-frame-hud {
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 5;
}
.catalog-frame-hud::before {
  content: 'STYLING_LOOKBOOK_PLATE';
  position: absolute;
  bottom: 12px; left: 15px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}

/* Specs pane details */
.catalog-specs-pane {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 0;
  box-sizing: border-box;
}
.catalog-specs-header {
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  padding-bottom: 1.2rem;
}
.catalog-specs-header span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #ffb700;
  letter-spacing: 0.1em;
}
.catalog-specs-header h3 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin: 0.5rem 0;
  line-height: 1.05;
}
.catalog-specs-header p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.4;
}

/* Monospace outfit specs list */
.catalog-specs-table {
  margin: 2rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}
.catalog-specs-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.catalog-specs-row span:first-child {
  color: rgba(255, 255, 255, 0.45);
}
.catalog-specs-row span:last-child {
  color: #ffffff;
  text-align: right;
}
.catalog-specs-row.highlight span:last-child {
  color: #ffb700;
  text-shadow: 0 0 6px rgba(255,183,0,0.25);
}

.catalog-buy-action {
  margin-top: auto;
}

/* Responsive layout triggers */
@media (max-width: 900px) {
  .catalog-page {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .catalog-image-frame {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .sokudo-vhs-section,
  .virtual-catalog-section {
    padding: 3rem 1rem;
  }
  .vhs-viewfinder-data {
    font-size: 0.62rem;
    top: 15px; left: 15px; right: 15px; bottom: 15px;
  }
  .vhs-telemetry-overlay h2 {
    font-size: 1.6rem;
  }
  .catalog-specs-header h3 {
    font-size: 1.7rem;
  }
}

/* ============================================
   STRICTLY SOKUDO — APPLE-MEETS-JDM PARADIGM
   ============================================ */

.apple-jdm-showroom {
  background-color: #000000;
  color: #ffffff;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

/* APPLE HERO BLOCK */
.apple-hero-block {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.apple-hero-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.apple-hero-block h1 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.apple-hero-block p {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* APPLE FEATURE BENTO GRID */
.apple-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 7rem;
}

/* Bento Card Defaults */
.bento-card {
  background: #020202;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px !important;
  padding: 2.2rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.bento-card:hover {
  border-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.bento-card-header span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #ffb700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}
.bento-card-header h3 {
  font-family: var(--font-header);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0.5rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.bento-card-header p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

/* Bento Grid Column Spanning layouts */
.bento-card-wide {
  grid-column: span 2;
  grid-template-columns: 1fr 1.2fr;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.bento-card-tall {
  grid-row: span 2;
  justify-content: space-between;
}

/* Bento Interactive Elements: Scent Visualizer & Sprayer */
.bento-scent-visualizer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.scent-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.scent-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0px !important;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.scent-btn:hover, .scent-btn.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Mist Aerosol Animation elements */
.bento-spray-target {
  position: relative;
  width: 140px;
  height: 190px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spray-bottle-img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.15s ease;
  z-index: 2;
}
.spray-mist-cloud {
  position: absolute;
  top: 15px; left: 50%;
  transform: translateX(-50%) scale(0);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
  border-radius: 0px !important;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.bento-spray-target:hover .spray-mist-cloud {
  transform: translateX(-50%) scale(2.2);
  opacity: 1;
}
.bento-spray-target:hover .spray-bottle-img {
  transform: rotate(-10deg) scale(1.05);
}

/* Carousel on Bento Card */
.bento-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0px !important;
  border: 1px solid rgba(255,255,255,0.05);
}
.bento-slider-deck {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}
.bento-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.bento-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bento-slider-nav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.bento-slider-nav button {
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 0px !important;
  width: 28px; height: 28px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-slider-nav button:hover {
  background: #ffb700;
  color: #000;
  border-color: #ffb700;
}

/* Windshield Blueprint Bento design */
.windshield-blueprint {
  position: relative;
  width: 100%;
  height: 130px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 80%),
              linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
              linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 100% 100%, 15px 15px, 15px 15px;
  border: 1px dashed rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.3);
}
.windshield-blueprint::before {
  content: 'FITMENT: 55.2" x 9.8" / WINDOW-ARC-CURVE';
  position: absolute;
  top: 8px; left: 10px;
}
.windshield-sticker-banner {
  font-family: var(--font-header);
  font-size: 2.2rem;
  color: #ffb700;
  font-style: italic;
  letter-spacing: -0.02em;
  transform: perspective(200px) rotateX(15deg);
  text-shadow: 0 0 15px rgba(255,183,0,0.4);
}

/* STRICTLY SHOWROOM ASYMMETRIC GRID */
.strictly-showroom-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1.2rem;
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.strictly-showroom-header h2 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.03em;
}
.strictly-showroom-header span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.strictly-showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* 3D-TILT PARALLAX PRODUCT CARDS */
.strictly-product-card {
  background: #020202;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0px !important;
  overflow: hidden;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.1s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  box-sizing: border-box;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.strictly-product-card:hover {
  border-color: #ffffff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.95), 0 0 20px rgba(255,255,255,0.12);
}

/* Massive card visual layout for floor mats */
.strictly-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.strictly-img-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: #050505;
  border-radius: 0px !important;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strictly-img-container img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateZ(20px); /* 3D pop effect */
}
.strictly-product-card:hover .strictly-img-container img {
  transform: translateZ(35px) scale(1.05);
}

.strictly-meta {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transform: translateZ(10px);
}
.strictly-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffb700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strictly-title {
  font-family: var(--font-header);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
  text-decoration: none;
}
.strictly-title:hover {
  color: #ffffff;
}
.strictly-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

/* SPECIFICATIONS EXPANDABLE ACCORDION */
.strictly-accordion-trigger {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed rgba(255,255,255,0.12);
  padding: 0.8rem 0;
  margin-top: 0.8rem;
  text-transform: uppercase;
  user-select: none;
}
.strictly-accordion-trigger:hover {
  color: #ffffff;
}
.strictly-accordion-trigger::after {
  content: '+';
  font-size: 0.85rem;
  transition: transform 0.3s;
}
.strictly-product-card.accordion-active .strictly-accordion-trigger::after {
  content: '-';
}

.strictly-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  opacity: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.strictly-product-card.accordion-active .strictly-accordion-content {
  max-height: 120px;
  opacity: 1;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.8rem;
}
.strictly-accordion-content span {
  display: block;
}

.strictly-buy-form {
  margin-top: auto;
  padding-top: 1rem;
}
.btn-strictly-add {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0px !important;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.75rem 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-strictly-add:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* ============================================
   SOKUDO BRAND NEW INTERACTIVE WIDGET STYLE SHEETS
   ============================================ */

/* 1. Atomizer Spray Simulator Styles */
.canvas-spray-container {
  position: relative;
  width: 100%;
  height: 220px;
  background: #030303;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scent-spray-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.telemetry-readout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  background: rgba(255,255,255,0.01);
  padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.05);
  box-sizing: border-box;
}
.telemetry-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.2rem;
}
.telemetry-val {
  color: #ffffff;
}

/* 2. Windshield Customizer Styles */
.windshield-customizer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.customizer-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.customizer-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.customizer-group label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.customizer-text-input {
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  border-radius: 0px !important;
  width: 100%;
  box-sizing: border-box;
}
.customizer-text-input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.customizer-select {
  background: #000;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  border-radius: 0px !important;
  cursor: pointer;
  width: 100%;
}
.customizer-select:focus {
  outline: none;
  border-color: #ffffff;
}
.customizer-color-grid {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.customizer-color-swatch-btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.2s ease;
  position: relative;
}
.customizer-color-swatch-btn.active {
  border-color: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  transform: scale(1.1);
}
.windshield-wireframe-svg {
  width: 100%;
  height: 100%;
}

/* 3. 3D Keytag Slots Deck Styles */
.keytag-slots-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}
.keytag-slot-tile {
  perspective: 1000px;
  aspect-ratio: 1 / 2;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 260px;
}
.keytag-slot-inner-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}
.keytag-slot-tile:hover .keytag-slot-inner-3d {
  transform: rotateY(180deg);
}
.keytag-slot-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #020202;
  box-sizing: border-box;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.keytag-slot-face-front {
  border-top: 2px solid #ffffff;
}
.keytag-slot-face-back {
  transform: rotateY(180deg);
  border-top: 2px solid #ffb700;
  background: #050505;
}
.keytag-slot-img {
  width: 100%;
  height: 60%;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.5));
}
.keytag-slot-meta-label {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: rgba(255,255,255,0.3);
}
.keytag-slot-title {
  font-family: var(--font-header);
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  margin: 0.2rem 0;
  line-height: 1;
}
.keytag-slot-specs-list {
  font-family: var(--font-mono);
  font-size: 0.45rem;
  color: rgba(255,255,255,0.45);
  list-style: none;
  padding: 0;
  margin: 0;
}
.keytag-slot-specs-list li {
  border-bottom: 1px dashed rgba(255,255,255,0.05);
  padding: 0.15rem 0;
}
.keytag-slot-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  padding: 0.35rem 0;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.keytag-slot-btn:hover {
  background: #ffb700;
  border-color: #ffb700;
  color: #000;
}

@media (max-width: 960px) {
  .apple-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strictly-showroom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strictly-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .apple-hero-block h1 {
    font-size: 2.5rem;
  }
  .apple-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .strictly-showroom-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .strictly-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .keytag-slots-board {
    grid-template-columns: 1fr;
  }
  .keytag-slot-tile {
    height: 320px;
    aspect-ratio: auto;
  }
  .customizer-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .apple-hero-block h1 {
    font-size: 2.0rem;
  }
  .apple-hero-block p {
    font-size: 0.85rem;
  }
}

/* ============================================
   STRICTLY SOKUDO — SCROLL-INTERACTIVE MODULES
   ============================================ */

.apple-scroll-section {
  padding: 8rem 2rem;
  background-color: #000000;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.apple-scroll-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.scroll-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scroll-visual-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}
.scroll-info-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #ffb700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}
.scroll-info-panel h2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}
.scroll-info-panel p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0 0 2rem;
}
.scroll-specs-bullet {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding-bottom: 0.4rem;
}
.scroll-specs-bullet span:last-child {
  color: #ffffff;
}

.keytag-3d-wrapper {
  position: relative;
  width: 200px;
  height: 540px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* Chrome silver keyring loop actually hanging from top rivet eyelet */
.silver-keyring-loop {
  position: absolute;
  top: -36px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  border: 4px solid #cccccc;
  box-shadow: inset 0 0 8px rgba(0,0,0,0.5), 0 6px 12px rgba(0,0,0,0.7);
  background: transparent;
  pointer-events: none;
  z-index: 15;
  transform-style: preserve-3d;
  transform: translateZ(8px) rotateX(25deg);
  transition: transform 0.1s ease-out;
}

/* Double-sided card layout */
.keytag-card-3d {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
}

/* Keytag base side styles */
.keytag-side {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: #070707;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px !important;
  box-shadow: 0 35px 80px rgba(0,0,0,0.9);
  box-sizing: border-box;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 0.5rem;
  transform-style: preserve-3d;
}

/* Front face (Side A: Red Car FR-S + Bubble SOKUDO) */
.keytag-side-front {
  z-index: 2;
  transform: rotateY(0deg);
}

/* Back face (Side B: Eighty Beanie Mascot + bubble spraying) */
.keytag-side-back {
  transform: rotateY(180deg);
}

/* Real-feel heavy embroidered border stitch thread */
.keytag-embroidery-border {
  position: absolute;
  top: 6px; left: 6px; right: 6px; bottom: 6px;
  border: 3.5px dashed #ff003c; /* Double stitch red */
  border-radius: 8px !important;
  pointer-events: none;
  opacity: 0.9;
  z-index: 3;
}
.keytag-embroidery-border::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border: 1.5px solid #111111;
  border-radius: 6px !important;
}

/* Keytag rivet grommet eyelet */
.keytag-rivet-grommet {
  width: 28px;
  height: 28px;
  border-radius: 50% !important;
  background: radial-gradient(circle, #000000 35%, #888888 50%, #dddddd 75%, #444444 90%);
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
  z-index: 5;
  transform: translateZ(8px);
}

/* Graphic containers inside keytag */
.keytag-graphic-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  margin-top: 1rem;
}

/* Red FR-S Car profile image (Side A) */
.keytag-car-graphic {
  width: 185%;
  height: auto;
  object-fit: contain;
  transform: rotate(-90deg) scale(1.15) translateZ(8px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.6));
}

/* Eighty street winking spray mascot image (Side B) */
.keytag-mascot-graphic {
  width: 135%;
  height: auto;
  object-fit: contain;
  transform: rotate(-90deg) scale(1.05) translateZ(8px);
  pointer-events: none;
  opacity: 0.95;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.6));
}

/* Bubble winking SOKUDO logo overlay text (Rotated vertically) */
.keytag-bubble-logo {
  position: absolute;
  font-family: var(--font-header);
  font-size: 2.3rem;
  font-style: italic;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: rotate(-90deg) translateZ(16px);
  text-shadow: 
    -3px -3px 0 #000000,  
     3px -3px 0 #000000,
    -3px  3px 0 #000000,
     3px  3px 0 #000000,
     0 8px 15px rgba(0,0,0,0.85);
  pointer-events: none;
  z-index: 6;
}

/* Giant SVG stitch laser tracer */
.keytag-stitch-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}
.stitch-path-animated {
  fill: none;
  stroke: #ffb700;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-dasharray: 1416;
  stroke-dashoffset: 1416; /* Controlled by JS */
  filter: drop-shadow(0 0 10px #ffb700);
}
.stitch-laser-cursor {
  position: absolute;
  width: 10px; height: 10px;
  background-color: #ffb700;
  border-radius: 50% !important;
  box-shadow: 0 0 15px #ffb700, 0 0 30px #ffb700;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  transition: opacity 0.2s;
}


/* SECTION 2: EXPLODED CANISTER ASSEMBLY */
.exploded-canister-box {
  position: relative;
  width: 260px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.canister-piece {
  width: 100%;
  object-fit: contain;
  transition: transform 0.1s ease-out, opacity 0.3s;
}
#canister-cap {
  height: 80px;
  transform: translateY(-80px); /* Slides down into nozzle */
  z-index: 4;
}
#canister-nozzle {
  height: 70px;
  transform: translateY(-30px); /* Slides down into body */
  z-index: 3;
}
#canister-body {
  height: 230px;
  z-index: 2;
}

/* SECTION 3: WINDSHIELD BANNER TENSION ASSEMBLY */
.banner-stretching-box {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 240px;
  background-color: #050505;
  background-image: url('data:image/svg+xml;utf8,%3Csvg width=%2230%22 height=%2230%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cpath d=%22M0 0h30v30H0z%22 fill=%22none%22/%3E%3Cpath d=%22M0 0h30v1H0zm0 0h1v30H0z%22 fill=%22rgba%252528255,255,255,0.01%252529%22/%3E%3C/svg%3E');
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px !important;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.windshield-wireframe {
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 8px !important;
  pointer-events: none;
}
.stretching-banner-strip {
  position: relative;
  width: 0%; /* Stretches horizontally to 92% */
  height: 48px;
  background-color: #ffb700;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255,183,0,0.4);
  transition: width 0.1s ease-out;
}
.banner-fitment-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-left: 2px solid #ff003c;
  border-right: 2px solid #ff003c;
  pointer-events: none;
}

/* RESPONSIVE LAYOUT SCROLL OVERRIDES */
@media (max-width: 900px) {
  .apple-scroll-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Reorder: info panel first, then visual so content reads before the visual */
  .scroll-info-panel { order: 1; }
  .scroll-visual-panel { order: 2; height: 480px; }
}
@media (max-width: 768px) {
  /* Reduce the extreme inline padding on the section */
  .apple-scroll-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .apple-scroll-wrapper {
    gap: 2rem;
  }
  .scroll-info-panel h2 {
    font-size: 2rem;
  }
  /* Scale the 3D keytag down so it fits the mobile visual panel */
  .scroll-visual-panel {
    height: 420px;
    overflow: hidden;
  }
  .keytag-3d-wrapper {
    transform: scale(0.72);
    transform-origin: top center;
  }
  .silver-keyring-loop {
    transform: scale(0.72) translateZ(8px) rotateX(25deg);
    transform-origin: top center;
  }
}
@media (max-width: 600px) {
  .scroll-info-panel h2 {
    font-size: 1.8rem;
  }
  .keytag-text-3d {
    font-size: 1.7rem;
  }
  .stretching-banner-strip {
    font-size: 1.1rem;
    height: 36px;
  }
}}



/* ==========================================================================
   SOKUDO Tri-Mutation Design Overrides: High-Fidelity Brutalist Aesthetics
   ========================================================================== */

/* 1. GLOBAL OVERRIDES & ZERO CORNERS */
* {
  border-radius: 0px !important;
}

/* 2. STRICTLY MOTORING CUSTOMIZER LAB CONSOLE STYLE */
.strictly-motoring-lab {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}

.lab-hero-header {
  margin-bottom: 3.5rem;
  border-left: 2px solid #ffffff;
  padding-left: 1.5rem;
}
.lab-hero-header h1 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  margin: 0.5rem 0;
  text-transform: uppercase;
}
.lab-badge {
  font-family: var(--font-mono);
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.lab-hero-header p {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0.5rem 0 0 0;
}

/* Tab Header Navigation */
.lab-tabs-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 3rem;
}
.lab-tab-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  padding: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  outline: none;
}
.lab-tab-btn::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.25s ease;
}
.lab-tab-btn.active {
  color: #ffffff;
}
.lab-tab-btn.active::after {
  width: 100%;
}
.lab-tab-btn:hover {
  color: #ffffff;
  background-color: rgba(255,255,255,0.02);
}
.tab-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.6;
}
.tab-title {
  font-family: var(--font-header);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Viewport & Controls Grid Layout */
.lab-pane {
  display: none;
}
.lab-pane.active {
  display: block;
  animation: labFade 0.45s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes labFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
}

/* Viewport HUD Panel */
.pane-viewport {
  background-color: #040404;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
}
.viewport-grid-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background-size: 35px 35px;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px);
  z-index: 1;
}
.viewport-hud-coords {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  z-index: 2;
}
.viewport-footer-alert {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  z-index: 2;
  text-transform: uppercase;
}

/* Tab 1: Physics Mist Canister Emitter */
.aerosol-canvas-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.aerosol-mist-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}
.nitrous-bottle-trigger {
  position: relative;
  cursor: pointer;
  z-index: 3;
  margin-top: 50px;
}
.nitrous-bottle-img {
  width: 140px;
  height: auto;
  transition: transform 0.15s cubic-bezier(0.19, 1, 0.22, 1);
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.65));
}
.trigger-glow-ring {
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 50% !important;
  animation: spinRing 20s linear infinite;
  pointer-events: none;
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Tab 2: Windshield banner builder */
.banner-svg-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.windshield-banner-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}
#LabBannerBacking {
  transition: fill 0.3s ease;
}
#ChassisSilhouette-{{ section.id }} {
  transition: d 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

/* Tab 3: Keytag Studio */
.keytag-3d-scene {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  z-index: 2;
  min-height: 250px;
}
.keytag-card-3d {
  width: 320px;
  height: 85px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1);
}
.keytag-side {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  backface-visibility: hidden;
}
.keytag-side-back {
  transform: rotateY(180deg);
}
.keytag-body {
  width: 100%;
  height: 100%;
  background-color: #030303;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,0.1);
  position: relative;
}
.keytag-grommet {
  width: 25px;
  height: 25px;
  background-color: #000;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grommet-eyelet {
  width: 13px;
  height: 13px;
  border: 3px solid #222222;
  border-radius: 50% !important;
  transition: border-color 0.3s;
}
.keytag-embroidery {
  font-family: var(--font-header);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 1;
  text-align: right;
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1rem;
}
.keytag-meta-label {
  position: absolute;
  bottom: 4px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  opacity: 0.45;
  letter-spacing: 0.08em;
}

.keytag-scene-controls {
  position: absolute;
  bottom: 3.5rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  z-index: 5;
}
.btn-flip-tag {
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.2s steps(4);
}
.btn-flip-tag:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Lab Controls Form Pane */
.pane-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #030303;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.2rem;
}
.controls-header {
  margin-bottom: 1.8rem;
}
.controls-header h3 {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-style: italic;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.controls-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

.customizer-group {
  margin-bottom: 1.6rem;
}
.customizer-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.scent-selectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.scent-btn-pill {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.8rem 0.2rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.2s steps(3);
  text-align: center;
}
.scent-btn-pill.active {
  color: #ffffff;
  border-color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}
.scent-btn-pill:hover:not(.active) {
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}

/* Monospace Diagnostics Board */
.lab-telemetry-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  background: #000;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem;
}
.telemetry-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.telemetry-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
}
.telemetry-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s;
}

/* Premium Inputs */
.lab-text-input {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 0.8rem 1rem;
  box-sizing: border-box;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}
.lab-text-input:focus {
  border-color: #ffffff;
}

.lab-select-input {
  width: 100%;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
  padding: 0.8rem 1rem;
  box-sizing: border-box;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.lab-select-input:focus {
  border-color: #ffffff;
}

.lab-color-grid {
  display: flex;
  gap: 0.8rem;
}
.lab-color-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.lab-color-btn.active {
  border-color: #ffffff;
}

/* Master Checkout Button Motoring */
.btn-lab-checkout {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-style: italic;
  padding: 1.1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s steps(4);
}
.btn-lab-checkout:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Catalog Grid Splits */
.lab-catalog-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 0 3rem 0;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
}
.lab-catalog-divider h2 {
  font-family: var(--font-header);
  font-size: 2rem;
  font-style: italic;
  margin: 0;
}
.monospace-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.6;
}

.strictly-showroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.2rem;
}
.strictly-showroom-grid .strictly-card-wide {
  grid-column: span 2;
}

.strictly-product-card {
  background-color: #030303;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transform: perspective(1000px);
}
.strictly-img-container {
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.03);
  margin-bottom: 1.2rem;
}
.strictly-img-container img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.strictly-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.strictly-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.strictly-title {
  font-family: var(--font-header);
  font-size: 1.5rem;
  font-style: italic;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.strictly-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: bold;
}

/* Accordion Drawer */
.strictly-accordion-trigger {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.8rem 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  justify-content: space-between;
}
.strictly-accordion-trigger::after {
  content: "[ + ]";
}
.strictly-product-card.accordion-active .strictly-accordion-trigger::after {
  content: "[ - ]";
}
.strictly-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  padding-bottom: 0;
}
.strictly-product-card.accordion-active .strictly-accordion-content {
  max-height: 120px;
  padding-bottom: 1rem;
}

.btn-strictly-add {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-header);
  font-size: 1.1rem;
  font-style: italic;
  padding: 0.8rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: all 0.2s steps(3);
}
.btn-strictly-add:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}


/* ==========================================================================
   3. SOKUDO STYLIN STREETWEAR SHOWROOM STYLE
   ========================================================================== */
.sokudo-stylin-showroom {
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 2rem;
  font-family: 'Inter', 'Outfit', sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}

.showroom-title-block {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.showroom-subtitle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #ffb700;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 1rem;
}
.showroom-logo-img {
  max-width: 320px;
  height: auto;
  margin: 1.5rem auto;
  display: block;
}
.showroom-tagline {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 1rem 0;
}
.showroom-intro {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-size: 1.05rem;
  margin: 0;
}

/* Stance HUD Blueprint Section */
.stylin-blueprint-section {
  border: 1px solid rgba(255,255,255,0.06);
  background-color: #040404;
  padding: 2rem;
  margin-bottom: 5rem;
}
.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.blueprint-canvas {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blueprint-car-bg {
  width: 90%;
  height: auto;
  opacity: 0.08;
  filter: brightness(2);
  pointer-events: none;
}

/* Hotspots radar markers */
.blueprint-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotspot-ring {
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border: 1px solid #ffb700;
  border-radius: 50% !important;
  opacity: 0;
  transform: scale(0.5);
  animation: radarPulse 1.8s cubic-bezier(0.215, 0.610, 0.355, 1) infinite;
}
@keyframes radarPulse {
  0% { transform: scale(0.4); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hotspot-core {
  width: 8px;
  height: 8px;
  background-color: #ffb700;
  border-radius: 50% !important;
  box-shadow: 0 0 10px #ffb700;
  transition: transform 0.2s;
}
.blueprint-hotspot:hover .hotspot-core {
  transform: scale(1.4);
}
.blueprint-hotspot.active .hotspot-core {
  background-color: #ffffff;
  box-shadow: 0 0 12px #ffffff;
}

.hotspot-label-tag {
  position: absolute;
  top: -20px;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Blueprint Floating HUD details card */
.blueprint-detail-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 320px;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid #ffb700;
  padding: 1.5rem;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 10;
}
.blueprint-detail-card.reveal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.detail-card-inner {
  position: relative;
}
.detail-close-btn {
  position: absolute;
  top: -5px; right: -5px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  cursor: pointer;
}
.detail-close-btn:hover {
  color: #ffb700;
}
.detail-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffb700;
  letter-spacing: 0.05em;
}
.detail-card-inner h4 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.35rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.detail-card-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

/* 3. SHIBUYA CONCRETE STICKER WALL STYLE */
.sticker-wall-section {
  border: 1px solid rgba(255,255,255,0.06);
  background-color: #040404;
  padding: 2rem;
  margin-bottom: 5rem;
}
.sticker-wall-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.sticker-wall-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

/* Stucco Patina wall */
.sticker-concrete-canvas {
  background-color: #111111;
  background-image: 
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 0),
    radial-gradient(rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  border: 1px solid rgba(255,255,255,0.04);
  position: relative;
  height: 480px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 800px;
}
.concrete-grid-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  border: 1px dashed rgba(255,255,255,0.02);
  margin: 20px;
}

/* absolute positioning overlap sticker bomb slaps */
.slap-sticker {
  position: absolute;
  max-width: 140px;
  height: auto;
  cursor: pointer;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
  transform-origin: center center;
}
.slap-sticker:hover {
  z-index: 30 !important;
}

/* Diagnostics Monospace Terminal Panel */
.slap-telemetry-panel {
  background-color: #030303;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.slap-telemetry-panel.pulse-glow {
  border-color: #ffb700;
  box-shadow: 0 0 15px rgba(255, 183, 0, 0.12);
}
.terminal-bar {
  background-color: #0d0d0d;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.terminal-bar .dot {
  width: 8px;
  height: 8px;
  border-radius: 50% !important;
}
.terminal-bar .dot.red { background-color: #ff003c; }
.terminal-bar .dot.yellow { background-color: #ffb700; }
.terminal-bar .dot.green { background-color: #ffffff; }
.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.terminal-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.terminal-body h3 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.02em;
}
.terminal-body .price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: #ffb700;
  font-weight: bold;
  margin-bottom: 1.8rem;
}
.terminal-specs {
  background: #000;
  border: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.terminal-specs span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.btn-terminal-checkout {
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffb700;
  color: #ffb700;
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-style: italic;
  padding: 1.1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s steps(4);
}
.btn-terminal-checkout:hover:not(:disabled) {
  background-color: #ffb700;
  color: #000000;
}
.btn-terminal-checkout:disabled {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
}


/* ==========================================================================
   4. SOKUDO STYLIN EDITRIAL PRINT VIRTUAL CATALOG
   ========================================================================== */
.virtual-catalog-section {
  border: 1px solid rgba(255,255,255,0.06);
  background-color: #040404;
  padding: 2rem;
  margin-bottom: 5rem;
}
.catalog-deck-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.catalog-deck-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.catalog-nav-links {
  display: flex;
  gap: 1rem;
}
.catalog-nav-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s steps(3);
}
.catalog-nav-btn:hover:not(:disabled) {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.catalog-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.catalog-deck-slider {
  width: 100%;
  overflow: hidden;
}
.catalog-deck {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.catalog-page {
  flex: 0 0 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  box-sizing: border-box;
}

.catalog-image-frame {
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.catalog-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-frame-hud {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  border: 1px dashed rgba(255,255,255,0.05);
  margin: 15px;
}
.catalog-img-patina {
  position: absolute;
  bottom: 22px; left: 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  background-color: rgba(0,0,0,0.65);
  padding: 0.3rem 0.6rem;
}

.catalog-specs-pane {
  background-color: #030303;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalog-specs-pane-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog-specs-header {
  margin-bottom: 2rem;
}
.specs-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffb700;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.5rem;
}
.catalog-specs-header h3 {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin: 0 0 0.8rem 0;
  letter-spacing: -0.03em;
}
.catalog-specs-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.catalog-specs-table {
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 2rem;
}
.catalog-specs-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0.9rem 1.2rem;
}
.catalog-specs-row:last-child {
  border-bottom: none;
}
.catalog-specs-row.highlight {
  background-color: rgba(255, 183, 0, 0.02);
}
.spec-prop {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
}
.spec-val {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffffff;
  text-align: right;
  font-weight: bold;
}
.catalog-specs-row.highlight .spec-val {
  color: #ffb700;
}


/* 5. STREETWEAR CATALOG GRID SHOWROOM STYLE */
.streetwear-grid-wrapper {
  margin-top: 5rem;
}
.streetwear-grid-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.streetwear-grid-header h2 {
  font-family: var(--font-header);
  font-size: 2rem;
  font-style: italic;
  margin: 0;
}
.marquee-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.6;
}

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

.streetwear-product-card {
  background-color: #030303;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
}
.streetwear-img-container {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid rgba(255,255,255,0.03);
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.streetwear-img-container img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.streetwear-char-overlay {
  position: absolute;
  top: 15px; right: 15px;
  width: 55px !important;
  height: 55px !important;
  object-fit: contain !important;
  opacity: 0;
  transform: scale(0.6) rotate(-20deg);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1) !important;
  pointer-events: none;
  z-index: 5;
}
.streetwear-img-container:hover img:not(.streetwear-char-overlay) {
  transform: scale(1.06);
}
.streetwear-img-container:hover .streetwear-char-overlay {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.streetwear-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.streetwear-specs-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #ffb700;
  letter-spacing: 0.05em;
}
.streetwear-title {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.35rem;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.streetwear-title:hover {
  color: #ffb700;
}
.streetwear-price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: bold;
}
.streetwear-tech-specs {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.streetwear-tech-specs span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}


/* ==========================================================================
   5. RESPONSIVE MEDIA CONSTRAINTS
   ========================================================================== */
@media (max-width: 1000px) {
  .pane-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .strictly-showroom-grid .strictly-card-wide {
    grid-column: span 1;
  }
  .sticker-wall-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .catalog-page {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .catalog-image-frame {
    min-height: 340px;
  }
}
@media (max-width: 768px) {
  .lab-tabs-header {
    grid-template-columns: 1fr;
  }
  .lab-tab-btn {
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .lab-tab-btn::after {
    display: none;
  }
  .lab-tab-btn.active {
    background-color: rgba(255,255,255,0.03);
    border-left: 2px solid #ffffff;
  }
  .lab-hero-header h1 {
    font-size: 2.2rem;
  }
  .showroom-tagline {
    font-size: 2.2rem;
  }
  .blueprint-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ==========================================================================
   6. SOKUDO STYLIN STREETWEAR OVERRIDES (ICONACLUB x NEVERCONTENT)
   ========================================================================== */
.stylin-icona-hero {
  background: var(--color-base-bg);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.stylin-hero-blueprint {
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 10;
}

.blueprint-ls400 {
  width: 100%;
  height: auto;
  opacity: 0.8;
  filter: contrast(1.2) brightness(0.9);
}

.icona-hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 20;
}

.icona-hotspot-ring {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 1px solid #ffb700;
  animation: radarPulse 2s infinite ease-out;
}

.icona-hotspot-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: #ffb700;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px #ffb700;
}

.icona-hotspot-label {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #ffb700;
  white-space: nowrap;
  background: rgba(0,0,0,0.8);
  padding: 4px 8px;
  border: 1px solid #ffb700;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.icona-hotspot:hover .icona-hotspot-label,
.icona-hotspot.active .icona-hotspot-label {
  opacity: 1;
}

@keyframes radarPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* JDM Slap Deck */
.slap-deck-wrapper {
  padding: 6rem 2rem;
  background: var(--color-base-bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.slap-cluster {
  position: relative;
  min-height: 500px;
}

.nc-slap {
  position: absolute;
  cursor: pointer;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s;
}

.nc-slap:hover {
  transform: scale(1.1) rotate(0deg) !important;
  z-index: 50 !important;
  filter: drop-shadow(0 20px 25px rgba(255,183,0,0.4));
}

.telemetry-slideout {
  background: #080808;
  border: 1px solid #222;
  border-left: 3px solid #ffb700;
  padding: 2.5rem;
  font-family: var(--font-mono);
  transform: translateX(0);
  transition: transform 0.4s;
}

.telemetry-slideout h3 {
  color: #ffb700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--font-header);
  font-style: italic;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.telemetry-meta {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.telemetry-desc {
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Streetwear Product Grid */
.icona-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 4rem 2rem;
  padding: 6rem 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.icona-card {
  position: relative;
  background: transparent;
}

.icona-card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #0a0a0a;
  transition: opacity 0.4s;
}

.icona-card-hover {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2rem;
  opacity: 0;
  background: rgba(0,0,0,0.9);
  transition: opacity 0.4s;
}

.icona-card-inner {
  position: relative;
  display: block;
}

.icona-card:hover .icona-card-img {
  opacity: 0;
}

.icona-card:hover .icona-card-hover {
  opacity: 1;
}

.icona-specs {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.icona-title {
  font-family: var(--font-header);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}

.icona-title:hover {
  color: #ffb700;
}

.icona-price {
  color: #ffb700;
  font-family: var(--font-mono);
  font-size: 1rem;
}

.icona-telemetry {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.icona-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1000px) {
  .slap-deck-wrapper {
    grid-template-columns: 1fr;
  }
}
