/* Arcade — Retro 80s neon */

.sn-theme-anim-layer { pointer-events:none; position:fixed; inset:0; z-index:0; overflow:hidden; }
.sn-theme-anim-layer > * { position:absolute; inset:0; }
.sn-theme-nebula .nebula-main,
.sn-theme-terracotta .terracotta-main,
.sn-theme-arcade .arcade-main { position: relative; z-index: 1; }
.sn-theme-anim-speed-slow { --sn-anim-mult: 1.6; }
.sn-theme-anim-speed-normal { --sn-anim-mult: 1; }
.sn-theme-anim-speed-fast { --sn-anim-mult: .55; }
.sn-theme-anim-layer * { animation-duration: calc(var(--sn-anim-base, 10s) * var(--sn-anim-mult, 1)); }

.sn-theme-arcade {
  --sn-theme-code: 'arcade';
  --arcade-accent: #ff2d95;
  --arcade-accent-dark: #00f0ff;
  --arcade-accent-light: #ffe600;
  --arcade-bg: #0a0a0a;
  --arcade-text: #e8ffe8;
  --arcade-top-bar-height: 0rem;
  --arcade-header-height: 4rem;
  --arcade-header-stack-height: calc(var(--arcade-header-height) + 1px);
  --arcade-hero-height: calc(100vh - var(--arcade-header-stack-height));
  font-family: 'Share Tech Mono', monospace;
}
.sn-theme-arcade .arcade-display,
.sn-theme-arcade .arcade-brand {
  font-family: 'Press Start 2P', monospace;
}

