:root {
  --ink: #f8fbff;
  --muted: #9fb5d0;
  --line: #263b5d;
  --paper: #081121;
  --rose: #ff3df2;
  --rose-dark: #ff2c7d;
  --plum: #f8fbff;
  --sage: #28f6b2;
  --champagne: #ffd447;
  --petal: #152743;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, .42);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, .26);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(40, 246, 178, .08) 1px, transparent 1px),
    linear-gradient(180deg, #050914 0%, #081121 45%, #111a36 100%);
  background-size: 44px 44px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button, input, select, textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(5, 9, 20, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(40, 246, 178, .28);
}

.brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.85rem;
  letter-spacing: .06em;
}

.logo-center .brand {
  grid-column: 2;
  justify-self: center;
}

.logo-right .brand {
  grid-column: 3;
  justify-self: end;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 5px;
  border: 1px solid rgba(40, 246, 178, .5);
  border-radius: 8px;
  background: #07101d;
  color: var(--sage);
  font-size: .82rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.brand-mark img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
}

.top-nav {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 800;
}

.logo-right .top-nav {
  grid-column: 1;
  justify-self: start;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 42px;
  width: auto;
  padding: 0 10px;
  background: linear-gradient(135deg, #111a36 0%, #1d2d55 100%);
  color: var(--sage);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(34px, 7vw, 76px) clamp(18px, 5vw, 64px) clamp(28px, 5vw, 56px);
  gap: clamp(24px, 5vw, 70px);
  overflow: hidden;
}

.hero-brand-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(280px, 42vw, 560px);
  padding: clamp(18px, 4vw, 48px);
  border: 1px solid rgba(234, 219, 214, .95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(247, 231, 230, .72)),
    repeating-linear-gradient(90deg, rgba(132, 56, 79, .04) 0 1px, transparent 1px 22px);
  box-shadow: var(--shadow);
  overflow: visible;
  animation: heroPanelIn .7s ease both;
}

.hero-brand-visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92%, 620px);
  max-height: min(70vh, 540px);
  object-fit: contain;
  border-radius: 8px;
  animation: logoFloat 7s ease-in-out 1s infinite;
}

.hero-copy {
  animation: heroCopyIn .75s ease .12s both;
}

.hero-copy h1,
.admin-form-wrap h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: .95;
  letter-spacing: 0;
  color: var(--plum);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateX(-22px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-brand-visual,
  .hero-brand-visual img,
  .hero-copy {
    animation: none;
  }
}

/* Structured descriptions shared by the product page and admin preview. */
.product-page .detail-description,
body.admin-body .description-preview {
  display: grid;
  gap: 13px;
}

.product-page .detail-description > *,
body.admin-body .description-preview > * {
  margin: 0;
}

.product-page .detail-description h3,
body.admin-body .description-preview h3 {
  padding: 8px 0 8px 12px;
  border-left: 4px solid #ff31b7;
  color: #ffd83d;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: .88rem;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 9px rgba(255, 216, 61, .28);
}

.product-page .detail-description p,
body.admin-body .description-preview p {
  color: #eef8ff;
  font: inherit;
  line-height: 1.72;
}

.product-page .description-list,
body.admin-body .description-preview .description-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-page .description-list-grid,
body.admin-body .description-preview .description-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.product-page .description-list li,
body.admin-body .description-preview .description-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  color: #e8f6ff;
  line-height: 1.52;
}

.product-page .description-list-marker,
body.admin-body .description-preview .description-list-marker {
  width: 8px;
  height: 8px;
  margin-top: .48em;
  border: 1px solid #35ffce;
  background: #6c63ff;
  box-shadow: 0 0 7px rgba(53, 255, 206, .65);
}

.product-page .description-list-icon,
body.admin-body .description-preview .description-list-icon {
  display: block;
  width: 18px;
  line-height: 1.35;
  text-align: center;
}

.product-page .description-list strong,
body.admin-body .description-preview .description-list strong {
  color: #8dffe3;
}

.product-page .description-empty,
body.admin-body .description-preview .description-empty {
  color: #9fb5d0;
  font-style: italic;
}

body.admin-body .description-preview-wrap {
  overflow: hidden;
  border: 1px solid #263b5d;
  border-radius: 7px;
  background: #080a1b;
  box-shadow: inset 0 0 28px rgba(108, 99, 255, .08);
}

body.admin-body .description-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(53, 255, 206, .28);
  background: #111537;
  color: #dffcff;
  font-size: .78rem;
  font-weight: 900;
}

body.admin-body .description-preview-head span:last-child {
  color: #8aa1bd;
  font-weight: 700;
}

body.admin-body .description-preview {
  max-height: 420px;
  overflow: auto;
  padding: 16px;
  color: #eef8ff;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: .96rem;
}

body.admin-body #description {
  min-height: 250px;
  line-height: 1.55;
  resize: vertical;
}

@media (min-width: 1081px) {
  .product-page .product-gallery-pro {
    position: sticky;
    top: 118px;
  }
}

@media (max-width: 640px) {
  .product-page .description-list-grid,
  body.admin-body .description-preview .description-list-grid {
    grid-template-columns: 1fr;
  }

  body.admin-body .description-preview {
    max-height: 340px;
    padding: 14px;
  }
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #101b31;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 30px rgba(75, 36, 53, .12);
}

.button.primary {
  border-color: var(--sage);
  background: linear-gradient(135deg, #ff2c7d 0%, #7047ff 55%, #28f6b2 100%);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, .74);
}

.button.whatsapp {
  width: 100%;
  border-color: #1f8b51;
  background: linear-gradient(135deg, #1f8b51 0%, #2fa766 100%);
  color: var(--white);
}

.logout-button {
  min-height: 38px;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 4% 11%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(234, 210, 180, .86), rgba(247, 231, 230, .74)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.24) 0 1px, transparent 1px 16px);
  opacity: .9;
  transform: rotate(3deg);
}

.hero-visual img {
  position: absolute;
  width: min(70%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, .82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img:first-child {
  right: 0;
  top: 4%;
}

.hero-visual img:last-child {
  left: 0;
  bottom: 0;
  transform: rotate(-5deg);
}

.toolbar,
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 38px clamp(18px, 5vw, 64px) 18px;
}

.toolbar h2,
.section-head h2,
.cart-header h2,
.admin-products h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(132, 56, 79, .52);
  box-shadow: 0 0 0 4px rgba(207, 127, 145, .14);
}

.filters input,
.filters select {
  width: min(42vw, 260px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 64px) 78px;
}

.seo-section,
.faq-section {
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 64px);
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
  border-top: 1px solid rgba(40, 246, 178, .18);
  border-bottom: 1px solid rgba(255, 61, 242, .16);
  background: rgba(8, 17, 33, .72);
}

.seo-copy h2,
.faq-section h2 {
  max-width: 780px;
  margin: 0;
  color: #fff7dd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: 1;
}

.seo-copy p:not(.eyebrow),
.seo-panel p,
.faq-list p {
  color: #c9d8eb;
  line-height: 1.72;
}

.seo-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.seo-panel,
.faq-list details {
  border: 1px solid rgba(40, 246, 178, .24);
  border-radius: 8px;
  background: rgba(5, 9, 20, .58);
  box-shadow: var(--shadow-soft);
}

.seo-panel {
  padding: 18px;
}

.seo-panel h3 {
  margin: 0 0 10px;
  color: #8dffe3;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.seo-panel p,
.faq-list p {
  margin: 0;
}

.faq-section {
  border-top: 1px solid rgba(40, 246, 178, .18);
}

.faq-section h2 {
  margin-bottom: 22px;
}

.faq-list {
  max-width: 980px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  color: #fff7dd;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
}

.faq-list p {
  padding-top: 12px;
}

.product-card,
.admin-form-wrap,
.admin-products,
.admin-item {
  border: 1px solid rgba(234, 223, 220, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(75, 36, 53, .17);
  outline: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #f8eee9 0%, #efe2d6 100%);
}

.product-info {
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.product-info h3 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--plum);
  font-size: 1.55rem;
}

.price {
  color: var(--rose-dark);
  font-weight: 900;
}

.muted {
  color: var(--muted);
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.card-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f7e7e6;
  color: var(--rose-dark);
  font-size: .82rem;
  font-weight: 800;
}

.cart-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  background: var(--paper);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform .22s ease;
  box-shadow: -20px 0 50px rgba(75, 36, 53, .15);
}

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

.cart-header,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 14px 22px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 72px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  background: rgba(36, 24, 29, .36);
}

.scrim.open { display: block; }

.admin-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px) 70px;
}

.admin-sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.logo-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 430px;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .55);
}

.logo-preview img {
  width: 360px;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
}

.current-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.photo-keep-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
}

.photo-keep-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  background: #f8eee9;
}

.photo-keep-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-dark);
  font-weight: 900;
}

.photo-keep-card input {
  width: auto;
}

input[type="file"] {
  padding: 18px;
  border-style: dashed;
  background: rgba(255, 255, 255, .72);
}

input[type="file"]::file-selector-button {
  margin-right: 12px;
  border: 1px solid var(--plum);
  border-radius: 8px;
  background: var(--plum);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
}

.upload-note {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(127, 148, 130, .12);
  color: #536b57;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
}

.upload-note.warning {
  background: rgba(190, 64, 48, .12);
  color: #8a2f25;
}

.plan-panel {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(127, 148, 123, .24);
  border-radius: 8px;
  background: rgba(127, 148, 123, .12);
  color: #405744;
  font-size: .92rem;
  font-weight: 800;
}

.plans-editor {
  display: grid;
  gap: 16px;
}

.plan-editor {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
}

