@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Orbitron:wght@400;500;700;800&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
  --bg-main: #160326;
  --bg-panel: rgba(62, 17, 102, 0.7);
  --bg-panel-strong: rgba(84, 29, 138, 0.76);
  --bg-card: linear-gradient(180deg, rgba(70, 30, 117, 0.95) 0%, rgba(41, 15, 79, 0.94) 100%);
  --bg-card-alt: linear-gradient(180deg, rgba(55, 20, 99, 0.92) 0%, rgba(32, 14, 66, 0.96) 100%);
  --line: #2fd8ff;
  --line-soft: rgba(47, 216, 255, 0.42);
  --line-strong: rgba(47, 216, 255, 0.88);
  --text: #f8f4ff;
  --muted: #d2c2f3;
  --accent: #19d5ff;
  --accent-2: #ca68ff;
  --button: linear-gradient(90deg, #7b2bc8 0%, #a445e3 48%, #26d4ff 100%);
  --button-dark: linear-gradient(90deg, rgba(40, 15, 80, 1) 0%, rgba(73, 30, 128, 1) 100%);
  --shadow: 0 0 24px rgba(36, 216, 255, 0.32);
  --shadow-strong: 0 0 42px rgba(46, 214, 255, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --site-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.shoji-theme,
body {
  margin: 0;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at 50% 18%, rgba(173, 63, 255, 0.32), transparent 28%),
    radial-gradient(circle at 20% 12%, rgba(40, 205, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(40, 205, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #17012a 0%, #21053a 38%, #150220 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 16px;
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.ticker-bar {
  border-bottom: 1px solid rgba(47, 216, 255, 0.18);
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  min-width: 100%;
  animation: ticker 22s linear infinite;
}

.ticker-track span {
  padding-right: 48px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-header,
.site-main,
.site-footer__inner,
.content-section,
.page-hero,
.hero-panel,
.section-frame,
.sort-shell,
.cart-layout,
.contact-layout {
  width: min(calc(100% - 32px), var(--site-width));
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 18px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: rgba(31, 9, 57, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
}

.site-header__glow {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(45, 216, 255, 0.95);
  transform: translateY(-50%);
}

.site-header__glow--left { left: 18px; }
.site-header__glow--right { right: 18px; }

.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 36px;
  text-transform: uppercase;
}

.site-brand__wordmark {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.site-brand__submark {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
  opacity: 1;
}

.cart-pill,
.glow-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-pill {
  min-height: 44px;
  padding: 0 18px;
  color: var(--accent);
  background: rgba(32, 13, 68, 0.84);
  box-shadow: 0 0 18px rgba(47, 216, 255, 0.18) inset;
}

.glow-button {
  min-height: 54px;
  padding: 0 26px;
  color: white;
  background: var(--button);
  box-shadow: 0 0 18px rgba(47, 216, 255, 0.35), inset 0 0 24px rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.glow-button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.glow-button--small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 12px;
}

.glow-button--wide {
  width: 100%;
}

.ghost-button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(44, 18, 84, 0.72);
  cursor: pointer;
}

.site-main {
  padding: 32px 0 80px;
}

.hero-panel,
.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(176, 81, 255, 0.38), transparent 28%),
    radial-gradient(circle at 24% 18%, rgba(20, 209, 255, 0.12), transparent 14%),
    radial-gradient(circle at 82% 16%, rgba(20, 209, 255, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(28, 7, 56, 0.98) 0%, rgba(38, 9, 69, 0.92) 100%);
  border: 1px solid rgba(47, 216, 255, 0.18);
  box-shadow: var(--shadow);
}

.hero-panel__content,
.page-hero .section-frame {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 92px 24px 94px;
}

.hero-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(88px, 15vw, 182px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: white;
  text-shadow:
    -4px 4px 0 #000,
    0 0 26px rgba(200, 77, 255, 0.6);
}

.hero-logo__sub {
  display: inline-block;
  margin-top: -16px;
  padding: 8px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ab69dc 0%, #8549c7 100%);
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-tagline,
.page-hero p {
  margin: 28px 0 30px;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.page-hero h1 {
  font-size: clamp(46px, 7vw, 84px);
  color: var(--accent);
  text-shadow: 0 0 18px rgba(47, 216, 255, 0.28);
}

.page-hero--collection h1,
.page-hero--cart h1,
.page-hero--contact h1 {
  font-size: clamp(42px, 5.6vw, 72px);
}

.hero-panel__stars,
.page-hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-star {
  position: absolute;
  width: 22px;
  height: 22px;
  background:
    linear-gradient(90deg, transparent 46%, rgba(255, 245, 203, 0.98) 46%, rgba(255, 245, 203, 0.98) 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(255, 245, 203, 0.98) 46%, rgba(255, 245, 203, 0.98) 54%, transparent 54%);
  filter: drop-shadow(0 0 8px rgba(255, 247, 214, 0.9));
  opacity: 0.24;
  transform: rotate(45deg) scale(0.72);
  animation: twinkle 11s ease-in-out infinite;
}

.hero-star::before,
.hero-star::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
}

.hero-star::before { transform: rotate(45deg); }
.hero-star::after { transform: rotate(-45deg); }

.hero-star--1 { top: 18%; left: 12%; animation-delay: 0s; }
.hero-star--2 { top: 30%; left: 23%; animation-delay: 1.2s; }
.hero-star--3 { top: 22%; left: 77%; animation-delay: 2.4s; }
.hero-star--4 { top: 44%; left: 86%; animation-delay: 3.6s; }
.hero-star--5 { top: 46%; left: 16%; animation-delay: 4.8s; }
.hero-star--6 { top: 62%; left: 28%; animation-delay: 6s; }
.hero-star--7 { top: 58%; left: 71%; animation-delay: 7.2s; }
.hero-star--8 { top: 34%; left: 58%; animation-delay: 8.4s; }

@keyframes twinkle {
  0%, 8%, 100% { opacity: 0.16; transform: rotate(45deg) scale(0.68); }
  4% { opacity: 1; transform: rotate(45deg) scale(1.05); }
}

.wave-divider {
  position: relative;
  height: 54px;
  margin-top: 8px;
}

.wave-divider::before {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  top: 0;
  height: 54px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 54' preserveAspectRatio='none'%3E%3Cpath d='M0 28C110 12 206 54 310 42s212-52 315-40 198 46 312 32 161-49 263-31V54H0Z' fill='none' stroke='%232fd8ff' stroke-width='14' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 18px rgba(47, 216, 255, 0.78));
}

.wave-divider--footer {
  width: 100%;
}

.content-section {
  padding: 44px 0 24px;
}

.section-frame {
  margin-bottom: 24px;
  text-align: center;
}

.section-frame h2 {
  font-size: clamp(34px, 4vw, 56px);
  color: var(--accent);
  text-shadow: 0 0 14px rgba(47, 216, 255, 0.3);
}

.section-frame--narrow,
.brand-copy {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker,
.social-proof__rating {
  color: var(--muted);
  font-size: 22px;
}

.brand-copy p {
  font-size: 25px;
}

.product-grid,
.category-grid,
.review-grid,
.value-grid,
.mini-product-grid {
  display: grid;
  gap: 22px;
}

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

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

.product-card,
.value-card,
.review-card,
.category-card,
.cart-item,
.cart-summary,
.sidebar-panel,
.contact-card,
.contact-form-shell,
.story-frame,
.sort-shell,
.detail-panel {
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.product-card {
  overflow: hidden;
}

.product-card__media {
  position: relative;
  display: block;
  margin: 14px;
  border: 1px solid rgba(47, 216, 255, 0.36);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(92, 27, 172, 0.9), rgba(80, 125, 255, 0.92));
  aspect-ratio: 1 / 0.94;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(27, 211, 255, 0.9);
  color: #160326;
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__badge--sold-out,
.product-card__flag--sold-out {
  background: linear-gradient(135deg, #ff4fcf 0%, #8b43ff 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(255, 79, 207, 0.38) !important;
}

.product-card__body {
  padding: 0 22px 22px;
  text-align: center;
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.2;
}

.product-card__price {
  margin-bottom: 8px;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.product-card__meta {
  color: #78d9ff;
  font-size: 20px;
  font-style: italic;
}

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

.value-card {
  padding: 28px 24px;
  text-align: center;
}

.value-card--featured {
  box-shadow: 0 0 32px rgba(47, 216, 255, 0.46);
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 216, 255, 0.5);
  border-radius: 999px;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  box-shadow: inset 0 0 16px rgba(47, 216, 255, 0.16);
}

.value-card h3 {
  font-size: 28px;
}

.value-card p,
.review-card p,
.category-card__title,
.detail-panel p,
.contact-card p {
  font-size: 21px;
  color: var(--muted);
}

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

.category-card {
  display: block;
  padding: 14px;
  text-align: center;
}

.category-card__media {
  display: grid;
  place-items: center;
  border-radius: 18px;
  min-height: 178px;
  margin-bottom: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(108, 43, 176, 0.92), rgba(44, 16, 81, 0.96));
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card__media span {
  padding: 18px;
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 19px;
  text-transform: uppercase;
}

.category-card__title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

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

.review-card {
  padding: 22px;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  margin-bottom: 10px;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.review-card span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}

.content-section--signup .section-frame {
  margin-bottom: 18px;
}

.signup-shell {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.signup-shell input,
.discount-input,
.contact-input,
.sort-shell select,
.quantity-stepper__field input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(47, 216, 255, 0.52);
  border-radius: 16px;
  background: rgba(23, 8, 48, 0.78);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  box-shadow: inset 0 0 12px rgba(47, 216, 255, 0.12);
}

.contact-form textarea,
.contact-input--message {
  min-height: 220px;
  padding-top: 14px;
  resize: vertical;
}

.page-hero--about .section-frame {
  padding-bottom: clamp(48px, 7vw, 72px);
}

.page-hero--about .page-hero__stars,
.page-hero--about .hero-star {
  display: none;
}

.page-hero--about h1 {
  color: var(--text);
  font-size: clamp(42px, 5.6vw, 72px);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.page-hero--about p {
  color: var(--accent);
  font-size: clamp(22px, 3vw, 34px);
}

.story-frame {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px 40px;
  background:
    linear-gradient(180deg, rgba(65, 22, 113, 0.88), rgba(37, 14, 70, 0.96));
}

.story-frame h2,
.story-frame h3 {
  text-align: center;
}

.story-frame h2 {
  font-size: 46px;
  color: white;
}

.story-frame h3 {
  margin-top: 30px;
  font-size: 34px;
  color: var(--accent);
}

.story-frame p {
  font-size: 24px;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 22px;
  align-items: start;
}

.product-gallery,
.product-details,
.product-sidebar {
  display: grid;
  gap: 18px;
}

.product-gallery__main,
.product-gallery__thumb,
.product-details,
.sidebar-panel,
.contact-form-shell,
.contact-card,
.cart-summary,
.detail-panel,
.sort-shell {
  padding: 18px;
}

.product-gallery__main {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: rgba(17, 6, 38, 0.78);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  display: block;
  width: 100%;
  text-align: inherit;
}

.product-gallery__main img {
  width: 100%;
  border-radius: 18px;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-gallery__thumb {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 8px;
  background: rgba(24, 9, 49, 0.74);
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(36, 214, 255, 0.35);
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
  transform: translateY(-1px);
}

.product-gallery__main,
.product-gallery__thumb {
  appearance: none;
  color: inherit;
  font: inherit;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
}

.product-lightbox.is-open {
  display: grid;
}

.product-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 0, 20, 0.86);
  cursor: zoom-out;
}

.product-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 980px);
  max-height: 92vh;
  border: 1px solid var(--cyan);
  border-radius: 22px;
  background: rgba(17, 6, 38, 0.96);
  box-shadow: 0 0 36px rgba(36, 214, 255, 0.3), 0 0 70px rgba(166, 63, 227, 0.22);
  padding: 14px;
}

.product-lightbox__dialog img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 44px);
  object-fit: contain;
  border-radius: 16px;
}

.product-lightbox__close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(166, 63, 227, 0.96), rgba(45, 216, 255, 0.96));
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 0 22px rgba(36, 214, 255, 0.45);
}

body.has-product-lightbox {
  overflow: hidden;
}

.product-details {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.product-details > h1 {
  order: 1;
}

.product-details > .product-details__price {
  order: 2;
}

.product-details > .status-pill {
  order: 3;
}

.product-details > .product-purchase {
  order: 4;
}

.product-details > .product-copy {
  order: 5;
}

.product-details > .detail-panels {
  order: 6;
}

.product-details h1 {
  font-size: clamp(38px, 4.2vw, 68px);
}

.product-details__price {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 213, 255, 0.18);
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy,
.detail-panels {
  display: grid;
  gap: 18px;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-purchase {
  display: grid;
  gap: 16px;
  margin: 4px 0 8px;
}

.product-options ul,
.shoji-options,
.product-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-options li {
  list-style: none;
}

.product-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(34, 12, 70, 0.76);
  font-size: 20px;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quantity-stepper button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(43, 18, 84, 0.86);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.quantity-stepper.is-updating {
  opacity: 0.72;
  pointer-events: none;
}

.quantity-stepper.is-updating button,
.quantity-stepper.is-updating input {
  cursor: wait;
}

.quantity-stepper__field {
  min-width: 88px;
}

.quantity-stepper__field input {
  padding: 0 10px;
  text-align: center;
}

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

.mini-product-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: rgba(33, 12, 67, 0.74);
  text-align: center;
}

.mini-product-card img {
  width: 100%;
  border-radius: 14px;
}

.mini-product-card span,
.mini-product-card strong {
  font-size: 18px;
}

.mini-product-card strong {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
}

.sort-shell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 24px;
}

.collection-category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(calc(100% - 32px), var(--site-width));
  margin: 0 auto 24px;
}

.collection-category-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(25, 216, 255, 0.48);
  border-radius: 8px;
  background: rgba(24, 6, 53, 0.72);
  color: rgba(255, 255, 255, 0.84);
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.collection-category-nav a:hover,
.collection-category-nav a:focus-visible,
.collection-category-nav a[aria-current="page"] {
  background: var(--cyan);
  color: #160326;
  box-shadow: 0 0 14px rgba(25, 216, 255, 0.32);
}

.sort-shell label {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sort-shell select {
  max-width: 220px;
}

.pagination-shell {
  margin-top: 28px;
}

.collection-empty {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 34px 28px;
  border: 1px solid rgba(25, 216, 255, 0.56);
  border-radius: 8px;
  background: rgba(50, 15, 88, 0.74);
  text-align: center;
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.12);
}

.collection-empty h2 {
  margin: 0 0 8px;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.collection-empty p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.28;
}

.collection-empty__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid rgba(25, 216, 255, 0.72);
  border-radius: 6px;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.collection-empty__link:hover,
.collection-empty__link:focus-visible {
  background: var(--cyan);
  color: #160326;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(41, 14, 77, 0.78);
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 150px;
  gap: 18px;
  padding: 18px;
}

.cart-item__media img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.cart-item__image-link,
.cart-item__title-link {
  color: inherit;
  cursor: pointer;
}

.cart-item__image-link {
  display: block;
  border-radius: 18px;
}

.cart-item__title-link:hover,
.cart-item__title-link:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(25, 216, 255, 0.38);
}

.cart-item__image-link:hover img,
.cart-item__image-link:focus-visible img {
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.36);
}