.sn-theme-arcade { image-rendering: pixelated; }
.sn-theme-arcade .arcade-display, .sn-theme-arcade .arcade-brand { letter-spacing: .04em; line-height: 1.6; }
.sn-theme-arcade .arcade-header { background: #0a0a0a; border-bottom: 3px solid #ff2d95; box-shadow: 0 0 20px rgba(255,45,149,.25); }
.sn-theme-arcade .arcade-footer { background: #050505; border-top: 3px solid #00f0ff; }
.sn-theme-arcade .arcade-sticky-cart { background: #ff2d95; color: #0a0a0a; border: 2px solid #ffe600; box-shadow: 4px 4px 0 #00f0ff; }
.sn-theme-arcade .arcade-sticky-cart:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #00f0ff; }
.sn-theme-arcade .arcade-hero-overlay-gradient { background: linear-gradient(180deg, rgba(255,45,149,.55), rgba(0,240,255,.25)); }
.sn-theme-arcade .arcade-product-card { background: #111; border: 2px solid #00f0ff; box-shadow: 4px 4px 0 rgba(255,45,149,.6); }
.sn-theme-arcade .arcade-anim-scanlines { background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,240,255,.04) 2px, rgba(0,240,255,.04) 4px); animation: arcade-scan 8s linear infinite; }
.sn-theme-arcade .arcade-anim-grid { background-image: linear-gradient(rgba(255,45,149,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0,240,255,.08) 1px, transparent 1px); background-size: 32px 32px; animation: arcade-grid-pan 20s linear infinite; }
.sn-theme-arcade .arcade-anim-marquee { overflow:hidden; white-space:nowrap; color: #ffe600; font-family: 'Press Start 2P', monospace; font-size: 10px; opacity: .35; }
.sn-theme-arcade .arcade-anim-marquee span { display:inline-block; animation: arcade-marquee 18s linear infinite; }
.sn-theme-arcade.arcade-anim-card-glitch .arcade-product-card:hover { animation: arcade-glitch .4s steps(2) 1; }
.sn-theme-arcade.arcade-anim-card-neon .arcade-product-card:hover { box-shadow: 0 0 20px #ff2d95, 0 0 40px #00f0ff; }
.sn-theme-arcade.arcade-anim-scroll-reveal .arcade-home-section { animation: arcade-blink-in .6s steps(4) both; }
@keyframes arcade-scan { from{background-position:0 0} to{background-position:0 120px} }
@keyframes arcade-grid-pan { from{background-position:0 0} to{background-position:64px 64px} }
@keyframes arcade-marquee { from{transform:translateX(100%)} to{transform:translateX(-100%)} }
@keyframes arcade-glitch { 0%{transform:translate(0)} 25%{transform:translate(-3px,2px)} 50%{transform:translate(3px,-2px)} 75%{transform:translate(-2px,-1px)} 100%{transform:translate(0)} }
@keyframes arcade-blink-in { from{opacity:0} to{opacity:1} }

@media (min-width: 768px) {
  .sn-theme-arcade {
    --arcade-header-height: 4.5rem;
  }
}

@supports (height: 100dvh) {
  .sn-theme-arcade {
    --arcade-hero-height: calc(100dvh - var(--arcade-header-stack-height));
  }
}

/* Faster, reliable taps on touch devices (no double-tap zoom delay). */
.sn-theme-arcade button,
.sn-theme-arcade a,
.sn-theme-arcade label,
.sn-theme-arcade [role='button'] {
  touch-action: manipulation;
}

/* Header — single bar, no top strip */
.sn-theme-arcade #arcade-header {
  top: 0;
}

.sn-theme-arcade.template-editor-active #arcade-header {
  top: 2rem;
}

/* Scrolled / pinned: header locks to top of viewport */
.sn-theme-arcade.arcade-scrolled #arcade-header,
body.sn-theme-arcade.arcade-scrolled #arcade-header {
  top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.sn-theme-arcade .arcade-header-inner {
  height: 4rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-header-inner {
    height: 4.5rem;
  }
}

/* Logo — full size with top bar visible; smaller when top bar is hidden on scroll */
.sn-theme-arcade .arcade-header-logo {
  max-height: 2.5rem;
  transition: max-height 0.3s ease;
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-header-logo {
    max-height: 3rem;
  }
}

.sn-theme-arcade.arcade-scrolled .arcade-header-inner,
body.sn-theme-arcade.arcade-scrolled .arcade-header-inner {
  height: 3.5rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade.arcade-scrolled .arcade-header-inner,
  body.sn-theme-arcade.arcade-scrolled .arcade-header-inner {
    height: 4rem;
  }
}

.sn-theme-arcade.arcade-scrolled .arcade-header-logo,
body.sn-theme-arcade.arcade-scrolled .arcade-header-logo {
  max-height: 1.5rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade.arcade-scrolled .arcade-header-logo,
  body.sn-theme-arcade.arcade-scrolled .arcade-header-logo {
    max-height: 1.75rem;
  }
}

.sn-theme-arcade.template-editor-active.arcade-scrolled #arcade-header,
body.sn-theme-arcade.template-editor-active.arcade-scrolled #arcade-header {
  top: 2rem;
}

/* Main content offset — static per header state (avoid JS padding changes on scroll). */
.sn-theme-arcade .arcade-main {
  padding-top: var(--arcade-header-stack-height);
}

.sn-theme-arcade.arcade-scrolled .arcade-main,
body.sn-theme-arcade.arcade-scrolled .arcade-main {
  padding-top: calc(4rem + 1px);
}

@media (min-width: 768px) {
  .sn-theme-arcade.arcade-scrolled .arcade-main,
  body.sn-theme-arcade.arcade-scrolled .arcade-main {
    padding-top: calc(4.5rem + 1px);
  }
}

/* Editor toolbar adds h-12 spacer before <main> — subtract that from padding. */
.sn-theme-arcade.template-editor-active .arcade-main {
  padding-top: calc(2rem + 2.5rem + 4rem + 1px - 3rem);
}

@media (min-width: 768px) {
  .sn-theme-arcade.template-editor-active .arcade-main {
    padding-top: calc(2rem + 2.5rem + 5rem + 1px - 3rem);
  }
}

.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-main,
body.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-main {
  padding-top: calc(2rem + 4rem + 1px - 3rem);
}

@media (min-width: 768px) {
  .sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-main,
  body.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-main {
    padding-top: calc(2rem + 5rem + 1px - 3rem);
  }
}

.sn-theme-arcade .arcade-main:has(.checkout-page) {
  padding-top: 0;
}

.sn-theme-arcade .safe-shop-banner {
  display: inline-flex;
  line-height: 0;
}

.sn-theme-arcade .safe-shop-banner img {
  display: block;
  width: 80px;
  height: 80px;
}

.sn-theme-arcade .arcade-safeshop-widget {
  width: 100%;
  max-width: 100%;
}

.sn-theme-arcade .arcade-safeshop-widget__iframe {
  display: block;
  border: 0;
}

.sn-theme-arcade ::selection {
  background: var(--arcade-accent);
  color: #fff;
}

.sn-theme-arcade ::-webkit-scrollbar { width: 8px; }
.sn-theme-arcade ::-webkit-scrollbar-track { background: #f1f1f1; }
.sn-theme-arcade ::-webkit-scrollbar-thumb { background: var(--arcade-accent); border-radius: 4px; }

.sn-theme-arcade .text-blue-600 { color: var(--arcade-accent) !important; }
.sn-theme-arcade .bg-blue-600 { background-color: var(--arcade-accent) !important; }
.sn-theme-arcade .bg-green-600 { background-color: var(--arcade-accent) !important; }

/* Homepage hero: fill viewport below fixed header stack (top bar + nav). */
.sn-theme-arcade .arcade-hero-slide,
.sn-theme-arcade .arcade-hero-swiper {
  min-height: var(--arcade-hero-height);
  height: var(--arcade-hero-height);
}

.sn-theme-arcade .arcade-hero-swiper .swiper-wrapper,
.sn-theme-arcade .arcade-hero-swiper .swiper-slide {
  height: 100%;
}
.sn-theme-arcade .arcade-product-tile { transition: transform 0.3s ease; }

.sn-theme-arcade #arcade-header .arcade-header-icon {
  color: #fff;
}

.sn-theme-arcade #arcade-header .arcade-header-icon:hover {
  color: #ffe600;
}

.sn-theme-arcade .arcade-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  color: #000;
  transition: color 0.2s ease;
}

.sn-theme-arcade .arcade-header-icon-svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.sn-theme-arcade .arcade-header-icon--cart {
  margin-right: 0.125rem;
}