.plan-editor legend {
  padding: 0 8px;
  color: var(--rose-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
}

.store-editor {
  grid-template-columns: 1fr minmax(180px, 260px);
}

.detail-page {
  padding: clamp(24px, 5vw, 58px) clamp(18px, 5vw, 64px) 70px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(300px, .8fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.gallery {
  display: grid;
  gap: 14px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f5eee9;
  box-shadow: var(--shadow);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--rose-dark);
}

.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #f5eee9;
}

.detail-copy {
  position: sticky;
  top: 104px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(234, 223, 220, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
}

.detail-copy h1,
.empty-detail h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
}

.detail-price {
  margin: 18px 0;
  color: var(--rose-dark);
  font-size: 1.65rem;
  font-weight: 900;
}

.detail-block {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.empty-detail {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 760px;
}

.auth-body {
  min-height: 100vh;
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.auth-panel {
  width: min(100%, 460px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(234, 223, 220, .9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 249, 245, .82));
  box-shadow: var(--shadow);
}

.auth-panel h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

.auth-message {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.recovery-box {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(127, 148, 130, .12);
  color: #415946;
}

.recovery-box code {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  border: 1px solid rgba(94, 42, 64, .18);
  border-radius: 8px;
  background: #fff;
  color: #111827;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .04em;
  user-select: all;
}

.admin-form-wrap,
.admin-products {
  padding: 24px;
}

.admin-form-wrap h1 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 22px;
}

.product-form {
  display: grid;
  gap: 14px;
}

.product-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.check-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-add {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-row input {
  width: auto;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  box-shadow: none;
}

.admin-item img {
  width: 96px;
  height: 116px;
  object-fit: cover;
  border-radius: 8px;
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
}

.admin-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero,
  .seo-section,
  .admin-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero-brand-visual {
    min-height: clamp(190px, 54vw, 320px);
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .detail-copy {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .brand,
  .logo-center .brand,
  .logo-right .brand {
    grid-column: 1;
    justify-self: start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    padding: 4px;
  }

  .brand-name {
    font-size: 1.24rem;
    line-height: 1;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 9vw, 2.5rem);
    line-height: 1.02;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-brand-visual img {
    max-width: min(92%, 330px);
    max-height: 240px;
  }

  .top-nav,
  .logo-right .top-nav {
    grid-column: 2;
    justify-self: end;
  }

  .toolbar,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-section,
  .faq-section {
    padding-block: 32px;
  }

  .filters input,
  .filters select,
  .inline-add {
    width: 100%;
    grid-template-columns: 1fr;
  }

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

  .admin-item {
    grid-template-columns: 76px 1fr;
  }

  .admin-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }
}

.arcade-theme .site-header {
  border-top: 5px solid var(--rose);
  box-shadow: 0 0 28px rgba(40, 246, 178, .12);
}

.arcade-theme .brand-name,
.arcade-theme .toolbar h2,
.arcade-theme .cart-header h2,
.arcade-theme .admin-products h2 {
  text-shadow: 0 0 18px rgba(255, 61, 242, .28);
}

.arcade-theme .hero {
  position: relative;
  display: block;
  min-height: auto;
  padding: clamp(18px, 4vw, 44px) clamp(14px, 4vw, 52px) clamp(24px, 4vw, 52px);
}

.arcade-theme .hero-brand-visual {
  background:
    linear-gradient(135deg, rgba(8, 17, 33, .84), rgba(21, 39, 67, .88)),
    repeating-linear-gradient(0deg, rgba(40, 246, 178, .08) 0 1px, transparent 1px 18px);
  border-color: rgba(40, 246, 178, .45);
  box-shadow: 0 0 0 1px rgba(255, 61, 242, .22), 0 24px 70px rgba(0, 0, 0, .44);
  width: min(100%, 1500px);
  min-height: clamp(560px, 58vw, 780px);
  margin: 0 auto;
  padding: clamp(12px, 2vw, 24px);
}

.arcade-theme .hero-brand-visual {
  width: min(100%, 1420px);
  min-height: clamp(560px, 60vw, 760px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(40, 246, 178, .16), transparent 24%),
    radial-gradient(circle at 20% 66%, rgba(255, 61, 242, .18), transparent 26%),
    linear-gradient(135deg, rgba(5, 9, 20, .98), rgba(13, 24, 49, .98));
  border: 1px solid rgba(40, 246, 178, .32);
  box-shadow: 0 0 0 1px rgba(255, 61, 242, .16), 0 32px 90px rgba(0, 0, 0, .42);
}

.arcade-theme .hero-brand-visual::after {
  display: none;
}

/* Arcade rental final overrides: keep these at the end. */
.arcade-theme .hero {
  grid-template-columns: 1fr !important;
  padding: clamp(22px, 4vw, 58px) clamp(14px, 4vw, 56px) !important;
  min-height: auto !important;
  overflow: hidden;
}

.arcade-theme .hero-copy {
  display: none !important;
}

.arcade-theme .hero-brand-visual {
  width: 100% !important;
  min-height: clamp(520px, 58vw, 760px) !important;
  padding: clamp(18px, 3vw, 42px) !important;
  border: 1px solid rgba(40, 246, 178, .26) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 66% 28%, rgba(255, 212, 71, .16), transparent 32%),
    linear-gradient(135deg, rgba(11, 20, 42, .98), rgba(17, 8, 33, .98)) !important;
  background-size: 44px 44px, 44px 44px, auto, auto !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42) !important;
}

.arcade-theme .hero-brand-visual::after {
  display: none !important;
  content: none !important;
}

.arcade-showroom {
  position: relative !important;
  isolation: isolate;
  display: grid !important;
  grid-template-columns: minmax(300px, .82fr) minmax(390px, 1fr) !important;
  align-items: center !important;
  gap: clamp(26px, 5vw, 78px) !important;
  width: 100% !important;
  min-height: clamp(500px, 54vw, 700px) !important;
  text-align: left !important;
}

.arcade-showroom-copy {
  z-index: 6 !important;
  max-width: 590px !important;
  justify-items: start !important;
  padding: clamp(12px, 2vw, 22px) !important;
}

.arcade-title-gif {
  width: clamp(112px, 12vw, 178px) !important;
  max-height: 118px !important;
  object-fit: contain !important;
  margin: 0 0 14px !important;
}

.arcade-showroom-copy h1 {
  max-width: 11ch !important;
  color: #fff7dd !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: clamp(3rem, 7.4vw, 7.6rem) !important;
  line-height: .86 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 18px rgba(255, 61, 242, .5), 6px 6px 0 rgba(5, 9, 20, .88) !important;
}

.event-stage {
  position: relative !important;
  z-index: 3 !important;
  min-height: clamp(390px, 42vw, 590px) !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background:
    radial-gradient(ellipse at 50% 96%, rgba(255, 212, 71, .28), transparent 38%),
    radial-gradient(circle at 34% 24%, rgba(255, 61, 242, .22), transparent 26%),
    linear-gradient(180deg, rgba(5, 9, 20, .35) 0%, rgba(5, 9, 20, .86) 100%) !important;
}

.event-lightbar {
  position: absolute !important;
  inset: 18px 8% auto !important;
  z-index: 2 !important;
  height: clamp(44px, 6vw, 82px) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.arcade-cabinet {
  position: absolute !important;
  bottom: 46px !important;
  z-index: 4 !important;
  width: min(46%, 315px) !important;
  padding: clamp(12px, 2vw, 22px) clamp(12px, 2vw, 20px) clamp(26px, 3vw, 44px) !important;
  border: 3px solid rgba(40, 246, 178, .7) !important;
  border-radius: 18px 18px 28px 28px !important;
  background: linear-gradient(160deg, #192958, #0a1023 58%, #050814) !important;
}

.cabinet-one {
  left: 7% !important;
  transform: perspective(900px) rotateY(5deg) !important;
}

.cabinet-two {
  right: 5% !important;
  width: min(40%, 270px) !important;
  transform: perspective(900px) rotateY(-7deg) translateY(24px) !important;
}

.event-badges {
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 12px !important;
  z-index: 5 !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.event-floating-gifs {
  inset: auto 3% 84px !important;
  z-index: 5 !important;
}

@media (max-width: 920px) {
  .arcade-theme .hero-brand-visual {
    min-height: auto !important;
  }

  .arcade-showroom {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    text-align: center !important;
  }

  .arcade-showroom-copy {
    justify-items: center !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .arcade-showroom-copy h1 {
    max-width: 12ch !important;
    font-size: clamp(2.8rem, 12vw, 5.8rem) !important;
  }

  .event-stage {
    min-height: clamp(430px, 72vw, 560px) !important;
  }
}

@media (max-width: 640px) {
  .arcade-theme .hero {
    padding: 14px !important;
  }

  .arcade-theme .hero-brand-visual {
    padding: 16px !important;
  }

  .arcade-showroom {
    gap: 18px !important;
  }

  .arcade-title-gif {
    width: 108px !important;
    max-height: 86px !important;
  }

  .arcade-showroom-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.9rem) !important;
    text-shadow: 0 0 14px rgba(255, 61, 242, .5), 3px 3px 0 rgba(5, 9, 20, .9) !important;
  }

  .event-stage {
    min-height: 420px !important;
  }

  .event-lightbar {
    inset: 12px 12px auto !important;
    height: 50px !important;
  }

  .arcade-cabinet {
    bottom: 60px !important;
    width: min(58%, 235px) !important;
    padding: 10px 10px 24px !important;
    transform: none !important;
  }

  .cabinet-one {
    left: 3% !important;
  }

  .cabinet-two {
    right: 2% !important;
    width: min(48%, 190px) !important;
    transform: translateY(24px) !important;
  }

  .cabinet-marquee {
    min-height: 34px !important;
    font-size: .68rem !important;
  }

  .event-floating-gifs {
    inset: auto 8px 88px !important;
  }

  .event-floating-gifs img {
    max-width: 58px !important;
    max-height: 82px !important;
  }

  .event-badges {
    bottom: 10px !important;
    gap: 6px !important;
  }
}

/* Arcade Classics transparent logo, final priority. */
.arcade-theme .brand-mark {
  width: clamp(122px, 15vw, 220px) !important;
  height: clamp(46px, 6vw, 76px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.arcade-theme .brand-mark img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.arcade-classics-logo {
  width: min(100%, 520px) !important;
  height: auto !important;
  max-height: clamp(72px, 13vw, 150px) !important;
  object-fit: contain !important;
  margin: 0 0 clamp(12px, 2vw, 20px) !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .45)) drop-shadow(0 0 18px rgba(255, 212, 71, .22));
}

@media (max-width: 640px) {
  .arcade-theme .brand {
    gap: 8px;
  }

  .arcade-theme .brand-mark {
    width: 118px !important;
    height: 42px !important;
  }

  .arcade-classics-logo {
    width: min(100%, 330px) !important;
    max-height: 82px !important;
  }
}

/* Arcade Classics transparent logo */
.arcade-theme .brand-mark {
  width: clamp(122px, 15vw, 220px) !important;
  height: clamp(46px, 6vw, 76px) !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.arcade-theme .brand-mark img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
}

.arcade-classics-logo {
  width: min(100%, 520px) !important;
  height: auto !important;
  max-height: clamp(72px, 13vw, 150px) !important;
  object-fit: contain !important;
  margin: 0 0 clamp(12px, 2vw, 20px) !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .45)) drop-shadow(0 0 18px rgba(255, 212, 71, .22));
}

@media (max-width: 640px) {
  .arcade-theme .brand {
    gap: 8px;
  }

  .arcade-theme .brand-mark {
    width: 118px !important;
    height: 42px !important;
  }

  .arcade-classics-logo {
    width: min(100%, 330px) !important;
    max-height: 82px !important;
  }
}

/* Dynamic rental banner using images from the arcade media folder. */
.arcade-showroom.rental-banner {
  grid-template-columns: minmax(280px, .74fr) minmax(420px, 1fr) !important;
  min-height: clamp(540px, 56vw, 760px) !important;
}

.rental-banner .arcade-showroom-copy {
  align-self: center;
}

.rental-banner .arcade-showroom-copy::before {
  content: "EVENT READY";
  display: inline-grid;
  place-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 212, 71, .5);
  border-radius: 999px;
  color: #ffec80;
  background: rgba(255, 212, 71, .1);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  box-shadow: 0 0 22px rgba(255, 212, 71, .18);
}

.rental-banner .arcade-showroom-copy h1 {
  max-width: 10ch !important;
}

.rental-stage {
  position: relative;
  z-index: 3;
  min-height: clamp(430px, 45vw, 640px);
  overflow: hidden;
  border: 1px solid rgba(40, 246, 178, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 61, 242, .32), transparent 30%),
    radial-gradient(circle at 78% 30%, rgba(40, 246, 178, .24), transparent 32%),
    linear-gradient(145deg, #060914 0%, #141029 45%, #050713 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06), 0 28px 70px rgba(0, 0, 0, .46);
}

.rental-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .18;
  animation: rentalGrid 9s linear infinite;
}

.rental-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -12% -10%;
  z-index: 2;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(255, 212, 71, .34), transparent 62%);
  filter: blur(8px);
}

.rental-lights {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 4;
  height: clamp(42px, 5vw, 72px);
  overflow: hidden;
  border-radius: 8px;
  opacity: .9;
  mix-blend-mode: screen;
}

.rental-lights img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-photo {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #050713;
  box-shadow: 0 26px 54px rgba(0, 0, 0, .48), 0 0 28px rgba(40, 246, 178, .16);
}

.rental-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
}

.rental-photo-main {
  left: 6%;
  right: 18%;
  top: 18%;
  bottom: 16%;
  transform: rotate(-2deg);
  animation: rentalFloat 4.8s ease-in-out infinite;
}