.cart-item h2 {
  font-size: 34px;
}

.cart-item__details p,
.cart-item__price strong {
  font-size: 24px;
}

.cart-item__price {
  display: grid;
  align-content: start;
  gap: 10px;
  justify-items: end;
}

.cart-summary h2 {
  font-size: 38px;
  color: var(--accent);
  line-height: 1.2;
}

.cart-summary {
  display: grid;
  gap: 16px;
}

.cart-option-block {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(25, 216, 255, 0.48);
  border-radius: 16px;
  background: rgba(22, 3, 38, 0.62);
  box-shadow: inset 0 0 14px rgba(25, 216, 255, 0.08);
}

.cart-option-block label {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-option-block select,
.cart-option-block input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(47, 216, 255, 0.62);
  border-radius: 14px;
  background: rgba(23, 8, 48, 0.88);
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  box-shadow: inset 0 0 12px rgba(47, 216, 255, 0.12);
}

.cart-option-block small,
.cart-option-block p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.3;
}

.cart-discount-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(25, 216, 255, 0.58);
  border-radius: 16px;
  background: rgba(22, 3, 38, 0.66);
  box-shadow: inset 0 0 14px rgba(25, 216, 255, 0.08);
}

.cart-discount-preview span,
.cart-discount-preview strong {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-discount-preview strong {
  white-space: nowrap;
}

.cart-discount-preview small {
  grid-column: 1 / -1;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.25;
}

.cart-upsell {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(25, 216, 255, 0.62);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 0%, rgba(188, 79, 255, 0.42), transparent 42%),
    linear-gradient(180deg, rgba(38, 12, 75, 0.96), rgba(25, 8, 50, 0.98));
  box-shadow: inset 0 0 20px rgba(25, 216, 255, 0.08), 0 0 22px rgba(25, 216, 255, 0.18);
}

.cart-upsell::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(25, 216, 255, 0.9);
}

.cart-upsell__eyebrow {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cart-upsell h3 {
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: 0.08em;
}

.cart-upsell p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.32;
}

.cart-upsell strong {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.08em;
}

.cart-upsell__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(25, 216, 255, 0.78);
  border-radius: 999px;
  background: rgba(22, 3, 38, 0.7);
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: inset 0 0 14px rgba(25, 216, 255, 0.12);
}

.cart-upsell__button:hover,
.cart-upsell__button:focus-visible {
  color: #160326;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.44);
}

.empty-state .section-frame {
  padding: 48px 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
}

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

.success-shell,
.error-shell {
  padding: 18px;
  border-radius: 18px;
  background: rgba(26, 12, 59, 0.74);
  color: var(--text);
}

.contact-card h2 {
  font-size: 34px;
}

.page-hero--contact {
  width: min(calc(100% - 56px), 1120px);
  margin: 30px auto 18px;
}

.page-hero--contact .section-frame {
  padding: 56px 28px 62px;
}

.page-hero--contact h1 {
  margin-bottom: 18px;
}

.page-hero--contact p {
  max-width: 760px;
  margin: 0 auto;
}