.sn-theme-arcade .arcade-header-cart-count {
  position: absolute;
  top: -0.2rem;
  right: -0.35rem;
  min-width: 1rem;
  min-height: 1rem;
}

.sn-theme-arcade .arcade-cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border: 2px solid #fff;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.sn-theme-arcade .variation-attr-btn.is-selected,
.sn-theme-arcade .variation-btn.is-selected {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.sn-theme-arcade .arcade-qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

.sn-theme-arcade .arcade-checkout-option.is-selected,
.sn-theme-arcade .arcade-checkout-option:has(input:checked) {
  background-color: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.sn-theme-arcade .arcade-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #000;
}

@media (min-width: 1024px) {
  .sn-theme-arcade .checkout-page .lg\:flex {
    align-items: flex-start;
  }
}

.sn-theme-arcade .arcade-hero-swiper .swiper-pagination-bullet-active {
  background: #fff !important;
}

.sn-theme-arcade .sn-cart-qty-input {
  -moz-appearance: textfield;
  appearance: textfield;
}
.sn-theme-arcade .sn-cart-qty-input::-webkit-outer-spin-button,
.sn-theme-arcade .sn-cart-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Legal page */
.sn-theme-arcade .arcade-legal-page {
  background-color: #f7f7f5;
}

.sn-theme-arcade .arcade-legal-card {
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sn-theme-arcade .arcade-legal-card__header {
  position: relative;
  padding-left: 1.75rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-legal-card__header {
    padding-left: 2.25rem;
  }
}

.sn-theme-arcade .arcade-legal-card__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--arcade-accent);
}

.sn-theme-arcade .arcade-legal-editor-zone {
  border-radius: 0;
}

.sn-theme-arcade .arcade-legal-editor-zone .editor-edit-btn {
  top: 1rem;
  right: 1rem;
}

.sn-theme-arcade.template-editor-active .arcade-legal-nav {
  top: calc(2rem + 2.5rem + 4rem);
}

@media (min-width: 768px) {
  .sn-theme-arcade.template-editor-active .arcade-legal-nav {
    top: calc(2rem + 2.5rem + 5rem);
  }
}

.sn-theme-arcade.arcade-scrolled .arcade-legal-nav,
body.sn-theme-arcade.arcade-scrolled .arcade-legal-nav {
  top: calc(4rem + 1px);
}

@media (min-width: 768px) {
  .sn-theme-arcade.arcade-scrolled .arcade-legal-nav,
  body.sn-theme-arcade.arcade-scrolled .arcade-legal-nav {
    top: calc(5rem + 1px);
  }
}

.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-legal-nav,
body.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-legal-nav {
  top: calc(2rem + 4rem + 1px);
}

@media (min-width: 768px) {
  .sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-legal-nav,
  body.sn-theme-arcade.template-editor-active.arcade-scrolled .arcade-legal-nav {
    top: calc(2rem + 5rem + 1px);
  }
}

.sn-theme-arcade .arcade-legal-prose a {
  color: var(--arcade-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Account area */
.sn-theme-arcade .arcade-account-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
}

.sn-theme-arcade .arcade-account-input {
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #000;
}

.sn-theme-arcade .arcade-account-input::placeholder {
  color: #9ca3af;
}

.sn-theme-arcade .arcade-account-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #000;
}

.sn-theme-arcade .arcade-account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.sn-theme-arcade .arcade-account-btn--primary {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.sn-theme-arcade .arcade-account-btn--secondary {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.sn-theme-arcade .arcade-account-alert {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border: 1px solid;
}

.sn-theme-arcade .arcade-account-alert--success {
  background: #ffedd5;
  border-color: #bbf7d0;
  color: #166534;
}

.sn-theme-arcade .arcade-account-alert--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.sn-theme-arcade .arcade-account-card-link {
  display: block;
  padding: 1.5rem;
  border: 1px solid #000;
  background: #fff;
  transition: opacity 0.2s ease;
}

.sn-theme-arcade .arcade-account-order-card {
  border: 1px solid #000;
  background: #fff;
  transition: opacity 0.2s ease;
}

.sn-theme-arcade .arcade-account-panel {
  border: 1px solid #000;
  background: #fff;
}

.sn-theme-arcade .arcade-account-panel__header {
  border-bottom: 1px solid #000;
  padding: 1rem 1.5rem;
  background: #fff;
}

.sn-theme-arcade .arcade-account-panel__body {
  padding: 1.5rem;
}

.sn-theme-arcade .arcade-account-auth {
  background: #fff;
}

/* Cart added modal */
.arcade-cart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.arcade-cart-modal__viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
}

.arcade-cart-modal__panel {
  position: relative;
  width: 100%;
  max-width: 28rem;
  background: #fff;
  border: 1px solid #000;
  padding: 1.5rem;
  pointer-events: auto;
  animation: arcade-cart-modal-in 0.22s ease;
}

@keyframes arcade-cart-modal-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.arcade-cart-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #000;
  transition: opacity 0.2s ease;
}

.arcade-cart-modal__close-icon {
  width: 1.125rem;
  height: 1.125rem;
}