.rental-photo-side {
  right: 5%;
  top: 34%;
  width: 36%;
  height: 42%;
  transform: rotate(4deg);
  animation: rentalFloat 5.6s ease-in-out infinite reverse;
}

.rental-fighter {
  position: absolute;
  z-index: 6;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 61, 242, .55));
  pointer-events: none;
}

.rental-fighter-left {
  left: 4%;
  bottom: 8%;
  width: clamp(110px, 18vw, 220px);
  animation: characterFloat 2.6s ease-in-out infinite;
}

.rental-fighter-right {
  right: 8%;
  bottom: 8%;
  width: clamp(82px, 11vw, 150px);
  animation: characterFloat 3.1s ease-in-out infinite .25s;
}

.rental-badges {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 7;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.rental-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(40, 246, 178, .35);
  border-radius: 999px;
  background: rgba(5, 9, 20, .76);
  color: #d9fff3;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes rentalGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 84px 0, 0 84px; }
}

@keyframes rentalFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

@media (max-width: 920px) {
  .arcade-showroom.rental-banner {
    grid-template-columns: 1fr !important;
  }

  .rental-stage {
    min-height: clamp(430px, 76vw, 560px);
  }
}

@media (max-width: 640px) {
  .arcade-showroom.rental-banner {
    min-height: auto !important;
  }

  .rental-stage {
    min-height: 420px;
  }

  .rental-photo-main {
    left: 5%;
    right: 5%;
    top: 18%;
    bottom: 30%;
  }

  .rental-photo-side {
    right: 8%;
    top: 48%;
    width: 42%;
    height: 26%;
  }

  .rental-fighter-left {
    width: 106px;
    left: 2%;
    bottom: 14%;
  }

  .rental-fighter-right {
    width: 68px;
    right: 7%;
    bottom: 16%;
  }

  .rental-badges span {
    padding: 7px 9px;
    font-size: .62rem;
  }
}

/* Final arcade rental look. This block intentionally wins over older arcade mockups. */
.arcade-theme {
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 61, 242, .14), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(40, 246, 178, .12), transparent 28%),
    linear-gradient(180deg, #070a18 0%, #10162a 48%, #070a18 100%);
}

.arcade-theme .hero {
  padding: clamp(22px, 4vw, 58px) clamp(14px, 4vw, 56px);
  min-height: auto;
  overflow: hidden;
}

.arcade-theme .hero-copy {
  display: none;
}

.arcade-theme .hero-brand-visual {
  grid-column: 1 / -1;
  width: 100%;
  min-height: clamp(520px, 58vw, 760px);
  padding: clamp(18px, 3vw, 42px);
  border: 1px solid rgba(40, 246, 178, .26);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 66% 28%, rgba(255, 212, 71, .16), transparent 32%),
    linear-gradient(135deg, rgba(11, 20, 42, .98), rgba(17, 8, 33, .98));
  background-size: 44px 44px, 44px 44px, auto, auto;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.arcade-theme .hero-brand-visual::after {
  display: none !important;
  content: none !important;
}

.arcade-showroom {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(390px, 1fr);
  align-items: center;
  gap: clamp(26px, 5vw, 78px);
  width: 100%;
  min-height: clamp(500px, 54vw, 700px);
}

.arcade-showroom::before {
  inset: -24px;
  opacity: .11;
}

.arcade-showroom-copy {
  z-index: 6;
  max-width: 590px;
  justify-items: start;
  padding: clamp(12px, 2vw, 22px);
}

.arcade-title-gif {
  width: clamp(112px, 12vw, 178px);
  max-height: 118px;
  object-fit: contain;
  margin: 0 0 14px;
}

.arcade-showroom-copy h1 {
  margin: 0;
  max-width: 11ch;
  color: #fff7dd;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(3rem, 7.4vw, 7.6rem);
  line-height: .86;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 61, 242, .5),
    6px 6px 0 rgba(5, 9, 20, .88);
}

.arcade-showroom-copy p:not(.eyebrow) {
  max-width: 520px;
  color: #d6e8fb;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.65;
}

.event-stage {
  position: relative;
  z-index: 3;
  min-height: clamp(390px, 42vw, 590px);
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 96%, rgba(255, 212, 71, .28), transparent 38%),
    radial-gradient(circle at 34% 24%, rgba(255, 61, 242, .22), transparent 26%),
    linear-gradient(180deg, rgba(5, 9, 20, .35) 0%, rgba(5, 9, 20, .86) 100%);
}

.event-lightbar {
  position: absolute;
  inset: 18px 8% auto;
  z-index: 2;
  height: clamp(44px, 6vw, 82px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 71, .3);
  border-radius: 8px;
  background: rgba(4, 8, 18, .72);
  box-shadow: 0 0 32px rgba(255, 212, 71, .14);
}

.event-lightbar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arcade-cabinet {
  position: absolute;
  bottom: 46px;
  z-index: 4;
  width: min(46%, 315px);
  padding: clamp(12px, 2vw, 22px) clamp(12px, 2vw, 20px) clamp(26px, 3vw, 44px);
  border: 3px solid rgba(40, 246, 178, .7);
  border-radius: 18px 18px 28px 28px;
  background: linear-gradient(160deg, #192958, #0a1023 58%, #050814);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, .08),
    0 22px 46px rgba(0, 0, 0, .55),
    0 0 28px rgba(40, 246, 178, .22);
}

.cabinet-one {
  left: 7%;
  transform: perspective(900px) rotateY(5deg);
}

.cabinet-two {
  right: 5%;
  width: min(40%, 270px);
  transform: perspective(900px) rotateY(-7deg) translateY(24px);
}

.cabinet-screen {
  aspect-ratio: 4 / 3;
  border: clamp(8px, 1.3vw, 14px) solid #060816;
  border-radius: 8px;
  background: #050915;
}

.cabinet-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-badges {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 12px;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.event-floating-gifs {
  inset: auto 3% 84px;
  z-index: 5;
}

.event-floating-gifs img {
  max-width: clamp(72px, 9vw, 128px);
  max-height: 138px;
}

.arcade-theme .catalog-header h2 {
  color: #fff7dd;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: .03em;
}

@media (max-width: 920px) {
  .arcade-theme .hero-brand-visual {
    min-height: auto;
  }

  .arcade-showroom {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .arcade-showroom-copy {
    justify-items: center;
    max-width: none;
    padding: 0;
  }

  .arcade-showroom-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 12vw, 5.8rem);
  }

  .event-stage {
    min-height: clamp(430px, 72vw, 560px);
  }

  .cabinet-one {
    left: 5%;
  }

  .cabinet-two {
    right: 4%;
  }
}

@media (max-width: 640px) {
  .arcade-theme .hero {
    padding: 14px;
  }

  .arcade-theme .hero-brand-visual {
    padding: 16px;
  }

  .arcade-showroom {
    gap: 18px;
  }

  .arcade-title-gif {
    width: 108px;
    max-height: 86px;
  }

  .arcade-showroom-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.9rem);
    text-shadow:
      0 0 14px rgba(255, 61, 242, .5),
      3px 3px 0 rgba(5, 9, 20, .9);
  }

  .event-stage {
    min-height: 420px;
  }

  .event-lightbar {
    inset: 12px 12px auto;
    height: 50px;
  }

  .arcade-cabinet {
    bottom: 60px;
    width: min(58%, 235px);
    padding: 10px 10px 24px;
    transform: none;
  }

  .cabinet-one {
    left: 3%;
  }

  .cabinet-two {
    right: 2%;
    width: min(48%, 190px);
    transform: translateY(24px);
  }

  .cabinet-marquee {
    min-height: 34px;
    font-size: .68rem;
  }

  .event-floating-gifs {
    inset: auto 8px 88px;
  }

  .event-floating-gifs img {
    max-width: 58px;
    max-height: 82px;
  }

  .event-badges {
    bottom: 10px;
    gap: 6px;
  }

  .event-badges span {
    font-size: .65rem;
    padding: 7px 9px;
  }
}

.arcade-showroom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 92px);
  width: 100%;
  min-height: clamp(500px, 54vw, 690px);
}

.arcade-showroom-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  max-width: 620px;
}

.arcade-title-gif {
  width: clamp(110px, 16vw, 190px);
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 212, 71, .24));
}

.arcade-showroom-copy h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 5.35rem);
  line-height: .98;
  text-shadow: 0 0 18px rgba(40, 246, 178, .12);
}

.arcade-showroom-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #c6d5ea;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.event-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(390px, 42vw, 590px);
  display: grid;
  align-items: end;
  justify-items: center;
  padding: clamp(34px, 5vw, 72px) 0 0;
}

.event-stage::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  bottom: 0;
  height: 34%;
  border-radius: 50% 50% 8px 8px;
  background:
    radial-gradient(ellipse at center, rgba(40, 246, 178, .22), transparent 64%),
    linear-gradient(180deg, rgba(255, 61, 242, .08), rgba(3, 7, 15, .9));
  filter: blur(1px);
}

.event-lightbar {
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: clamp(42px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(255, 212, 71, .42);
  border-radius: 8px;
  background: #050914;
  box-shadow: 0 0 26px rgba(255, 212, 71, .2);
}

.event-lightbar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arcade-cabinet {
  position: absolute;
  bottom: clamp(28px, 4vw, 58px);
  display: grid;
  justify-items: center;
  width: min(48%, 330px);
  padding: 16px 16px 26px;
  border: 2px solid rgba(40, 246, 178, .48);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #1b2a54 0%, #0a1023 58%, #050914 100%);
  box-shadow:
    0 0 42px rgba(40, 246, 178, .16),
    0 38px 70px rgba(0, 0, 0, .5);
}

.cabinet-one {
  left: 12%;
  transform: perspective(900px) rotateY(5deg);
}

.cabinet-two {
  right: 8%;
  width: min(42%, 285px);
  transform: perspective(900px) rotateY(-7deg) translateY(18px);
  opacity: .96;
}

.cabinet-marquee {
  width: 100%;
  min-height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 212, 71, .62);
  border-radius: 8px;
  background: linear-gradient(90deg, #ff2c7d, #7047ff 52%, #28f6b2);
  color: #fff;
  font-weight: 950;
  letter-spacing: .12em;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, .65);
  animation: marqueeBlink 1.6s steps(2, end) infinite;
}

.cabinet-screen {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 10px solid #050914;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 61, 242, .22), transparent 42%),
    #02050c;
}

.cabinet-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.09) 0 1px, transparent 1px 5px);
  opacity: .26;
  animation: scanlines 1.4s linear infinite;
}

.cabinet-screen img {
  width: min(92%, 420px);
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 61, 242, .42));
}

.cabinet-controls {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.cabinet-controls span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 18px rgba(255, 61, 242, .48);
}

.cabinet-controls span:nth-child(2) {
  background: var(--sage);
  box-shadow: 0 0 18px rgba(40, 246, 178, .48);
}

.cabinet-controls span:nth-child(3) {
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(255, 212, 71, .48);
}

.event-badges {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.event-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(40, 246, 178, .28);
  border-radius: 8px;
  background: rgba(5, 9, 20, .82);
  color: var(--sage);
  font-size: .78rem;
  font-weight: 900;
}

.event-floating-gifs {
  position: absolute;
  inset: auto 0 42px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.event-floating-gifs img {
  max-width: clamp(78px, 11vw, 150px);
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 61, 242, .36));
  animation: characterFloat 3s ease-in-out infinite;
}

.event-floating-gifs img:last-child {
  animation-delay: .35s;
}