.site-footer {
  padding-bottom: 34px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials--left {
  justify-content: flex-start;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(37, 13, 70, 0.78);
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
}

@media (max-width: 1120px) {
  .product-layout,
  .contact-layout,
  .cart-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 820px) {
  .site-header {
    position: static;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .site-header__glow {
    display: none;
  }

  .site-brand {
    padding-left: 0;
    align-items: center;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .cart-pill {
    width: 100%;
  }

  .hero-panel__content,
  .page-hero .section-frame {
    padding: 72px 18px 82px;
  }

  .page-hero--contact .section-frame {
    padding: 42px 18px 48px;
  }

  .hero-tagline,
  .page-hero p {
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .page-hero--contact p {
    font-size: 17px;
    letter-spacing: 0.1em;
  }

  .product-grid,
  .product-grid--archive,
  .review-grid,
  .category-grid,
  .mini-product-grid {
    grid-template-columns: 1fr;
  }

  .signup-shell,
  .site-footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item__price {
    justify-items: start;
  }

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

  .story-frame {
    padding: 28px 22px;
  }
}


/* Approved homepage mockup styles */
:root {
  --bg-top: #170527;
  --bg-main: #24103e;
  --bg-deep: #18092b;
  --bg-panel: linear-gradient(180deg, rgba(73, 27, 123, 0.92) 0%, rgba(48, 20, 89, 0.96) 100%);
  --bg-panel-dark: linear-gradient(180deg, rgba(33, 14, 64, 0.98) 0%, rgba(26, 10, 48, 0.98) 100%);
  --cyan: #19d8ff;
  --cyan-soft: rgba(25, 216, 255, 0.32);
  --cyan-strong: rgba(25, 216, 255, 0.9);
  --text: #ffffff;
  --text-soft: #ddd0f8;
  --violet: #bc4fff;
  --pink: #ff4fda;
  --shadow: 0 0 28px rgba(25, 216, 255, 0.24);
  --shadow-strong: 0 0 30px rgba(25, 216, 255, 0.5);
  --frame: 1px solid rgba(25, 216, 255, 0.45);
  --content-width: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.home-mockup {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at 50% 10%, rgba(162, 54, 255, 0.18), transparent 20%),
    radial-gradient(circle at 20% 12%, rgba(25, 216, 255, 0.06), transparent 18%),
    linear-gradient(180deg, #12031f 0%, #23103d 20%, #35145d 48%, #25103f 78%, #18082a 100%);
  overflow-x: hidden;
}

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

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

.top-ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(25, 216, 255, 0.2);
  background: #24074a;
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-ticker__track {
  display: inline-flex;
  min-width: max-content;
  animation: ticker-scroll 64s linear infinite;
  animation-delay: -16s;
  will-change: transform;
}

.top-ticker__message {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
}

.top-ticker__message::before,
.top-ticker__message::after {
  content: "";
  width: 12px;
  height: 12px;
  background: currentColor;
  clip-path: polygon(50% 0%, 58% 41%, 100% 50%, 58% 59%, 50% 100%, 42% 59%, 0% 50%, 42% 41%);
  filter: drop-shadow(0 0 6px rgba(25, 216, 255, 0.85));
}

@keyframes ticker-scroll {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.home-nav,
.home-shell,
.home-footer {
  width: min(calc(100% - 40px), var(--content-width));
  margin-left: auto;
  margin-right: auto;
}

.home-nav {
  display: grid;
  grid-template-columns: 24px 220px 1fr 140px 24px;
  align-items: center;
  gap: 22px;
  min-height: 86px;
  margin-top: 8px;
  padding: 0 24px;
  border-top: 1px solid rgba(25, 216, 255, 0.14);
  border-bottom: 1px solid rgba(25, 216, 255, 0.14);
  background: rgba(34, 10, 68, 0.78);
}

.home-nav__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(25, 216, 255, 0.95);
}

.home-nav__brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-start;
}

.home-nav__brand-main,
.home-nav__brand-sub,
.home-nav__links a,
.home-nav__cart,
.section-heading h2,
.product-card h3,
.product-card__price,
.collection-card h3,
.review-card h3,
.join-form button,
.join-form input,
.values-shell__heading h2,
.values-shell__sub,
.home-footer__tag {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
}

.home-nav__brand-main {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.28em;
}

.home-nav__brand-sub {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
}

.home-nav__links {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.home-nav__links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  letter-spacing: 0.18em;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  z-index: 49;
  top: 100%;
  left: -18px;
  right: -18px;
  height: 14px;
}

.nav-dropdown__trigger {
  cursor: pointer;
}

.nav-dropdown__menu {
  position: absolute;
  z-index: 50;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  min-width: 214px;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(25, 216, 255, 0.36);
  border-radius: 8px;
  background: rgba(27, 5, 48, 0.96);
  box-shadow: 0 18px 36px rgba(2, 0, 12, 0.42), 0 0 18px rgba(25, 216, 255, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.home-nav__links .nav-dropdown__menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left;
  text-transform: none;
}

.home-nav__links .nav-dropdown__menu a:hover,
.home-nav__links .nav-dropdown__menu a:focus-visible {
  color: #160326;
  background: var(--cyan);
  outline: none;
}

.home-nav__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--cyan-strong);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: inset 0 0 12px rgba(25, 216, 255, 0.1);
}

.home-shell {
  padding: 22px 0 28px;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
}

.hero-banner img,
.hero-banner__fallback {
  width: 100%;
  height: auto;
}

.hero-banner__fallback {
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  min-height: clamp(360px, 52vw, 720px);
  border: 1px solid rgba(25, 216, 255, 0.32);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 10%),
    radial-gradient(circle at 50% 34%, rgba(25, 216, 255, 0.28), transparent 16%),
    radial-gradient(circle at 32% 42%, rgba(167, 93, 255, 0.34), transparent 22%),
    radial-gradient(circle at 68% 42%, rgba(25, 216, 255, 0.22), transparent 20%),
    linear-gradient(135deg, rgba(52, 20, 95, 0.96), rgba(20, 6, 42, 0.98) 58%, rgba(25, 216, 255, 0.18));
  box-shadow: inset 0 0 80px rgba(25, 216, 255, 0.18);
}

.hero-banner__fallback-brand,
.hero-banner__fallback-sub,
.hero-banner__fallback-tag {
  position: relative;
  z-index: 2;
  font-family: 'Orbitron', sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.hero-banner__fallback-brand {
  color: #ffffff;
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 7px 0 rgba(74, 31, 122, 0.9), 0 0 28px rgba(255, 255, 255, 0.24);
}

.hero-banner__fallback-sub {
  width: max-content;
  margin: -2px auto 22px;
  padding: 4px 12px;
  border-radius: 5px;
  background: rgba(202, 104, 255, 0.78);
  color: #ffffff;
  font-size: clamp(10px, 1.6vw, 17px);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-banner__fallback-tag {
  color: var(--cyan);
  font-size: clamp(18px, 3.1vw, 34px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-shadow: 0 0 18px rgba(25, 216, 255, 0.5);
}

@media (min-width: 721px) {
  .home-nav {
    width: 100%;
    max-width: none;
  }

  .hero-banner {
    width: min(100%, 1180px, calc((100vh - 330px) * 1.7917));
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner img,
  .hero-banner__fallback {
    height: auto;
  }
}

.hero-banner__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.anime-star {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.2;
  animation: anime-twinkle 10.5s ease-in-out infinite;
}

.anime-star::before,
.anime-star::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--star-color, rgba(255, 255, 255, 0.95));
  clip-path: polygon(50% 0%, 58% 41%, 100% 50%, 58% 59%, 50% 100%, 42% 59%, 0% 50%, 42% 41%);
  filter: drop-shadow(0 0 6px var(--star-glow, rgba(255, 255, 255, 0.6)));
}

.anime-star::after {
  inset: 30%;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0.72;
  filter: none;
}

.anime-star--1 { top: 24%; left: 7%; animation-delay: 0s; transform: scale(0.8); --star-color: #ffffff; --star-glow: rgba(255, 255, 255, 0.7); }
.anime-star--2 { top: 33%; left: 16%; animation-delay: 1.3s; transform: scale(0.62); --star-color: #19d8ff; --star-glow: rgba(25, 216, 255, 0.75); }
.anime-star--3 { top: 42%; left: 24%; animation-delay: 2.6s; transform: scale(0.95); --star-color: #ffffff; --star-glow: rgba(255, 255, 255, 0.7); }
.anime-star--4 { top: 34%; left: 72%; animation-delay: 3.9s; transform: scale(0.8); --star-color: #ffffff; --star-glow: rgba(255, 255, 255, 0.7); }
.anime-star--5 { top: 49%; left: 82%; animation-delay: 5.2s; transform: scale(0.72); --star-color: #19d8ff; --star-glow: rgba(25, 216, 255, 0.75); }
.anime-star--6 { top: 60%; left: 12%; animation-delay: 6.5s; transform: scale(0.58); --star-color: #19d8ff; --star-glow: rgba(25, 216, 255, 0.75); }

@keyframes anime-twinkle {
  0%, 10%, 100% { opacity: 0.16; filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0)); }
  4% { opacity: 1; filter: drop-shadow(0 0 10px var(--star-color, rgba(255, 247, 210, 1))); }
}

.section {
  width: min(calc(100% - 120px), 1500px);
  margin: 0 auto;
}

.latest-drops {
  padding-top: 28px;
}

.section-heading {
  margin-bottom: 20px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(32px, 2.6vw, 54px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border: var(--frame);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(51, 18, 95, 0.96), rgba(45, 18, 82, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-card__image {
  position: relative;
  margin: 16px;
  min-height: 280px;
  aspect-ratio: 1 / 0.92;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(25, 216, 255, 0.42);
}

.product-card__image::before,
.product-card__image::after {
  content: "";
  position: absolute;
}

.product-card__image--bundle {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 133, 229, 0.8), transparent 18%),
    linear-gradient(135deg, #1f1f7d 0%, #2a1b8b 40%, #e22cff 100%);
}

.product-card__image--bundle::before {
  inset: 0 auto 0 8px;
  width: 10px;
  background: linear-gradient(180deg, rgba(25, 216, 255, 0.95), rgba(25, 216, 255, 0.12), rgba(25, 216, 255, 0.95));
  box-shadow: 0 0 12px rgba(25, 216, 255, 0.8);
}

.product-card__image--bundle::after {
  right: 8px;
  top: 0;
  bottom: 0;
  width: 10px;
  background: linear-gradient(180deg, rgba(25, 216, 255, 0.95), rgba(25, 216, 255, 0.12), rgba(25, 216, 255, 0.95));
  box-shadow: 0 0 12px rgba(25, 216, 255, 0.8);
}

.product-card__image--star {
  background: linear-gradient(180deg, #da20ff 0%, #8328ff 100%);
}

.product-card__image--scarred {
  background:
    radial-gradient(circle at 60% 38%, rgba(255, 255, 255, 0.28), transparent 15%),
    linear-gradient(180deg, #4480ff 0%, #7b4bff 100%);
}

.product-card__image--weapon {
  background:
    radial-gradient(circle at 50% 55%, rgba(54, 255, 248, 0.4), transparent 18%),
    linear-gradient(180deg, #6d41e9 0%, #9156f0 100%);
}

.product-card__image--round {
  background:
    radial-gradient(circle at 50% 34%, rgba(69, 255, 252, 0.28), transparent 18%),
    linear-gradient(180deg, #8660f2 0%, #8b42d7 100%);
}

.product-card__logo {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: -2px 2px 0 #000;
}

.product-card__flag {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.product-card__star-shape {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(95, 94, 255, 0.94), rgba(79, 125, 255, 0.7));
  clip-path: polygon(50% 0%, 61% 30%, 100% 35%, 70% 56%, 79% 100%, 50% 76%, 21% 100%, 30% 56%, 0% 35%, 39% 30%);
  box-shadow: 0 0 16px rgba(255, 75, 218, 0.65);
}

.product-card__content {
  display: block;
  padding: 2px 18px 18px;
  text-align: center;
}

.product-card__title,
.product-card h3,
.product-card h3 a {
  color: var(--accent);
}

.product-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.28;
}

.product-card__price {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-card__options {
  margin: 0;
  color: var(--cyan);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

.latest-drops__action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
  margin-bottom: 12px;
}

.shop-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 168px;
  padding: 0 26px;
  border: 1px solid var(--cyan-strong);
  border-radius: 999px;
  background: rgba(33, 14, 64, 0.74);
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: inset 0 0 12px rgba(25, 216, 255, 0.1), 0 0 16px rgba(25, 216, 255, 0.22);
}

.wave-divider {
  width: min(calc(100% - 40px), var(--content-width));
  height: 110px;
  margin: 8px auto 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 14px rgba(25, 216, 255, 0.75));
}

.wave-divider--one {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 44C90 35 190 72 290 71C392 70 488 35 591 33C703 31 805 67 916 67C1033 67 1147 28 1265 28C1372 28 1450 60 1547 67C1626 72 1670 63 1720 57' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider--two {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 61C90 70 185 31 281 29C388 27 492 69 599 70C725 71 817 29 935 26C1042 23 1139 61 1245 63C1360 65 1466 34 1569 34C1633 34 1681 43 1720 47' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider--three {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 48C122 34 189 83 311 82C414 81 524 31 637 30C762 29 868 70 995 69C1121 68 1217 28 1331 28C1458 28 1568 76 1720 57' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider--four {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 58C89 64 169 31 263 27C372 22 479 61 587 64C709 67 820 30 942 28C1043 27 1144 61 1243 62C1362 63 1462 35 1586 33C1643 32 1687 38 1720 42' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider--five {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 44C90 35 190 72 290 71C392 70 488 35 591 33C703 31 805 67 916 67C1033 67 1147 28 1265 28C1372 28 1450 60 1547 67C1626 72 1670 63 1720 57' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider--social {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 54C102 29 201 34 304 46C406 58 497 78 601 73C718 67 827 26 944 24C1066 22 1160 59 1277 66C1409 75 1530 58 1720 37' fill='none' stroke='%2319d8ff' stroke-width='16' stroke-linecap='round'/%3E%3C/svg%3E");
}

.brand-story {
  position: relative;
  padding-top: 6px;
  text-align: center;
}

.brand-story::before {
  content: "";
  position: absolute;
  inset: 72px 30% 30px 30%;
  border: 1px solid rgba(182, 136, 255, 0.1);
  border-radius: 999px;
  pointer-events: none;
}

.brand-story__body {
  max-width: 920px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 25px;
  line-height: 1.55;
}

.brand-story__body p {
  margin: 0 0 18px;
}

.values-section {
  padding-top: 8px;
}

.values-shell {
  position: relative;
  border: 1px solid rgba(25, 216, 255, 0.5);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(64, 26, 110, 0.96), rgba(54, 21, 94, 0.98));
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.32), inset 0 0 18px rgba(25, 216, 255, 0.08);
  padding: 18px 20px 20px;
}

.values-shell::before,
.values-shell::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  width: 18px;
  border: 2px solid rgba(25, 216, 255, 0.85);
  opacity: 0.9;
}

.values-shell::before {
  left: 10px;
  border-right: none;
  border-radius: 22px 0 0 22px;
}

.values-shell::after {
  right: 10px;
  border-left: none;
  border-radius: 0 22px 22px 0;
}

.values-shell__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.values-shell__heading h2 {
  margin: 0;
  color: white;
  font-size: clamp(24px, 2.1vw, 42px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.values-shell__spark {
  position: relative;
  width: 34px;
  height: 18px;
}

.values-shell__spark::before,
.values-shell__spark::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(184, 251, 255, 1), rgba(38, 220, 255, 1));
  box-shadow: 0 0 8px rgba(25, 216, 255, 0.9);
}

.values-shell__spark::before {
  inset: 8px 0 8px 0;
}

.values-shell__spark::after {
  inset: 0 13px;
}

.values-shell__sub {
  margin: 4px 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-align: center;
}

.collection-card h3,
.review-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.review-card p,
.join-section__copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 22px;
  line-height: 1.45;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.value-card {
  border: 1px solid rgba(167, 93, 255, 0.45);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(77, 36, 132, 0.95), rgba(59, 23, 105, 0.98));
  box-shadow: inset 0 0 14px rgba(180, 101, 255, 0.08);
  padding: 16px 16px 18px;
  text-align: center;
}

.value-card--featured {
  border-color: rgba(25, 216, 255, 0.88);
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.45), inset 0 0 18px rgba(25, 216, 255, 0.16);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 116px;
  margin: 0 auto 10px;
}

.value-icon-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.value-icon-image--quality {
  max-width: 170px;
}

.value-icon-image--limited {
  max-width: 186px;
  max-height: 108px;
}

.value-icon-image--fans {
  max-width: 164px;
}

.value-icon-shape {
  position: relative;
  display: block;
  width: 96px;
  height: 96px;
  border: 2px solid rgba(25, 216, 255, 0.82);
  box-shadow: 0 0 20px rgba(25, 216, 255, 0.28);
}

.value-icon-shape::before,
.value-icon-shape::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, 0.78);
}

.value-icon-shape--quality {
  border-radius: 50%;
}

.value-icon-shape--quality::before {
  border-radius: 50%;
  transform: scale(0.72);
}

.value-icon-shape--quality::after {
  inset: 30px 22px 22px;
  border-width: 0 0 3px 3px;
  transform: rotate(-45deg);
}

.value-icon-shape--limited {
  transform: rotate(45deg);
}

.value-icon-shape--limited::before {
  inset: 18px;
}

.value-icon-shape--limited::after {
  inset: 34px;
  background: rgba(25, 216, 255, 0.54);
  border: 0;
}

.value-icon-shape--fans {
  width: 116px;
  border-radius: 999px;
}

.value-icon-shape--fans::before,
.value-icon-shape--fans::after {
  top: 28px;
  bottom: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.value-icon-shape--fans::before {
  left: 22px;
}

.value-icon-shape--fans::after {
  right: 22px;
  left: auto;
}

.value-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.value-card__divider {
  display: block;
  width: 14px;
  height: 2px;
  margin: 10px auto 10px;
  background: rgba(255, 255, 255, 0.75);
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.4;
}

.collections-section {
  padding-top: 8px;
}

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

.collection-card {
  border: var(--frame);
  border-radius: 18px;
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
}

.collection-card__media {
  min-height: 210px;
  border-bottom: 1px solid rgba(25, 216, 255, 0.26);
}

.collection-card__media--pins {
  background:
    radial-gradient(circle at 38% 32%, rgba(80, 245, 255, 0.38), transparent 15%),
    linear-gradient(180deg, #5030b7 0%, #7d43cc 100%);
}

.collection-card__media--keychains {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.28), transparent 15%),
    linear-gradient(180deg, #6f2ea9 0%, #5c228d 100%);
}

.collection-card__media--deskmats {
  background:
    linear-gradient(135deg, rgba(71, 36, 151, 0.94), rgba(131, 79, 199, 0.88)),
    linear-gradient(180deg, #7f4cff 0%, #893fe0 100%);
}

.collection-card__media--rugs {
  background:
    radial-gradient(circle at 54% 32%, rgba(255, 140, 237, 0.3), transparent 18%),
    linear-gradient(180deg, #6f3cc3 0%, #8f63eb 100%);
}

.collection-card__media--wallart {
  background:
    radial-gradient(circle at 46% 40%, rgba(80, 245, 255, 0.32), transparent 18%),
    linear-gradient(180deg, #e8efff 0%, #d9c5ff 100%);
}

.collection-card h3 {
  padding: 14px 12px 18px;
  font-size: 21px;
}

.social-proof {
  padding-top: 30px;
}

.section-heading--social {
  margin-bottom: 18px;
}

.social-proof__topline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.social-proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-proof__stars {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.social-proof__stars i {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: linear-gradient(180deg, #b8fbff 0%, #26dcff 100%);
  clip-path: polygon(50% 0%, 63% 36%, 100% 36%, 69% 58%, 81% 96%, 50% 72%, 19% 96%, 31% 58%, 0% 36%, 37% 36%);
  filter: drop-shadow(0 0 6px rgba(25, 216, 255, 0.95));
}

.social-proof__topline a,
.social-proof__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: var(--frame);
  border-radius: 999px;
  background: rgba(33, 14, 64, 0.74);
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.social-proof__placeholder {
  cursor: default;
}

.social-proof__row {
  display: grid;
  grid-template-columns: minmax(0, 648px) 56px;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 150px;
  grid-template-rows: 1fr;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.social-proof__arrow {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(39, 225, 255, 0.95), rgba(95, 182, 255, 0.95));
  color: #24073e;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 0 16px rgba(25, 216, 255, 0.42);
  cursor: pointer;
}

.review-card {
  scroll-snap-align: start;
}

.review-card {
  border: var(--frame);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(72, 32, 116, 0.95), rgba(56, 23, 93, 0.98));
  box-shadow: var(--shadow);
  padding: 10px 10px 12px;
  min-height: 220px;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.review-card__stars {
  color: var(--cyan);
  font-family: 'Orbitron', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  color: #8edcff;
  font-family: 'Orbitron', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.review-card h3 {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.review-card p {
  min-height: 72px;
  font-size: 8px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.review-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 14px;
  border: 1px solid rgba(184, 251, 255, 0.7);
  border-radius: 999px;
  background: rgba(34, 17, 65, 0.5);
  color: #dffcff;
  font-family: 'Orbitron', sans-serif;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.review-card__footer i {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 1px solid rgba(184, 251, 255, 0.85);
  display: inline-block;
}

.social-proof__widget {
  width: min(100%, 900px);
  margin: 0 auto;
}

.social-proof__widget:empty {
  display: none;
}

.shoji-review-carousel {
  position: relative;
  width: min(100%, 428px);
  margin: 86px auto 0;
}

.shoji-review-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.shoji-review-carousel__track {
  display: flex;
  width: 100%;
  transition: transform 360ms ease;
}

.shoji-review-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.shoji-review-card {
  width: 100%;
  min-height: clamp(460px, 118vw, 500px);
  padding: 30px 28px 34px;
  border: 1px solid rgba(25, 216, 255, 0.9);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(76, 20, 118, 0.98), rgba(20, 5, 38, 0.99));
  box-shadow: 0 0 34px rgba(25, 216, 255, 0.16), inset 0 0 24px rgba(160, 74, 255, 0.18);
  color: rgba(239, 229, 255, 0.94);
  cursor: pointer;
  display: block;
  font-family: 'Orbitron', sans-serif;
  text-align: left;
}

.shoji-review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.shoji-review-card__stars {
  flex: 0 0 auto;
  color: var(--cyan);
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1;
  text-shadow: 0 0 13px rgba(25, 216, 255, 0.78);
  white-space: nowrap;
}

.shoji-review-card__date {
  min-width: 0;
  color: rgba(231, 215, 255, 0.66);
  font-size: clamp(15px, 4.5vw, 21px);
  text-align: right;
  white-space: nowrap;
}

.shoji-review-card__summary {
  display: block;
  margin: 30px 0 18px;
  color: #ffffff;
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1.18;
}

.shoji-review-card__body {
  display: -webkit-box;
  color: rgba(239, 229, 255, 0.94);
  font-size: clamp(18px, 5vw, 24px);
  line-height: 1.45;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.shoji-review-card__customer {
  display: block;
  margin-top: 28px;
  color: #ffffff;
  font-size: clamp(22px, 6vw, 29px);
  font-weight: 800;
  line-height: 1.2;
}

.shoji-review-card__customer span {
  display: block;
  color: var(--text);
  font-size: clamp(18px, 4.8vw, 23px);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.shoji-review-card__product {
  display: block;
  margin-top: 28px;
  color: rgba(239, 229, 255, 0.56);
  font-size: clamp(18px, 5vw, 23px);
  line-height: 1.28;
}

.shoji-review-card__product a {
  display: inline-block;
  max-width: 100%;
  color: var(--cyan);
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shoji-review-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cyan);
  border-radius: 999px;
  background: #090017;
  color: var(--cyan);
  cursor: pointer;
  font: 700 27px/1 Arial, sans-serif;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(25, 216, 255, 0.42);
}

.shoji-review-carousel__arrow--prev {
  left: -58px;
}

.shoji-review-carousel__arrow--next {
  right: -58px;
}

.shoji-review-carousel__counter {
  margin-top: 16px;
  color: rgba(231, 215, 255, 0.66);
  font-size: 13px;
  text-align: center;
}

.shoji-review-modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 0, 18, 0.86);
}

.shoji-review-modal.is-open {
  display: flex;
}

.has-shoji-review-modal {
  overflow: hidden;
}

.shoji-review-modal__dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: 88vh;
  overflow: auto;
  padding: 30px 28px;
  border: 1px solid rgba(25, 216, 255, 0.68);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(76, 20, 118, 0.99), rgba(18, 4, 34, 0.99));
  box-shadow: 0 0 42px rgba(25, 216, 255, 0.22);
}

.shoji-review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  background: transparent;
  color: rgba(231, 215, 255, 0.66);
  cursor: pointer;
  font: 400 38px/1 Arial, sans-serif;
}

.shoji-review-modal__stars {
  color: var(--cyan);
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1;
  text-shadow: 0 0 13px rgba(25, 216, 255, 0.78);
}

.shoji-review-modal__dialog h3 {
  margin: 28px 42px 18px 0;
  color: #ffffff;
  font-size: clamp(24px, 7vw, 32px);
  line-height: 1.2;
}

.shoji-review-modal__dialog p {
  color: rgba(239, 229, 255, 0.95);
  font-size: clamp(18px, 5vw, 22px);
  line-height: 1.55;
}

.shoji-review-modal__customer {
  color: #ffffff;
  font-size: clamp(21px, 5.8vw, 28px);
  font-weight: 800;
  line-height: 1.2;
}

.shoji-review-modal__customer span {
  display: block;
  color: var(--text);
  font-size: clamp(17px, 4.8vw, 22px);
  font-weight: 500;
}

.shoji-review-modal__product {
  margin-top: 24px;
  color: rgba(239, 229, 255, 0.56);
  font-size: clamp(18px, 5vw, 22px);
}

.shoji-review-modal__product a {
  color: var(--cyan);
  text-decoration: underline;
}

body.shoji-theme .fera-modal {
  --font: 'Orbitron', sans-serif;
  --bg: #10031f;
  --box-bg-color: #17072b;
  --fg: #ffffff;
  --fg-color: var(--cyan);
  --txt-color: #f6efff;
  --body-txt-color: rgba(238, 229, 255, 0.9);
  --link-color: var(--cyan);
  --star-color: var(--cyan);
  --star-bg-color: rgba(238, 229, 255, 0.24);
  color: #f6efff !important;
  font-family: 'Orbitron', sans-serif !important;
}

body.shoji-theme .fera-modal .fera-modal-dialog {
  background: linear-gradient(180deg, rgba(67, 24, 109, 0.98), rgba(18, 5, 35, 0.99)) !important;
  border: 1px solid rgba(25, 216, 255, 0.46) !important;
  box-shadow: 0 0 42px rgba(25, 216, 255, 0.22), inset 0 0 24px rgba(163, 66, 232, 0.18) !important;
}

body.shoji-theme .fera-modal .fera-modal-title,
body.shoji-theme .fera-modal .fera-review-heading,
body.shoji-theme .fera-modal .fera-customer-display,
body.shoji-theme .fera-modal .fera-customer-display * {
  color: #ffffff !important;
}

body.shoji-theme .fera-modal .fera-review-body,
body.shoji-theme .fera-modal .fera-review-product,
body.shoji-theme .fera-modal .fera-review-date {
  color: rgba(238, 229, 255, 0.9) !important;
}

body.shoji-theme .fera-modal .fera-review-product-name,
body.shoji-theme .fera-modal .fera-review-product-link {
  color: var(--cyan) !important;
}

body.shoji-theme .fera-modal .fera-modal-close-btn,
body.shoji-theme .fera-modal .fera-icon-close {
  color: var(--cyan) !important;
  fill: var(--cyan) !important;
}

@media (max-width: 720px) {
  #shoji-home-reviews {
    width: calc(100% - 28px);
  }

  .shoji-review-carousel {
    width: calc(100% - 32px);
    margin-top: 82px;
  }

  .shoji-review-card {
    padding: 30px 28px 34px;
  }

  .shoji-review-carousel__arrow--prev {
    left: -22px;
  }

  .shoji-review-carousel__arrow--next {
    right: -22px;
  }
}

.join-section {
  padding-top: 6px;
  text-align: center;
}

.join-section__copy {
  max-width: 850px;
  margin: 10px auto 20px;
}

.join-form {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.join-form input,
.join-form button {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(25, 216, 255, 0.5);
  box-shadow: inset 0 0 12px rgba(25, 216, 255, 0.08);
}

.join-form input {
  width: 320px;
  padding: 0 18px;
  background: rgba(33, 14, 64, 0.76);
  color: white;
  font-size: 20px;
}

.join-form button {
  padding: 0 24px;
  background: linear-gradient(90deg, rgba(147, 68, 225, 0.94), rgba(31, 215, 255, 0.94));
  color: white;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.sender-form-field {
  max-width: 640px;
  margin: 28px auto 0;
  border: 1px solid rgba(25, 216, 255, 0.55);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(72, 28, 125, 0.92), rgba(27, 8, 55, 0.96));
  box-shadow: 0 0 34px rgba(25, 216, 255, 0.2), inset 0 0 24px rgba(25, 216, 255, 0.07);
  overflow: hidden;
}

.sender-form-field iframe {
  display: block;
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
}

.sender-form-field form,
.sender-form-field [class*="form"],
.sender-form-field [class*="Form"] {
  background: transparent !important;
  color: #fff !important;
}

.sender-form-field input,
.sender-form-field button {
  border-radius: 999px !important;
  font-family: 'Orbitron', sans-serif !important;
}

.sender-form-field input {
  border: 1px solid rgba(25, 216, 255, 0.68) !important;
  background: rgba(16, 5, 35, 0.88) !important;
  color: #fff !important;
  box-shadow: inset 0 0 12px rgba(25, 216, 255, 0.12) !important;
}

.sender-form-field input::placeholder {
  color: rgba(232, 215, 255, 0.6) !important;
}

.sender-form-field button {
  border: 1px solid rgba(25, 216, 255, 0.75) !important;
  background: linear-gradient(90deg, rgba(163, 66, 232, 0.96), rgba(31, 215, 255, 0.96)) !important;
  color: #fff !important;
  box-shadow: 0 0 22px rgba(25, 216, 255, 0.28) !important;
  cursor: pointer !important;
}

.home-footer {
  position: relative;
  padding: 38px 0 54px;
  text-align: center;
}

.home-footer__brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: none;
}

.home-footer__tag {
  margin-top: 10px;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.home-footer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.home-footer__socials a,
.home-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(25, 216, 255, 0.38);
  border-radius: 999px;
  color: var(--cyan);
}

.home-footer__social-link {
  cursor: default;
}

.home-footer__socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.home-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.home-footer__links a {
  color: var(--cyan);
  text-decoration: none;
}

.home-footer__links a:hover {
  text-decoration: underline;
}

.home-footer__copyright {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.home-footer__sparkle {
  position: absolute;
  right: 70px;
  bottom: 36px;
  width: 42px;
  height: 42px;
}

.home-footer__sparkle::before,
.home-footer__sparkle::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 38%, rgba(244, 232, 255, 0.86) 38%, rgba(244, 232, 255, 0.86) 62%, transparent 62%, transparent 100%);
}

.home-footer__sparkle::after {
  transform: rotate(90deg);
}

@media (max-width: 1300px) {
  .home-nav {
    grid-template-columns: 18px 160px 1fr 120px 18px;
    gap: 18px;
    min-height: 76px;
    padding: 0 18px;
  }

  .home-nav__brand {
    align-self: center;
  }

  .home-nav__brand-main {
    font-size: 22px;
    letter-spacing: 0.2em;
  }

  .home-nav__brand-sub {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .home-nav__links {
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
  }

  .home-nav__links a {
    font-size: 13px;
    letter-spacing: 0.11em;
    white-space: nowrap;
  }

  .home-nav__cart {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .section {
    width: min(calc(100% - 40px), 1200px);
  }
}

@media (max-width: 980px) {
  .product-grid,
  .collections-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-proof__topline {
    flex-direction: column;
  }

  .social-proof__row { transform: none; width: auto; margin-bottom: 0; }
}

@media (max-width: 720px) {
  .top-ticker {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .home-nav,
  .home-shell,
  .home-footer {
    width: min(calc(100% - 12px), var(--content-width));
  }

  .home-nav {
    grid-template-columns: 7px 56px minmax(0, 1fr) 78px 0;
    grid-template-areas: none;
    gap: 4px;
    min-height: 52px;
    margin-top: 6px;
    padding: 0 5px;
    border-radius: 999px;
  }

  .home-nav__links {
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
  }

  .home-nav__links a {
    font-size: 6.8px;
    letter-spacing: 0.02em;
  }

  .nav-dropdown__menu {
    display: none;
  }

  .home-nav__brand-main {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .home-nav__brand-sub {
    font-size: 6px;
    letter-spacing: 0.08em;
  }

  .home-nav__cart {
    min-height: 28px;
    font-size: 7px;
    padding: 0 6px;
  }

  .hero-banner {
    border-radius: 0 0 14px 14px;
    min-height: 314px;
  }

  .hero-banner img,
  .hero-banner__fallback {
    width: 100%;
    height: 314px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-banner__fallback {
    gap: 5px;
  }

  .hero-banner__fallback-brand {
    font-size: clamp(42px, 13vw, 66px);
    letter-spacing: 0.05em;
  }

  .hero-banner__fallback-sub {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero-banner__fallback-tag {
    max-width: 310px;
    font-size: clamp(17px, 5vw, 24px);
    letter-spacing: 0.16em;
  }

  .anime-star {
    width: 18px;
    height: 18px;
  }

  .hero-banner__stars {
    opacity: 0.82;
  }

  .anime-star--1 {
    top: 14%;
    left: 24%;
    transform: scale(1.18);
  }

  .anime-star--2 {
    display: none;
  }

  .anime-star--3 {
    display: none;
  }

  .anime-star--4 {
    top: 13%;
    left: 78%;
    transform: scale(1);
  }

  .anime-star--5 {
    top: 33%;
    left: 13%;
    transform: scale(0.82);
  }

  .anime-star--6 {
    top: 31%;
    left: 89%;
    transform: scale(0.78);
  }

  .home-shell {
    padding-top: 8px;
  }

  .section {
    width: min(calc(100% - 12px), 1200px);
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .latest-drops {
    padding-top: 18px;
  }

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

  .product-card {
    border-radius: 16px;
  }

  .product-card__image {
    min-height: 0;
    aspect-ratio: 1 / 0.82;
    margin: 0;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, #4780f3 0%, #6f47df 100%);
  }

  .product-card__image--dynamic img {
    object-fit: contain;
    background: linear-gradient(180deg, #4780f3 0%, #6f47df 100%);
  }

  .product-card__logo {
    top: 10px;
    left: 10px;
    font-size: 12px;
  }

  .product-card__flag {
    top: 10px;
    right: 10px;
    font-size: 12px;
  }

  .product-card__star-shape {
    top: 34px;
    width: 112px;
    height: 112px;
  }

  .product-card__image::before,
  .product-card__image::after {
    display: none;
  }

  .product-card__image--bundle,
  .product-card__image--star,
  .product-card__image--scarred,
  .product-card__image--weapon,
  .product-card__image--round {
    background: linear-gradient(180deg, #4780f3 0%, #6f47df 100%);
  }

  .product-card__content {
    padding: 12px 14px 16px;
  }

  .product-card h3 {
    font-size: 17px;
    line-height: 1.24;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
  }

  .product-card__price {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .product-card__options {
    font-size: 15px;
  }

  .brand-story__body {
    font-size: 16px;
    line-height: 1.42;
  }

  .values-grid,
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .social-proof__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-grid {
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 8px) / 2);
    gap: 8px;
  }

  .social-proof__arrow {
    justify-self: center;
  }

  .review-card {
    min-height: 172px;
    padding: 9px;
  }

  .review-card h3 {
    font-size: 11px;
  }

  .review-card p {
    min-height: 58px;
    font-size: 8px;
  }

  .join-form {
    flex-direction: column;
    align-items: center;
  }

  .join-form input {
    width: 100%;
    max-width: 320px;
  }

  .join-section__copy {
    font-size: 19px;
  }

  .home-footer__sparkle {
    right: 20px;
    bottom: 18px;
  }
}

.product-card__image--dynamic img,
.collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image--dynamic:has(img) {
  background: linear-gradient(180deg, #4780f3 0%, #6f47df 100%);
}

@media (max-width: 860px) {
  .home-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cart"
      "links links";
    row-gap: 10px;
    column-gap: 14px;
    min-height: 0;
    padding: 14px 18px 16px;
    border-radius: 34px;
  }

  .home-nav__dot {
    display: none;
  }

  .home-nav__brand {
    grid-area: brand;
    justify-self: start;
    align-self: center;
  }

  .home-nav__brand-main {
    font-size: 20px;
    letter-spacing: 0.14em;
  }

  .home-nav__brand-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .home-nav__cart {
    grid-area: cart;
    justify-self: end;
    min-height: 34px;
    min-width: 72px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .home-nav__links {
    grid-area: links;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, auto));
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .home-nav__links .nav-dropdown {
    min-width: 0;
  }

  .home-nav__links a {
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero-banner {
    min-height: 286px;
  }

  .hero-banner__fallback {
    height: 286px;
    min-height: 286px;
    padding: 28px 20px;
    gap: 8px;
  }

  .hero-banner__fallback-brand {
    font-size: clamp(32px, 10vw, 48px);
    letter-spacing: 0.08em;
    text-shadow: 0 4px 0 rgba(74, 31, 122, 0.9), 0 0 18px rgba(255, 255, 255, 0.22);
  }

  .hero-banner__fallback-sub {
    margin-bottom: 18px;
    padding: 3px 10px;
    font-size: 8px;
  }

  .hero-banner__fallback-tag {
    max-width: 300px;
    font-size: clamp(16px, 5vw, 22px);
    letter-spacing: 0.13em;
  }

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

  .product-card {
    border-radius: 16px;
  }

  .product-card__image {
    aspect-ratio: 1 / 1.05;
    min-height: 0;
    margin: 0;
    border-radius: 16px 16px 0 0;
  }

  .product-card__image--dynamic img {
    object-fit: contain;
    object-position: center;
    padding: 4px;
    background: linear-gradient(180deg, #4780f3 0%, #6f47df 100%);
  }

  .product-card__content {
    padding: 10px 10px 12px;
  }

  .product-card h3 {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }

  .product-card__price {
    font-size: 13px;
  }

  .product-card__options {
    font-size: 11px;
  }
}

.home-shell > .wave-divider::before {
  content: none;
}

/* Live custom and policy page support */
.page-about .content-section--about,
.page-contact .contact-page,
.page-custom .policy-page {
  padding-top: 12px;
}

.page-about .story-frame {
  max-width: 860px;
  padding: 34px 38px;
}

.page-about .story-frame h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.05;
}

.page-about .story-frame h3 {
  margin-top: 28px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.page-about .story-frame p {
  margin-bottom: 18px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.page-hero--policy {
  width: min(calc(100% - 56px), 1120px);
  margin: 30px auto 28px;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.page-hero--policy .section-frame {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 28px;
  text-align: center;
  border-bottom: 2px solid rgba(25, 216, 255, 0.78);
  box-shadow: 0 18px 28px -30px rgba(25, 216, 255, 0.8);
}

.page-hero--policy h1 {
  max-width: 920px;
  margin: 0 auto 10px;
  color: var(--cyan, var(--accent));
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-shadow: 0 0 18px rgba(25, 216, 255, 0.42);
}

.page-hero--policy p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.policy-frame {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  padding: 34px 38px;
  border: 1px solid rgba(25, 216, 255, 0.52);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(65, 22, 113, 0.88), rgba(37, 14, 70, 0.96));
  box-shadow: var(--shadow);
}

.policy-block h2 {
  margin: 0 0 8px;
  color: var(--cyan, var(--accent));
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.12;
}

.policy-block p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.policy-block a {
  color: var(--cyan, var(--accent));
  font-weight: 700;
  text-decoration: none;
}

.policy-block a:hover,
.policy-block a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .page-about .story-frame {
    padding: 26px 24px;
    border-radius: 24px;
  }

  .page-about .story-frame h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .page-about .story-frame h3,
  .policy-block h2 {
    font-size: 25px;
  }

  .page-about .story-frame p,
  .policy-block p {
    font-size: 18px;
    line-height: 1.48;
  }

  .page-hero--policy {
    width: calc(100% - 40px);
    margin: 28px auto 22px;
  }

  .page-hero--policy .section-frame {
    padding: 4px 0 22px;
  }

  .page-hero--policy h1 {
    max-width: 330px;
    font-size: clamp(32px, 8.4vw, 42px);
    letter-spacing: 0.04em;
  }

  .page-hero--policy p {
    max-width: 310px;
    font-size: 18px;
  }

  .policy-frame {
    padding: 26px 24px;
    border-radius: 24px;
  }
}

/* Phone/tablet live-preview hardening. Keep this at the end so it wins. */
@media (max-width: 860px) {
  .home-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: min(calc(100% - 16px), var(--content-width)) !important;
    min-height: 0 !important;
    gap: 10px 12px !important;
    margin: 10px auto 16px !important;
    padding: 16px 18px 18px !important;
    border-radius: 34px !important;
  }

  .home-nav__dot {
    display: none !important;
  }

  .home-nav__brand {
    order: 1 !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }

  .home-nav__cart {
    order: 2 !important;
    flex: 0 0 auto !important;
    min-width: 76px !important;
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }

  .home-nav__links {
    order: 3 !important;
    flex: 1 0 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px 18px !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .home-nav__links .nav-dropdown {
    display: inline-flex !important;
    min-width: 0 !important;
  }

  .home-nav__links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    font-size: 11px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
  }

  .home-nav__brand-main {
    font-size: 20px !important;
    letter-spacing: 0.16em !important;
  }

  .home-nav__brand-sub {
    font-size: 8px !important;
    letter-spacing: 0.18em !important;
  }

  .hero-banner {
    min-height: 264px !important;
    border-radius: 0 0 18px 18px !important;
  }

  .hero-banner__fallback {
    height: 264px !important;
    min-height: 264px !important;
    padding: 30px 18px !important;
    gap: 7px !important;
  }

  .hero-banner__fallback-brand {
    font-size: clamp(30px, 9vw, 44px) !important;
    letter-spacing: 0.06em !important;
    text-shadow: 0 4px 0 rgba(74, 31, 122, 0.86), 0 0 18px rgba(255, 255, 255, 0.18) !important;
  }

  .hero-banner__fallback-sub {
    margin-bottom: 16px !important;
    padding: 3px 10px !important;
    font-size: 8px !important;
    letter-spacing: 0.08em !important;
  }

  .hero-banner__fallback-tag {
    max-width: 310px !important;
    font-size: clamp(15px, 4.8vw, 21px) !important;
    letter-spacing: 0.12em !important;
    line-height: 1.16 !important;
  }

  .latest-drops {
    padding-top: 18px !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .product-card {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .product-card__image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 8px !important;
    border-radius: 16px 16px 0 0 !important;
    background: linear-gradient(180deg, rgba(52, 25, 112, 0.98), rgba(38, 18, 88, 0.98)) !important;
  }

  .product-card__image--dynamic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
  }

  .product-card__logo {
    display: none !important;
  }

  .product-card__content {
    padding: 10px 10px 12px !important;
  }

  .product-card h3 {
    font-size: 11px !important;
    line-height: 1.18 !important;
    letter-spacing: 0.04em !important;
  }

  .product-card__price {
    font-size: 13px !important;
  }

  .product-card__options {
    font-size: 11px !important;
  }
}

/* Desktop conversion pass: keep products visible above the fold. */
@media (min-width: 861px) {
  .home-shell {
    padding-top: 12px !important;
  }

  .hero-banner {
    width: min(calc(100% - 260px), 1360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    border-radius: 22px !important;
  }

  .hero-banner__fallback {
    height: clamp(255px, 28vh, 315px) !important;
    min-height: clamp(255px, 28vh, 315px) !important;
    padding: 28px 56px !important;
    gap: 8px !important;
  }

  .hero-banner__fallback-brand {
    font-size: clamp(62px, 5.8vw, 92px) !important;
    letter-spacing: 0.04em !important;
    transform: rotate(-1deg) !important;
  }

  .hero-banner__fallback-sub {
    margin-bottom: 18px !important;
    font-size: clamp(10px, 1vw, 13px) !important;
  }

  .hero-banner__fallback-tag {
    font-size: clamp(20px, 1.8vw, 28px) !important;
    letter-spacing: 0.2em !important;
  }

  .latest-drops {
    padding-top: 14px !important;
  }

  .section-heading {
    margin-bottom: 12px !important;
  }

  .section-heading h2 {
    color: var(--cyan) !important;
    font-size: clamp(28px, 2vw, 38px) !important;
    text-shadow: 0 0 18px rgba(25, 216, 255, 0.62) !important;
  }

  .product-grid {
    width: min(100%, 1080px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 24px !important;
  }

  .product-card {
    border-radius: 20px !important;
  }

  .product-card__image {
    display: block !important;
    min-height: 238px !important;
    height: auto !important;
    aspect-ratio: 1 / 0.92 !important;
    margin: 14px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, rgba(52, 25, 112, 0.98), rgba(38, 18, 88, 0.98)) !important;
  }

  .product-card__image--dynamic img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .product-card__logo {
    display: none !important;
  }

  .product-card__content {
    padding: 6px 20px 20px !important;
  }

  .product-card h3 {
    margin-bottom: 16px !important;
    color: var(--text) !important;
    font-size: clamp(14px, 0.92vw, 17px) !important;
    line-height: 1.18 !important;
  }

  .product-card h3 a {
    color: var(--text) !important;
  }

  .product-card__price {
    margin-bottom: 6px !important;
    font-size: clamp(15px, 1vw, 18px) !important;
  }

  .product-card__options {
    font-size: clamp(14px, 0.92vw, 17px) !important;
  }
}

/* Homepage mockup visual polish: restore controlled Shoji wave accents. */
.home-shell > .wave-divider {
  position: relative !important;
  display: block !important;
  width: min(calc(100% - 40px), var(--content-width)) !important;
  height: clamp(48px, 6.4vw, 92px) !important;
  margin: 16px auto 4px !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  opacity: 0.82 !important;
  filter: drop-shadow(0 0 14px rgba(25, 216, 255, 0.58)) !important;
  pointer-events: none !important;
}

.home-shell > .wave-divider::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  background-image: inherit !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}

@media (min-width: 861px) {
  .hero-banner {
    border: 1px solid rgba(25, 216, 255, 0.62) !important;
    box-shadow: 0 0 22px rgba(25, 216, 255, 0.22), 0 28px 80px rgba(28, 9, 56, 0.42) !important;
  }

  .hero-banner__fallback {
    background:
      radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.12), transparent 13%),
      radial-gradient(circle at 42% 55%, rgba(155, 77, 255, 0.22), transparent 22%),
      radial-gradient(circle at 66% 56%, rgba(25, 216, 255, 0.16), transparent 24%),
      linear-gradient(180deg, rgba(39, 14, 74, 0.97) 0%, rgba(29, 13, 55, 0.96) 100%) !important;
  }

  .home-shell > .wave-divider {
    width: min(calc(100% - 160px), 1360px) !important;
    height: 82px !important;
    margin-top: 18px !important;
  }
}

/* Homepage QA cleanup: hide only duplicate auto-injected review widgets outside the approved social proof section. */
body.page-home main.home-shell > .fera,
body.page-home main.home-shell > .fera-allReviews-widget,
body.page-home main.home-shell > .fera-reviews-widget,
body.page-home main.home-shell > [data-fera-container],
body.page-home main.home-shell > [id*="review-widget"],
body.page-home main.home-shell > [class*="review-widget"],
body.page-home main.home-shell > section:not(.social-proof)[id*="reviews"],
body.page-home main.home-shell > section:not(.social-proof)[class*="reviews"] {
  display: none !important;
}

/* Homepage QA cleanup: make wave accents quieter and prevent doubled wave rendering. */
.home-shell > .wave-divider {
  width: min(calc(100% - 220px), 1120px) !important;
  height: 46px !important;
  margin: 18px auto 4px !important;
  opacity: 0.42 !important;
  filter: drop-shadow(0 0 8px rgba(25, 216, 255, 0.34)) !important;
}

.home-shell > .wave-divider::before {
  content: none !important;
}

.home-shell > .wave-divider--two,
.home-shell > .wave-divider--social,
.home-shell > .wave-divider--five {
  opacity: 0.3 !important;
}

/* Homepage QA cleanup: hide placeholder values icons until the original approved icon assets are uploaded. */
body.home-mockup .value-card__icon {
  display: none !important;
}

body.home-mockup .value-card {
  padding-top: 28px !important;
}

@media (max-width: 860px) {
  .home-shell > .wave-divider {
    width: calc(100% - 52px) !important;
    height: 30px !important;
    margin: 10px auto 0 !important;
    opacity: 0.34 !important;
  }

  body.home-mockup .value-card {
    padding-top: 22px !important;
  }
}

/* Homepage QA correction: restore clean waves and lightweight value symbols for Big Cartel editor stability. */
.home-shell > .wave-divider {
  width: min(calc(100% - 70px), var(--content-width)) !important;
  height: 104px !important;
  margin: 6px auto 0 !important;
  opacity: 0.98 !important;
  filter: drop-shadow(0 0 16px rgba(25, 216, 255, 0.78)) drop-shadow(0 0 3px rgba(184, 251, 255, 0.55)) !important;
  background-size: 100% 100% !important;
}

.home-shell > .wave-divider::before {
  content: none !important;
}

.home-shell > .wave-divider--two,
.home-shell > .wave-divider--social,
.home-shell > .wave-divider--five {
  opacity: 0.95 !important;
}

body.home-mockup .value-card {
  padding: 18px 18px 20px !important;
}

body.home-mockup .value-card__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 148px !important;
  height: 92px !important;
  margin: 0 auto 12px !important;
  border: 1px solid rgba(47, 216, 255, 0.28) !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(47, 216, 255, 0.18), rgba(47, 216, 255, 0.04) 58%, transparent 70%) !important;
  box-shadow: 0 0 20px rgba(47, 216, 255, 0.22) !important;
}

body.home-mockup .value-icon-shape,
body.home-mockup .value-icon-shape--quality,
body.home-mockup .value-icon-shape--limited,
body.home-mockup .value-icon-shape--fans {
  display: block !important;
  position: relative !important;
  width: 76px !important;
  height: 64px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

body.home-mockup .value-icon-shape::before,
body.home-mockup .value-icon-shape::after {
  content: "" !important;
  position: absolute !important;
  box-sizing: border-box !important;
}

body.home-mockup .value-icon-shape--quality::before {
  width: 34px !important;
  height: 34px !important;
  left: 21px !important;
  top: 5px !important;
  border: 3px solid var(--text) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.36) !important;
}

body.home-mockup .value-icon-shape--quality::after {
  width: 52px !important;
  height: 34px !important;
  left: 12px !important;
  top: 24px !important;
  border-left: 4px solid var(--accent) !important;
  border-bottom: 4px solid var(--accent) !important;
  transform: rotate(-42deg) skewX(8deg) !important;
  border-radius: 0 0 0 16px !important;
  filter: drop-shadow(0 0 8px rgba(25, 216, 255, 0.72)) !important;
}

body.home-mockup .value-icon-shape--limited::before {
  width: 58px !important;
  height: 58px !important;
  left: 9px !important;
  top: 3px !important;
  border: 4px solid var(--accent) !important;
  transform: rotate(45deg) !important;
  box-shadow: 0 0 16px rgba(25, 216, 255, 0.72) !important;
}

body.home-mockup .value-icon-shape--limited::after {
  width: 24px !important;
  height: 24px !important;
  left: 26px !important;
  top: 20px !important;
  background: var(--accent) !important;
  transform: rotate(45deg) !important;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.22), 0 0 12px rgba(25, 216, 255, 0.72) !important;
}

body.home-mockup .value-icon-shape--fans::before,
body.home-mockup .value-icon-shape--fans::after {
  width: 36px !important;
  height: 36px !important;
  top: 14px !important;
  border: 4px solid var(--text) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.32) !important;
}

body.home-mockup .value-icon-shape--fans::before {
  left: 8px !important;
}

body.home-mockup .value-icon-shape--fans::after {
  right: 8px !important;
}

@media (max-width: 860px) {
  .home-shell > .wave-divider {
    width: calc(100% - 28px) !important;
    height: 66px !important;
    opacity: 0.9 !important;
    margin: 8px auto 0 !important;
  }

  body.home-mockup .value-card__icon {
    width: 126px !important;
    height: 78px !important;
    margin-bottom: 10px !important;
  }

  body.home-mockup .value-icon-shape,
  body.home-mockup .value-icon-shape--quality,
  body.home-mockup .value-icon-shape--limited,
  body.home-mockup .value-icon-shape--fans {
    width: 66px !important;
    height: 56px !important;
  }
}

/* Hosted homepage artwork pass: use Big Cartel image assets instead of CSS stand-ins. */
main.home-shell .hero-banner {
  width: min(calc(100% - 220px), 1120px) !important;
  margin: 26px auto 12px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 24px !important;
  background: transparent !important;
  box-shadow: none !important;
}

main.home-shell .hero-banner img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  border-radius: 24px !important;
}

main.home-shell .hero-banner__fallback {
  display: none !important;
}

main.home-shell .hero-banner__stars {
  display: none !important;
}

main.home-shell > .wave-divider {
  width: min(calc(100% - 140px), 1360px) !important;
  height: 90px !important;
  margin: 10px auto 0 !important;
  opacity: 1 !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;
  filter: drop-shadow(0 0 12px rgba(25, 216, 255, 0.92)) drop-shadow(0 0 24px rgba(25, 216, 255, 0.42)) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1720 110' preserveAspectRatio='none'%3E%3Cpath d='M0 54C96 37 183 71 286 72C398 73 490 38 606 35C724 32 822 69 940 71C1054 73 1149 39 1265 38C1382 37 1479 73 1602 70C1651 69 1689 62 1720 56' fill='none' stroke='%2319d8ff' stroke-width='28' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

main.home-shell > .wave-divider::before {
  content: none !important;
}

main.home-shell .value-card__icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 184px !important;
  height: 122px !important;
  margin: 0 auto 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

main.home-shell .value-icon-shape,
main.home-shell .value-icon-shape::before,
main.home-shell .value-icon-shape::after {
  display: none !important;
  content: none !important;
}

main.home-shell .value-icon-image {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 14px rgba(25, 216, 255, 0.52)) drop-shadow(0 0 24px rgba(155, 77, 255, 0.26)) !important;
}

main.home-shell .value-icon-image--quality {
  max-width: 154px !important;
  max-height: 106px !important;
}

main.home-shell .value-icon-image--limited {
  max-width: 172px !important;
  max-height: 100px !important;
}

main.home-shell .value-icon-image--fans {
  max-width: 158px !important;
  max-height: 108px !important;
}

main.home-shell > #reviews,
main.home-shell > .fera-allReviews-widget,
main.home-shell > .fera-reviews-widget,
main.home-shell > [data-fera-container] {
  display: none !important;
}

@media (max-width: 860px) {
  main.home-shell .hero-banner {
    width: calc(100% - 28px) !important;
    margin: 16px auto 10px !important;
    border-radius: 16px !important;
  }

  main.home-shell .hero-banner img {
    border-radius: 16px !important;
  }

  main.home-shell > .wave-divider {
    width: calc(100% - 28px) !important;
    height: 66px !important;
    margin-top: 8px !important;
  }

  main.home-shell .value-card__icon {
    width: 132px !important;
    height: 90px !important;
    margin-bottom: 8px !important;
  }

  main.home-shell .value-icon-image--quality,
  main.home-shell .value-icon-image--fans {
    max-width: 116px !important;
    max-height: 82px !important;
  }

  main.home-shell .value-icon-image--limited {
    max-width: 124px !important;
    max-height: 72px !important;
  }
}

/* Hero fallback restore: Home now uses markup, so keep the Shoji hero visible and compact. */
main.home-shell .hero-banner {
  width: min(calc(100% - 220px), 1240px) !important;
  margin: 26px auto 14px !important;
  padding: 0 !important;
  border: 1px solid rgba(25, 216, 255, 0.62) !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 0 22px rgba(25, 216, 255, 0.22), 0 28px 80px rgba(28, 9, 56, 0.42) !important;
}

main.home-shell .hero-banner > img {
  display: none !important;
}

main.home-shell .hero-banner__fallback {
  display: grid !important;
  place-content: center !important;
  width: 100% !important;
  height: clamp(270px, 25vw, 360px) !important;
  min-height: 0 !important;
  padding: 32px 48px !important;
  border: 0 !important;
  border-radius: 24px !important;
}

main.home-shell .hero-banner__stars {
  display: block !important;
}

@media (max-width: 720px) {
  main.home-shell .hero-banner {
    width: calc(100% - 28px) !important;
    margin: 22px auto 12px !important;
    border-radius: 18px !important;
  }

  main.home-shell .hero-banner__fallback {
    height: 260px !important;
    padding: 28px 18px !important;
    border-radius: 18px !important;
  }
}

/* Live homepage hero: use the uploaded Big Cartel Welcome Image and keep the twinkling star overlay. */
main.home-shell .hero-banner {
  position: relative !important;
  display: block !important;
  width: min(calc(100% - 220px), 1240px) !important;
  margin: 26px auto 14px !important;
  padding: 0 !important;
  height: clamp(344px, calc((100vw - 220px) / 1.84), 670px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(25, 216, 255, 0.72) !important;
  border-bottom: 0 !important;
  border-radius: 24px 24px 0 0 !important;
  background: linear-gradient(135deg, rgba(42, 16, 85, 0.72), rgba(17, 30, 65, 0.72)) !important;
  box-shadow: 0 0 22px rgba(25, 216, 255, 0.28), 0 28px 80px rgba(28, 9, 56, 0.42) !important;
  min-height: 0 !important;
}

main.home-shell .hero-banner > img,
main.home-shell .hero-banner > .hero-banner__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 24px 24px 0 0 !important;
}

main.home-shell .hero-banner__fallback {
  display: grid !important;
  place-content: center !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 32px 48px !important;
  border: 0 !important;
  border-radius: 24px 24px 0 0 !important;
}

main.home-shell .hero-banner__stars {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

@media (max-width: 720px) {
  main.home-shell .hero-banner {
    width: calc(100% - 28px) !important;
    margin: 18px auto 12px !important;
    height: 344px !important;
    border-radius: 18px 18px 0 0 !important;
  }

  main.home-shell .hero-banner > img,
  main.home-shell .hero-banner > .hero-banner__image {
    border-radius: 18px 18px 0 0 !important;
  }

  main.home-shell .hero-banner__fallback {
    height: 100% !important;
    padding: 28px 18px !important;
    border-radius: 18px 18px 0 0 !important;
  }
}

/* Product page polish: make generated Big Cartel option radios feel clickable and visibly selected. */
.product-page .product-options ul,
.product-page .shoji-options,
.product-page .product-options {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
}

.product-page .product-options li {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.product-page .product-options input[type="radio"] {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-page .product-options label {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  min-height: 58px !important;
  padding: 12px 16px 12px 48px !important;
  border: 1px solid rgba(25, 216, 255, 0.34) !important;
  border-radius: 14px !important;
  background: rgba(24, 7, 54, 0.78) !important;
  box-shadow: inset 0 0 0 1px rgba(160, 74, 255, 0.14) !important;
  cursor: pointer !important;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-page .product-options label::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(184, 251, 255, 0.78);
  border-radius: 999px;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(25, 216, 255, 0.22);
}

.product-page .product-options label::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(25, 216, 255, 0.9), 0 0 24px rgba(181, 74, 255, 0.55);
  opacity: 0;
  transform: translateY(-50%) scale(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-page .product-options label:hover,
.product-page .product-options label:focus-visible,
.product-page .product-options input[type="radio"]:focus-visible + label {
  border-color: rgba(25, 216, 255, 0.78) !important;
  background: linear-gradient(135deg, rgba(32, 11, 72, 0.96), rgba(69, 23, 117, 0.92)) !important;
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.28), inset 0 0 0 1px rgba(181, 74, 255, 0.28) !important;
  transform: translateY(-1px);
}

.product-page .product-options li.is-selected label,
.product-page .product-options li:has(input[type="radio"]:checked) label,
.product-page .product-options input[type="radio"]:checked + label {
  border-color: var(--cyan) !important;
  background: linear-gradient(135deg, rgba(39, 12, 92, 0.98), rgba(120, 35, 168, 0.88)) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(25, 216, 255, 0.44), 0 0 34px rgba(181, 74, 255, 0.24), inset 0 0 0 1px rgba(184, 251, 255, 0.5) !important;
}

.product-page .product-options li.is-selected label::after,
.product-page .product-options li:has(input[type="radio"]:checked) label::after,
.product-page .product-options input[type="radio"]:checked + label::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.product-page .product-sidebar .sidebar-panel {
  align-content: start !important;
}

.product-page .product-sidebar .review-card--stacked {
  min-height: 0 !important;
  padding: 16px !important;
  display: grid !important;
  gap: 10px !important;
}

.product-page .product-sidebar .review-card--stacked strong {
  margin: 0 !important;
  font-size: 20px !important;
}

.product-page .product-sidebar .review-card--stacked p {
  min-height: 0 !important;
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.product-page .product-sidebar .review-card--stacked span {
  margin-top: 2px !important;
  font-size: 17px !important;
}

.product-review-carousel {
  display: grid;
  gap: 12px;
}

.product-review-carousel__viewport {
  min-height: 164px;
}

.product-page .product-sidebar .product-review-slide[hidden],
.product-page .product-sidebar .product-review-slide:not(.is-active) {
  display: none !important;
}

.product-page .product-sidebar .product-review-slide.is-active {
  display: grid !important;
}

.product-review-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-review-carousel__controls[hidden] {
  display: none !important;
}

.product-review-carousel__button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(47, 216, 255, 0.95);
  border-radius: 999px;
  background: rgba(27, 8, 55, 0.88);
  color: var(--accent);
  cursor: pointer;
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 14px rgba(47, 216, 255, 0.2);
}

.product-review-carousel__button:hover,
.product-review-carousel__button:focus-visible {
  background: linear-gradient(135deg, rgba(177, 57, 226, 0.95), rgba(47, 216, 255, 0.95));
  color: #130620;
  outline: none;
}

.product-review-carousel__count {
  color: var(--accent);
  font-family: "Orbitron", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px rgba(47, 216, 255, 0.5);
}

.product-purchase--sold-out {
  gap: 14px;
}

.sold-out-message {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
}

.glow-button--disabled,
.glow-button--disabled:hover,
.glow-button--disabled:focus-visible {
  background: rgba(54, 38, 84, 0.84);
  border-color: rgba(47, 216, 255, 0.45);
  box-shadow: none;
  color: rgba(232, 215, 255, 0.72);
  cursor: not-allowed;
  transform: none;
}

body.shoji-theme .cart-rpg-pop {
  position: fixed;
  left: var(--pop-x);
  top: var(--pop-y);
  z-index: 9999;
  display: grid;
  place-items: center;
  width: 170px;
  height: 104px;
  pointer-events: none;
  isolation: isolate;
  transform: translate(-50%, -50%);
  animation: cart-rpg-float 1380ms cubic-bezier(0.16, 0.9, 0.22, 1) forwards;
}

body.shoji-theme .cart-rpg-pop::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 10px 0;
  border: 1px solid rgba(145, 246, 255, 0.82);
  border-left-width: 3px;
  border-right-width: 3px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(117, 237, 255, 0.14) 8% 24%, rgba(18, 236, 255, 0.34) 49%, rgba(102, 210, 255, 0.13) 76%, transparent 93%),
    repeating-linear-gradient(180deg, rgba(244, 254, 255, 0.13) 0 1px, transparent 1px 7px),
    rgba(5, 21, 44, 0.84);
  clip-path: polygon(9% 0, 91% 0, 100% 19%, 100% 81%, 91% 100%, 9% 100%, 0 81%, 0 19%);
  box-shadow:
    0 0 16px rgba(25, 216, 255, 0.82),
    inset 0 0 16px rgba(25, 216, 255, 0.34),
    inset 0 0 2px rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  animation: cart-rpg-burst 1380ms ease-out forwards;
}

body.shoji-theme .cart-rpg-pop::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 254, 255, 0.95), rgba(25, 216, 255, 0.96), transparent);
  box-shadow: 0 0 16px rgba(25, 216, 255, 0.95);
  transform: translateY(-50%);
  animation: cart-rpg-scanline 1380ms ease-out forwards;
}

body.shoji-theme .cart-rpg-pop__value {
  position: relative;
  z-index: 3;
  display: inline-block;
  color: #f8ffff;
  font-family: 'Orbitron', 'Rajdhani', sans-serif;
  font-size: 66px;
  font-style: normal;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  -webkit-text-fill-color: #f8ffff;
  -webkit-text-stroke: 2px rgba(5, 21, 44, 0.96);
  paint-order: stroke fill;
  text-shadow:
    2px 2px 0 rgba(5, 21, 44, 0.92),
    0 0 8px rgba(255, 255, 255, 1),
    0 0 14px rgba(25, 216, 255, 1),
    0 0 28px rgba(25, 216, 255, 0.84),
    0 0 42px rgba(88, 121, 255, 0.58);
  filter: none;
  animation: cart-rpg-value 1380ms ease-out forwards;
}

body.shoji-theme .cart-rpg-pop__value::before {
  content: attr(data-effect-text);
  position: absolute;
  z-index: -1;
  left: -3px;
  top: 0;
  color: #2b7cff;
  -webkit-text-fill-color: #2b7cff;
  -webkit-text-stroke: 0;
  clip-path: inset(0 0 48% 0);
  opacity: 0.48;
  text-shadow: 0 0 16px rgba(43, 124, 255, 0.95);
  animation: cart-rpg-glitch-a 420ms steps(2, end) 2;
}

body.shoji-theme .cart-rpg-pop__value::after {
  content: attr(data-effect-text);
  position: absolute;
  z-index: -1;
  left: 4px;
  top: 0;
  color: #00f0ff;
  -webkit-text-fill-color: #00f0ff;
  -webkit-text-stroke: 0;
  clip-path: inset(52% 0 0 0);
  opacity: 0.5;
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.95);
  animation: cart-rpg-glitch-b 420ms steps(2, end) 2;
}

body.shoji-theme .cart-rpg-pop__spark {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #7df7ff;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(25, 216, 255, 1),
    0 0 28px rgba(198, 52, 183, 0.5);
  transform: translate(-50%, -50%) scale(0.2);
  animation: cart-rpg-spark 1380ms ease-out forwards;
  animation-delay: calc(var(--i) * 14ms);
}

@keyframes cart-rpg-float {
  0% {
    opacity: 0;
    transform: translate(-50%, -36%) scale(0.72);
    filter: blur(0);
  }
  12% {
    opacity: 1;
    transform: translate(-50%, -62%) scale(1);
  }
  62% {
    opacity: 1;
    transform: translate(-50%, -122%) scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -184%) scale(0.9);
    filter: blur(2px);
  }
}

@keyframes cart-rpg-value {
  0% {
    opacity: 0;
    transform: scaleX(0.62) scaleY(0.84);
  }
  10% {
    opacity: 1;
    transform: scaleX(1.22) scaleY(0.92);
  }
  18% {
    opacity: 1;
    transform: scaleX(0.94) scaleY(1.08);
  }
  56% {
    opacity: 1;
    transform: scale(1);
  }
  76% {
    opacity: 0.86;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.82) scaleY(0.7);
  }
}

@keyframes cart-rpg-burst {
  0% {
    opacity: 0;
    transform: scaleX(0.42) scaleY(0.82);
  }
  12% {
    opacity: 1;
    transform: scaleX(1.08) scaleY(1);
  }
  62% {
    opacity: 0.88;
    transform: scale(1.02);
  }
  100% {
    opacity: 0;
    transform: scaleX(0.82) scaleY(0.9);
  }
}

@keyframes cart-rpg-scanline {
  0% {
    opacity: 0;
    transform: translate(-38px, -50%) scaleX(0.2);
  }
  18% {
    opacity: 1;
    transform: translate(0, -50%) scaleX(1);
  }
  72% {
    opacity: 0.76;
    transform: translate(18px, -50%) scaleX(0.78);
  }
  100% {
    opacity: 0;
    transform: translate(42px, -50%) scaleX(0.1);
  }
}

@keyframes cart-rpg-glitch-a {
  0%, 100% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(-7px, -1px);
  }
  70% {
    transform: translate(5px, 1px);
  }
}

@keyframes cart-rpg-glitch-b {
  0%, 100% {
    transform: translate(0, 0);
  }
  36% {
    transform: translate(8px, 1px);
  }
  68% {
    transform: translate(-5px, -1px);
  }
}

@keyframes cart-rpg-spark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  28% {
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x)), calc(-50% + var(--spark-y))) scale(0.1);
  }
}

/* Mobile product QA: contain Big Cartel product content inside narrow preview viewports. */
@media (max-width: 860px) {
  body.shoji-theme {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body.shoji-theme .site-main {
    width: 100%;
    max-width: 100%;
    padding-top: 18px;
    overflow-x: hidden;
  }

  body.shoji-theme .content-section.product-page {
    width: min(calc(100% - 28px), 560px) !important;
    max-width: calc(100vw - 28px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: 18px !important;
    overflow: hidden !important;
  }

  body.shoji-theme .product-layout,
  body.shoji-theme .product-gallery,
  body.shoji-theme .product-details,
  body.shoji-theme .product-sidebar,
  body.shoji-theme .sidebar-panel,
  body.shoji-theme .detail-panel,
  body.shoji-theme .review-card,
  body.shoji-theme .mini-product-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.shoji-theme .product-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  body.shoji-theme .product-gallery__main {
    display: grid !important;
    place-items: center !important;
    aspect-ratio: 1 / 0.92 !important;
    max-height: 430px !important;
    padding: 10px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
  }

  body.shoji-theme .product-gallery__main img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.shoji-theme .product-gallery__main img,
  body.shoji-theme .product-gallery__thumb img,
  body.shoji-theme .mini-product-card img {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  body.shoji-theme .product-gallery__main img {
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.shoji-theme .product-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.shoji-theme .product-gallery__thumb {
    aspect-ratio: 1 / 0.78 !important;
    min-width: 0 !important;
    padding: 8px !important;
    overflow: hidden !important;
  }

  body.shoji-theme .product-gallery__thumb img {
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.shoji-theme .product-gallery,
  body.shoji-theme .product-details {
    gap: 12px !important;
  }

  body.shoji-theme .product-details {
    padding: 20px 18px !important;
    overflow: hidden !important;
  }

  body.shoji-theme .product-details > h1 {
    order: 1 !important;
  }

  body.shoji-theme .product-details > .product-details__price {
    order: 2 !important;
  }

  body.shoji-theme .product-details > .status-pill {
    order: 3 !important;
  }

  body.shoji-theme .product-details > .product-purchase {
    order: 4 !important;
  }

  body.shoji-theme .product-details > .product-copy {
    order: 5 !important;
  }

  body.shoji-theme .product-details > .detail-panels {
    order: 6 !important;
  }

  body.shoji-theme .product-details h1 {
    margin-bottom: 4px !important;
    font-size: clamp(32px, 9vw, 44px) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .product-details__price {
    font-size: clamp(34px, 9.5vw, 46px) !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .product-purchase {
    display: grid !important;
    gap: 14px !important;
    margin: 2px 0 8px !important;
  }

  body.shoji-theme .product-copy,
  body.shoji-theme .product-copy p,
  body.shoji-theme .detail-panel,
  body.shoji-theme .detail-panel p,
  body.shoji-theme .review-card p,
  body.shoji-theme .mini-product-card span {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  body.shoji-theme .product-copy p {
    font-size: 20px !important;
    line-height: 1.45 !important;
  }

  body.shoji-theme .product-copy {
    padding-top: 10px !important;
    border-top: 1px solid rgba(25, 216, 255, 0.22) !important;
  }

  body.shoji-theme .field-label {
    display: block !important;
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .product-page .product-options label {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-content: start !important;
    align-items: start !important;
    gap: 4px !important;
    padding: 14px 12px 14px 44px !important;
    font-size: 20px !important;
    line-height: 1.16 !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .product-page .shoji-option-name,
  body.shoji-theme .product-page .shoji-option-price {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.shoji-theme .product-page .shoji-option-name {
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .product-page .shoji-option-price {
    color: var(--accent) !important;
    font-family: 'Orbitron', sans-serif !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }

  body.shoji-theme .product-page .product-options label::before {
    left: 14px !important;
  }

  body.shoji-theme .product-page .product-options label::after {
    left: 20px !important;
  }

  body.shoji-theme .quantity-stepper {
    display: grid !important;
    grid-template-columns: 52px minmax(0, 1fr) 52px !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.shoji-theme .quantity-stepper button,
  body.shoji-theme .quantity-stepper__field {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.shoji-theme .glow-button--wide {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.shoji-theme .detail-panel,
  body.shoji-theme .product-sidebar .sidebar-panel {
    padding: 18px !important;
  }

  body.shoji-theme .detail-panel p {
    font-size: 20px !important;
    line-height: 1.42 !important;
  }

  body.shoji-theme .mini-product-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
  }

  body.shoji-theme .mini-product-card {
    padding: 18px !important;
    overflow: hidden !important;
  }

  body.shoji-theme .mini-product-card span {
    font-size: 24px !important;
    line-height: 1.12 !important;
  }

  body.shoji-theme .mini-product-card strong {
    font-size: 24px !important;
  }

  body.shoji-theme .home-footer__copyright {
    max-width: calc(100% - 40px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-wrap: anywhere !important;
    line-height: 1.35 !important;
  }
}

/* Cart QA correction: keep checkout focused and remove the oversized wave hero. */
body.shoji-theme .page-hero--cart {
  width: min(calc(100% - 56px), 1120px) !important;
  margin: 28px auto 22px !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 40, 161, 0.5), transparent 48%),
    linear-gradient(180deg, rgba(37, 12, 70, 0.98), rgba(27, 8, 55, 0.98)) !important;
  box-shadow: 0 0 22px rgba(25, 216, 255, 0.22), 0 22px 62px rgba(28, 9, 56, 0.45) !important;
}

body.shoji-theme .page-hero--cart .section-frame {
  width: 100% !important;
  padding: 46px 28px 48px !important;
}

body.shoji-theme .page-hero--cart h1 {
  margin: 0 0 14px !important;
  color: var(--text) !important;
  font-size: clamp(38px, 4.2vw, 56px) !important;
  line-height: 1.05 !important;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22) !important;
}

body.shoji-theme .page-hero--cart p {
  max-width: 760px !important;
  margin: 0 auto !important;
  color: var(--accent) !important;
  font-size: clamp(18px, 2.1vw, 26px) !important;
  line-height: 1.25 !important;
  letter-spacing: 0.16em !important;
}

body.shoji-theme .page-hero--cart .wave-divider,
body.shoji-theme .page-hero--cart .wave-divider::before {
  display: none !important;
  content: none !important;
}

body.shoji-theme .content-section.cart-page {
  padding-top: 16px !important;
}

@media (max-width: 720px) {
  body.shoji-theme .page-hero--cart {
    width: calc(100% - 28px) !important;
    margin: 18px auto 16px !important;
    border-radius: 18px !important;
  }

  body.shoji-theme .page-hero--cart .section-frame {
    padding: 34px 18px 36px !important;
  }

  body.shoji-theme .page-hero--cart h1 {
    font-size: clamp(32px, 9vw, 42px) !important;
  }

  body.shoji-theme .page-hero--cart p {
    max-width: 320px !important;
    font-size: 16px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.12em !important;
  }

  body.shoji-theme .content-section.cart-page {
    padding-top: 8px !important;
  }
}

/* Mobile cart QA: make line items compact enough for checkout. */
@media (max-width: 720px) {
  body.shoji-theme .cart-page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.shoji-theme .cart-layout {
    width: calc(100% - 28px) !important;
    gap: 14px !important;
  }

  body.shoji-theme .cart-items {
    gap: 12px !important;
  }

  body.shoji-theme .cart-item {
    display: grid !important;
    grid-template-columns: 86px minmax(0, 1fr) !important;
    grid-template-areas:
      "media details"
      "media price" !important;
    gap: 8px 12px !important;
    align-items: start !important;
    padding: 12px !important;
    border-radius: 18px !important;
  }

  body.shoji-theme .cart-item__media {
    grid-area: media !important;
  }

  body.shoji-theme .cart-item__media img {
    display: block !important;
    width: 86px !important;
    height: 86px !important;
    max-width: 86px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
  }

  body.shoji-theme .cart-item__details {
    grid-area: details !important;
    min-width: 0 !important;
    display: grid !important;
    gap: 6px !important;
  }

  body.shoji-theme .cart-item h2 {
    margin: 0 !important;
    font-size: 18px !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .cart-item__details p {
    margin: 0 !important;
    font-size: 16px !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere !important;
  }

  body.shoji-theme .cart-item .quantity-stepper {
    display: grid !important;
    grid-template-columns: 36px minmax(48px, 68px) 36px !important;
    gap: 6px !important;
    width: auto !important;
    max-width: 154px !important;
  }

  body.shoji-theme .cart-item .quantity-stepper button {
    width: 36px !important;
    height: 36px !important;
    min-height: 36px !important;
    border-radius: 10px !important;
    font-size: 18px !important;
  }

  body.shoji-theme .cart-item .quantity-stepper__field,
  body.shoji-theme .cart-item .quantity-stepper__field input {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 36px !important;
    height: 36px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
  }

  body.shoji-theme .cart-item__price {
    grid-area: price !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    min-width: 0 !important;
  }

  body.shoji-theme .cart-item__price strong {
    width: 100% !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  body.shoji-theme .cart-item .ghost-button {
    min-height: 32px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }

  body.shoji-theme .cart-summary {
    padding: 16px !important;
    border-radius: 18px !important;
  }

  body.shoji-theme .cart-summary h2 {
    font-size: 26px !important;
    line-height: 1.12 !important;
  }

  body.shoji-theme .cart-discount-preview {
    gap: 3px 10px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
  }

  body.shoji-theme .cart-discount-preview span,
  body.shoji-theme .cart-discount-preview strong {
    font-size: 15px !important;
    line-height: 1.1 !important;
  }

  body.shoji-theme .cart-discount-preview small {
    font-size: 13px !important;
  }

  body.shoji-theme .cart-upsell {
    gap: 8px !important;
    padding: 14px !important;
    border-radius: 16px !important;
  }

  body.shoji-theme .cart-upsell h3 {
    max-width: 260px !important;
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  body.shoji-theme .cart-upsell p {
    max-width: 280px !important;
    font-size: 15px !important;
    line-height: 1.28 !important;
  }

  body.shoji-theme .cart-upsell__button {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
  }
}

/* Collection QA correction: keep shop/category pages compact and remove the rough wave strip. */
body.shoji-theme .page-hero--collection {
  width: min(calc(100% - 56px), 980px) !important;
  margin: 28px auto 24px !important;
  border-radius: 22px !important;
}

body.shoji-theme .page-hero--collection .section-frame {
  width: 100% !important;
  padding: 44px 30px 38px !important;
}

body.shoji-theme .page-hero--collection h1 {
  margin: 0 0 18px !important;
  color: var(--text) !important;
  font-size: clamp(38px, 4.5vw, 58px) !important;
  letter-spacing: 0.1em !important;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.24) !important;
}

body.shoji-theme .page-hero--collection p {
  max-width: 720px !important;
  margin: 0 auto !important;
  color: var(--accent) !important;
  font-size: clamp(18px, 2.5vw, 28px) !important;
  line-height: 1.45 !important;
  letter-spacing: 0.12em !important;
}

body.shoji-theme .page-hero--collection .wave-divider,
body.shoji-theme .page-hero--collection .wave-divider::before {
  display: none !important;
  content: none !important;
}

body.shoji-theme .collection-category-nav a {
  min-width: 92px !important;
  border-radius: 12px !important;
}

body.shoji-theme .collection-category-nav a[aria-current="page"] {
  background: linear-gradient(135deg, #2adfff 0%, #9f46ff 100%) !important;
  border-color: rgba(42, 223, 255, 0.95) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(14, 3, 30, 0.55) !important;
  box-shadow: 0 0 18px rgba(42, 223, 255, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}

body.shoji-theme .product-grid--archive .product-card__link {
  display: grid !important;
  height: 100% !important;
  color: inherit !important;
  grid-template-rows: auto 1fr !important;
}

body.shoji-theme .product-grid--archive .product-card__content {
  display: grid !important;
  align-content: start !important;
  gap: 8px !important;
  padding: 12px 14px 18px !important;
  text-align: center !important;
}

body.shoji-theme .product-grid--archive .product-card__title {
  display: block !important;
  color: var(--accent) !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(18px, 1.45vw, 22px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.18 !important;
  text-transform: none !important;
  overflow-wrap: anywhere !important;
}

body.shoji-theme .product-grid--archive .product-card__price {
  display: block !important;
  margin: 0 !important;
  color: var(--accent) !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: clamp(17px, 1.2vw, 20px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}

body.shoji-theme .product-grid--archive .product-card__options {
  color: #78d9ff !important;
  font-size: 15px !important;
  font-style: italic !important;
  line-height: 1.1 !important;
}

@media (max-width: 720px) {
  body.shoji-theme .page-hero--collection {
    width: calc(100% - 48px) !important;
    margin: 22px auto 22px !important;
    border-radius: 22px !important;
  }

  body.shoji-theme .page-hero--collection .section-frame {
    padding: 44px 22px 34px !important;
  }

  body.shoji-theme .page-hero--collection h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
    letter-spacing: 0.08em !important;
  }

  body.shoji-theme .page-hero--collection p {
    max-width: 430px !important;
    font-size: 21px !important;
    letter-spacing: 0.1em !important;
  }

  body.shoji-theme .product-grid--archive .product-card__content {
    padding: 12px 10px 16px !important;
    gap: 8px !important;
  }

  body.shoji-theme .product-grid--archive .product-card__title {
    font-size: clamp(18px, 4.35vw, 22px) !important;
    line-height: 1.14 !important;
  }

  body.shoji-theme .product-grid--archive .product-card__price {
    font-size: clamp(18px, 4vw, 21px) !important;
  }

  body.shoji-theme .pagination-shell {
    width: min(100%, calc(100vw - 32px)) !important;
    margin: 22px auto 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  body.shoji-theme .pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body.shoji-theme .pagination a,
  body.shoji-theme .pagination span {
    flex: 0 0 auto !important;
    min-width: 52px !important;
    max-width: 100% !important;
    height: 52px !important;
    padding: 0 14px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
  }

  body.shoji-theme .pagination a:first-child,
  body.shoji-theme .pagination span:first-child,
  body.shoji-theme .pagination a:last-child,
  body.shoji-theme .pagination span:last-child {
    flex: 1 1 126px !important;
    min-width: 126px !important;
    max-width: 164px !important;
  }
}

/* Product review widget QA: make rating stars readable against the dark product page. */
body:not(.home-mockup) [class*="fera"][class*="star"],
body:not(.home-mockup) [class*="fera"] [class*="star"],
body:not(.home-mockup) [class*="review"][class*="star"],
body:not(.home-mockup) [class*="review"] [class*="star"],
body:not(.home-mockup) [class*="rating"][class*="star"],
body:not(.home-mockup) [class*="rating"] [class*="star"],
body:not(.home-mockup) [class*="stamped"][class*="star"],
body:not(.home-mockup) [class*="stamped"] [class*="star"],
body:not(.home-mockup) [class*="yotpo"][class*="star"],
body:not(.home-mockup) [class*="yotpo"] [class*="star"],
body:not(.home-mockup) [class*="loox"][class*="star"],
body:not(.home-mockup) [class*="loox"] [class*="star"] {
  color: var(--accent) !important;
  fill: var(--accent) !important;
  stroke: var(--accent) !important;
  text-shadow: 0 0 8px rgba(42, 223, 255, 0.9), 0 0 18px rgba(42, 223, 255, 0.45) !important;
  opacity: 1 !important;
}

body:not(.home-mockup) [class*="fera"][class*="star"] svg,
body:not(.home-mockup) [class*="fera"] [class*="star"] svg,
body:not(.home-mockup) [class*="review"][class*="star"] svg,
body:not(.home-mockup) [class*="review"] [class*="star"] svg,
body:not(.home-mockup) [class*="rating"][class*="star"] svg,
body:not(.home-mockup) [class*="rating"] [class*="star"] svg,
body:not(.home-mockup) [class*="stamped"][class*="star"] svg,
body:not(.home-mockup) [class*="stamped"] [class*="star"] svg,
body:not(.home-mockup) [class*="yotpo"][class*="star"] svg,
body:not(.home-mockup) [class*="yotpo"] [class*="star"] svg,
body:not(.home-mockup) [class*="loox"][class*="star"] svg,
body:not(.home-mockup) [class*="loox"] [class*="star"] svg {
  color: var(--accent) !important;
  fill: var(--accent) !important;
  filter: drop-shadow(0 0 6px rgba(42, 223, 255, 0.9)) drop-shadow(0 0 14px rgba(42, 223, 255, 0.42)) !important;
  opacity: 1 !important;
}

body:not(.home-mockup) [class*="fera"][class*="star"] svg *,
body:not(.home-mockup) [class*="fera"] [class*="star"] svg *,
body:not(.home-mockup) [class*="review"][class*="star"] svg *,
body:not(.home-mockup) [class*="review"] [class*="star"] svg *,
body:not(.home-mockup) [class*="rating"][class*="star"] svg *,
body:not(.home-mockup) [class*="rating"] [class*="star"] svg *,
body:not(.home-mockup) [class*="stamped"][class*="star"] svg *,
body:not(.home-mockup) [class*="stamped"] [class*="star"] svg *,
body:not(.home-mockup) [class*="yotpo"][class*="star"] svg *,
body:not(.home-mockup) [class*="yotpo"] [class*="star"] svg *,
body:not(.home-mockup) [class*="loox"][class*="star"] svg *,
body:not(.home-mockup) [class*="loox"] [class*="star"] svg * {
  fill: var(--accent) !important;
  stroke: var(--accent) !important;
  opacity: 1 !important;
}

/* Product review widget QA follow-up: product pages also carry the shared home-mockup body class. */
body.shoji-theme:not(.page-home) [class*="fera"],
body.shoji-theme:not(.page-home) [class*="rating"],
body.shoji-theme:not(.page-home) [class*="review-summary"],
body.shoji-theme:not(.page-home) [class*="reviews-summary"],
body.shoji-theme:not(.page-home) [class*="product-reviews"],
body.shoji-theme:not(.page-home) [class*="stamped"],
body.shoji-theme:not(.page-home) [class*="yotpo"],
body.shoji-theme:not(.page-home) [class*="loox"] {
  color: var(--accent) !important;
}

body.shoji-theme:not(.page-home) [class*="star"],
body.shoji-theme:not(.page-home) [class*="stars"],
body.shoji-theme:not(.page-home) [class*="rating"] *,
body.shoji-theme:not(.page-home) [class*="review-summary"] *,
body.shoji-theme:not(.page-home) [class*="reviews-summary"] *,
body.shoji-theme:not(.page-home) [class*="product-reviews"] *,
body.shoji-theme:not(.page-home) [class*="fera"] *,
body.shoji-theme:not(.page-home) [class*="stamped"] *,
body.shoji-theme:not(.page-home) [class*="yotpo"] *,
body.shoji-theme:not(.page-home) [class*="loox"] * {
  color: var(--accent) !important;
  fill: var(--accent) !important;
  stroke: var(--accent) !important;
  opacity: 1 !important;
  text-shadow: 0 0 7px rgba(42, 223, 255, 0.95), 0 0 18px rgba(42, 223, 255, 0.48) !important;
}

body.shoji-theme:not(.page-home) [class*="star"]::before,
body.shoji-theme:not(.page-home) [class*="star"]::after,
body.shoji-theme:not(.page-home) [class*="stars"]::before,
body.shoji-theme:not(.page-home) [class*="stars"]::after,
body.shoji-theme:not(.page-home) [class*="rating"] *::before,
body.shoji-theme:not(.page-home) [class*="rating"] *::after,
body.shoji-theme:not(.page-home) [class*="fera"] *::before,
body.shoji-theme:not(.page-home) [class*="fera"] *::after,
body.shoji-theme:not(.page-home) [class*="stamped"] *::before,
body.shoji-theme:not(.page-home) [class*="stamped"] *::after,
body.shoji-theme:not(.page-home) [class*="yotpo"] *::before,
body.shoji-theme:not(.page-home) [class*="yotpo"] *::after,
body.shoji-theme:not(.page-home) [class*="loox"] *::before,
body.shoji-theme:not(.page-home) [class*="loox"] *::after {
  color: var(--accent) !important;
  fill: var(--accent) !important;
  stroke: var(--accent) !important;
  opacity: 1 !important;
  text-shadow: 0 0 7px rgba(42, 223, 255, 0.95), 0 0 18px rgba(42, 223, 255, 0.48) !important;
}

body.shoji-theme:not(.page-home) [class*="star"] svg,
body.shoji-theme:not(.page-home) [class*="stars"] svg,
body.shoji-theme:not(.page-home) [class*="rating"] svg,
body.shoji-theme:not(.page-home) [class*="fera"] svg,
body.shoji-theme:not(.page-home) [class*="stamped"] svg,
body.shoji-theme:not(.page-home) [class*="yotpo"] svg,
body.shoji-theme:not(.page-home) [class*="loox"] svg {
  filter: drop-shadow(0 0 6px rgba(42, 223, 255, 0.95)) drop-shadow(0 0 16px rgba(42, 223, 255, 0.5)) !important;
}

body:not(.shoji-theme) .product h1 + *,
body:not(.shoji-theme) .product h1 + * *,
body:not(.shoji-theme) .product_page h1 + *,
body:not(.shoji-theme) .product_page h1 + * *,
body:not(.shoji-theme) .product-details h1 + *,
body:not(.shoji-theme) .product-details h1 + * *,
body:not(.shoji-theme) .product_info h1 + *,
body:not(.shoji-theme) .product_info h1 + * *,
body:not(.shoji-theme) .product-info h1 + *,
body:not(.shoji-theme) .product-info h1 + * * {
  color: var(--accent, #2adfff) !important;
  fill: var(--accent, #2adfff) !important;
  stroke: var(--accent, #2adfff) !important;
  opacity: 1 !important;
  text-shadow: 0 0 7px rgba(42, 223, 255, 0.95), 0 0 18px rgba(42, 223, 255, 0.48) !important;
}

/* Final product-card title color guard. */
body.shoji-theme .product-card__title,
body.shoji-theme .product-card h3,
body.shoji-theme .product-card h3 a {
  color: var(--accent) !important;
}