.arcade-cart-modal__status {
  margin-bottom: 1rem;
}

.arcade-cart-modal__status-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #000;
  color: #000;
}

.arcade-cart-modal__status-icon svg {
  width: 1rem;
  height: 1rem;
}

.arcade-cart-modal__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arcade-accent);
}

.arcade-cart-modal__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.3;
}

.arcade-cart-modal__product {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.arcade-cart-modal__image-wrap {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  overflow: hidden;
}

.arcade-cart-modal__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arcade-cart-modal__product-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.45;
}

.arcade-cart-modal__hint {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #4b5563;
}

.arcade-cart-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .arcade-cart-modal__actions {
    flex-direction: row;
  }
}

.arcade-cart-modal__btn {
  display: inline-flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.arcade-cart-modal__btn--secondary {
  border: 1px solid #000;
  color: #000;
  background: #fff;
}

.arcade-cart-modal__btn--primary {
  border: 1px solid #000;
  color: #fff;
  background: #000;
}

/* Search modal + autocomplete */
body.arcade-search-open {
  overflow: hidden;
}

.arcade-search-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  overflow-y: auto;
}

.arcade-search-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
}

.arcade-search-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  min-height: 100vh;
  padding: 1.5rem 1rem 2rem;
  animation: arcade-search-modal-in 0.22s ease;
}

@media (min-width: 768px) {
  .arcade-search-modal__panel {
    padding: 3rem 1.5rem 2rem;
  }
}

@keyframes arcade-search-modal-in {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.arcade-search-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.arcade-search-modal__eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arcade-accent);
}

.arcade-search-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #000;
  transition: opacity 0.2s ease;
}

.arcade-search-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.arcade-search-modal__hint {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.arcade-search-form {
  position: relative;
}

.arcade-search-form__field {
  display: flex;
  align-items: stretch;
  border: 1px solid #000;
  background: #fff;
}

.arcade-search-form--page .arcade-search-form__field {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.arcade-search-form__icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: auto 0 auto 1rem;
  color: #000;
}

.arcade-search-form__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 1rem 0.75rem;
  font-size: 1rem;
  color: #000;
}

.arcade-search-form__input:focus {
  outline: none;
}

.arcade-search-form__input::placeholder {
  color: #9ca3af;
}

.arcade-search-form__submit {
  flex-shrink: 0;
  border: 0;
  border-left: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.arcade-search-suggest {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: min(24rem, 60vh);
  overflow: auto;
  border: 1px solid #000;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.arcade-search-form--page .arcade-search-suggest {
  position: relative;
  top: 0.75rem;
}

.arcade-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f3f4f6;
  color: #000;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.arcade-search-suggest__item:last-child {
  border-bottom: 0;
}

.arcade-search-suggest__item.is-active {
  background: #f9fafb;
}

.arcade-search-suggest__image {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
}

.arcade-search-suggest__image--empty {
  display: block;
}

.arcade-search-suggest__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.arcade-search-suggest__name {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.arcade-search-suggest__price {
  font-size: 0.8125rem;
  color: #4b5563;
}

/* Header — hamburger samo na mobilu */
@media (min-width: 1024px) {
  .sn-theme-arcade .arcade-header-menu-btn,
  .sn-theme-arcade #arcade-mobile-menu {
    display: none !important;
  }
}

/* Contact page */
.arcade-contact-editor-zone .editor-edit-btn {
  top: 0.5rem;
  right: 0.5rem;
}

.arcade-contact-info {
  border: 2px solid rgba(0, 240, 255, 0.3);
  padding: 1.5rem;
  background: #111;
}

.arcade-contact-info__title {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 400;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe600;
}

.arcade-contact-info__list {
  margin: 0;
}

.arcade-contact-info__item + .arcade-contact-info__item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.arcade-contact-info__item dt {
  margin: 0 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 500;
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b9a78;
}

.arcade-contact-info__item dd {
  margin: 0;
  font-size: 0.875rem;
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.5;
  color: #e8ffe8;
}

.arcade-contact-info__item a {
  color: #00f0ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.arcade-contact-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.arcade-contact-input {
  display: block;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #000;
}

.arcade-contact-input:focus {
  outline: none;
  box-shadow: 0 0 0 1px #000;
}

.arcade-contact-input.is-invalid {
  border-color: #ff2d95;
}

.arcade-contact-input::placeholder {
  color: #9ca3af;
}

.arcade-contact-input--textarea {
  min-height: 9rem;
}

.arcade-contact-upload {
  border: 2px dashed #d1d5db;
  padding: 2rem 1rem;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.arcade-contact-upload.is-dragover {
  border-color: #000;
  background: #f9fafb;
}

.arcade-contact-upload__icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: #9ca3af;
}

.arcade-contact-upload__text {
  font-size: 0.75rem;
  color: #4b5563;
}