.arcade-theme .hero-brand-visual::after {
  content: "INSERT COIN";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 212, 71, .7);
  border-radius: 8px;
  color: var(--champagne);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  background: rgba(5, 9, 20, .82);
}

.arcade-copy-fallback {
  display: none;
}

.arcade-banner-stage {
  position: relative;
  width: 100%;
  min-height: clamp(520px, 54vw, 730px);
  overflow: hidden;
  border: 2px solid rgba(40, 246, 178, .55);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 61, 242, .25), transparent 24%),
    linear-gradient(180deg, #081121 0%, #111a36 48%, #03070f 100%);
  isolation: isolate;
}

.arcade-banner-stage::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 61, 242, .32), rgba(40, 246, 178, .34), rgba(255, 212, 71, .26)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, .08) 18px 20px);
  filter: blur(12px);
  animation: arcadeGlow 2.4s ease-in-out infinite alternate;
}

.arcade-skyline {
  position: absolute;
  inset: 0 0 auto;
  height: 34%;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, .1), rgba(5, 9, 20, .88)),
    repeating-linear-gradient(90deg, rgba(40, 246, 178, .13) 0 2px, transparent 2px 58px);
}

.arcade-skyline::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -70px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 61, 242, .22), transparent 68%);
}

.arcade-lights {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: clamp(42px, 7vw, 86px);
  object-fit: cover;
  border: 0;
  border-radius: 0;
  background: #050914;
  box-shadow: 0 0 24px rgba(255, 212, 71, .22);
}

.arcade-scene-copy {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 16%;
  width: min(90%, 760px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(16px, 3vw, 34px);
  border: 1px solid rgba(40, 246, 178, .28);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(5, 9, 20, .58), rgba(5, 9, 20, .26));
  backdrop-filter: blur(5px);
}

.arcade-scene-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.8vw, 5.9rem);
  line-height: .96;
  color: var(--ink);
  text-shadow: 0 0 22px rgba(255, 61, 242, .44), 0 0 38px rgba(40, 246, 178, .18);
}

.arcade-scene-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #d2e2f7;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.arcade-floor {
  position: absolute;
  z-index: 1;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(255, 61, 242, .04), rgba(5, 9, 20, .86)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(40, 246, 178, .2) 54px 56px),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 61, 242, .16) 28px 30px);
  transform: perspective(520px) rotateX(58deg);
  transform-origin: bottom center;
}

.arcade-floor::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(90deg, rgba(255, 61, 242, .45), rgba(40, 246, 178, .42), rgba(255, 212, 71, .32));
  filter: blur(22px);
  opacity: .62;
}

.arcade-character {
  position: absolute;
  z-index: 3;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 0 18px rgba(40, 246, 178, .4)) drop-shadow(0 20px 18px rgba(0, 0, 0, .52));
  animation: characterFloat 2.8s ease-in-out infinite;
}

.character-left {
  left: clamp(18px, 5vw, 92px);
  bottom: clamp(70px, 8vw, 116px);
  width: clamp(86px, 13vw, 170px);
}

.character-center {
  left: 50%;
  bottom: clamp(46px, 6vw, 86px);
  width: clamp(210px, 34vw, 520px);
  transform: translateX(-50%);
  animation: characterCenter 2.2s steps(2, end) infinite;
}

.character-right {
  right: clamp(18px, 5vw, 90px);
  bottom: clamp(72px, 8vw, 120px);
  width: clamp(96px, 15vw, 210px);
  animation-delay: .35s;
}

.arcade-continue {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 4vw, 54px);
  top: clamp(92px, 10vw, 132px);
  width: clamp(92px, 13vw, 160px);
  image-rendering: pixelated;
  filter: drop-shadow(0 0 14px rgba(255, 212, 71, .5));
}

.arcade-screen {
  display: none;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(220px, 28vw, 390px);
  overflow: hidden;
  border: 2px solid rgba(40, 246, 178, .58);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 71, 255, .35), transparent 44%),
    linear-gradient(180deg, #02050c 0%, #111a36 100%);
  box-shadow:
    inset 0 0 34px rgba(40, 246, 178, .13),
    0 0 34px rgba(255, 61, 242, .18);
}

.arcade-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: .32;
  pointer-events: none;
  animation: scanlines 1.4s linear infinite;
}

.arcade-fighters {
  width: min(88%, 520px);
  max-height: 300px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 0 18px rgba(255, 61, 242, .44));
  animation: arcadePulse 1.6s steps(2, end) infinite;
}

.arcade-logo-gif {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  top: clamp(54px, 8vw, 96px);
  z-index: 5;
  width: clamp(70px, 12vw, 130px);
  max-height: 72px;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(255, 212, 71, .46);
  border-radius: 8px;
  background: rgba(5, 9, 20, .78);
  box-shadow: 0 0 24px rgba(255, 212, 71, .2);
}

.arcade-marquee {
  position: absolute;
  z-index: 5;
  left: clamp(14px, 2vw, 24px);
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 22px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.arcade-marquee span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 61, 242, .4);
  border-radius: 8px;
  background: rgba(5, 9, 20, .82);
  color: var(--champagne);
  font-size: clamp(.66rem, 1.5vw, .86rem);
  font-weight: 950;
  letter-spacing: .12em;
  text-align: center;
  text-shadow: 0 0 12px rgba(255, 212, 71, .5);
  animation: marqueeBlink 1.1s steps(2, end) infinite;
}

.arcade-marquee span:nth-child(2) {
  color: var(--sage);
  animation-delay: .18s;
}

.arcade-marquee span:nth-child(3) {
  color: var(--rose);
  animation-delay: .34s;
}

@keyframes arcadeGlow {
  from {
    opacity: .55;
    transform: scale(.99);
  }
  to {
    opacity: .95;
    transform: scale(1.015);
  }
}

@keyframes scanlines {
  from { transform: translateY(0); }
  to { transform: translateY(10px); }
}

@keyframes arcadePulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.025); }
}

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

@keyframes characterCenter {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-50%) translateY(-8px) scale(1.025); }
}

@keyframes marqueeBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .58; }
}

.arcade-theme .hero-copy {
  position: relative;
}

.arcade-theme .hero-copy h1 {
  color: var(--ink);
  text-shadow: 0 0 24px rgba(255, 61, 242, .24);
}

.arcade-theme .hero-copy p:not(.eyebrow) {
  color: #c6d5ea;
}

.arcade-theme .eyebrow {
  color: var(--sage);
}

.arcade-theme .toolbar {
  border-top: 1px solid rgba(40, 246, 178, .24);
  background: rgba(8, 17, 33, .72);
}

.arcade-theme input,
.arcade-theme select,
.arcade-theme textarea {
  background: rgba(5, 9, 20, .82);
  color: var(--ink);
  border-color: rgba(40, 246, 178, .3);
}

.arcade-theme .product-card,
.arcade-theme .admin-form-wrap,
.arcade-theme .admin-products,
.arcade-theme .admin-item {
  background: rgba(9, 19, 38, .88);
  border-color: rgba(40, 246, 178, .25);
}

.arcade-theme .product-card img {
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 61, 242, .16), transparent 38%),
    linear-gradient(135deg, #07101d 0%, #14244a 100%);
}

.arcade-theme .chip,
.arcade-theme .badge {
  background: rgba(40, 246, 178, .13);
  color: var(--sage);
  border: 1px solid rgba(40, 246, 178, .22);
}

.arcade-theme .price {
  color: var(--champagne);
}

.arcade-theme .button.ghost {
  border-color: rgba(255, 61, 242, .35);
  color: #f8b7ff;
}

.arcade-theme .button.whatsapp {
  border-color: #28f6b2;
  background: linear-gradient(135deg, #087f5f 0%, #12b886 100%);
}

.arcade-theme .cart-panel {
  background: #081121;
  border-left-color: rgba(40, 246, 178, .3);
}

body.arcade-theme:not(.admin-body):not(.product-page) {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #03050d;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 61, 242, .18), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(40, 246, 178, .16), transparent 24%),
    linear-gradient(180deg, #03050d 0%, #081121 48%, #12091e 100%);
}

body.arcade-theme:not(.admin-body):not(.product-page)::before,
body.arcade-theme:not(.admin-body):not(.product-page)::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body.arcade-theme:not(.admin-body):not(.product-page)::before {
  z-index: 0;
  opacity: .42;
  background-image:
    linear-gradient(90deg, rgba(40, 246, 178, .2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 61, 242, .18) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px;
  transform: perspective(520px) rotateX(62deg) translateY(24vh) scale(1.45);
  transform-origin: center bottom;
  animation: homeGridDrive 9s linear infinite;
}

body.arcade-theme:not(.admin-body):not(.product-page)::after {
  z-index: 1;
  opacity: .38;
  background:
    radial-gradient(circle at 12% 32%, rgba(255, 212, 71, .75) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 28%, rgba(40, 246, 178, .72) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 76%, rgba(255, 61, 242, .7) 0 2px, transparent 3px),
    repeating-linear-gradient(180deg, transparent 0 4px, rgba(5, 9, 20, .2) 4px 5px);
  background-size: 360px 260px, 420px 300px, 520px 360px, auto;
  animation: homeStarfield 14s linear infinite;
}

body.arcade-theme:not(.admin-body):not(.product-page) .site-header,
body.arcade-theme:not(.admin-body):not(.product-page) main,
body.arcade-theme:not(.admin-body):not(.product-page) .cart-panel,
body.arcade-theme:not(.admin-body):not(.product-page) .scrim {
  position: relative;
  z-index: 2;
}

@keyframes homeGridDrive {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 72px, 72px 0; }
}

@keyframes homeStarfield {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 360px 260px, -420px 300px, 520px -360px, 0 80px; }
}

@media (max-width: 920px) {
  .arcade-theme .hero {
    grid-template-columns: 1fr;
  }

  .arcade-showroom {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
  }

  .arcade-showroom-copy {
    justify-items: center;
    max-width: none;
  }

  .arcade-cabinet {
    transform: none;
  }

  .arcade-side-gifs {
    bottom: 10px;
  }
}

@media (max-width: 640px) {
  .arcade-theme .hero-brand-visual {
    min-height: auto;
  }

  .arcade-banner-stage {
    min-height: 620px;
  }

  .arcade-scene-copy {
    top: 14%;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .arcade-scene-copy h1 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .character-left {
    left: 14px;
    width: 78px;
  }

  .character-center {
    width: min(92%, 360px);
    bottom: 74px;
  }

  .character-right {
    right: 14px;
    width: 82px;
  }

  .arcade-continue {
    top: 74px;
    right: 14px;
    width: 86px;
  }

  .arcade-marquee {
    grid-template-columns: 1fr;
  }

  .arcade-theme .hero-brand-visual {
    min-height: auto;
    padding: 14px;
  }

  .arcade-showroom {
    gap: 20px;
  }

  .arcade-showroom-copy h1 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }

  .arcade-title-gif {
    width: 112px;
    margin-bottom: 10px;
  }

  .arcade-cabinet {
    padding: 14px 14px 24px;
  }

  .cabinet-marquee {
    min-height: 44px;
    font-size: .78rem;
  }

  .cabinet-screen {
    border-width: 9px;
  }

  .arcade-side-gifs img {
    max-width: 62px;
    max-height: 90px;
  }
}

.arcade-theme .hero-brand-visual::after {
  display: none;
}

/* Arcade rental final overrides: keep these at the end. */
.arcade-theme .hero {
  grid-template-columns: 1fr !important;
  padding: clamp(22px, 4vw, 58px) clamp(14px, 4vw, 56px) !important;
  min-height: auto !important;
  overflow: hidden;
}

.arcade-theme .hero-copy {
  display: none !important;
}

.arcade-theme .hero-brand-visual {
  width: 100% !important;
  min-height: clamp(520px, 58vw, 760px) !important;
  padding: clamp(18px, 3vw, 42px) !important;
  border: 1px solid rgba(40, 246, 178, .26) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
    radial-gradient(circle at 66% 28%, rgba(255, 212, 71, .16), transparent 32%),
    linear-gradient(135deg, rgba(11, 20, 42, .98), rgba(17, 8, 33, .98)) !important;
  background-size: 44px 44px, 44px 44px, auto, auto !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42) !important;
}