.arcade-contact-upload__link {
  cursor: pointer;
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.arcade-contact-upload__hint {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  color: #9ca3af;
}

.arcade-contact-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .arcade-contact-preview {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.arcade-contact-preview__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.arcade-contact-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arcade-contact-preview__remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.arcade-contact-submit {
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  padding: 0.875rem 1.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.arcade-contact-form.is-submitting .arcade-contact-submit {
  opacity: 0.6;
  cursor: wait;
}

.arcade-contact-form__alert {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border: 1px solid;
}

.arcade-contact-form__alert.is-success {
  background: #ffedd5;
  border-color: #bbf7d0;
  color: #166534;
}

.arcade-contact-form__alert.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

/* Decorative hovers only on true hover pointers — prevents double-tap on phones/tablets. */
@media (hover: hover) and (pointer: fine) {
  .sn-theme-arcade .hover\:text-blue-600:hover {
    color: var(--arcade-accent) !important;
  }

  .sn-theme-arcade .hover\:bg-blue-700:hover {
    background-color: var(--arcade-orange-dark) !important;
  }

  .sn-theme-arcade .hover\:bg-green-700:hover {
    background-color: var(--arcade-orange-dark) !important;
  }

  .sn-theme-arcade .arcade-product-tile:hover {
    transform: scale(1.02);
  }

  .sn-theme-arcade .arcade-header-icon:hover {
    color: var(--arcade-accent);
  }

  .sn-theme-arcade .variation-attr-btn:not(.is-selected):not(:disabled):hover,
  .sn-theme-arcade .variation-btn:not(.is-selected):not(:disabled):hover {
    background-color: #000 !important;
    color: #fff !important;
  }

  .sn-theme-arcade .arcade-checkout-option:not(.is-selected):hover {
    background-color: #000 !important;
    color: #fff !important;
  }

  .sn-theme-arcade .arcade-legal-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  }

  .sn-theme-arcade .arcade-legal-prose a:hover {
    color: var(--arcade-orange-dark);
  }

  .sn-theme-arcade .arcade-account-btn--primary:hover {
    background: #000;
    color: #fff;
  }

  .sn-theme-arcade .arcade-account-btn--secondary:hover {
    opacity: 0.7;
  }

  .sn-theme-arcade .arcade-account-card-link:hover {
    opacity: 0.85;
  }

  .sn-theme-arcade .arcade-account-order-card:hover {
    opacity: 0.75;
  }

  .arcade-cart-modal__close:hover {
    opacity: 0.55;
  }

  .arcade-cart-modal__btn--secondary:hover {
    background: #000;
    color: #fff;
  }

  .arcade-cart-modal__btn--primary:hover {
    background: var(--arcade-accent);
    border-color: var(--arcade-accent);
  }

  .arcade-search-modal__close:hover {
    opacity: 0.55;
  }

  .arcade-search-form__submit:hover {
    background: var(--arcade-accent);
  }

  .arcade-search-suggest__item:hover {
    background: #f9fafb;
  }

  .arcade-contact-info__item a:hover {
    color: var(--arcade-accent);
  }

  .arcade-contact-upload__link:hover {
    opacity: 0.7;
  }

  .arcade-contact-submit:hover {
    background: #000;
    color: #fff;
  }
}

/* Product gallery — seamless inline video (Freitag PDP) */
.sn-theme-arcade .arcade-gallery-stage.is-video-active {
  background: #fff;
}

.sn-theme-arcade .arcade-gallery-video {
  background: #fff;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.sn-theme-arcade .arcade-gallery-video::-webkit-media-controls {
  display: none !important;
}

.sn-theme-arcade .arcade-gallery-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.sn-theme-arcade .arcade-gallery-video-unmute {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.88);
  color: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.sn-theme-arcade .arcade-gallery-stage.is-video-active:hover .arcade-gallery-video-unmute,
.sn-theme-arcade .arcade-gallery-video-unmute:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.sn-theme-arcade .arcade-gallery-video-unmute:hover {
  background: #fff;
  border-color: #000;
}

.sn-theme-arcade .arcade-gallery-video-unmute__icon {
  width: 1rem;
  height: 1rem;
}

/* ─── Arcade interior pages (dark neon) ─── */
.sn-theme-arcade .arcade-page {
  background: #0a0a0a;
  color: #e8ffe8;
  min-height: calc(100vh - var(--arcade-header-stack-height));
}

.sn-theme-arcade .arcade-page-body {
  background: #0a0a0a;
  color: #e8ffe8;
}

.sn-theme-arcade .arcade-page-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a14 45%, #0a1418 100%);
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.sn-theme-arcade .arcade-page-hero--compact {
  padding-bottom: 0;
}

.sn-theme-arcade .arcade-page-hero__title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 400;
  color: #ffe600;
  line-height: 1.5;
  margin-top: 1rem;
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.25);
}

.sn-theme-arcade .arcade-page-hero__subtitle {
  margin-top: 0.75rem;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #8bc4a0;
}

.sn-theme-arcade .arcade-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
}

.sn-theme-arcade .arcade-breadcrumbs__link {
  color: #00f0ff;
  transition: color 0.2s;
}

.sn-theme-arcade .arcade-breadcrumbs__link:hover {
  color: #ff2d95;
}

.sn-theme-arcade .arcade-breadcrumbs__sep {
  color: #4a6b52;
}

.sn-theme-arcade .arcade-breadcrumbs__current {
  color: #c8e6cc;
  font-weight: 500;
}

.sn-theme-arcade .arcade-page .text-gray-900 { color: #e8ffe8 !important; }
.sn-theme-arcade .arcade-page .text-gray-800 { color: #d4f5d8 !important; }
.sn-theme-arcade .arcade-page .text-gray-700 { color: #c8e6cc !important; }
.sn-theme-arcade .arcade-page .text-gray-600 { color: #8bc4a0 !important; }
.sn-theme-arcade .arcade-page .text-gray-500 { color: #6b9a78 !important; }
.sn-theme-arcade .arcade-page .text-gray-400 { color: #5a7a62 !important; }
.sn-theme-arcade .arcade-page .border-gray-100 { border-color: rgba(0, 240, 255, 0.15) !important; }
.sn-theme-arcade .arcade-page .border-orange-100 { border-color: rgba(255, 45, 149, 0.2) !important; }

.sn-theme-arcade .arcade-display {
  font-family: 'Press Start 2P', monospace;
}

.sn-theme-arcade .arcade-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff2d95;
  margin-bottom: 0.75rem;
}

.sn-theme-arcade .arcade-card {
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.25);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.35);
}

.sn-theme-arcade .arcade-card--padded {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-card--padded {
    padding: 2rem;
  }
}

.sn-theme-arcade .arcade-card__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  background: linear-gradient(180deg, #1a0a14 0%, #111 100%);
}

.sn-theme-arcade .arcade-card__body {
  padding: 1.5rem;
}

.sn-theme-arcade .arcade-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.sn-theme-arcade .arcade-btn--primary {
  background: #ff2d95;
  color: #fff;
}

.sn-theme-arcade .arcade-btn--primary:hover:not(:disabled) {
  background: #00f0ff;
}

.sn-theme-arcade .arcade-btn--secondary {
  background: transparent;
  color: #00f0ff;
  border: 2px solid #00f0ff;
}

.sn-theme-arcade .arcade-btn--secondary:hover {
  background: #00f0ff;
  color: #0a0a0a;
  border-color: #00f0ff;
}

.sn-theme-arcade .arcade-text-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ff2d95;
  transition: color 0.2s;
}

.sn-theme-arcade .arcade-text-link:hover {
  color: #00f0ff;
}

.sn-theme-arcade .arcade-input {
  width: 100%;
  border: 2px solid rgba(0, 240, 255, 0.35);
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  background: #111;
  color: #e8ffe8;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-theme-arcade .arcade-input::placeholder {
  color: #5a7a62;
}

.sn-theme-arcade .arcade-input:focus {
  outline: none;
  border-color: #ff2d95;
  box-shadow: 0 0 0 2px rgba(255, 45, 149, 0.25);
}

.sn-theme-arcade .arcade-select {
  border: 2px solid rgba(0, 240, 255, 0.35);
  border-radius: 0;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  background: #111;
  color: #e8ffe8;
  cursor: pointer;
}

.sn-theme-arcade .arcade-select:focus {
  outline: none;
  border-color: #ff2d95;
}

.sn-theme-arcade .arcade-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 0;
  background: #111;
  border: 2px dashed rgba(0, 240, 255, 0.3);
  color: #8bc4a0;
}

.sn-theme-arcade .arcade-empty-state--highlight {
  border-style: solid;
  border-color: rgba(255, 45, 149, 0.35);
}

.sn-theme-arcade .arcade-badge {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  background: #ffedd5;
  color: #ff2d95;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Product cards (listing pages) */
.sn-theme-arcade .arcade-page .arcade-product-card:not(.arcade-product-card--home) {
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.4);
  padding: 0.5rem;
}

.sn-theme-arcade .arcade-product-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #0a0a0a;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.sn-theme-arcade .arcade-product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.sn-theme-arcade .arcade-product-card:hover .arcade-product-card__image {
  transform: scale(1.04);
}

.sn-theme-arcade .arcade-product-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #5a7a62;
}

.sn-theme-arcade .arcade-product-card__body {
  margin-top: 0.875rem;
}

.sn-theme-arcade .arcade-product-card__title {
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Share Tech Mono', monospace;
  color: #e8ffe8;
  line-height: 1.35;
  transition: color 0.2s;
}

.sn-theme-arcade .arcade-product-card:hover .arcade-product-card__title {
  color: #00f0ff;
}

.sn-theme-arcade .arcade-product-card__price {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Share Tech Mono', monospace;
  color: #ff2d95;
}

.sn-theme-arcade .arcade-product-card__stock {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b9a78;
}

/* Category cards */
.sn-theme-arcade .arcade-category-card {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.sn-theme-arcade .arcade-category-card:hover {
  transform: translate(-2px, -2px);
  border-color: #ff2d95;
  box-shadow: 6px 6px 0 #00f0ff;
}

.sn-theme-arcade .arcade-category-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a14, #0a1418);
}

.sn-theme-arcade .arcade-category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.sn-theme-arcade .arcade-category-card:hover .arcade-category-card__image {
  transform: scale(1.05);
}