.arcade-theme .hero-brand-visual::after {
  display: none !important;
  content: none !important;
}

.arcade-showroom {
  position: relative !important;
  isolation: isolate;
  display: grid !important;
  grid-template-columns: minmax(300px, .82fr) minmax(390px, 1fr) !important;
  align-items: center !important;
  gap: clamp(26px, 5vw, 78px) !important;
  width: 100% !important;
  min-height: clamp(500px, 54vw, 700px) !important;
  text-align: left !important;
}

.arcade-showroom-copy {
  z-index: 6 !important;
  max-width: 590px !important;
  justify-items: start !important;
  padding: clamp(12px, 2vw, 22px) !important;
}

.arcade-title-gif {
  width: clamp(112px, 12vw, 178px) !important;
  max-height: 118px !important;
  object-fit: contain !important;
  margin: 0 0 14px !important;
}

.arcade-showroom-copy h1 {
  max-width: 11ch !important;
  color: #fff7dd !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: clamp(3rem, 7.4vw, 7.6rem) !important;
  line-height: .86 !important;
  text-transform: uppercase !important;
  text-shadow: 0 0 18px rgba(255, 61, 242, .5), 6px 6px 0 rgba(5, 9, 20, .88) !important;
}

.event-stage {
  position: relative !important;
  z-index: 3 !important;
  min-height: clamp(390px, 42vw, 590px) !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 8px !important;
  background:
    radial-gradient(ellipse at 50% 96%, rgba(255, 212, 71, .28), transparent 38%),
    radial-gradient(circle at 34% 24%, rgba(255, 61, 242, .22), transparent 26%),
    linear-gradient(180deg, rgba(5, 9, 20, .35) 0%, rgba(5, 9, 20, .86) 100%) !important;
}

.event-lightbar {
  position: absolute !important;
  inset: 18px 8% auto !important;
  z-index: 2 !important;
  height: clamp(44px, 6vw, 82px) !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  border-radius: 8px !important;
}

.arcade-cabinet {
  position: absolute !important;
  bottom: 46px !important;
  z-index: 4 !important;
  width: min(46%, 315px) !important;
  padding: clamp(12px, 2vw, 22px) clamp(12px, 2vw, 20px) clamp(26px, 3vw, 44px) !important;
  border: 3px solid rgba(40, 246, 178, .7) !important;
  border-radius: 18px 18px 28px 28px !important;
  background: linear-gradient(160deg, #192958, #0a1023 58%, #050814) !important;
}

.cabinet-one {
  left: 7% !important;
  transform: perspective(900px) rotateY(5deg) !important;
}

.cabinet-two {
  right: 5% !important;
  width: min(40%, 270px) !important;
  transform: perspective(900px) rotateY(-7deg) translateY(24px) !important;
}

.event-badges {
  position: absolute !important;
  left: 20px !important;
  right: 20px !important;
  bottom: 12px !important;
  z-index: 5 !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.event-floating-gifs {
  inset: auto 3% 84px !important;
  z-index: 5 !important;
}

@media (max-width: 920px) {
  .arcade-theme .hero-brand-visual {
    min-height: auto !important;
  }

  .arcade-showroom {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    text-align: center !important;
  }

  .arcade-showroom-copy {
    justify-items: center !important;
    max-width: none !important;
    padding: 0 !important;
  }

  .arcade-showroom-copy h1 {
    max-width: 12ch !important;
    font-size: clamp(2.8rem, 12vw, 5.8rem) !important;
  }

  .event-stage {
    min-height: clamp(430px, 72vw, 560px) !important;
  }
}

@media (max-width: 640px) {
  .arcade-theme .hero {
    padding: 14px !important;
  }

  .arcade-theme .hero-brand-visual {
    padding: 16px !important;
  }

  .arcade-showroom {
    gap: 18px !important;
  }

  .arcade-title-gif {
    width: 108px !important;
    max-height: 86px !important;
  }

  .arcade-showroom-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.9rem) !important;
    text-shadow: 0 0 14px rgba(255, 61, 242, .5), 3px 3px 0 rgba(5, 9, 20, .9) !important;
  }

  .event-stage {
    min-height: 420px !important;
  }

  .event-lightbar {
    inset: 12px 12px auto !important;
    height: 50px !important;
  }

  .arcade-cabinet {
    bottom: 60px !important;
    width: min(58%, 235px) !important;
    padding: 10px 10px 24px !important;
    transform: none !important;
  }

  .cabinet-one {
    left: 3% !important;
  }

  .cabinet-two {
    right: 2% !important;
    width: min(48%, 190px) !important;
    transform: translateY(24px) !important;
  }

  .cabinet-marquee {
    min-height: 34px !important;
    font-size: .68rem !important;
  }

  .event-floating-gifs {
    inset: auto 8px 88px !important;
  }

  .event-floating-gifs img {
    max-width: 58px !important;
    max-height: 82px !important;
  }

  .event-badges {
    bottom: 10px !important;
    gap: 6px !important;
  }
}

/* Final admin readability guard for Arcade Party Rental. */
body.admin-body,
body.admin-body.arcade-theme {
  min-height: 100vh;
  color: #111827 !important;
  background:
    linear-gradient(90deg, rgba(40, 246, 178, .08) 1px, transparent 1px),
    linear-gradient(180deg, #050914 0%, #081121 48%, #101a2f 100%) !important;
  background-size: 44px 44px, auto !important;
}

body.admin-body .site-header {
  background: rgba(5, 9, 20, .94) !important;
  border-bottom-color: rgba(40, 246, 178, .32) !important;
  color: #f8fbff !important;
}

body.admin-body .brand,
body.admin-body .brand-name,
body.admin-body .top-nav {
  color: #f8fbff !important;
}

body.admin-body .admin-form-wrap,
body.admin-body .admin-products {
  background: #f8fafc !important;
  border-color: #d6dfe9 !important;
  color: #111827 !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .34) !important;
}

body.admin-body .admin-item {
  background: #ffffff !important;
  border-color: #d8e2ee !important;
  color: #111827 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08) !important;
}

body.admin-body .admin-form-wrap h1,
body.admin-body .admin-products h2,
body.admin-body .admin-item strong {
  color: #0f172a !important;
  text-shadow: none !important;
}

body.admin-body .eyebrow {
  color: #d01865 !important;
  text-shadow: none !important;
}

body.admin-body .product-form label,
body.admin-body .check-row label,
body.admin-body .photo-keep-card span {
  color: #203047 !important;
}

body.admin-body .muted,
body.admin-body .logo-preview {
  color: #506580 !important;
}

body.admin-body input,
body.admin-body select,
body.admin-body textarea {
  background: #ffffff !important;
  border-color: #7890ad !important;
  color: #111827 !important;
  box-shadow: none !important;
}

body.admin-body input::placeholder,
body.admin-body textarea::placeholder {
  color: #7d8aa0 !important;
  opacity: 1 !important;
}

body.admin-body select option {
  background: #ffffff !important;
  color: #111827 !important;
}

body.admin-body input:focus,
body.admin-body select:focus,
body.admin-body textarea:focus {
  border-color: #0f766e !important;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, .18) !important;
}

body.admin-body input[type="file"] {
  background: #f8fbff !important;
  color: #111827 !important;
}

body.admin-body input[type="file"]::file-selector-button {
  background: #111827 !important;
  border-color: #111827 !important;
  color: #ffffff !important;
}

body.admin-body .button.ghost,
body.admin-body .admin-actions button {
  background: #ffffff !important;
  border-color: #355071 !important;
  color: #0f172a !important;
}

body.admin-body .button.ghost:hover,
body.admin-body .admin-actions button:hover {
  background: #eaf2ff !important;
}

body.admin-body .button.primary {
  border-color: transparent !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e51672 0%, #4b5cff 58%, #008f73 100%) !important;
}

body.admin-body .chip,
body.admin-body .badge {
  background: #ffe8f1 !important;
  border: 1px solid #ffc5dc !important;
  color: #c4145f !important;
}

body.admin-body .plan-panel,
body.admin-body .upload-note {
  background: #e9fff6 !important;
  border: 1px solid #a9e8d0 !important;
  color: #155743 !important;
}

body.admin-body .upload-note.warning {
  background: #fff1f2 !important;
  border-color: #fecdd3 !important;
  color: #9f1239 !important;
}

body.admin-body .logo-preview,
body.admin-body .photo-keep-card {
  background: #ffffff !important;
  border-color: #b9c8dc !important;
}

body.admin-body .admin-item img,
body.admin-body .photo-keep-card img,
body.admin-body .logo-preview img {
  background: #edf2f7 !important;
}

/* Product editor experience, closer to a WordPress ecommerce workflow. */
body.admin-body .admin-layout {
  grid-template-columns: minmax(680px, 1fr) minmax(320px, 420px) !important;
  align-items: start !important;
  gap: 22px !important;
}

body.admin-body .admin-sidebar {
  gap: 22px !important;
}

body.admin-body .admin-form-wrap {
  padding: 22px !important;
}

body.admin-body .product-editor-form {
  gap: 0 !important;
}

body.admin-body .editor-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px) !important;
  gap: 18px !important;
  align-items: start !important;
}

body.admin-body .editor-main,
body.admin-body .editor-side {
  display: grid !important;
  gap: 16px !important;
}

body.admin-body .editor-side {
  position: sticky !important;
  top: 106px !important;
}

body.admin-body .editor-card {
  display: grid !important;
  gap: 14px !important;
  padding: 16px !important;
  border: 1px solid #d6dfe9 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08) !important;
}

body.admin-body .editor-card-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 34px !important;
  margin: -16px -16px 2px !important;
  padding: 10px 14px !important;
  border-bottom: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #0f172a !important;
  font-size: .9rem !important;
  font-weight: 900 !important;
}

body.admin-body .field-grid,
body.admin-body .media-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

body.admin-body .media-upload-box {
  padding: 14px !important;
  border: 1px dashed #94a3b8 !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
}

body.admin-body .media-title {
  margin: 0 0 8px !important;
  color: #334155 !important;
  font-size: .85rem !important;
  font-weight: 900 !important;
}

body.admin-body .media-gallery {
  grid-template-columns: repeat(auto-fill, minmax(142px, 1fr)) !important;
  gap: 12px !important;
}

body.admin-body .media-gallery.empty {
  display: grid !important;
  min-height: 150px !important;
  place-items: center !important;
  border: 1px dashed #cbd5e1 !important;
  border-radius: 8px !important;
  background: #f8fafc !important;
  text-align: center !important;
}

body.admin-body .media-photo-card {
  position: relative !important;
  align-content: start !important;
  gap: 8px !important;
  padding: 10px !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
}

body.admin-body .media-photo-card:has(input[name="productMainPhoto"]:checked) {
  border-color: #d01865 !important;
  box-shadow: 0 0 0 3px rgba(208, 24, 101, .12) !important;
}

body.admin-body .media-photo-card img {
  width: 100% !important;
  aspect-ratio: 1 !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 8px !important;
}