.sn-theme-arcade .arcade-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75), transparent 55%);
}

.sn-theme-arcade .arcade-category-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 2rem;
  color: rgba(0, 240, 255, 0.35);
}

.sn-theme-arcade .arcade-category-card__body {
  padding: 1.25rem 1.5rem;
}

.sn-theme-arcade .arcade-category-card__title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffe600;
  line-height: 1.5;
}

.sn-theme-arcade .arcade-category-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-family: 'Share Tech Mono', monospace;
  color: #00f0ff;
}

/* List cards */
.sn-theme-arcade .arcade-list-card {
  display: block;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-theme-arcade .arcade-list-card:hover {
  border-color: #ffe600;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

.sn-theme-arcade .arcade-list-card__body {
  padding: 1.5rem;
}

.sn-theme-arcade .arcade-list-card__title {
  font-family: 'Outfit', Inter, sans-serif';
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.sn-theme-arcade .arcade-list-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.sn-theme-arcade .arcade-list-card__meta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #ff2d95;
}

/* Pagination */
.sn-theme-arcade .arcade-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.sn-theme-arcade .arcade-pagination__btn {
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Share Tech Mono', monospace;
  color: #00f0ff;
  border: 2px solid rgba(0, 240, 255, 0.35);
  background: #111;
  transition: background 0.2s, color 0.2s;
}

.sn-theme-arcade .arcade-pagination__btn:hover:not(.arcade-pagination__btn--disabled) {
  background: #ff2d95;
  color: #0a0a0a;
  border-color: #ff2d95;
}

.sn-theme-arcade .arcade-pagination__info {
  font-size: 0.8125rem;
  color: #8bc4a0;
}

/* Qty control */
.sn-theme-arcade .arcade-qty-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid #00f0ff;
  border-radius: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 3px 3px 0 rgba(255, 45, 149, 0.5);
}

.sn-theme-arcade .arcade-qty-control__btn {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00f0ff;
  background: #0a0a0a;
  transition: background 0.2s, color 0.2s;
}

.sn-theme-arcade .arcade-qty-control__btn:hover:not(:disabled) {
  background: #ff2d95;
  color: #0a0a0a;
}

.sn-theme-arcade .arcade-qty-control__btn:disabled {
  opacity: 0.35;
}

.sn-theme-arcade .arcade-qty-control__value,
.sn-theme-arcade .arcade-qty-control__input {
  min-width: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Share Tech Mono', monospace;
  color: #ffe600;
  border: 0;
  background: #111;
}

.sn-theme-arcade .arcade-qty-control__input {
  width: 3rem;
  padding: 0.35rem 0;
}

.sn-theme-arcade .arcade-qty-control__input:focus {
  outline: none;
}

/* Cart summary */
.sn-theme-arcade .arcade-cart-summary__header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
  background: linear-gradient(180deg, #ffedd5, #fff);
}

.sn-theme-arcade .arcade-cart-summary__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

/* Account layout */
.sn-theme-arcade .arcade-account-layout {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--arcade-header-stack-height));
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-account-layout {
    flex-direction: row;
  }
}

.sn-theme-arcade .arcade-account-sidebar {
  width: 100%;
  flex-shrink: 0;
  background: #fff;
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-account-sidebar {
    width: 16rem;
    border-bottom: 0;
    border-right: 1px solid rgba(5, 150, 105, 0.08);
  }
}

.sn-theme-arcade .arcade-account-sidebar__header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
}

.sn-theme-arcade .arcade-account-sidebar__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.sn-theme-arcade .arcade-account-sidebar__email {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #9ca3af;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sn-theme-arcade .arcade-account-nav {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sn-theme-arcade .arcade-account-nav__link {
  display: block;
  padding: 0.65rem 0.875rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  color: #4b5563;
  transition: background 0.2s, color 0.2s;
}

.sn-theme-arcade .arcade-account-nav__link:hover,
.sn-theme-arcade .arcade-account-nav__link--active {
  background: #ffedd5;
  color: #ff2d95;
  font-weight: 500;
}

.sn-theme-arcade .arcade-account-main {
  flex: 1;
  padding: 1.5rem;
  max-width: 56rem;
}

@media (min-width: 768px) {
  .sn-theme-arcade .arcade-account-main {
    padding: 2rem 3rem;
  }
}

.sn-theme-arcade .arcade-account-tile,
.sn-theme-arcade .arcade-order-card {
  display: block;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sn-theme-arcade .arcade-account-tile:hover,
.sn-theme-arcade .arcade-order-card:hover {
  border-color: #ffe600;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

.sn-theme-arcade .arcade-account-tile__label {
  font-size: 0.75rem;
  color: #9ca3af;
}

.sn-theme-arcade .arcade-account-tile__title {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
}

.sn-theme-arcade .arcade-account-tile__cta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #ff2d95;
}

/* Legal */
.sn-theme-arcade .arcade-legal-nav {
  position: sticky;
  top: calc(var(--arcade-header-stack-height) + 0.5rem);
  z-index: 10;
  padding: 1rem 0;
  background: rgba(250, 249, 252, 0.92);
  backdrop-filter: blur(8px);
}

.sn-theme-arcade .arcade-legal-nav__link {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: #6b7280;
  background: #fff;
  border: 1px solid rgba(5, 150, 105, 0.12);
  transition: all 0.2s;
}

.sn-theme-arcade .arcade-legal-nav__link:hover {
  color: #ff2d95;
  border-color: #ffe600;
  background: #ffedd5;
}

.sn-theme-arcade .arcade-legal-prose {
  color: #4b5563;
  font-size: 0.9375rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

/* Category nav / filters */
.sn-theme-arcade .arcade-filter-panel {
  padding: 1rem;
  border-radius: 0;
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.25);
}

.sn-theme-arcade .arcade-filter-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffe600;
  margin-bottom: 0.75rem;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.625rem;
}

.sn-theme-arcade .arcade-cat-nav__link {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  color: #8bc4a0;
  transition: color 0.2s;
}

.sn-theme-arcade .arcade-cat-nav__link:hover {
  color: #00f0ff;
}

.sn-theme-arcade .arcade-cat-nav__link--active {
  color: #ff2d95;
  font-weight: 600;
  border-left: 2px solid #ff2d95;
  padding-left: 0.5rem;
  margin-left: -0.5rem;
}

/* Contact form overrides */
.sn-theme-arcade .arcade-contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #374151;
}

.sn-theme-arcade .arcade-contact-input {
  width: 100%;
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.sn-theme-arcade .arcade-contact-input:focus {
  outline: none;
  border-color: #ff2d95;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.sn-theme-arcade .arcade-contact-submit {
  display: inline-flex;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  background: #ff2d95;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.sn-theme-arcade .arcade-contact-submit:hover {
  background: #00f0ff;
}

.sn-theme-arcade .arcade-contact-info {
  padding: 1.5rem;
  border-radius: 0;
  background: #111;
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.35);
}

.sn-theme-arcade .arcade-contact-info__title {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffe600;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.sn-theme-arcade .arcade-contact-info__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 240, 255, 0.15);
}

.sn-theme-arcade .arcade-contact-info__item:last-child {
  border-bottom: 0;
}

.sn-theme-arcade .arcade-contact-info__item dt {
  font-size: 0.625rem;
  font-family: 'Press Start 2P', monospace;
  color: #6b9a78;
  margin-bottom: 0.35rem;
}

.sn-theme-arcade .arcade-contact-info__item dd {
  font-size: 0.875rem;
  font-family: 'Share Tech Mono', monospace;
  color: #e8ffe8;
}

.sn-theme-arcade .arcade-contact-info__item a {
  color: #00f0ff;
}

.sn-theme-arcade .arcade-contact-info__item a:hover {
  color: #ff2d95;
}

/* PDP */
.sn-theme-arcade .arcade-pdp-info {
  padding: 0.5rem 0;
}

@media (min-width: 1024px) {
  .sn-theme-arcade .arcade-pdp-grid {
    gap: 3.5rem;
  }
}

/* Homepage sections & enhanced product cards */
.sn-theme-arcade .arcade-home-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  color: #e8ffe8;
}

.sn-theme-arcade .arcade-home-heading {
  color: #ffe600;
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.35);
}

.sn-theme-arcade .arcade-home-subtext {
  color: #8bc4a0;
}

.sn-theme-arcade .arcade-home-products-section {
  position: relative;
}

.sn-theme-arcade .arcade-home-products-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 240, 255, 0.03) 2px, rgba(0, 240, 255, 0.03) 4px);
  pointer-events: none;
}

.sn-theme-arcade .arcade-home-products-section > .container {
  position: relative;
  z-index: 1;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home {
  padding: 0.625rem;
  background: #111;
  border: 2px solid #00f0ff;
  box-shadow: 4px 4px 0 rgba(255, 45, 149, 0.55);
  overflow: hidden;
  transition: transform 0.2s steps(2), box-shadow 0.2s ease, border-color 0.2s ease;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home:hover {
  transform: translate(-2px, -2px);
  border-color: #ff2d95;
  box-shadow: 6px 6px 0 #00f0ff, 0 0 20px rgba(255, 45, 149, 0.4);
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home .arcade-product-card__media {
  border: 1px solid rgba(0, 240, 255, 0.35);
  overflow: hidden;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home .arcade-product-card__title {
  color: #e8ffe8;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home:hover .arcade-product-card__title {
  color: #00f0ff;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home .arcade-product-card__price {
  color: #ff2d95;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.875rem;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home .arcade-product-card__body {
  padding: 0.5rem 0.125rem 0;
  margin-top: 0.625rem;
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home .arcade-product-card__image {
  transition: transform 0.25s steps(3);
}

.sn-theme-arcade .arcade-home-products-grid .arcade-product-card--home:hover .arcade-product-card__image {
  transform: scale(1.04);
}

/* Footer contrast */
.sn-theme-arcade .arcade-footer {
  background: #050505;
  color: #e8ffe8;
  border-top: 3px solid #00f0ff;
}

.sn-theme-arcade .arcade-footer a:focus-visible {
  outline: 2px solid #ffe600;
  outline-offset: 2px;
}