body.admin-body .photo-primary-choice,
body.admin-body .photo-keep-choice {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  color: #203047 !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

body.admin-body .photo-primary-choice {
  color: #c4145f !important;
}

body.admin-body .photo-primary-choice input,
body.admin-body .photo-keep-choice input {
  width: auto !important;
}

body.admin-body .publish-card {
  gap: 14px !important;
}

body.admin-body .publish-checks {
  display: grid !important;
  gap: 10px !important;
}

body.admin-body .editor-actions {
  display: grid !important;
  gap: 10px !important;
  margin-top: 0 !important;
}

body.admin-body .editor-actions .button {
  width: 100% !important;
}

body.admin-body .admin-products {
  position: sticky !important;
  top: 106px !important;
}

body.admin-body .admin-item {
  grid-template-columns: 78px minmax(0, 1fr) auto !important;
  gap: 12px !important;
}

body.admin-body .admin-item img {
  width: 78px !important;
  height: 78px !important;
  object-fit: cover !important;
}

@media (max-width: 1180px) {
  body.admin-body .admin-layout,
  body.admin-body .editor-grid,
  body.admin-body .media-columns {
    grid-template-columns: 1fr !important;
  }

  body.admin-body .editor-side,
  body.admin-body .admin-products {
    position: static !important;
  }
}

@media (max-width: 640px) {
  body.admin-body .admin-layout {
    padding: 18px 12px 44px !important;
  }

  body.admin-body .admin-form-wrap,
  body.admin-body .admin-products {
    padding: 14px !important;
  }
}

/* Arcade product detail: retro readable copy. */
.arcade-theme .detail-copy {
  overflow: hidden !important;
  border: 1px solid rgba(40, 246, 178, .42) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 18% 0%, rgba(255, 61, 242, .2), transparent 34%),
    linear-gradient(135deg, rgba(6, 12, 28, .97), rgba(14, 24, 48, .95)) !important;
  color: #f8fbff !important;
  box-shadow:
    0 0 0 1px rgba(255, 61, 242, .16),
    0 24px 70px rgba(0, 0, 0, .42),
    inset 0 0 34px rgba(40, 246, 178, .07) !important;
}

.arcade-theme .detail-copy h1 {
  color: #fff7dd !important;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  text-transform: uppercase !important;
  text-shadow:
    0 0 16px rgba(255, 61, 242, .46),
    4px 4px 0 rgba(5, 9, 20, .9) !important;
}

.arcade-theme .detail-price {
  color: #ffd447 !important;
  text-shadow: 0 0 14px rgba(255, 212, 71, .38) !important;
}

.arcade-theme .detail-description {
  margin: 20px 0 26px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(40, 246, 178, .38) !important;
  border-left: 6px solid #ff2c7d !important;
  border-radius: 8px !important;
  background:
    linear-gradient(90deg, rgba(40, 246, 178, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 9, 20, .78), rgba(8, 17, 33, .66)) !important;
  background-size: 18px 18px, auto !important;
  color: #eaf7ff !important;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
  font-size: clamp(1rem, 1.35vw, 1.14rem) !important;
  font-weight: 800 !important;
  line-height: 1.75 !important;
  text-shadow: 0 0 10px rgba(40, 246, 178, .18) !important;
}

.arcade-theme .detail-block > strong {
  color: #f8fbff !important;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
  font-size: .96rem !important;
  text-transform: uppercase !important;
}

.arcade-theme .detail-copy .chip {
  background: rgba(40, 246, 178, .14) !important;
  border: 1px solid rgba(40, 246, 178, .34) !important;
  color: #28f6b2 !important;
  text-shadow: 0 0 8px rgba(40, 246, 178, .28) !important;
}

.arcade-theme .back-link {
  color: #9fdcff !important;
}

@media (max-width: 640px) {
  .arcade-theme .detail-description {
    padding: 15px !important;
    font-size: 1rem !important;
  }
}

/* Pro product sheet polish. */
.arcade-theme .detail-page {
  padding: clamp(28px, 4vw, 58px) clamp(16px, 4vw, 58px) 78px !important;
  background:
    radial-gradient(circle at 78% 8%, rgba(40, 246, 178, .1), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 61, 242, .12), transparent 30%),
    linear-gradient(180deg, rgba(3, 7, 17, .08), transparent 260px) !important;
}

.arcade-theme .product-detail-pro {
  grid-template-columns: minmax(300px, .7fr) minmax(440px, 1fr) !important;
  gap: clamp(22px, 3.4vw, 52px) !important;
  width: min(100%, 1460px) !important;
  margin: 0 auto !important;
}

.arcade-theme .product-gallery-pro {
  justify-self: center !important;
  width: 100% !important;
  max-width: 620px !important;
  gap: 14px !important;
}

.arcade-theme .gallery-main-frame {
  width: 100% !important;
  padding: 8px !important;
  border: 1px solid rgba(40, 246, 178, .38) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    #050914 !important;
  box-shadow:
    0 0 0 1px rgba(255, 61, 242, .12),
    0 18px 42px rgba(0, 0, 0, .34) !important;
}

.arcade-theme .product-gallery-pro .gallery-main {
  display: block !important;
  width: 100% !important;
  max-height: none !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 6px !important;
  border: 0 !important;
  background: #050914 !important;
  box-shadow: none !important;
}

.arcade-theme .product-gallery-pro .gallery-thumbs {
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)) !important;
}

.arcade-theme .product-gallery-pro .gallery-thumbs button {
  padding: 4px !important;
  border-color: rgba(198, 213, 234, .22) !important;
  background: rgba(8, 17, 33, .86) !important;
}

.arcade-theme .product-gallery-pro .gallery-thumbs button.active {
  border-color: #ffd447 !important;
  box-shadow: 0 0 18px rgba(255, 212, 71, .28) !important;
}

.arcade-theme .pro-product-card {
  padding: clamp(22px, 3vw, 34px) !important;
  border-color: rgba(255, 212, 71, .28) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 82% 12%, rgba(255, 212, 71, .14), transparent 28%),
    linear-gradient(145deg, rgba(6, 12, 28, .98), rgba(11, 22, 45, .96)) !important;
}

.arcade-theme .pro-back-link {
  width: fit-content !important;
  margin-bottom: 18px !important;
  padding: 8px 10px !important;
  border: 1px solid rgba(159, 220, 255, .24) !important;
  border-radius: 8px !important;
  background: rgba(159, 220, 255, .08) !important;
  font-size: .86rem !important;
}

.arcade-theme .detail-status-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
}

.arcade-theme .detail-category,
.arcade-theme .detail-signal {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 30px !important;
  padding: 0 10px !important;
  border-radius: 8px !important;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
  font-size: .78rem !important;
  font-weight: 950 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.arcade-theme .detail-category {
  border: 1px solid rgba(40, 246, 178, .38) !important;
  background: rgba(40, 246, 178, .1) !important;
  color: #28f6b2 !important;
}

.arcade-theme .detail-signal {
  border: 1px solid rgba(255, 61, 242, .34) !important;
  background: rgba(255, 61, 242, .1) !important;
  color: #ff9be7 !important;
}

.arcade-theme .detail-title {
  margin-bottom: 18px !important;
  font-size: clamp(2.5rem, 5.5vw, 5.7rem) !important;
  letter-spacing: 0 !important;
}

.arcade-theme .detail-price-panel {
  display: grid !important;
  gap: 4px !important;
  width: fit-content !important;
  min-width: min(100%, 250px) !important;
  margin: 0 0 20px !important;
  padding: 12px 16px !important;
  border: 1px solid rgba(255, 212, 71, .4) !important;
  border-radius: 8px !important;
  background: rgba(255, 212, 71, .09) !important;
}

.arcade-theme .detail-price-panel span {
  color: #d7e7ff !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.arcade-theme .detail-price-panel .detail-price {
  margin: 0 !important;
  font-size: clamp(1.9rem, 3vw, 2.55rem) !important;
}

.arcade-theme .detail-description-card,
.arcade-theme .detail-spec-card {
  padding: 16px !important;
  border: 1px solid rgba(40, 246, 178, .24) !important;
  border-radius: 8px !important;
  background: rgba(5, 9, 20, .58) !important;
}

.arcade-theme .detail-description-card {
  margin: 0 0 16px !important;
}

.arcade-theme .detail-description-card .detail-description {
  margin: 10px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #edf7ff !important;
  font-size: clamp(1.02rem, 1.18vw, 1.13rem) !important;
  font-weight: 760 !important;
  line-height: 1.78 !important;
}

.arcade-theme .detail-spec-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 0 0 22px !important;
}

.arcade-theme .detail-spec-label {
  display: block !important;
  margin-bottom: 10px !important;
  color: #ffd447 !important;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
  font-size: .84rem !important;
  font-weight: 950 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
}

.arcade-theme .detail-actions {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 12px !important;
}

.arcade-theme .detail-actions .button {
  position: relative !important;
  min-height: 58px !important;
  width: 100% !important;
  gap: 10px !important;
  padding: 0 16px !important;
  border-radius: 8px !important;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
  font-size: .95rem !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
  text-shadow: none !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, .28) !important;
}

.arcade-theme .detail-actions .button::before {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 30px !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 7px !important;
  font-size: .82rem !important;
  font-weight: 950 !important;
}

.arcade-theme .detail-actions .button.primary {
  border-color: rgba(255, 212, 71, .72) !important;
  background: linear-gradient(180deg, #ffe26a 0%, #ffb21f 100%) !important;
  color: #07101d !important;
}

.arcade-theme .detail-actions .button.primary::before {
  content: "+" !important;
  border: 1px solid rgba(7, 16, 29, .24) !important;
  background: rgba(7, 16, 29, .92) !important;
  color: #ffe26a !important;
}

.arcade-theme .detail-actions .button.ghost {
  border-color: rgba(40, 246, 178, .72) !important;
  background: linear-gradient(180deg, #f6fffb 0%, #dffbf1 100%) !important;
  color: #073a2d !important;
}

.arcade-theme .detail-actions .button.ghost::before {
  content: "WA" !important;
  border: 1px solid rgba(7, 58, 45, .16) !important;
  background: #20d366 !important;
  color: #04150f !important;
  font-size: .68rem !important;
}

.arcade-theme .detail-actions .button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .34) !important;
}

@media (max-width: 980px) {
  .arcade-theme .product-detail-pro,
  .arcade-theme .detail-spec-grid,
  .arcade-theme .detail-actions {
    grid-template-columns: 1fr !important;
  }

  .arcade-theme .pro-product-card {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .arcade-theme .detail-status-row {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .arcade-theme .detail-title {
    font-size: clamp(2.05rem, 12vw, 3.25rem) !important;
  }
}

/* Product page: neon arcade stage. */
body.product-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: hidden;
  letter-spacing: 0;
  background-color: #03050d !important;
  background-image:
    repeating-linear-gradient(0deg, rgba(53, 255, 206, .035) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(255, 49, 183, .035) 0 1px, transparent 1px 36px),
    linear-gradient(145deg, #03050d 0%, #090c22 52%, #140729 100%) !important;
}

body.product-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 3px, rgba(1, 3, 10, .18) 3px 4px);
  opacity: .46;
  animation: productScanlines 11s linear infinite;
}

body.product-page::after {
  content: "";
  position: fixed;
  z-index: -1;
  left: -12vw;
  right: -12vw;
  bottom: -34vh;
  height: 72vh;
  transform: perspective(420px) rotateX(58deg);
  transform-origin: center top;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 49, 183, .28) 0 2px, transparent 2px 72px),
    repeating-linear-gradient(0deg, rgba(53, 255, 206, .24) 0 2px, transparent 2px 58px);
  filter: drop-shadow(0 0 9px rgba(255, 49, 183, .42));
  animation: productGridDrive 7s linear infinite;
}

.product-page .site-header {
  min-height: 92px;
  border-top: 4px solid #ff31b7 !important;
  border-bottom: 1px solid rgba(53, 255, 206, .65) !important;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 24px),
    rgba(3, 5, 13, .94) !important;
  box-shadow:
    0 0 22px rgba(255, 49, 183, .28),
    0 14px 36px rgba(0, 0, 0, .42) !important;
}

.product-page .site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, #ff31b7, #ffd83d 36%, #35ffce 68%, #6c63ff);
  box-shadow: 0 0 14px rgba(53, 255, 206, .72);
  animation: productNeonBar 4s ease-in-out infinite;
}

.product-page .brand-name {
  color: #fff7d8 !important;
  font-family: "Arial Black", "Trebuchet MS", sans-serif !important;
  font-size: 1.38rem !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  text-shadow:
    0 0 9px rgba(255, 49, 183, .9),
    2px 2px 0 #45105b !important;
}

.product-page .top-nav {
  gap: 10px;
  letter-spacing: 0;
}

.product-page .top-nav > a {
  padding: 10px 12px;
  color: #c9faff;
  border-bottom: 2px solid #35ffce;
  font-family: "Trebuchet MS", sans-serif;
  text-transform: uppercase;
  text-shadow: 0 0 9px rgba(53, 255, 206, .55);
}

.product-page .icon-button {
  min-height: 44px;
  border: 1px solid #ff31b7;
  border-radius: 5px;
  background: #17113b;
  color: #fff7d8;
  box-shadow:
    inset 0 0 15px rgba(108, 99, 255, .26),
    0 0 13px rgba(255, 49, 183, .25);
}

.product-page-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.product-page-effects .page-sprite {
  position: absolute;
  bottom: 5vh;
  width: auto;
  max-height: 210px;
  opacity: .24;
  image-rendering: pixelated;
  filter: saturate(1.25) drop-shadow(0 0 18px rgba(255, 49, 183, .72));
  animation: productSpriteFloat 3.4s ease-in-out infinite;
}

.product-page-effects .page-sprite-left {
  left: 12px;
}

.product-page-effects .page-sprite-right {
  right: 12px;
  animation-delay: .6s;
}

.product-page .detail-page {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  padding: 24px clamp(18px, 4vw, 58px) 84px !important;
  background: transparent !important;
}

.product-page .detail-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 1460px);
  min-height: 48px;
  margin: 0 auto 22px;
  padding: 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 61, .62);
  border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 216, 61, .055) 0 2px, transparent 2px 22px),
    rgba(4, 6, 18, .9);
  color: #35ffce;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: .82rem;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 18px rgba(255, 49, 183, .1),
    0 0 18px rgba(255, 216, 61, .14);
}

.product-page .detail-marquee strong {
  color: #fff7d8;
  font-size: 1.02rem;
  text-align: center;
  text-shadow:
    0 0 8px #ff31b7,
    0 0 16px rgba(255, 49, 183, .65);
  animation: productReadyBlink 1.35s steps(2, end) infinite;
}

.product-page .detail-marquee span:last-child {
  color: #ffd83d;
}

.product-page .product-detail-pro {
  grid-template-columns: minmax(310px, .82fr) minmax(460px, 1.18fr) !important;
  align-items: start !important;
  gap: clamp(28px, 4vw, 64px) !important;
  width: min(100%, 1460px) !important;
  margin: 0 auto !important;
}

.product-page .product-gallery-pro {
  position: relative;
  justify-self: center !important;
  width: 100% !important;
  max-width: 660px !important;
  gap: 12px !important;
}

.product-page .gallery-console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(108, 99, 255, .56);
  border-bottom-color: #35ffce;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #181044, #080a1b);
  color: #dffcff;
  font-family: "Trebuchet MS", sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(108, 99, 255, .3);
}

.product-page .gallery-console-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-page .gallery-console-bar i,
.product-page .detail-signal i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #35ffce;
  box-shadow: 0 0 10px #35ffce;
  animation: productStatusPulse 1.4s ease-in-out infinite;
}

.product-page .gallery-console-bar strong {
  color: #ffd83d;
}

.product-page .gallery-main-frame {
  position: relative;
  display: inline-grid !important;
  justify-self: center;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 6px !important;
  overflow: hidden;
  border: 2px solid #35ffce !important;
  border-radius: 6px !important;
  background: #02040b !important;
  box-shadow:
    0 0 0 2px #0a0d22,
    0 0 18px rgba(53, 255, 206, .52),
    0 0 42px rgba(255, 49, 183, .18),
    0 24px 44px rgba(0, 0, 0, .5) !important;
}

.product-page .gallery-main-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .12);
  background: repeating-linear-gradient(180deg, transparent 0 4px, rgba(6, 8, 20, .09) 4px 5px);
}

.product-page .product-gallery-pro .gallery-main {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: min(68vh, 680px) !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 2px !important;
  background: #02040b !important;
  box-shadow: none !important;
  animation: productImageBoot .42s ease-out both;
}

.product-page .product-gallery-pro .gallery-thumbs {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(72px, 92px)) !important;
  justify-content: center;
  gap: 10px !important;
}

.product-page .product-gallery-pro .gallery-thumbs button {
  position: relative;
  width: 100%;
  padding: 4px !important;
  overflow: hidden;
  border: 1px solid rgba(108, 99, 255, .58) !important;
  border-radius: 4px !important;
  background: #080a1b !important;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .28);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-page .product-gallery-pro .gallery-thumbs button:hover {
  transform: translateY(-3px);
  border-color: #ff31b7 !important;
}

.product-page .product-gallery-pro .gallery-thumbs button.active {
  transform: translateY(-3px);
  border-color: #ffd83d !important;
  box-shadow:
    0 0 0 2px rgba(255, 216, 61, .2),
    0 0 18px rgba(255, 216, 61, .42) !important;
}

.product-page .product-gallery-pro .gallery-thumbs img {
  width: 100%;
  height: 66px;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 2px;
  background: #02040b;
}

.product-page .product-gallery-pro .gallery-thumbs span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: grid;
  place-items: center;
  min-width: 25px;
  height: 20px;
  padding: 0 4px;
  border: 1px solid rgba(53, 255, 206, .55);
  border-radius: 3px;
  background: rgba(2, 4, 11, .9);
  color: #dffcff;
  font-size: .66rem;
  font-weight: 900;
}

.product-page .product-video-panel {
  display: grid !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

.product-page .pro-product-card .product-video-panel {
  margin: 0 0 22px !important;
}

.product-page .video-console-bar {
  border-bottom-color: #ffd83d !important;
}

.product-page .product-video-list {
  display: grid !important;
  gap: 12px !important;
}

.product-page .product-video-list iframe {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  border: 2px solid #ff31b7 !important;
  border-radius: 6px !important;
  background: #02040b !important;
  box-shadow:
    0 0 0 2px #0a0d22,
    0 0 20px rgba(255, 49, 183, .34),
    0 18px 34px rgba(0, 0, 0, .36) !important;
}

.product-page .pro-product-card {
  position: sticky !important;
  top: 118px !important;
  overflow: hidden !important;
  padding: clamp(24px, 3vw, 38px) !important;
  border: 1px solid rgba(255, 49, 183, .72) !important;
  border-radius: 7px !important;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 6px),
    linear-gradient(145deg, rgba(7, 8, 26, .98), rgba(17, 11, 49, .97)) !important;
  color: #f7fbff !important;
  box-shadow:
    inset 0 0 42px rgba(108, 99, 255, .08),
    0 0 0 1px rgba(53, 255, 206, .18),
    0 0 28px rgba(255, 49, 183, .2),
    0 28px 65px rgba(0, 0, 0, .48) !important;
}

.product-page .pro-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #ff31b7, #ffd83d, #35ffce, #6c63ff);
  box-shadow: 0 0 16px rgba(255, 49, 183, .72);
}

.product-page .pro-back-link {
  min-height: 36px;
  margin-bottom: 18px !important;
  padding: 7px 10px 7px 28px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(53, 255, 206, .44) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #c9faff !important;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(53, 255, 206, .45);
}

.product-page .pro-back-link::before {
  content: "<";
  position: absolute;
  margin-left: -20px;
  color: #ffd83d;
}

.product-page .detail-status-row {
  margin-bottom: 16px !important;
}

.product-page .detail-category,
.product-page .detail-signal {
  min-height: 31px !important;
  border-radius: 4px !important;
  letter-spacing: 0 !important;
}

.product-page .detail-category {
  border-color: rgba(108, 99, 255, .74) !important;
  background: rgba(108, 99, 255, .16) !important;
  color: #d8d5ff !important;
}

.product-page .detail-signal {
  gap: 8px;
  border-color: rgba(53, 255, 206, .52) !important;
  background: rgba(53, 255, 206, .08) !important;
  color: #8dffe3 !important;
}

.product-page .detail-title {
  max-width: 14ch;
  margin: 0 0 20px !important;
  color: #fff7d8 !important;
  font-family: "Arial Black", Impact, sans-serif !important;
  font-size: 3.9rem !important;
  line-height: .98 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 10px rgba(255, 49, 183, .75),
    4px 4px 0 #45105b !important;
}

.product-page .detail-price-panel {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 0 22px !important;
  padding: 13px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 216, 61, .52) !important;
  border-bottom: 1px solid rgba(255, 216, 61, .52) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.product-page .detail-price-panel .detail-price {
  color: #ffd83d !important;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: 2.35rem !important;
  white-space: nowrap;
  text-shadow: 0 0 13px rgba(255, 216, 61, .48) !important;
}

.product-page .detail-description-card,
.product-page .detail-spec-card {
  padding: 14px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(108, 99, 255, .32) !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.product-page .detail-description-card {
  margin-bottom: 10px !important;
}

.product-page .detail-description-card .detail-description {
  margin-top: 8px !important;
  color: #eef8ff !important;
  font-family: "Trebuchet MS", Verdana, sans-serif !important;
  font-size: 1.06rem !important;
  font-weight: 700 !important;
  line-height: 1.72 !important;
  text-shadow: 0 0 8px rgba(53, 255, 206, .12) !important;
}

.product-page .detail-story-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.product-page .detail-story-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(53, 255, 206, .28);
  border-radius: 6px;
  background: rgba(5, 10, 29, .86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
}

.product-page .detail-story-card-featured {
  grid-column: 1 / -1;
}

.product-page .detail-story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #080b21;
}

.product-page .detail-story-card figcaption {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-top: 1px solid rgba(255, 49, 183, .24);
}

.product-page .detail-story-card figcaption strong {
  color: #ffd83d;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  font-size: .82rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-page .detail-story-card figcaption span {
  color: #c8d8eb;
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-page .detail-spec-grid {
  margin-bottom: 22px !important;
}

.product-page .detail-spec-label {
  color: #ffd83d !important;
  letter-spacing: 0 !important;
}

.product-page .detail-copy .chip {
  border-color: rgba(53, 255, 206, .48) !important;
  border-radius: 4px !important;
  background: rgba(53, 255, 206, .08) !important;
  color: #a8ffeb !important;
}

.product-page .detail-actions {
  gap: 12px !important;
}

.product-page .detail-actions .button {
  min-height: 58px !important;
  border-radius: 5px !important;
  letter-spacing: 0 !important;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.product-page .detail-actions .button.primary {
  border: 2px solid #ffd83d !important;
  background: #ffd83d !important;
  color: #111125 !important;
  box-shadow:
    inset 0 -5px 0 rgba(143, 80, 0, .25),
    0 0 20px rgba(255, 216, 61, .3) !important;
}

.product-page .detail-actions .button.primary::before {
  border-radius: 50% !important;
  background: #ff31b7 !important;
  color: #ffffff !important;
  box-shadow: 0 0 10px rgba(255, 49, 183, .6);
}

.product-page .detail-actions .button.ghost {
  border: 2px solid #35ff91 !important;
  background: #081e19 !important;
  color: #c9ffdf !important;
  box-shadow:
    inset 0 0 17px rgba(53, 255, 145, .1),
    0 0 18px rgba(53, 255, 145, .22) !important;
}

.product-page .detail-actions .button.ghost::before {
  border-radius: 50% !important;
  background: #22c968 !important;
  color: #04150f !important;
}

.product-page .detail-actions .button:hover {
  transform: translateY(-3px) scale(1.01) !important;
  filter: brightness(1.07);
}

.product-page .detail-actions .button:focus-visible,
.product-page .gallery-thumbs button:focus-visible,
.product-page .top-nav a:focus-visible,
.product-page .icon-button:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.product-page .cart-panel {
  border-left: 2px solid #35ffce;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 5px),
    #07091b !important;
  box-shadow:
    -8px 0 0 rgba(255, 49, 183, .24),
    -24px 0 70px rgba(0, 0, 0, .62);
}

.product-page .cart-header,
.product-page .cart-footer {
  border-color: rgba(255, 49, 183, .38);
}

.product-page .cart-header h2 {
  color: #fff7d8;
  font-family: "Arial Black", "Trebuchet MS", sans-serif;
  text-transform: uppercase;
}

.product-page .cart-line {
  border-color: rgba(108, 99, 255, .35);
}

.product-page .cart-line img {
  height: 72px;
  object-fit: contain;
  border: 1px solid rgba(53, 255, 206, .38);
  background: #02040b;
}

.product-page .qty button {
  border-color: rgba(53, 255, 206, .5);
  background: #111537;
  color: #ffffff;
}

.product-page .scrim {
  background: rgba(2, 3, 10, .72);
  backdrop-filter: blur(4px);
}

@keyframes productScanlines {
  from { transform: translateY(0); }
  to { transform: translateY(16px); }
}

@keyframes productGridDrive {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 0, 0 58px; }
}

@keyframes productNeonBar {
  0%, 100% { opacity: .7; filter: saturate(.9); }
  50% { opacity: 1; filter: saturate(1.35); }
}

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

@keyframes productReadyBlink {
  0%, 72%, 100% { opacity: 1; }
  74%, 84% { opacity: .38; }
}

@keyframes productStatusPulse {
  0%, 100% { opacity: .58; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes productImageBoot {
  from { opacity: .2; transform: scale(.985); filter: brightness(1.4) saturate(.4); }
  to { opacity: 1; transform: scale(1); filter: brightness(1) saturate(1); }
}

@media (max-width: 1280px) {
  .product-page .detail-title {
    font-size: 3.15rem !important;
  }

  .product-page-effects .page-sprite {
    opacity: .12;
    max-height: 160px;
  }
}

@media (max-width: 1080px) {
  .product-page .product-detail-pro {
    grid-template-columns: 1fr !important;
  }

  .product-page .product-gallery-pro {
    max-width: 720px !important;
  }

  .product-page .pro-product-card {
    position: static !important;
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .product-page-effects .page-sprite {
    display: none;
  }
}

@media (max-width: 640px) {
  .product-page .site-header {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 9px 12px;
  }

  .product-page .brand-name {
    display: none;
  }

  .product-page .brand-mark {
    width: 106px !important;
    height: 42px !important;
  }

  .product-page .top-nav {
    gap: 6px;
    font-size: .76rem;
  }

  .product-page .top-nav > a {
    padding: 8px 6px;
  }

  .product-page .icon-button {
    min-width: 58px;
    min-height: 40px;
    padding: 0 8px;
  }

  .product-page .detail-page {
    min-height: calc(100vh - 70px);
    padding: 16px 12px 58px !important;
  }

  .product-page .detail-marquee {
    min-height: 42px;
    margin-bottom: 16px;
    padding: 7px 10px;
    font-size: .65rem;
  }

  .product-page .detail-marquee span:first-child {
    display: none;
  }

  .product-page .detail-marquee strong {
    font-size: .82rem;
  }

  .product-page .product-detail-pro {
    gap: 24px !important;
  }

  .product-page .gallery-console-bar {
    font-size: .7rem;
  }

  .product-page .product-gallery-pro .gallery-main {
    max-height: 62vh !important;
  }

  .product-page .product-gallery-pro .gallery-thumbs {
    grid-template-columns: repeat(auto-fit, minmax(62px, 78px)) !important;
  }

  .product-page .product-gallery-pro .gallery-thumbs img {
    height: 56px;
  }

  .product-page .pro-product-card {
    padding: 22px 16px !important;
  }

  .product-page .detail-title {
    max-width: 100%;
    font-size: 2.25rem !important;
    line-height: 1.03 !important;
    text-shadow: 0 0 9px rgba(255, 49, 183, .7), 3px 3px 0 #45105b !important;
  }

  .product-page .detail-price-panel {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px !important;
  }

  .product-page .detail-price-panel .detail-price {
    font-size: 1.9rem !important;
    white-space: normal;
  }

  .product-page .detail-description-card .detail-description {
    font-size: 1rem !important;
  }

  .product-page .detail-story-media {
    grid-template-columns: 1fr;
  }

  .product-page .detail-story-card-featured {
    grid-column: auto;
  }

  .product-page .detail-actions,
  .product-page .detail-spec-grid {
    grid-template-columns: 1fr !important;
  }

  .product-page .detail-actions .button {
    min-height: 56px !important;
    font-size: .9rem !important;
  }
}

/* Premium home/catalog polish. */
body.arcade-theme:not(.admin-body):not(.product-page)::before {
  opacity: .24;
}

body.arcade-theme:not(.admin-body):not(.product-page)::after {
  opacity: .2;
}

body.arcade-theme:not(.admin-body):not(.product-page) .hero {
  padding-bottom: clamp(18px, 3vw, 34px) !important;
}

.home-trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - 36px, 1380px);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(40, 246, 178, .26);
  border-radius: 8px;
  background: rgba(40, 246, 178, .2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.home-trust-strip span {
  display: grid;
  min-height: 56px;
  place-items: center;
  padding: 12px 14px;
  background: rgba(5, 9, 20, .82);
  color: #dffcff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

body.arcade-theme:not(.admin-body):not(.product-page) .toolbar {
  width: min(100% - 36px, 1380px);
  margin: 0 auto 18px;
  padding: 28px 0 16px !important;
  border-top: 1px solid rgba(40, 246, 178, .18) !important;
  background: transparent !important;
}

body.arcade-theme:not(.admin-body):not(.product-page) .toolbar h2 {
  color: #fff7dd;
  text-shadow: 0 0 18px rgba(255, 61, 242, .22);
}

body.arcade-theme:not(.admin-body):not(.product-page) .filters {
  align-items: center;
}

body.arcade-theme:not(.admin-body):not(.product-page) .filters input,
body.arcade-theme:not(.admin-body):not(.product-page) .filters select {
  min-height: 46px;
  border-color: rgba(198, 213, 234, .26);
  background: rgba(5, 9, 20, .74);
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-grid {
  width: min(100% - 36px, 1380px);
  margin: 0 auto;
  padding: 0 0 96px !important;
  gap: 18px !important;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(40, 246, 178, .22) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(13, 28, 55, .94), rgba(6, 12, 25, .96)) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28) !important;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-card:hover,
body.arcade-theme:not(.admin-body):not(.product-page) .product-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 212, 71, .52) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, .34), 0 0 28px rgba(40, 246, 178, .12) !important;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media {
  position: relative;
  display: grid;
  isolation: isolate;
  aspect-ratio: 4 / 3;
  place-items: center;
  padding: 14px;
  overflow: hidden;
  border-bottom: 1px solid rgba(40, 246, 178, .18);
  background:
    radial-gradient(circle at 50% 40%, rgba(40, 246, 178, .13), transparent 36%),
    linear-gradient(135deg, #07101d 0%, #102448 100%);
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 9, 20, .08), transparent 60%, rgba(5, 9, 20, .5));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06);
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: saturate(1.05) contrast(1.02);
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media .product-media-backdrop {
  position: absolute;
  inset: -12%;
  z-index: 0;
  width: 124%;
  height: 124%;
  object-fit: cover !important;
  filter: blur(22px) brightness(.48) saturate(1.2);
  transform: scale(1.04);
  opacity: .82;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media .product-media-image {
  z-index: 1;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: contain !important;
  border-radius: 4px;
  filter: saturate(1.06) contrast(1.03) drop-shadow(0 14px 22px rgba(0, 0, 0, .42));
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-image-placeholder {
  display: none;
  position: relative;
  z-index: 1;
  place-items: center;
  gap: 8px;
  color: #dffcff;
  text-align: center;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-image-placeholder span {
  color: #ffd83d;
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 950;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-image-placeholder strong {
  font-size: .78rem;
  text-transform: uppercase;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-media.image-unavailable .product-image-placeholder {
  display: grid;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 7px 10px;
  border: 1px solid rgba(255, 212, 71, .45);
  border-radius: 999px;
  background: rgba(5, 9, 20, .74);
  color: #ffe66a;
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-info {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  padding: 20px;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-info h3 {
  color: #fff7dd;
  font-size: clamp(1.28rem, 2.1vw, 1.55rem);
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-info > p {
  min-height: 3.2em;
  margin: 0;
  color: #b9cce4;
  font-size: .92rem;
}

body.arcade-theme:not(.admin-body):not(.product-page) .product-meta {
  gap: 12px;
}

body.arcade-theme:not(.admin-body):not(.product-page) .price {
  color: #ffd83d;
  font-size: .98rem;
  white-space: nowrap;
}

body.arcade-theme:not(.admin-body):not(.product-page) .chips {
  margin: 0;
}

body.arcade-theme:not(.admin-body):not(.product-page) .chip {
  min-height: 24px;
  border-radius: 6px;
  font-size: .72rem;
}

body.arcade-theme:not(.admin-body):not(.product-page) .card-actions {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 2px;
}

body.arcade-theme:not(.admin-body):not(.product-page) .card-actions .button {
  min-height: 46px;
  border-radius: 7px;
  padding: 0 14px;
  box-shadow: none;
  white-space: nowrap;
}

body.arcade-theme:not(.admin-body):not(.product-page) .card-actions .button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #ff2c7d 0%, #28f6b2 100%);
}

body.arcade-theme:not(.admin-body):not(.product-page) .card-actions .button.ghost {
  border-color: rgba(198, 213, 234, .34);
  background: rgba(255, 255, 255, .08);
  color: #dffcff;
}

@media (max-width: 920px) {
  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-trust-strip {
    width: min(100% - 28px, 1380px);
    grid-template-columns: 1fr;
  }

  body.arcade-theme:not(.admin-body):not(.product-page) .toolbar,
  body.arcade-theme:not(.admin-body):not(.product-page) .product-grid {
    width: min(100% - 28px, 1380px);
  }

  body.arcade-theme:not(.admin-body):not(.product-page) .product-card {
    border-radius: 7px !important;
  }

  body.arcade-theme:not(.admin-body):not(.product-page) .card-actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.product-page::before,
  body.product-page::after,
  body.arcade-theme:not(.admin-body):not(.product-page)::before,
  body.arcade-theme:not(.admin-body):not(.product-page)::after,
  .product-page .site-header::after,
  .product-page .detail-marquee strong,
  .product-page .gallery-console-bar i,
  .product-page .detail-signal i,
  .product-page .gallery-main,
  .product-page-effects .page-sprite {
    animation: none !important;
  }

  .product-page-effects .page-sprite {
    display: none;
  }
}
