/*
 Theme Name:   Blocksy Child – NostalG
 Theme URI:    https://example.local/
 Description:  Child theme for Blocksy with NostalG palette and basics.
 Author:       NostalG
 Template:     blocksy
 Version:      0.1.0
 Text Domain:  blocksy-child
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Base palette derived from NostalG mark: */
:root {
  /* Brand accents */
  --nostalg-gold: #d4af37; /* signature gold */
  --nostalg-gold-strong: #b8860b; /* hover/focus gold */
  --nostalg-gold-soft: #f4daa0; /* gradient helper */

  /* Legacy alias so existing vars keep working */
  --nostalg-pink: var(--nostalg-gold);
  --nostalg-pink-strong: var(--nostalg-gold-strong);
  --nostalg-pink-soft: var(--nostalg-gold-soft);

  /* Supporting tones */
  --nostalg-yellow: var(--nostalg-gold);
  --nostalg-black: #0e0e0e;
  --nostalg-white: #ffffff;
  --nostalg-gray-100: #f7fbff;
  --nostalg-gray-300: #e1e8ed;
  --nostalg-critical: #571c1c;
  --nostalg-critical-soft: #fff1f1;

  --nostalg-button-black: #050505;
  --nostalg-button-black-hover: #151515;

  /* Derived helpers */
  --nostalg-primary: var(--nostalg-gold);
  --nostalg-primary-strong: var(--nostalg-gold-strong);
  --nostalg-primary-soft: var(--nostalg-gold-soft);

  /* Layer stack */
  --layer-nav: 1200;
  --layer-nav-top: 1210;
  /* Keep navbar above content but below drawers */
  --layer-mobile-overlay: 199000;
  --layer-mobile-panel: 200000;
  /* Product filter drawer sits above navbar + nav overlay */
  --layer-filter-backdrop: 5100;
  --layer-filter-panel: 5300;
  /* Mini-cart stays below filters to avoid collisions */
  --layer-cart-backdrop: 2550;
  --layer-cart-panel: 2600;
}

/* Map to Blocksy palette variables for quick theming */
:root {
  --theme-palette-color-1: var(--nostalg-primary);
  --theme-palette-color-2: var(--nostalg-primary-soft);
  --theme-palette-color-3: var(--nostalg-black);
  --theme-palette-color-4: #0f0f0d; /* deep neutral for contrast */
  --theme-palette-color-5: var(--nostalg-gray-300);
  --theme-palette-color-6: #f2f5f7;
  --theme-palette-color-7: #fafbfc;
  --theme-palette-color-8: var(--nostalg-white);

  --theme-link-initial-color: var(--nostalg-primary);
  --theme-link-hover-color: var(--nostalg-black);
  --theme-link-active-color: var(--nostalg-black);
  --theme-selection-text-color: rgba(12, 12, 12, 0.95);
  --theme-selection-background-color: rgba(0, 0, 0, 0.12);

  --theme-button-background-initial-color: var(--nostalg-button-black);
  --theme-button-background-hover-color: var(--nostalg-button-black-hover);
  --theme-button-text-initial-color: #ffffff;
  --theme-button-text-hover-color: #ffffff;
  --theme-button-border: 1px solid transparent;
  --theme-button-border-hover-color: transparent;

  --wp--preset--color--primary: var(--nostalg-primary);
  --wp--preset--color--secondary: var(--nostalg-yellow);
  --wp--preset--color--contrast: var(--nostalg-black);
}

::selection {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(12, 12, 12, 0.95);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.12);
  color: rgba(12, 12, 12, 0.95);
}

a,
a:visited {
  color: var(--nostalg-primary);
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--nostalg-black);
}

a:focus-visible {
  outline: 3px solid var(--nostalg-black);
  outline-offset: 2px;
}

/* Breadcrumbs */
.ct-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.35rem;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, "Courier New", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 0.4rem 0 0.9rem;
}

.ct-breadcrumbs > span {
  display: inline-flex;
  align-items: center;
}

.ct-breadcrumbs .ct-separator {
  margin: 0 0.6rem;
  color: #b3b3b3;
  font-size: 0.6rem;
  letter-spacing: 0;
  transform: translateY(-1px);
}

.ct-breadcrumbs a {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.ct-breadcrumbs a:hover,
.ct-breadcrumbs a:focus-visible {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.45);
}

.ct-breadcrumbs .last-item span {
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.08em;
}

@media (min-width: 1025px) {
  .single-product .hero-section .ct-breadcrumbs {
    margin-top: 12px;
    margin-bottom: clamp(1rem, 1.8vw, 1.6rem);
  }
}

/* Square everything out */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

/* Buttons */
.wp-element-button,
.wp-block-button__link,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wpforms-submit,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border: 1px solid var(--nostalg-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.wp-element-button:hover,
.wp-block-button__link:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wpforms-submit:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: var(--nostalg-white) !important;
}
.wp-element-button:focus-visible,
.wp-block-button__link:focus-visible,
.button:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible,
.wpforms-submit:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible,
input[type="button"]:focus-visible,
input[type="reset"]:focus-visible {
  outline: 3px solid var(--nostalg-black) !important;
  outline-offset: 2px;
}

.added_to_cart,
.add_to_cart_button,
.single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--nostalg-black) !important;
  border: 1px solid var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  transform: translateY(0);
}

.added_to_cart:hover,
.add_to_cart_button:hover,
.single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.added_to_cart:focus-visible,
.add_to_cart_button:focus-visible,
.single_add_to_cart_button:focus-visible,
.woocommerce #respond input#submit:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
  background: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
  transform: translateY(-1px);
}

.add_to_cart_button.nostalg-hidden {
  display: none !important;
}

.ct-woo-card-actions .added_to_cart.wc-forward {
  display: none !important;
}

.ct-cart-actions .added_to_cart.wc-forward {
  display: none !important;
}

.page-template-page-products .added_to_cart.wc-forward {
  display: none !important;
}

.ct-woo-card-actions .nostalg-view-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: 0.35rem;
  background: var(--nostalg-button-black) !important;
  border: 1px solid var(--nostalg-button-black) !important;
  color: var(--nostalg-white) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ct-woo-card-actions .nostalg-view-cart-button:hover,
.ct-woo-card-actions .nostalg-view-cart-button:focus-visible {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: var(--nostalg-white) !important;
}

.ct-cart-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.65rem, 1.4vw, 0.95rem);
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.1rem);
  margin-top: clamp(0.75rem, 1.8vw, 1.25rem);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: var(--theme-palette-color-8, #fff);
  box-shadow: 0 12px 30px rgba(15, 15, 20, 0.05);
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ct-cart-actions .quantity {
  flex: 0 0 auto;
  width: 100%;
  margin: 0;
}

.ct-cart-actions .single_add_to_cart_button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
  padding-inline: clamp(1rem, 1.6vw, 1.5rem)
      clamp(2rem, 3vw, 2.5rem);
  min-height: 44px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--nostalg-button-black, var(--nostalg-black)) !important;
  border: 2px solid var(--nostalg-button-black, var(--nostalg-black)) !important;
  color: var(--nostalg-white) !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.ct-cart-actions .single_add_to_cart_button.nostalg-hidden {
  display: none !important;
}

[data-products] .ct-woo-card-actions .button,
[data-products] .ct-woo-card-actions .added_to_cart {
  border: 1px solid var(--nostalg-button-black) !important;
  background: var(--nostalg-button-black) !important;
  color: var(--nostalg-white) !important;
}

.ct-cart-actions .single_add_to_cart_button,
[data-products] .ct-woo-card-actions .button,
[data-products] .ct-woo-card-actions .added_to_cart {
  border-radius: 0;
  text-transform: uppercase;
}

.ct-cart-actions .single_add_to_cart_button:hover,
.ct-cart-actions .single_add_to_cart_button:focus-visible,
[data-products] .ct-woo-card-actions .button:hover,
[data-products] .ct-woo-card-actions .button:focus-visible,
[data-products] .ct-woo-card-actions .added_to_cart:hover,
[data-products] .ct-woo-card-actions .added_to_cart:focus-visible {
  background: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
  transform: translateY(-1px);
}

.ct-cart-actions:hover,
.ct-cart-actions:focus-within {
  border-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 25px 60px rgba(16, 16, 16, 0.12);
  transform: translateY(-2px);
}

/* Single product layout + conversion-focused hierarchy */
.single-product .summary {
  --summary-pad: clamp(1.05rem, 2.2vw, 2.2rem);
  --summary-gap: clamp(0.4rem, 0.9vw, 0.7rem);
  padding: var(--summary-pad);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--summary-gap);
  align-content: start;
  grid-auto-rows: min-content;
  max-width: 100%;
  min-height: 0;
}

.single-product .summary.entry-summary.entry-summary-items {
  position: sticky;
  top: calc(var(--ionso-nav-safe, 120px) + 12px);
  max-height: none;
  overflow: visible;
}

.single-product .summary .ct-product-divider {
  display: none;
  order: 98;
  grid-column: 1 / -1;
  margin: 0;
}

.single-product .summary .product_title {
  order: 1;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.single-product .summary .price {
  order: 3;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  margin-top: 0.2rem;
  line-height: 1.15;
}

.single-product .summary .price del {
  opacity: 0.45;
  font-weight: 500;
}

.single-product .summary .price ins {
  text-decoration: none;
}

.single-product .legal-price-info {
  order: 5;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}

.single-product .summary > * {
  margin-top: 0;
  margin-bottom: 0;
}

.single-product .summary .woocommerce-product-rating {
  order: 2;
  margin-top: 0.35rem;
}

.single-product .summary form.cart {
  order: 8;
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.4rem, 1vw, 0.7rem);
  width: 100%;
}

.single-product .summary .single_add_to_cart_button {
  padding: 0.9rem 1.2rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  transform: none;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-sizing: border-box;
}

.single-product .summary .single_add_to_cart_button .ct-icon,
.single-product .summary .single_add_to_cart_button svg,
.single-product .summary .single_add_to_cart_button .ct-icon-container {
  position: static !important;
  margin: 0;
  flex: 0 0 auto;
}

.single-product .summary .single_add_to_cart_button::after {
  position: static !important;
  margin-left: 0.6rem;
  transform: none !important;
}

.single-product .summary .single_add_to_cart_button::before {
  content: none !important;
}

.single-product .summary .single_add_to_cart_button:hover,
.single-product .summary .single_add_to_cart_button:focus-visible {
  background: var(--nostalg-black) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  transform: none;
}

.nostalg-live-viewers {
  order: 6;
  display: none;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  margin: 0.6rem 0 0.4rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nostalg-live-viewers.is-revealing,
.nostalg-live-viewers.is-visible,
.nostalg-live-viewers.is-hiding {
  display: inline-flex;
}

.nostalg-live-viewers.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nostalg-live-viewers.is-hiding {
  opacity: 0;
  transform: translateY(6px);
}

.nostalg-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.25);
  animation: nostalg-live-pulse 2.2s ease-out infinite;
}

.nostalg-live-hot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 0.35rem;
}

.nostalg-live-hot[hidden] {
  display: none !important;
}

.nostalg-live-viewers.is-hot .nostalg-live-dot {
  background: #ff8a00;
}

.nostalg-live-viewers.is-flash {
  animation: nostalg-live-flash 0.6s ease-out;
}

.nostalg-live-viewers.is-attention {
  animation: nostalg-live-attention 0.9s ease-out;
}

@keyframes nostalg-live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes nostalg-live-flash {
  0% {
    background: #ffffff;
  }
  45% {
    background: #f4f4f4;
  }
  100% {
    background: #ffffff;
  }
}

@keyframes nostalg-live-attention {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  45% {
    transform: translateY(-2px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.single-product .woocommerce-product-details__short-description {
  order: 6;
  margin-top: 0.8rem;
  color: #1a1a1a;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.single-product .summary .stock {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.single-product .ct-product-divider {
  display: none !important;
  order: 98;
  margin: 0;
}

.single-product .summary .ct-product-add-to-cart {
  order: 8;
}

.single-product .product_meta {
  order: 999;
  margin-top: 0.9rem;
  grid-column: 1 / -1;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}

.single-product .summary .nostalg-product-condition {
  order: 7;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  margin-top: 0.35rem;
}

.single-product .summary .nostalg-product-condition .nostalg-condition-stars {
  font-size: 0.85rem;
  letter-spacing: 0;
}

.single-product .summary .ct-cart-actions {
  padding: 0;
  margin-top: 0.3rem;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  gap: 0.5rem;
  width: 100%;
}

.single-product .summary .ct-cart-actions:hover,
.single-product .summary .ct-cart-actions:focus-within {
  box-shadow: none;
  transform: none;
}

.single-product .summary .ct-cart-actions .single_add_to_cart_button {
  width: 100%;
  min-height: 46px;
  font-size: clamp(0.8rem, 0.7rem + 0.35vw, 0.95rem);
  letter-spacing: 0.08em;
}

.single-product .summary .ct-cart-actions.nostalg-cart-added .single_add_to_cart_button {
  animation: nostalg-cart-pop 0.6s ease-out;
}

@keyframes nostalg-cart-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.nostalg-paypal-quick {
  order: 9;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
  margin-top: 0.4rem;
}

.nostalg-paypal-trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  border: 1px solid rgba(0, 0, 0, 0.7);
  background: #ffffff;
  color: #050505;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.75rem, 0.65rem + 0.35vw, 0.9rem);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nostalg-paypal-trigger:hover,
.nostalg-paypal-trigger:focus-visible {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505 !important;
}

.nostalg-paypal-quick.is-loading .nostalg-paypal-trigger {
  opacity: 0.7;
}

.nostalg-paypal-quick.is-ready .nostalg-paypal-trigger {
  display: none;
}

.nostalg-paypal-shell {
  width: 100%;
  min-height: 48px;
}

.nostalg-paypal-quick.is-ready .nostalg-paypal-shell {
  min-height: 110px;
}

.nostalg-paypal-status {
  min-height: 1rem;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.6);
}

.single-product .summary .ppc-button-wrapper,
.single-product .summary #ppcp-recaptcha-v2-container {
  display: none !important;
}

.single-product .nostalg-paypal-shell .ppc-button-wrapper,
.single-product .nostalg-paypal-shell #ppcp-recaptcha-v2-container {
  display: block !important;
}

.single-product .product_meta a {
  color: inherit;
}

.single-product .product-entry-wrapper > .woocommerce-product-gallery,
.single-product .product-entry-wrapper > .summary {
  width: 100%;
}

.single-product .woocommerce-product-gallery {
  position: static !important;
  top: auto !important;
  margin-inline: auto;
  max-width: min(100%, 640px);
}

.single-product .woocommerce-product-gallery__wrapper,
.single-product .woocommerce-product-gallery__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-product .woocommerce-product-gallery__image img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(280px, 55vh, 520px);
}

@media (min-width: 1025px) {
  .single-product .product {
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
      'gallery summary'
      'tabs summary'
      'related related';
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
    overflow: visible;
  }

  .single-product .product-entry-wrapper {
    display: contents;
  }

  .single-product .woocommerce-product-gallery {
    grid-area: gallery;
  }

  .single-product .summary {
    grid-area: summary;
    grid-column: 2 / 3;
    position: sticky;
    top: calc(var(--ionso-nav-safe, 120px) + 16px);
    align-self: start;
    max-height: none;
    overflow: visible;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    grid-template-areas:
      'title title'
      'rating rating'
      'price price'
      'viewers viewers'
      'legal legal'
      'description description'
      'condition condition'
      'cart cart'
      'paypal paypal';
    column-gap: clamp(0.75rem, 1.6vw, 1.3rem);
    row-gap: clamp(0.35rem, 1vw, 0.65rem);
    align-content: start;
    grid-auto-rows: min-content;
  }

  .single-product .woocommerce-tabs {
    grid-area: tabs;
    grid-column: 1 / 2;
    align-self: start;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
}

@media (min-width: 1025px) {
  .single-product .summary .product_title {
    grid-area: title;
  }

  .single-product .summary .woocommerce-product-rating {
    grid-area: rating;
    margin-top: 0.1rem;
  }

  .single-product .summary .price {
    grid-area: price;
  }

  .single-product .summary .nostalg-live-viewers {
    grid-area: viewers;
    justify-self: start;
  }

  .single-product .summary .legal-price-info {
    grid-area: legal;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    grid-area: description;
  }

  .single-product .summary .nostalg-product-condition {
    grid-area: condition;
    justify-self: start;
    align-self: start;
  }

  .single-product .summary .ct-product-add-to-cart {
    grid-area: cart;
  }

  .single-product .summary .nostalg-paypal-quick {
    grid-area: paypal;
  }

  .single-product .summary .ct-product-divider {
    display: block;
    margin-top: 0.6rem;
  }

  .single-product .summary .nostalg-live-viewers {
    margin-top: 0.3rem;
  }
}

@media (min-width: 1025px) {
  .single-product .summary .woocommerce-product-details__short-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .single-product .summary {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 1024px) {
  .single-product .summary.entry-summary.entry-summary-items {
    top: calc(var(--ionso-nav-safe, 96px) + 8px);
    max-height: none;
    overflow: visible;
  }

  .single-product .summary {
    --summary-pad: clamp(0.85rem, 2.6vw, 1.2rem);
    --summary-gap: clamp(0.3rem, 1.2vw, 0.6rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      'title title'
      'price price'
      'viewers viewers'
      'legal legal'
      'description description'
      'condition condition'
      'cart cart'
      'paypal paypal';
    align-content: start;
    grid-auto-rows: min-content;
  }

  .single-product .summary .product_title {
    grid-area: title;
  }

  .single-product .summary .price {
    grid-area: price;
  }

  .single-product .summary .nostalg-product-condition {
    grid-area: condition;
    justify-self: start;
    align-self: center;
    white-space: nowrap;
  }

  .single-product .summary .nostalg-live-viewers {
    grid-area: viewers;
    justify-self: start;
  }

  .single-product .summary .legal-price-info {
    grid-area: legal;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    grid-area: description;
  }

  .single-product .summary .ct-product-add-to-cart,
  .single-product .summary form.cart {
    grid-area: cart;
  }

  .single-product .summary .nostalg-paypal-quick {
    grid-area: paypal;
  }

  .single-product .summary .woocommerce-product-rating {
    display: none !important;
  }

  .single-product .summary .product_title {
    font-size: clamp(1.2rem, 4.4vw, 1.6rem);
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }

  .single-product .summary .price {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
  }

  .single-product .legal-price-info {
    font-size: 0.72rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .single-product .summary .woocommerce-product-rating {
    margin-top: 0.2rem;
  }

  .single-product .woocommerce-product-details__short-description {
    margin-top: 0.5rem;
    line-height: 1.45;
    font-size: 0.92rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .nostalg-live-viewers {
    margin: 0.3rem 0 0.2rem;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
  }

  .single-product .ct-product-divider {
    display: block;
    margin-top: 0.6rem;
  }

  .single-product .summary .nostalg-size-picker {
    gap: 0.45rem;
    margin-bottom: 0.4rem;
  }

  .single-product .summary .nostalg-size-picker__label {
    font-size: 0.7rem;
  }

  .single-product .summary .nostalg-size-option {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
  }

  .single-product .summary .ct-cart-actions {
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    margin-top: 0.45rem;
    box-shadow: 0 8px 18px rgba(15, 15, 20, 0.05);
  }

  .single-product .summary .ct-cart-actions .single_add_to_cart_button {
    padding-inline: 0.9rem 2.2rem;
    font-size: 0.75rem;
  }

  .single-product .product_meta {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    font-size: 0.65rem;
    gap: 0.25rem 0.6rem;
  }
}

@media (max-width: 768px) {
  .single-product .summary .woocommerce-product-rating {
    display: none !important;
  }

  .single-product .summary {
    --summary-pad: 0.75rem;
    --summary-gap: 0.3rem;
  }

  .single-product .woocommerce-product-details__short-description {
    -webkit-line-clamp: 2;
    font-size: 0.88rem;
  }

  .single-product .product_meta {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 0.62rem;
    gap: 0.2rem 0.5rem;
  }
}

@media (max-width: 1024px) and (max-height: 740px) {
  .single-product .summary {
    --summary-pad: 0.75rem;
    --summary-gap: 0.3rem;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 2;
  }

  .single-product .summary .woocommerce-product-rating {
    display: none;
  }
}

@media (min-width: 1025px) and (max-height: 900px) {
  .single-product .summary {
    padding: 1.1rem 1.35rem;
    gap: 0.6rem;
  }

  .single-product .summary .product_title {
    font-size: 1.55rem;
  }

  .single-product .summary .price {
    font-size: 1.55rem;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 1025px) and (max-height: 820px) {
  .single-product .summary {
    top: calc(var(--ionso-nav-safe, 120px) + 8px);
    padding: 1rem 1.2rem;
    gap: 0.5rem;
  }

  .single-product .summary .product_title {
    font-size: 1.5rem;
  }

  .single-product .summary .price {
    font-size: 1.5rem;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 2;
  }

  .single-product .summary .single_add_to_cart_button {
    padding: 0.75rem 1.1rem;
  }
}

@media (min-width: 1025px) and (max-height: 760px) {
  .single-product .summary {
    padding: 1rem 1.15rem;
    gap: 0.5rem;
  }

  .single-product .summary .product_title {
    font-size: 1.45rem;
  }

  .single-product .summary .price {
    font-size: 1.45rem;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 2;
  }
}

@media (min-width: 1025px) and (max-height: 700px) {
  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 1;
  }

  .single-product .summary .woocommerce-product-rating {
    display: none;
  }
}

@media (max-height: 820px) {
  .single-product .summary .woocommerce-product-rating {
    display: none !important;
  }
}

@media (max-height: 760px) {
  .single-product .summary {
    --summary-pad: clamp(0.55rem, 1.1vw, 0.85rem);
    --summary-gap: clamp(0.16rem, 0.6vw, 0.35rem);
  }

  .single-product .summary .product_title {
    font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  }

  .single-product .summary .price {
    font-size: clamp(1.05rem, 3vw, 1.35rem);
  }

  .single-product .legal-price-info {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 2;
    font-size: 0.84rem;
  }

  .nostalg-live-viewers {
    margin-top: 0.25rem;
  }

  .single-product .summary .nostalg-size-picker {
    gap: 0.35rem;
    margin-bottom: 0.45rem;
  }

  .single-product .summary .nostalg-size-picker__label {
    font-size: 0.65rem;
  }

  .single-product .summary .nostalg-size-option {
    font-size: 0.68rem;
    padding: 0.2rem 0.45rem;
  }

  .single-product .summary .ct-cart-actions {
    gap: 0.4rem;
    padding: 0.6rem 0.75rem;
  }

  .single-product .summary .single_add_to_cart_button {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    min-height: 40px;
  }

  .nostalg-paypal-trigger {
    min-height: 40px;
    font-size: 0.72rem;
  }

  .single-product .summary .woocommerce-product-rating {
    display: none;
  }

  .single-product .legal-price-info {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .single-product .product_meta {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    font-size: 0.6rem;
  }
}

@media (max-height: 680px) {
  .single-product .summary .woocommerce-product-rating {
    display: none;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    -webkit-line-clamp: 1;
  }
}

@media (max-width: 480px) {
  .single-product .summary.entry-summary.entry-summary-items {
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .single-product .summary {
    --summary-pad: 0.7rem;
    --summary-gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .single-product .summary .product_title {
    font-size: 1.15rem;
  }

  .single-product .summary .price {
    font-size: 1.05rem;
  }
}

@media (min-width: 1200px) and (max-height: 740px) {
  .single-product .summary {
    padding: 0.85rem 1rem;
    gap: 0.4rem;
    max-height: calc(100vh - var(--ionso-nav-safe, 120px) - 16px);
  }

  .single-product .summary .product_title {
    font-size: 1.3rem;
    margin-bottom: 0.35rem;
  }

  .single-product .summary .price {
    font-size: 1.3rem;
  }

  .single-product .summary .woocommerce-product-details__short-description {
    display: block;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
    overflow: visible;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .single-product .summary .woocommerce-product-rating {
    margin-top: 0.2rem;
  }

  .single-product .summary .star-rating {
    font-size: 0.85rem;
  }

  .single-product .summary .stock {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }

  .single-product .summary .single_add_to_cart_button {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .nostalg-live-viewers {
    padding: 0.25rem 0.55rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 768px) {
  .single-product .woocommerce-product-gallery {
    max-width: min(100%, 440px);
  }

  .single-product .woocommerce-product-gallery__image img {
    max-height: clamp(220px, 45vh, 380px);
  }
}

.single-product .related.products {
  grid-area: related;
  --related-card-width: clamp(200px, 68vw, 320px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    'title'
    'track';
  align-items: start;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding: clamp(1rem, 2vw, 1.5rem) 0 0;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  background: transparent;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: visible;
}

.single-product .related.products.is-width-constrained {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

.single-product .related.products .ct-container {
  overflow: visible;
}

.single-product .related.products .ct-module-title {
  grid-area: title;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  width: 100%;
}

.single-product .related.products .nostalg-related-track {
  grid-area: track;
  position: relative;
  overflow: visible;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
  will-change: opacity, filter, transform;
}

.single-product .related.products .products {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0.8rem;
  display: flex !important;
  gap: 1rem;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
  cursor: grab;
  align-items: stretch;
  padding-inline: clamp(0.5rem, 2vw, 1.5rem);
  scroll-padding-inline: clamp(0.5rem, 2vw, 1.5rem);
}

.single-product .related.products .products::-webkit-scrollbar {
  height: 0;
}

.single-product .related.products .products.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.single-product .related.products .product {
  flex: 0 0 var(--related-card-width);
  max-width: var(--related-card-width);
  min-width: var(--related-card-width);
  scroll-snap-align: start;
  align-self: stretch;
}

.single-product .related.products ul.products[class*='columns-'] li.product {
  flex: 0 0 var(--related-card-width) !important;
  width: var(--related-card-width) !important;
  max-width: var(--related-card-width) !important;
}

.single-product .related.products .nostalg-related-loader {
  grid-area: track;
  justify-self: center;
  align-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(7, 7, 7, 0.65);
  opacity: 0;
  transform: translateY(8px);
  filter: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  z-index: 4;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.single-product .related.products.is-loading .nostalg-related-loader {
  opacity: 1;
  transform: translateY(0);
  animation: nostalg-related-loader-rise 1.4s ease-in-out infinite;
}

.single-product .related.products.is-loading .nostalg-related-track {
  opacity: 0.6;
  filter: blur(1.2px);
  transform: translateY(2px);
}

.single-product .related.products.is-loading .products {
  pointer-events: none;
}

@keyframes nostalg-related-loader-breathe {
  0% {
    box-shadow: 0 10px 26px rgba(12, 12, 12, 0.12);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 16px 36px rgba(12, 12, 12, 0.2);
    opacity: 1;
  }
  100% {
    box-shadow: 0 10px 26px rgba(12, 12, 12, 0.12);
    opacity: 0.85;
  }
}

@keyframes nostalg-related-loader-rise {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-product .related.products.is-loading .nostalg-related-loader {
    animation: none;
    transform: translateY(0);
    opacity: 1;
  }
}

.single-product .nostalg-related-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  --flexy-nav-arrow-top-offset: calc(50% - 20px);
}

.single-product .nostalg-related-nav {
  pointer-events: auto;
  border: none;
  padding: 0;
}

.single-product .nostalg-related-nav:disabled {
  opacity: 0.35 !important;
  pointer-events: none;
}

.single-product .nostalg-related-controls [class*='flexy-arrow'] {
  color: #050505 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(5, 5, 5, 0.35);
  box-shadow: 0 18px 35px rgba(5, 5, 5, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 2;
}

.single-product .nostalg-related-controls [class*='flexy-arrow']:hover,
.single-product .nostalg-related-controls [class*='flexy-arrow']:focus-visible {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505;
}

.single-product .related.products .woocommerce-loop-product__title {
  font-size: 0.8rem;
  line-height: 1.3;
  margin: 0.35rem 0 0.2rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

.single-product .related.products .price {
  font-size: 0.85rem;
  font-weight: 600;
}

.single-product .related.products .nostalg-condition-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.3rem;
  width: 100%;
}

.single-product .related.products .nostalg-condition-label {
  font-weight: 600;
}

.single-product .related.products .nostalg-condition-stars {
  color: #d4a72c;
  letter-spacing: 0;
  font-size: 0.8rem;
}

.single-product .related.products .entry-meta {
  display: none !important;
}

.single-product .related.products .wc-gzd-additional-info {
  display: block;
  order: 4;
  font-size: 0.65rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.1rem;
}

.single-product .related.products .wc-gzd-additional-info + .wc-gzd-additional-info {
  margin-top: 0;
}

.single-product .related.products .product {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none !important;
  padding: 0.75rem 0.75rem 0.9rem;
  display: flex;
  flex-direction: column;
  justify-items: stretch;
  align-items: start;
  gap: 0.5rem;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.single-product .related.products .product > * {
  width: 100%;
}

.single-product .related.products .product:hover,
.single-product .related.products .product:focus-within {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: none !important;
  transform: none;
}

.single-product .related.products .ct-woo-card,
.single-product .related.products .ct-woo-card-inner,
.single-product .related.products .ct-woo-card-image {
  box-shadow: none !important;
  background: transparent;
}

.single-product .related.products .ct-woo-card,
.single-product .related.products .ct-woo-card-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  gap: 0.45rem;
}

.single-product .related.products .product figure {
  margin: 0;
  order: 1;
}

.single-product .related.products .product .ct-media-container {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.single-product .related.products .onsale {
  top: 10px !important;
  inset-inline-start: 10px !important;
  font-size: 0.6rem;
  padding: 3px 8px;
  letter-spacing: 0.12em;
}

.single-product .related.products .product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-product .related.products .woocommerce-loop-product__title {
  font-size: 0.85rem;
  line-height: 1.35;
  margin: 0.25rem 0 0;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
  order: 2;
}

.single-product .related.products .price {
  font-size: 0.92rem;
  font-weight: 700;
  display: block;
  row-gap: 0.15rem;
  align-items: start;
  margin-top: 0.1rem;
  margin-bottom: 0.15rem;
  order: 3;
  width: 100%;
  clear: both;
  float: none;
}

.single-product .related.products .price > .woocommerce-Price-amount.amount,
.single-product .related.products .price del,
.single-product .related.products .price ins {
  display: block;
  width: 100%;
}

.single-product .related.products .price del {
  opacity: 0.45;
  font-weight: 500;
}

.single-product .related.products .price ins {
  text-decoration: none;
}

.single-product .related.products .nostalg-condition-inline {
  background: rgba(14, 14, 14, 0.04);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  order: 5;
  width: 100%;
  display: flex;
  column-gap: 0.25rem;
  row-gap: 0.15rem;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
  clear: both;
  flex-basis: 100%;
  position: static !important;
  float: none !important;
}

.single-product .related.products .woocommerce-Price-amount.amount {
  width: 100%;
}

.single-product .related.products .ct-woo-card-actions {
  display: block;
  margin-top: auto;
  order: 99;
  position: relative;
  z-index: 4;
  width: 100% !important;
  align-self: stretch;
  align-items: stretch;
  clear: both;
}

.single-product .related.products .ct-woo-card-actions .button {
  width: 100% !important;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  padding: 0.7rem 0.95rem;
  font-size: clamp(0.72rem, 0.6rem + 0.4vw, 0.9rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 !important;
  min-height: 44px;
  white-space: normal;
  box-sizing: border-box;
  position: relative;
  overflow: visible;
  flex-wrap: wrap;
  row-gap: 0.2rem;
  align-self: stretch;
  flex: 1 0 auto;
}

.single-product .related.products .ct-woo-card-actions .added_to_cart {
  width: 100% !important;
  max-width: 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  text-align: center;
  white-space: normal;
  padding: 0.7rem 0.95rem;
  font-size: clamp(0.72rem, 0.6rem + 0.4vw, 0.9rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
  align-self: stretch;
  flex: 1 0 auto;
}

.single-product .related.products .ct-woo-card-actions .button::after,
.single-product .related.products .ct-woo-card-actions .added_to_cart::after {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-left: 0.4rem;
  pointer-events: none;
}

.single-product .related.products .ct-woo-card-actions .button::before {
  content: none;
  display: none;
}

.single-product .related.products .ct-woo-card-actions .button:hover::after,
.single-product .related.products .ct-woo-card-actions .button:focus-visible::after {
  filter: invert(1);
}

.single-product .related.products .ct-woo-card-actions .button .ct-icon-container,
.single-product .related.products .ct-woo-card-actions .button svg {
  display: inline-flex !important;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.single-product .related.products .ct-woo-card-actions .button .ct-icon-container {
  position: static !important;
  margin: 0 !important;
  flex: 0 0 auto;
}

.single-product .related.products .woocommerce-loop-product__link,
.single-product .related.products .ct-media-container {
  position: relative;
  z-index: 1;
}
.single-product .related.products .ct-woo-card-actions {
  margin-top: 0.5rem;
}

.single-product .related.products .product:hover .nostalg-image-stack img.nostalg-hover-image,
.single-product .related.products .product:focus-within .nostalg-image-stack img.nostalg-hover-image {
  opacity: 1;
}

.single-product .related.products .product:hover .nostalg-image-stack img:not(.nostalg-hover-image),
.single-product .related.products .product:focus-within .nostalg-image-stack img:not(.nostalg-hover-image) {
  opacity: 0;
}

@media (max-width: 640px) {
  .single-product .related.products {
    --related-card-width: clamp(190px, 72vw, 280px);
  }

  .single-product .related.products .ct-woo-card-actions .button {
    padding: 0.6rem 2.4rem 0.6rem 0.8rem;
    font-size: clamp(0.7rem, 0.6rem + 0.35vw, 0.85rem);
  }
}

@media (min-width: 768px) {
  .single-product .related.products .products {
    scroll-snap-type: x proximity;
  }
}

@media (min-width: 1025px) {
  .single-product .related.products {
    --related-card-width: clamp(200px, 19vw, 250px);
  }

  .single-product .related.products ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    grid-template-columns: 1fr !important;
  }

  .single-product .related.products ul.products li.product > * {
    width: 100% !important;
    float: none !important;
  }
}

@supports (content-visibility: auto) {
  .single-product .related.products,
  .single-product .woocommerce-tabs {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
}

@media (max-width: 768px) {
  .single-product .summary.entry-summary.entry-summary-items {
    position: static;
    top: auto;
  }

  .single-product .summary {
    padding: 1.1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  }

  .single-product .summary .product_title {
    font-size: 1.45rem;
  }

  .single-product .product_meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .single-product .woocommerce-tabs {
    clear: both;
    margin-top: 1rem;
    position: static;
  }

  .single-product .woocommerce-tabs .wc-tabs {
    position: static;
    margin-top: 0.25rem;
  }

  .single-product .related.products .products {
    gap: 0.75rem;
  }

  .single-product .nostalg-related-controls [class*='flexy-arrow'] {
    width: 32px;
    height: 32px;
  }
}

/* Remove redundant PhotoSwipe actions so only one close button remains. */
.pswp__top-bar .pswp__button--share,
.pswp__top-bar .pswp__button--zoom,
.pswp__top-bar .pswp__button--fs {
  display: none !important;
}

/* Header cart badge tweaks */
.ct-header-cart .ct-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ct-header-cart .ct-dynamic-count-cart {
  position: absolute;
  top: -14px;
  right: -14px;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 50% !important;
  background: var(--nostalg-gold);
  color: var(--nostalg-black);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ct-header-cart .ct-dynamic-count-cart[data-count="0"] {
  opacity: 0;
  transform: scale(0.4);
}

/* Mini cart flyout */
.ct-cart-content {
  width: min(360px, calc(100vw - 20px));
  margin-top: var(--dropdownTopOffset);
  padding: 24px;
  border: 1px solid var(--nostalg-black);
  border-radius: 0;
  background: var(--nostalg-white) !important;
  color: var(--nostalg-black) !important;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
}

.ct-cart-content .woocommerce-mini-cart {
  max-height: 55vh;
  overflow-y: auto;
  margin: 0 -8px 0 0;
  padding-right: 8px;
}

.ct-cart-content .woocommerce-mini-cart li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.ct-cart-content .woocommerce-mini-cart li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-cart-content .product-title,
.ct-cart-content .woocommerce-mini-cart__empty-message {
  color: var(--nostalg-black);
  font-weight: 600;
}

.ct-cart-content .quantity,
.ct-cart-content .amount,
.ct-cart-content .woocommerce-Price-amount {
  color: var(--nostalg-black);
  font-weight: 600;
}

.ct-cart-content .woocommerce-mini-cart__total {
  color: var(--nostalg-black);
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 18px;
  margin-top: 18px;
  letter-spacing: 0.05em;
}

.ct-cart-content .woocommerce-mini-cart__buttons {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 18px;
  margin-top: 18px;
  grid-column-gap: 12px;
}

.ct-cart-content .woocommerce-mini-cart__buttons .button {
  border-radius: 0 !important;
  border: 1px solid transparent !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}

.ct-cart-content .woocommerce-mini-cart__buttons .button.wc-forward {
  background: var(--nostalg-gold) !important;
  color: var(--nostalg-black) !important;
  border-color: var(--nostalg-gold) !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .button:first-child:not(.wc-forward) {
  background: transparent !important;
  color: var(--nostalg-black) !important;
  border-color: rgba(0, 0, 0, 0.35) !important;
}

.ct-cart-content .woocommerce-mini-cart__buttons .button:first-child:not(.wc-forward):hover,
.ct-cart-content .woocommerce-mini-cart__buttons .button:first-child:not(.wc-forward):focus-visible {
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
}

.cleanslate .components-button,
.cleanslate .components-button.is-button,
.cleanslate .components-button.is-primary {
  border-radius: 0 !important;
  background: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
}
.cleanslate .components-button:hover,
.cleanslate .components-button.is-button:hover,
.cleanslate .components-button.is-primary:hover {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: var(--nostalg-white) !important;
}

.swiper-button-next,
.swiper-button-prev {
  background: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border: 1px solid var(--nostalg-black) !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: currentColor !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
}

.nostalg-cat-slider-nav {
  background: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border: 1px solid var(--nostalg-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nostalg-cat-slider-nav svg,
.nostalg-cat-slider-nav svg path {
  fill: currentColor !important;
}
.nostalg-cat-slider-nav:hover,
.nostalg-cat-slider-nav:focus-visible {
  background: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
}

.nostalg-cat-slide-button {
  background: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border: 1px solid var(--nostalg-black) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nostalg-cat-slide-button:hover,
.nostalg-cat-slide-button:focus-visible {
  background: var(--nostalg-white) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
  transform: translateY(-1px);
}
.nostalg-cat-slide-button:focus-visible {
  outline: 3px solid var(--nostalg-black) !important;
  outline-offset: 2px;
}

/* Hero helper */
.nostalg-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.4), transparent 55%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.96), rgba(20, 20, 20, 0.9));
  color: #fff;
  padding: clamp(3rem, 6vw, 6rem) 1rem;
  border-radius: 0;
}

/* Category cards */
.nostalg-cat-grid .wp-block-cover { border-radius: 0; overflow: hidden; }
.nostalg-cat-grid .wp-block-cover__inner-container h3 { color:#fff; text-shadow:0 1px 2px rgba(0,0,0,.35); }

/* Trust icons */
.nostalg-trust .wp-block-column { text-align:center; }
.nostalg-trust .nostalg-icon { font-size: 28px; color: var(--nostalg-yellow); display:inline-block; margin-bottom:.5rem; }

/* Woo badges */
.woocommerce span.onsale,
.onsale,
.products .onsale,
.wc-block-grid__product .wc-block-grid__product-onsale {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000000 !important;
  color: #ffffff !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18) !important;
  clip-path: none !important;
}
.woocommerce .out-of-stock,
.product .out-of-stock,
.products .out-of-stock,
.stock.out-of-stock,
.wc-block-components-product-image .wc-block-components-product-badge--out-of-stock {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #d62828 !important;
  color: #ffffff !important;
  padding: 0.25rem 0.6rem !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  text-indent: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08) !important;
  clip-path: none !important;
}

/* WooCommerce Blocks – Price filter buttons */
.wp-block-woocommerce-price-filter .wc-block-filter-submit-button,
.wp-block-woocommerce-price-filter .wc-block-components-filter-submit-button {
  background: var(--nostalg-black) !important;
  border: 1px solid var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  border-radius: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.wp-block-woocommerce-price-filter .wc-block-filter-submit-button:hover,
.wp-block-woocommerce-price-filter .wc-block-filter-submit-button:focus-visible,
.wp-block-woocommerce-price-filter .wc-block-components-filter-submit-button:hover,
.wp-block-woocommerce-price-filter .wc-block-components-filter-submit-button:focus-visible {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: var(--nostalg-white) !important;
  outline: 3px solid var(--nostalg-black) !important;
  outline-offset: 2px;
}

/* Home layout overhaul */
.nostalg-home-hero {
  position: relative;
  overflow: hidden;
  background: #050505;
  color: #fff;
  border-radius: 0;
  padding: clamp(6.5rem, 12vw, 9rem) clamp(3rem, 10vw, 7rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin: 0;
  box-shadow: none;
}
.nostalg-home-hero,
.hero-section {
  scroll-margin-top: calc(var(--ionso-nav-safe, 120px) + 20px);
}
body.has-ionso-navbar--transparent .nostalg-home-hero {
  padding-top: calc(
    clamp(6.5rem, 12vw, 9rem)
    + max(var(--ionso-nav-safe, 120px) - 80px, 0px)
  );
}
.nostalg-home-hero.alignfull {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.nostalg-home-hero > .wp-block-group__inner-container {
  width: min(100%, 1200px);
  margin: 0 auto;
}
.nostalg-home-hero .wp-block-columns {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.nostalg-home-hero .wp-block-column:first-child {
  max-width: 520px;
}
.nostalg-home-hero .wp-block-column:last-child {
  flex-grow: 1;
}
.nostalg-home-hero .wp-element-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nostalg-home-hero .wp-element-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.nostalg-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--nostalg-primary);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.nostalg-home-hero .nostalg-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.nostalg-hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
}
.nostalg-accent {
  color: var(--nostalg-primary);
}
.nostalg-home-hero p,
.nostalg-home-hero li {
  color: rgba(255, 255, 255, 0.82);
}
.nostalg-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.75rem;
}
.nostalg-feature-list li {
  padding-left: 1.75rem;
  position: relative;
}
.nostalg-feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--nostalg-primary);
  font-size: 0.85rem;
  transform: translateY(0.15rem);
}
.nostalg-home-hero .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.2rem;
}
.nostalg-home-hero .wp-element-button {
  font-size: 0.95rem;
  font-weight: 600;
}

.nostalg-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: clamp(1.4rem, 3vw, 1.8rem);
}
.nostalg-hero-gallery figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.2rem, 4vw, 2.8rem);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.38);
}
.nostalg-hero-gallery figure:nth-child(odd) {
  transform: translateY(14px);
}
.nostalg-hero-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateZ(0);
}

.nostalg-category-grid {
  text-align: center;
}
.nostalg-category-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.nostalg-category-columns > .wp-block-column {
  margin: 0;
}
.nostalg-category-card {
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
}

.ct-cart-actions .nostalg-cart-inline-notices {
  flex: 0 0 100%;
  order: -1;
  width: 100%;
  margin: 0;
}

.nostalg-cart-inline-notices:empty {
  display: none;
}

.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-notices-wrapper {
  margin: 0;
}

.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-error,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-message,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-info {
  margin: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--theme-palette-color-8, #fff);
  font-size: 0.82rem;
  padding: 0.65rem 0.85rem 0.65rem 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

body .woocommerce-error {
  border: 1px solid var(--nostalg-error-border, #f1a5ad) !important;
  background: var(--nostalg-error-bg, #fdecef) !important;
  color: var(--nostalg-error-text, #2a1618) !important;
}

.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-error {
  background: var(--nostalg-error-bg, #fdecef) !important;
  border-color: var(--nostalg-error-border, #f1a5ad) !important;
  color: var(--nostalg-error-text, #2a1618) !important;
}

.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-error:before,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-message:before,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-info:before {
  inset-inline-start: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-message .button,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-message .wc-forward,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-error .button,
.ct-cart-actions .nostalg-cart-inline-notices .woocommerce-error .wc-forward {
  display: none !important;
}

.ct-cart-actions .nostalg-inline-view-cart {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding-inline: 0.95rem 1.4rem;
  border: 1px solid var(--nostalg-black) !important;
  background: transparent !important;
  color: var(--nostalg-black) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ct-cart-actions.nostalg-cart-has-item .nostalg-inline-view-cart {
  display: inline-flex;
}

.ct-cart-actions.nostalg-cart-has-item {
  flex-direction: column;
}

.ct-cart-actions .nostalg-inline-view-cart:hover,
.ct-cart-actions .nostalg-inline-view-cart:focus-visible {
  background: var(--nostalg-black) !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
}

/* PayPal / PayPal Commerce buttons spacing */
.ppc-button-wrapper,
.ppcp-width-min,
.wcppec-checkout-buttons {
  margin-top: 0.9rem;
}

.ppc-button-wrapper:first-child,
.ppcp-width-min:first-child,
.wcppec-checkout-buttons:first-child {
  margin-top: 0;
}

/* Cart + checkout monochrome controls */
.woocommerce-cart .ionso-share-cart {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1rem 1.25rem;
  background: #ffffff;
}
.woocommerce-cart .ionso-share-cart__button,
.woocommerce-cart .ionso-share-cart__copy {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.woocommerce-cart .ionso-share-cart__button:hover,
.woocommerce-cart .ionso-share-cart__button:focus-visible,
.woocommerce-cart .ionso-share-cart__copy:hover,
.woocommerce-cart .ionso-share-cart__copy:focus-visible {
  background: #000000;
  color: #ffffff;
}
.woocommerce-cart .ionso-share-cart__result {
  display: none !important;
}
.woocommerce-cart .ionso-share-cart__result:not([hidden]) {
  display: flex !important;
}
.woocommerce-cart .ionso-share-cart__result[hidden] {
  display: none !important;
}
.woocommerce-cart .ionso-share-cart__input {
  border-color: #000000;
  border-radius: 0;
  min-height: 44px;
}
@media (max-width: 640px) {
  .woocommerce-cart .ionso-share-cart__result {
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: wrap;
  }
  .woocommerce-cart .ionso-share-cart__copy {
    width: 100%;
  }
  .woocommerce-cart .ionso-share-cart__button {
    width: 100%;
  }
  .woocommerce-cart .ionso-share-cart__input {
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 0.75rem !important;
    line-height: 42px !important;
    box-sizing: border-box !important;
  }
}
input[type="checkbox"],
input[type="radio"] {
  appearance: auto;
  accent-color: #000000;
  border: 1px solid #000000;
  background: #ffffff;
  filter: none;
  opacity: 1;
  min-width: 18px;
  min-height: 18px;
  cursor: pointer;
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.woocommerce-checkout .woocommerce-form__label-for-checkbox,
.woocommerce-checkout .woocommerce-form__label-for-checkbox.checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.woocommerce-checkout .woocommerce-form__input-checkbox.input-checkbox {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
  flex: 0 0 18px;
  border: 1px solid #000000;
  border-radius: 2px;
  background: #ffffff;
  position: relative;
}

.woocommerce-checkout .woocommerce-form__input-checkbox.input-checkbox::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  left: 6px;
  top: 2px;
  transform: rotate(45deg);
  opacity: 0;
}

.woocommerce-checkout .woocommerce-form__input-checkbox.input-checkbox:checked::after {
  opacity: 1;
}

.woocommerce-checkout .woocommerce-form__input-checkbox.input-checkbox:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #1a1a1a;
}

.comment-form-cookies-consent input#wp-comment-cookies-consent {
  width: 18px;
  height: 18px;
  margin: 0.15rem 0 0;
  flex: 0 0 18px;
  accent-color: #000000;
  -webkit-appearance: auto !important;
  appearance: auto !important;
  background: #ffffff !important;
  border: 1px solid #000000 !important;
}

.comment-form-cookies-consent input#wp-comment-cookies-consent::before,
.comment-form-cookies-consent input#wp-comment-cookies-consent::after {
  content: none !important;
}

.comment-form-cookies-consent label {
  margin: 0;
}

.single-product .comment-form-cookies-consent {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.single-product .comment-form-cookies-consent input#wp-comment-cookies-consent {
  margin-top: 0;
}

.single-product .comment-form-cookies-consent label[for="wp-comment-cookies-consent"] {
  text-align: left;
}
.woocommerce-checkout span.select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected],
.woocommerce-checkout span.select2-dropdown .select2-results__option.select2-results__option--highlighted[data-selected] {
  color: #111111;
  background: #f2f2f2;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation-link a:focus-visible {
  color: #111111;
  background: #f2f2f2;
  box-shadow: none !important;
}
.nostalg-category-card .wp-block-cover__background {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.72) 75%);
}
.nostalg-category-card .wp-block-cover__inner-container {
  align-items: flex-start;
  text-align: left;
}
.nostalg-cat-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}
.nostalg-category-card .wp-element-button {
  border-radius: 0;
  font-size: 0.8rem;
  padding: 0.6rem 1.5rem;
}

.nostalg-section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.85rem;
}

.nostalg-product-section {
  background: var(--theme-palette-color-8, #ffffff);
  border-radius: 0;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}
.nostalg-product-section p {
  max-width: 560px;
  margin: 0 auto 2rem;
}

.nostalg-story {
  gap: clamp(1.5rem, 5vw, 3rem);
}
.nostalg-highlight-card {
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.95), rgba(24, 24, 24, 0.85));
  border-radius: 0;
  padding: 1.75rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  margin-bottom: 1.5rem;
}
.nostalg-highlight-card .nostalg-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.nostalg-highlight-card ul {
  margin: 0;
}
.nostalg-highlight-card li + li {
  margin-top: 0.6rem;
}

.nostalg-cta {
  background: radial-gradient(120% 120% at 50% 0%, rgba(255, 255, 255, 0.08), transparent 60%), linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(10, 10, 10, 0.95));
  border-radius: 0;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3.75rem);
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}
.nostalg-cta.alignfull {
  width: min(100%, var(--wp--style--global--wide-size, 1100px));
  max-width: var(--wp--style--global--wide-size, 1100px);
  margin-left: auto !important;
  margin-right: auto !important;
}
.nostalg-cta p {
  max-width: 540px;
  margin: 0 auto 1.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.nostalg-cta .wp-element-button {
  padding: 0.9rem 2.6rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.nostalg-cta .wp-element-button:hover {
  transform: translateY(-1px);
}

.nostalg-faq {
  background: var(--theme-palette-color-8);
  border-radius: 0;
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.nostalg-faq-item {
  background: #fff;
  border-radius: 0;
  padding: 1.75rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(12, 18, 27, 0.06);
}
.nostalg-faq-item + .nostalg-faq-item {
  margin-top: 1.5rem;
}
.nostalg-faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}
.nostalg-faq-item p {
  margin: 0;
  color: #1f2933;
}

.nostalg-return {
  margin-top: 2rem;
}
.nostalg-return--faq {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: clamp(2.2rem, 4vw, 3.2rem);
}
.nostalg-return--faq .nostalg-return__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.05rem);
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.nostalg-return--faq .nostalg-return__lead {
  font-size: 1.05rem;
  color: #2a2a2a;
}
.nostalg-return--faq .nostalg-return__steps,
.nostalg-return--faq .nostalg-return__note,
.nostalg-return--faq .nostalg-return__policies {
  font-size: 1rem;
}
.nostalg-return--faq .nostalg-return__steps {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 1.2rem;
}
.nostalg-return--faq .nostalg-return__step {
  gap: 0.85rem;
}
.nostalg-return--faq .nostalg-return__step-index {
  background: #0e0e0e;
  color: #fff;
  border-radius: 6px;
  font-size: 0.85rem;
}
.nostalg-return--faq .nostalg-return__policies {
  background: rgba(255, 255, 255, 0.75);
  border-left: 3px solid var(--nostalg-gold);
  padding: 0.85rem 1rem 0.85rem 1.2rem;
}
.nostalg-return--faq .nostalg-return__note {
  margin-top: 0.75rem;
  font-weight: 500;
}
.nostalg-return__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}
.nostalg-return__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nostalg-return__title {
  margin: 0;
  font-size: 1.5rem;
}
.nostalg-return__lead {
  margin: 0;
  color: #1f2933;
}
.nostalg-return__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.nostalg-return__steps li {
  margin: 0;
}
.nostalg-return__step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(12, 18, 27, 0.06);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}
.nostalg-return__checkbox {
  margin-top: 0.25rem;
  accent-color: var(--theme-palette-color-1);
}
.nostalg-return__step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(12, 18, 27, 0.08);
  font-weight: 600;
}
.nostalg-return__step-text {
  color: #1f2933;
}
.nostalg-return__form {
  display: grid;
  gap: 1rem;
}
.nostalg-return__notice {
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.nostalg-return__notice--success {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #14532d;
}
.nostalg-return__notice--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #7f1d1d;
}
.nostalg-return__fields {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.nostalg-return__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.nostalg-return__field--full {
  grid-column: 1 / -1;
}
.nostalg-return__field label {
  font-weight: 600;
  font-size: 0.9rem;
}
.nostalg-return__field input,
.nostalg-return__field select,
.nostalg-return__field textarea {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  padding: 0.6rem 0.7rem;
  font-size: 0.92rem;
  background: #fff;
}
.nostalg-return__field input:focus,
.nostalg-return__field select:focus,
.nostalg-return__field textarea:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}
.nostalg-return__field .description {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}
.nostalg-return__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.nostalg-return__cta {
  text-decoration: none;
}
.nostalg-return__cta.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.nostalg-return__hint {
  margin: 0;
  color: #5b6672;
  font-size: 0.95rem;
}
.nostalg-return__note {
  margin: 0;
  color: #5b6672;
  font-size: 0.95rem;
}
.nostalg-return__policies {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: #1f2933;
}
.nostalg-return__policies li + li {
  margin-top: 0.45rem;
}
.nostalg-return__media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nostalg-return__image {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 18, 27, 0.08);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  background: #fff;
}
.nostalg-return__image img {
  display: block;
  width: 100%;
  height: auto;
}
.woocommerce-account .nostalg-return {
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .nostalg-category-columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .nostalg-return__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 782px) {
  .nostalg-home-hero {
    padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1rem, 6vw, 2rem);
  }
  .nostalg-home-hero .wp-block-columns {
    flex-direction: column;
  }
  .nostalg-hero-gallery {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  .nostalg-product-section {
    padding: 2.5rem 1.5rem;
  }
  .nostalg-story {
    flex-direction: column;
  }
  .nostalg-highlight-card {
    margin-bottom: 1rem;
  }
  .nostalg-faq {
    padding: 2.5rem 1.5rem;
  }
  .nostalg-faq-item {
    padding: 1.5rem;
  }
  .nostalg-return__media {
    grid-template-columns: minmax(0, 1fr);
  }
  .nostalg-return__step {
    padding: 0.75rem;
  }
  .nostalg-return__step-index {
    min-width: 24px;
    height: 24px;
    font-size: 0.85rem;
  }
}

/* Remove default Blocksy page hero so custom hero sits under navigation */
.page-id-38 .hero-section,
.page-id-130 .hero-section {
  display: none;
}

/* Transparent header overlay on home */
body.page-id-38 #header,
body.page-id-130 #header,
body.page-id-38 .ct-header,
body.page-id-130 .ct-header {
  background: transparent !important;
  position: fixed !important;
  left: 0;
  right: 0;
  z-index: 50;
  top: 0;
  width: 100%;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
body.page-id-38,
body.page-id-130 {
  --has-transparent-header: 1;
}
body.page-id-38 .ct-header .ct-container,
body.page-id-130 .ct-header .ct-container,
body.page-id-38 #header > [data-device],
body.page-id-130 #header > [data-device],
body.page-id-38 .ct-header [data-row],
body.page-id-130 .ct-header [data-row],
body.page-id-38 .ct-header [data-row] > .ct-container,
body.page-id-130 .ct-header [data-row] > .ct-container {
  background: transparent !important;
  box-shadow: none !important;
}
body.page-id-38 #header [data-row="top"],
body.page-id-130 #header [data-row="top"] {
  display: none !important;
}
body.page-id-38 #header,
body.page-id-130 #header {
  color: #f5f5f5 !important;
}
body.page-id-38 .ct-header a,
body.page-id-130 .ct-header a,
body.page-id-38 .ct-header .ct-icon,
body.page-id-130 .ct-header .ct-icon {
  color: #f5f5f5 !important;
  fill: #f5f5f5 !important;
}
body.page-id-38 .ct-header svg,
body.page-id-130 .ct-header svg,
body.page-id-38 .ct-header svg path,
body.page-id-130 .ct-header svg path {
  fill: currentColor;
  stroke: currentColor;
}
body.page-id-38 .ct-header .ct-menu-link:hover,
body.page-id-130 .ct-header .ct-menu-link:hover {
  color: #ffffff !important;
}
body.page-id-38 .ct-header [data-row] > .ct-container,
body.page-id-130 .ct-header [data-row] > .ct-container {
  padding-block: clamp(8px, 1vw, 14px);
  transition: padding 0.25s ease, min-height 0.25s ease;
}
body.page-id-38 .ct-header [data-row="middle"] > .ct-container,
body.page-id-130 .ct-header [data-row="middle"] > .ct-container {
  min-height: clamp(64px, 5.2vw, 98px) !important;
  gap: clamp(12px, 2vw, 32px);
}
body.page-id-38 .ct-sticky-container,
body.page-id-130 .ct-sticky-container {
  transition: height 0.3s ease;
}
body.page-id-38 .ct-header .site-logo-container img,
body.page-id-130 .ct-header .site-logo-container img {
  max-height: 52px;
  transition: max-height 0.25s ease;
}
body.page-id-38 #header [data-device="desktop"] nav.menu-container > ul > li > a,
body.page-id-130 #header [data-device="desktop"] nav.menu-container > ul > li > a {
  padding: 10px 12px;
  letter-spacing: 0.1em;
  transition: padding 0.2s ease, font-size 0.2s ease;
}
body.page-id-38 .ct-header [data-id="cart"] .ct-icon-container,
body.page-id-130 .ct-header [data-id="cart"] .ct-icon-container,
body.page-id-38 .ct-header [data-id="trigger"] .ct-icon,
body.page-id-130 .ct-header [data-id="trigger"] .ct-icon,
body.page-id-38 .ct-header [data-id="search"] .ct-icon,
body.page-id-130 .ct-header [data-id="search"] .ct-icon {
  width: 32px;
  height: 32px;
  transition: width 0.2s ease, height 0.2s ease;
}

body:not(.page-id-38):not(.page-id-130) #header [data-row="middle"] > .ct-container,
body:not(.page-id-38):not(.page-id-130) .ct-header [data-row="middle"] > .ct-container {
  min-height: clamp(56px, 4.6vw, 84px) !important;
}
body:not(.page-id-38):not(.page-id-130) #header [data-device="desktop"] nav.menu-container > ul > li > a {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  padding: 8px 10px;
}
body:not(.page-id-38):not(.page-id-130) #header [data-device="desktop"] nav.menu-container > ul > li > a:hover {
  letter-spacing: 0.08em;
}
body:not(.page-id-38):not(.page-id-130) .ct-header .ct-icon,
body:not(.page-id-38):not(.page-id-130) .ct-header .ct-icon-container {
  width: 32px;
  height: 32px;
  min-height: 32px;
}
body:not(.page-id-38):not(.page-id-130) #header [data-row="middle"] > .ct-container [data-column] {
  gap: clamp(10px, 1.8vw, 26px);
}

/* Sticky header + compact top bar outside the hero pages */
body:not(.page-id-38):not(.page-id-130) #header,
body:not(.page-id-38):not(.page-id-130) .ct-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 45;
}
body.admin-bar:not(.page-id-38):not(.page-id-130) #header,
body.admin-bar:not(.page-id-38):not(.page-id-130) .ct-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar:not(.page-id-38):not(.page-id-130) #header,
  body.admin-bar:not(.page-id-38):not(.page-id-130) .ct-header {
    top: 46px;
  }
}

#header [data-row="top"],
.ct-header [data-row="top"] {
  border-bottom: 1px solid rgba(12, 22, 32, 0.08);
}
#header [data-row="top"] > .ct-container,
.ct-header [data-row="top"] > .ct-container {
  padding-block: clamp(6px, 0.9vw, 12px);
  min-height: auto !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 48px);
  flex-wrap: wrap;
  transition: padding 0.25s ease;
}
#header [data-row="top"] .ct-top-bar,
.ct-header [data-row="top"] .ct-top-bar {
  width: 100%;
}
#header [data-row="top"] .ct-text-block,
.ct-header [data-row="top"] .ct-text-block,
#header [data-row="top"] .ct-top-bar-item,
.ct-header [data-row="top"] .ct-top-bar-item,
#header [data-row="top"] .ct-menu-link,
.ct-header [data-row="top"] .ct-menu-link {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
#header [data-row="top"] .ct-inline-flex,
.ct-header [data-row="top"] .ct-inline-flex {
  gap: clamp(8px, 2vw, 18px);
}
#header [data-row="top"] .ct-header-socials a,
.ct-header [data-row="top"] .ct-header-socials a {
  width: 32px;
  height: 32px;
  min-height: 32px;
  font-size: 0.85rem;
}

/* Global sticky header scaling */
#header [data-row] > .ct-container,
.ct-header [data-row] > .ct-container {
  padding-block: clamp(10px, 1.2vw, 16px);
  padding-inline: clamp(24px, 3vw, 56px);
  transition: padding 0.25s ease, min-height 0.25s ease;
}
#header [data-row="top"],
.ct-header [data-row="top"] {
  transition: opacity 0.2s ease, visibility 0.2s ease, height 0.2s ease;
}
#header [data-row="middle"] > .ct-container,
.ct-header [data-row="middle"] > .ct-container {
  min-height: clamp(68px, 5.2vw, 100px) !important;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
}
#header [data-row="middle"] > .ct-container [data-column],
.ct-header [data-row="middle"] > .ct-container [data-column] {
  display: flex;
  align-items: center;
  min-height: auto;
}
#header [data-device="desktop"] nav.menu-container > ul,
.ct-header [data-device="desktop"] nav.menu-container > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 40px);
  margin: 0;
  padding: 0;
}
#header [data-device="desktop"] nav.menu-container > ul > li,
.ct-header [data-device="desktop"] nav.menu-container > ul > li {
  flex: 0 0 auto;
  list-style: none;
}
#header [data-device="desktop"] nav.menu-container > ul > li > a,
.ct-header [data-device="desktop"] nav.menu-container > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
}
#header [data-row="middle"] > .ct-container [data-column="middle"],
.ct-header [data-row="middle"] > .ct-container [data-column="middle"] {
  flex: 1 1 auto;
  justify-content: center;
}
#header [data-row="middle"] > .ct-container [data-column="start"],
.ct-header [data-row="middle"] > .ct-container [data-column="start"],
#header [data-row="middle"] > .ct-container [data-column="end"],
.ct-header [data-row="middle"] > .ct-container [data-column="end"] {
  flex: 0 0 auto;
}
.ct-sticky-container {
  transition: height 0.3s ease;
}
#header [data-device="desktop"] [data-row="middle"] > .ct-container,
.ct-header [data-device="desktop"] [data-row="middle"] > .ct-container {
  position: relative;
}
@media (min-width: 1025px) {
  #header [data-device="desktop"] [data-row="middle"] > .ct-container,
  .ct-header [data-device="desktop"] [data-row="middle"] > .ct-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }
  #header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="start"],
  .ct-header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="start"] {
    justify-self: flex-start;
  }
  #header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="middle"],
  .ct-header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="middle"] {
    justify-self: center;
  }
  #header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="end"],
  .ct-header [data-device="desktop"] [data-row="middle"] > .ct-container [data-column="end"] {
    justify-self: flex-end;
  }
}
#header .site-logo-container img,
.ct-header .site-logo-container img {
  max-height: 52px;
  transition: max-height 0.25s ease;
}
.ct-header .site-branding {
  display: flex;
  align-items: center;
  line-height: 1;
  min-height: 0;
}
#header [data-device="desktop"] nav.menu-container > ul > li > a,
.ct-header [data-device="desktop"] nav.menu-container > ul > li > a {
  letter-spacing: 0.12em;
  transition: padding 0.2s ease, font-size 0.2s ease;
}
#header [data-id="cart"] .ct-icon-container,
#header [data-id="trigger"] .ct-icon,
#header [data-id="search"] .ct-icon,
.ct-header [data-id="cart"] .ct-icon-container,
.ct-header [data-id="trigger"] .ct-icon,
.ct-header [data-id="search"] .ct-icon {
  width: 32px;
  height: 32px;
  transition: width 0.2s ease, height 0.2s ease;
}
html.is-scrolled #header,
html.is-scrolled .ct-header,
body.is-scrolled #header,
body.is-scrolled .ct-header,
.ct-header[data-sticky-state="stuck"],
#header[data-sticky-state="stuck"] {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: #050505 !important;
}
html.is-scrolled #header .ct-sticky-container,
html.is-scrolled .ct-sticky-container,
#header[data-sticky-state="stuck"] .ct-sticky-container,
.ct-header[data-sticky-state="stuck"] .ct-sticky-container {
  height: 56px !important;
}
html.is-scrolled #header [data-row] > .ct-container,
html.is-scrolled .ct-header [data-row] > .ct-container,
#header[data-sticky-state="stuck"] [data-row] > .ct-container,
.ct-header[data-sticky-state="stuck"] [data-row] > .ct-container {
  padding-block: clamp(6px, 0.8vw, 12px);
  padding-inline: clamp(14px, 2.5vw, 32px);
}
html.is-scrolled #header [data-row="top"],
html.is-scrolled .ct-header [data-row="top"],
.ct-header[data-sticky-state="stuck"] [data-row="top"] {
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
html.is-scrolled #header [data-row="middle"],
html.is-scrolled .ct-header [data-row="middle"],
#header[data-sticky-state="stuck"] [data-row="middle"],
.ct-header[data-sticky-state="stuck"] [data-row="middle"] {
  --shrink-height: clamp(44px, 3.2vw, 56px) !important;
}
html.is-scrolled #header [data-row="middle"] > .ct-container,
html.is-scrolled .ct-header [data-row="middle"] > .ct-container,
#header[data-sticky-state="stuck"] [data-row="middle"] > .ct-container,
.ct-header[data-sticky-state="stuck"] [data-row="middle"] > .ct-container {
  --shrink-height: clamp(44px, 3.2vw, 56px) !important;
  min-height: clamp(44px, 3.2vw, 56px) !important;
  gap: clamp(10px, 2.2vw, 28px);
}
#header[data-sticky-state="stuck"] .site-logo-container img,
.ct-header[data-sticky-state="stuck"] .site-logo-container img,
html.is-scrolled #header .site-logo-container img,
html.is-scrolled .ct-header .site-logo-container img {
  max-height: 44px;
}
#header[data-sticky-state="stuck"] [data-device="desktop"] nav.menu-container > ul > li > a,
.ct-header[data-sticky-state="stuck"] [data-device="desktop"] nav.menu-container > ul > li > a,
html.is-scrolled #header [data-device="desktop"] nav.menu-container > ul > li > a,
html.is-scrolled .ct-header [data-device="desktop"] nav.menu-container > ul > li > a {
  padding: 10px 12px;
  font-size: 0.9rem;
}
#header[data-sticky-state="stuck"] [data-device="desktop"] nav.menu-container > ul,
.ct-header[data-sticky-state="stuck"] [data-device="desktop"] nav.menu-container > ul,
html.is-scrolled #header [data-device="desktop"] nav.menu-container > ul,
html.is-scrolled .ct-header [data-device="desktop"] nav.menu-container > ul {
  gap: clamp(10px, 1.8vw, 26px);
}
#header[data-sticky-state="stuck"] [data-id="cart"] .ct-icon-container,
#header[data-sticky-state="stuck"] [data-id="trigger"] .ct-icon,
#header[data-sticky-state="stuck"] [data-id="search"] .ct-icon,
.ct-header[data-sticky-state="stuck"] [data-id="cart"] .ct-icon-container,
.ct-header[data-sticky-state="stuck"] [data-id="trigger"] .ct-icon,
.ct-header[data-sticky-state="stuck"] [data-id="search"] .ct-icon,
html.is-scrolled #header [data-id="cart"] .ct-icon-container,
html.is-scrolled #header [data-id="trigger"] .ct-icon,
html.is-scrolled #header [data-id="search"] .ct-icon,
html.is-scrolled .ct-header [data-id="cart"] .ct-icon-container,
html.is-scrolled .ct-header [data-id="trigger"] .ct-icon,
html.is-scrolled .ct-header [data-id="search"] .ct-icon {
  width: 28px;
  height: 28px;
}
html.is-scrolled #header a,
html.is-scrolled #header .ct-icon,
html.is-scrolled .ct-header a,
html.is-scrolled .ct-header .ct-icon,
#header[data-sticky-state="stuck"] a,
#header[data-sticky-state="stuck"] .ct-icon,
.ct-header[data-sticky-state="stuck"] a,
.ct-header[data-sticky-state="stuck"] .ct-icon {
  color: #050505 !important;
  fill: #050505 !important;
}
html.is-scrolled #header svg,
html.is-scrolled #header svg path,
html.is-scrolled .ct-header svg,
html.is-scrolled .ct-header svg path {
  fill: currentColor;
  stroke: currentColor;
}
html.is-scrolled #header .ct-menu-link,
body.is-scrolled #header .ct-menu-link,
html.is-scrolled .ct-header .ct-menu-link,
body.is-scrolled .ct-header .ct-menu-link {
  color: #050505 !important;
}
html.is-scrolled #header .ct-menu-link:hover,
body.is-scrolled #header .ct-menu-link:hover,
html.is-scrolled .ct-header .ct-menu-link:hover,
body.is-scrolled .ct-header .ct-menu-link:hover {
  color: #050505 !important;
}
html.is-scrolled #header [data-id="cart"] .ct-icon-container,
html.is-scrolled #header [data-id="trigger"] .ct-icon,
html.is-scrolled #header [data-id="search"] .ct-icon,
html.is-scrolled .ct-header [data-id="cart"] .ct-icon-container,
html.is-scrolled .ct-header [data-id="trigger"] .ct-icon,
html.is-scrolled .ct-header [data-id="search"] .ct-icon,
#header[data-sticky-state="stuck"] [data-id="cart"] .ct-icon-container,
#header[data-sticky-state="stuck"] [data-id="trigger"] .ct-icon,
#header[data-sticky-state="stuck"] [data-id="search"] .ct-icon,
.ct-header[data-sticky-state="stuck"] [data-id="cart"] .ct-icon-container,
.ct-header[data-sticky-state="stuck"] [data-id="trigger"] .ct-icon,
.ct-header[data-sticky-state="stuck"] [data-id="search"] .ct-icon {
  color: #050505 !important;
  fill: #050505 !important;
}
html.is-scrolled #header .ct-menu-link,
html.is-scrolled .ct-header .ct-menu-link {
  color: #050505 !important;
}
body.is-scrolled #header .ct-menu-link,
body.is-scrolled .ct-header .ct-menu-link {
  color: #050505 !important;
}

body.page-id-38 #main,
body.page-id-130 #main {
  padding-top: 0;
}
body.page-id-38 .ct-container-full[data-content="normal"],
body.page-id-130 .ct-container-full[data-content="normal"] {
  padding-top: 0;
}
body.page-id-38 .ct-header [data-id="cart"] .ct-icon-container,
body.page-id-130 .ct-header [data-id="cart"] .ct-icon-container,
body.page-id-38 .ct-header [data-id="trigger"] .ct-icon,
body.page-id-130 .ct-header [data-id="trigger"] .ct-icon {
  color: #f5f5f5 !important;
  fill: #f5f5f5 !important;
}

/* Products overview page */
.products-overview {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}
.products-overview__inner {
  display: grid;
  grid-template-columns: clamp(18rem, 28vw, 22rem) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
}
.products-overview__inner.filters-collapsed {
  grid-template-columns: minmax(0, 1fr);
}
.products-overview__filters {
  position: sticky;
  top: calc(var(--ionso-nav-safe, 120px) + clamp(1rem, 4vw, 2rem));
  align-self: start;
  z-index: 1;
}
.products-overview__results > .products-overview__filters {
  position: static;
  top: auto;
  width: 100%;
  margin-top: clamp(0.65rem, 2vw, 1.25rem);
  margin-bottom: clamp(0.85rem, 2vw, 1.5rem);
  z-index: auto;
  display: block;
}
.products-overview__results > .products-overview__filters .products-overview__filters-toggle {
  width: 100%;
}
.products-overview__results > .products-overview__filters + .products-overview__heading {
  margin-top: 0.25rem;
}
.products-overview__filters-backdrop {
  display: none;
}
.products-overview__filters-drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.products-overview__filters-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}
.products-overview__filters-close {
  appearance: none;
  background: transparent !important;
  border: 1px solid rgba(12, 22, 32, 0.16) !important;
  border-radius: 999px;
  color: rgba(12, 22, 32, 0.7) !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  height: 2.25rem;
  width: 2.25rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.products-overview__filters-close:hover,
.products-overview__filters-close:focus-visible {
  background: rgba(12, 22, 32, 0.08) !important;
  border-color: rgba(12, 22, 32, 0.24) !important;
  color: var(--nostalg-black) !important;
}
.products-overview__filters-close:focus-visible {
  outline: 2px solid var(--nostalg-blue-400);
  outline-offset: 3px;
}
.products-overview__filters-toggle {
  align-items: center;
  background: transparent !important;
  border: 1px solid var(--nostalg-black) !important;
  border-radius: 0;
  color: var(--nostalg-black) !important;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.95rem;
  margin-bottom: clamp(0.85rem, 2vw, 1.4rem);
  width: 100%;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.products-overview__filters-toggle-text {
  grid-column: 1;
  min-width: 0;
  text-align: left;
}
.products-overview__filters-toggle-icon {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  min-height: 1.75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  line-height: 1;
  justify-self: end;
}
.products-overview__filters-toggle:focus-visible {
  outline: 3px solid var(--nostalg-black);
  outline-offset: 2px;
}
.products-overview__filters-toggle-icon::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
  line-height: 1;
  transition: opacity 0.2s ease, background-image 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16s5-8 14-8 14 8 14 8-5 8-14 8S2 16 2 16z'/%3E%3Ccircle cx='16' cy='16' r='4'/%3E%3C/svg%3E");
}
.products-overview__filters-toggle:hover {
  background: #ffffff !important;
  border-color: #000000 !important;
  color: #000000 !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.products-overview__filters.is-collapsed .products-overview__filters-toggle-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 16s5-8 14-8 14 8 14 8-5 8-14 8S2 16 2 16z'/%3E%3Ccircle cx='16' cy='16' r='4'/%3E%3Cpath d='M4 4l24 24'/%3E%3C/svg%3E");
}
.products-overview__filters-panel {
  margin-top: 1.5rem;
  background: #fff;
  border-radius: 0;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  box-shadow: 0 16px 40px rgba(12, 22, 32, 0.08);
}
.products-overview__filters.is-collapsed .products-overview__filters-panel {
  display: none;
}

.products-overview__filters.is-collapsed:not(.is-drawer-active) .products-overview__filters-toggle {
  background: transparent !important;
  color: var(--nostalg-black) !important;
  border-color: var(--nostalg-black) !important;
  box-shadow: none !important;
}

.products-overview__filters.is-drawer-enabled.is-drawer-active .products-overview__filters-toggle {
  background: var(--nostalg-button-black) !important;
  border-color: var(--nostalg-button-black) !important;
  color: var(--nostalg-white) !important;
}

.products-overview__filters.is-collapsed.is-drawer-active .products-overview__filters-toggle,
.products-overview__filters.is-collapsed.is-drawer-active .products-overview__filters-toggle:hover,
.products-overview__filters.is-collapsed.is-drawer-active .products-overview__filters-toggle:focus-visible {
  background: #ffffff !important;
  border-color: var(--nostalg-black) !important;
  color: var(--nostalg-black) !important;
  box-shadow: none !important;
}

.products-overview__filters.is-drawer-enabled.is-drawer-active .products-overview__filters-toggle:hover,
.products-overview__filters.is-drawer-enabled.is-drawer-active .products-overview__filters-toggle:focus-visible {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: var(--nostalg-white) !important;
}
.products-filter {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}
.products-filter__separator {
  width: 100%;
  border-bottom: 1px solid rgba(12, 22, 32, 0.08);
  margin: clamp(1rem, 3vw, 1.75rem) 0;
}
.products-filter__sections-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.products-filter--section {
  border-bottom: 1px solid rgba(12, 22, 32, 0.08);
  padding: 1.25rem 0;
}
.products-filter--section:first-child {
  padding-top: 0;
}
.products-filter--section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.products-filter__header {
  margin-bottom: 0.75rem;
  border-radius: 12px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.products-filter__toggle {
  align-items: center;
  background: var(--nostalg-black) !important;
  border: 1px solid var(--nostalg-black) !important;
  color: var(--nostalg-white) !important;
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 7.5rem) min-content;
  column-gap: 0.65rem;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.65rem 0.9rem;
  width: 100%;
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.products-filter__toggle-label {
  grid-column: 1;
  align-self: center;
  min-width: 0;
}

.products-filter__toggle::selection,
.products-filter__toggle *::selection {
  background: rgba(12, 12, 12, 0.12);
  color: inherit;
}

.products-filter__toggle::-moz-selection,
.products-filter__toggle *::-moz-selection {
  background: rgba(12, 12, 12, 0.12);
  color: inherit;
}
.products-filter__header:hover,
.products-filter__header:focus-within {
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.products-filter__toggle:hover,
.products-filter__toggle:focus-visible,
.products-filter__toggle:active,
.products-filter__header:hover .products-filter__toggle,
.products-filter__header:focus-within .products-filter__toggle {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.4) !important;
  color: rgba(12, 12, 12, 0.95) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  outline: none !important;
}
.products-filter__toggle-icon {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
  justify-self: end;
}
.products-filter__toggle-icon::before {
  content: '\25BE';
  display: block;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}
.products-filter.is-collapsed .products-filter__toggle-icon::before {
  transform: rotate(-90deg);
}
.products-filter__summary {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  min-width: 0;
  max-width: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  justify-self: end;
}
.products-filter__header:hover .products-filter__summary,
.products-filter__header:focus-within .products-filter__summary,
.products-filter__toggle:hover .products-filter__summary,
.products-filter__toggle:focus-visible .products-filter__summary,
.products-filter__toggle:active .products-filter__summary,
.products-filter__toggle[aria-expanded="true"] .products-filter__summary {
  color: inherit;
}
.products-filter__panel {
  display: block;
  padding: 0.35rem 0 0;
}
.products-filter.is-collapsed .products-filter__panel {
  display: none;
}
.products-filter--price .products-filter__panel {
  background: rgba(14, 14, 14, 0.03);
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(12, 22, 32, 0.06);
  margin-top: 0.75rem;
  padding: 1.25rem 1.5rem 1.5rem;
}
.products-filter__controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.products-filter__controls input {
  width: 100%;
}
.products-filter__dash {
  font-size: 1.25rem;
  opacity: 0.6;
}
.products-filter__list {
  display: grid;
  gap: 0.5rem 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}

.products-filter__size-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.products-filter__size-group-title {
  margin: 0.65rem 0 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.72);
}
.products-filter__list--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.products-filter__list--wrap .products-filter__item {
  flex: 1 1 230px;
  min-width: 180px;
}
.products-filter__list--wrap .products-filter__option {
  width: 100%;
}
@media (max-width: 768px) {
  .products-filter__list--wrap .products-filter__item {
    flex-basis: 100%;
    min-width: auto;
  }
}
.products-filter__item {
  margin: 0;
}
.products-filter__option {
  align-items: center;
  display: flex;
  gap: 0.65rem;
  justify-content: flex-start;
  padding: 0.45rem 0.75rem;
  border-radius: 0;
  font-size: 0.95rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.products-filter__option:hover,
.products-filter__option:focus-within {
  background: rgba(12, 22, 32, 0.06);
  box-shadow: 0 6px 16px rgba(12, 22, 32, 0.08);
}
.products-filter__option input {
  accent-color: var(--nostalg-black);
  margin: 0;
  flex-shrink: 0;
}
.products-filter__label-text {
  flex: 1;
  min-width: 0;
}
.products-filter__count {
  align-items: center;
  background: var(--nostalg-white);
  border-radius: 0;
  color: rgba(14, 14, 14, 0.65);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 600;
  justify-content: center;
  min-width: 2rem;
  padding: 0 0.5rem;
  margin-left: auto;
}
.products-price-slider {
  --slider-min-percent: 0%;
  --slider-max-percent: 100%;
  --slider-min-label: 0%;
  --slider-max-label: 100%;
  --slider-track-bg: rgba(14, 14, 14, 0.18);
  --slider-track-active: rgba(14, 14, 14, 0.9);
  --slider-track-active-highlight: var(--nostalg-blue-400);
  position: relative;
}
.products-price-slider__range {
  position: relative;
  padding: 1.85rem 0 1.35rem;
}
.products-price-slider__track {
  background: linear-gradient(
    to right,
    var(--slider-track-bg) 0%,
    var(--slider-track-bg) calc(var(--slider-min-percent) * 1%),
    var(--slider-track-active) calc(var(--slider-min-percent) * 1%),
    var(--slider-track-active) calc(var(--slider-max-percent) * 1%),
    var(--slider-track-bg) calc(var(--slider-max-percent) * 1%),
    var(--slider-track-bg) 100%
  );
  border-radius: 0;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.products-price-slider__input {
  -webkit-appearance: none;
  background: none;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
}
.products-price-slider__input--min {
  z-index: 3;
}
.products-price-slider__input:focus-visible {
  outline: none;
}
.products-price-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: var(--nostalg-black);
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(12, 22, 32, 0.35);
  height: 20px;
  pointer-events: auto;
  width: 20px;
}
.products-price-slider__input::-moz-range-thumb {
  background: var(--nostalg-black);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(12, 22, 32, 0.35);
  height: 20px;
  pointer-events: auto;
  width: 20px;
}
.products-price-slider__input::-ms-thumb {
  background: var(--nostalg-black);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(12, 22, 32, 0.35);
  height: 20px;
  pointer-events: auto;
  width: 20px;
}
.products-price-slider__value {
  background: var(--nostalg-black);
  border-radius: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  left: 0;
  padding: 0.3rem 0.75rem;
  position: absolute;
  top: 0;
  transform: translate(-50%, -115%);
  white-space: nowrap;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(12, 22, 32, 0.25);
}
.products-price-slider__value--min {
  left: calc(var(--slider-min-label) * 1%);
}
.products-price-slider__value--max {
  left: calc(var(--slider-max-label) * 1%);
}
.products-price-slider__value--edge-start {
  transform: translate(-5%, -115%);
}
.products-price-slider__value--edge-end {
  transform: translate(-95%, -115%);
}
.products-price-slider__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.15rem;
}
.products-price-slider__hint {
  color: rgba(14, 14, 14, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}
.products-price-slider__fields {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}
.products-price-slider__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.products-price-slider__field {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}
.products-price-slider__field input {
  background: var(--nostalg-white);
  border: 1px solid rgba(14, 14, 14, 0.12);
  border-radius: 0;
  font-size: 0.95rem;
  min-height: 2.75rem;
  padding: 0.25rem 0.95rem 0.25rem 2.2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}
.products-price-slider__field input:focus {
  border-color: var(--nostalg-blue-400);
  box-shadow: 0 0 0 4px rgba(45, 133, 255, 0.18);
  outline: none;
}
.products-price-slider__field-prefix {
  color: rgba(14, 14, 14, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
  left: 0.9rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.products-price-slider__dash {
  flex: 0 0 auto;
}
.products-price-slider__field input::-webkit-outer-spin-button,
.products-price-slider__field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.products-price-slider__field input[type="number"] {
  -moz-appearance: textfield;
}
.products-price-slider__dash {
  color: rgba(14, 14, 14, 0.5);
  font-size: 1.25rem;
  font-weight: 600;
}
.products-price-slider__reset {
  align-self: stretch;
  background: var(--nostalg-black) !important;
  border: 1px solid var(--nostalg-black) !important;
  border-radius: 0;
  color: var(--nostalg-white) !important;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 1.05rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  width: 100%;
}
.products-price-slider__reset:hover {
  background: var(--nostalg-button-black-hover) !important;
  border-color: var(--nostalg-button-black-hover) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}
.products-price-slider__reset:focus-visible {
  outline: 3px solid var(--nostalg-black);
  outline-offset: 2px;
}
.products-price-slider__reset:disabled,
.products-price-slider__reset:disabled:hover {
  background: rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(0, 0, 0, 0.12) !important;
  color: rgba(255, 255, 255, 0.35) !important;
  cursor: not-allowed;
  box-shadow: none;
}
.products-price-slider__apply {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--nostalg-black);
  border: 1px solid var(--nostalg-black);
  border-radius: 0;
  color: #f5f5f5;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 1.35rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  width: 100%;
}
.products-price-slider__apply.is-visible {
  display: flex;
}
.products-price-slider__apply:hover,
.products-price-slider__apply:focus-visible {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(12, 22, 32, 0.24);
}
.products-price-slider__apply:focus-visible {
  outline: 2px solid var(--nostalg-blue-400);
  outline-offset: 3px;
}
.products-price-slider__apply:disabled,
.products-price-slider__apply:disabled:hover {
  cursor: not-allowed;
  box-shadow: none;
}
.products-filter--actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.products-overview__filters--autosubmit .products-filter__apply {
  display: none;
}
.products-overview__filters--autosubmit .products-filter--actions {
  align-items: flex-end;
  flex-direction: row;
  justify-content: space-between;
}
.products-filter__apply {
  width: 100%;
}
.products-filter__reset {
  font-weight: 600;
  text-align: center;
}
.products-overview__heading {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.products-overview__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.products-overview__meta {
  margin: 0;
  color: rgba(14, 14, 14, 0.65);
}
.products-overview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.products-overview__ordering {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: stretch;
  background: #f8f8f8;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.products-overview__ordering-field {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  flex: 1 1 240px;
  min-width: 220px;
}
.products-overview__ordering-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(14, 14, 14, 0.65);
}
.products-overview__ordering select {
  min-width: 180px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 0.6rem 2.4rem 0.6rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: #ffffff;
  background-image: linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.45) 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.45) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  appearance: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  max-height: 220px;
  overflow-y: auto;
}
.products-overview__ordering select:focus-visible {
  outline: 3px solid var(--nostalg-black);
  outline-offset: 2px;
  border-color: var(--nostalg-black);
}
.products-overview__ordering option {
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
}

.ordering-dropdown__trigger {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  color: rgba(12, 12, 12, 0.95) !important;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.ordering-dropdown__trigger:focus-visible {
  outline: none !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(0, 0, 0, 0.35);
  border-color: var(--nostalg-black);
  color: rgba(12, 12, 12, 0.95) !important;
}

.ordering-dropdown__chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid rgba(0, 0, 0, 0.55);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}

.ordering-dropdown__trigger[aria-expanded="true"] .ordering-dropdown__chevron {
  transform: rotate(-135deg);
}

.ordering-dropdown__menu {
  position: absolute;
  inset: auto 0 auto 0;
  top: calc(100% + 6px);
  z-index: 20;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  border: none;
}

.ordering-dropdown__scroll {
  display: flex;
  flex-direction: column;
  padding: 0.25rem;
}

.ordering-dropdown__option {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.8rem;
  border: none !important;
  outline: none;
  box-shadow: none !important;
  background: transparent !important;
  color: rgba(14, 14, 14, 0.85);
  font-size: 0.95rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.ordering-dropdown__option + .ordering-dropdown__option {
  border-top: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 0;
}

.ordering-dropdown__option:hover,
.ordering-dropdown__option:focus-visible,
.ordering-dropdown__option:active {
  outline: none !important;
  background: rgba(0, 0, 0, 0.06) !important;
  color: rgba(12, 12, 12, 0.95) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.ordering-dropdown__option.is-selected {
  background: rgba(0, 0, 0, 0.08) !important;
  color: rgba(12, 12, 12, 0.95) !important;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.ordering-dropdown__option.is-selected:hover,
.ordering-dropdown__option.is-selected:focus-visible {
  background: rgba(0, 0, 0, 0.1) !important;
  color: rgba(12, 12, 12, 0.95) !important;
}

.ordering-dropdown__trigger:hover,
.ordering-dropdown__trigger[aria-expanded="true"],
.ordering-dropdown__trigger[aria-expanded="true"]:focus-visible {
  background: rgba(0, 0, 0, 0.04);
  border-color: var(--nostalg-black);
  color: rgba(12, 12, 12, 0.95) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.products-overview__ordering-field--sort {
  align-self: center;
}

.products-overview__ordering-field--sort .ordering-dropdown__trigger--icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  justify-content: center;
  border-radius: 999px;
}

.products-overview__ordering-field--sort .ordering-dropdown__trigger--icon .ordering-dropdown__chevron,
.products-overview__ordering-field--sort .ordering-dropdown__trigger--icon .ordering-dropdown__value {
  display: none;
}

.ordering-dropdown__dots {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
}

.products-overview__ordering-field--sort .ordering-dropdown__menu {
  right: 0;
  left: auto;
  min-width: 220px;
}
.products-overview__pagination {
  width: 100%;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.nostalg-video-hero {
  --video-progress: 0;
  --video-scrub-space: 10svh;
  position: relative;
  width: 100%;
  height: auto;
  margin-top: calc(var(--ionso-nav-safe, 0px) * -1);
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  overflow: visible;
  background: transparent;
  transition: height 0.35s ease, margin 0.35s ease, opacity 0.35s ease;
}

.nostalg-video-hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #ffffff;
  background-image: var(--video-poster);
  background-size: cover;
  background-position: center;
}

.nostalg-video-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  z-index: 2;
}

.nostalg-video-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  pointer-events: auto;
}

.nostalg-video-hero__cta,
.nostalg-video-hero__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(8, 8, 8, 0.5);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.1s linear;
}

.nostalg-video-hero__cta:hover,
.nostalg-video-hero__cta:focus-visible {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateY(-1px);
}

.nostalg-video-hero__cta:focus:not(:focus-visible) {
  background: rgba(8, 8, 8, 0.5);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.8);
  transform: none;
}

.nostalg-video-hero__play:hover,
.nostalg-video-hero__play:focus-visible {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  transform: translate(-50%, -50%) translateY(-1px);
}

.nostalg-video-hero__cta--ghost {
  background: rgba(255, 255, 255, 0.08);
}

.nostalg-video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  display: block;
  opacity: calc(1 - var(--video-fade, 0) * 0.2);
  transition: opacity 0.1s linear;
}

.nostalg-video-hero__sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: calc(var(--video-fade, 0) * 0.2);
  pointer-events: none;
}

.nostalg-video-hero__spacer {
  height: var(--video-scrub-space);
}

.nostalg-video-hero__play {
  position: absolute;
  inset: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(8, 8, 8, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
  cursor: pointer;
  width: 52px;
  height: 52px;
  padding: 0;
  line-height: 1;
}

.nostalg-video-hero__play.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nostalg-video-hero__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.nostalg-video-hero__play-icon--muted {
  display: none;
}

.nostalg-video-hero__play[data-state="muted"] .nostalg-video-hero__play-icon--muted {
  display: inline-flex;
}

.nostalg-video-hero__play[data-state="muted"] .nostalg-video-hero__play-icon--play {
  display: none;
}

.nostalg-video-hero__play-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nostalg-video-hero__fab {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 4vw, 2.25rem);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.75);
  background: #ffffff;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  z-index: 20;
}

.nostalg-video-hero__fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nostalg-video-hero__fab:hover,
.nostalg-video-hero__fab:focus-visible {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.nostalg-video-hero.is-ended {
  pointer-events: none;
}

.products-overview__results[data-infinite-active="true"] .products-overview__pagination-container {
  display: none;
}

.products-overview__infinite {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.products-overview__load-more {
  min-height: 48px;
  padding: 0.6rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--nostalg-black);
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.products-overview__load-more:hover,
.products-overview__load-more:focus-visible {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-1px);
}

.products-overview__load-more[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.products-overview__loading {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}

.products-overview__end {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
}

.products-overview__sentinel {
  width: 1px;
  height: 1px;
}

@media (max-width: 1024px) {
  .products-overview__toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .products-overview__ordering {
    gap: 0.75rem;
  }
  .products-overview__ordering-field {
    min-width: 0;
    flex-basis: 100%;
  }
  .products-overview__ordering select {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .products-overview__ordering select {
    min-width: 0;
  }
}
.products-overview__pagination--top {
  margin-top: 0;
}
.products-overview__pagination-container {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.products-overview__pagination-summary {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.72);
}
.products-overview__pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.products-overview__pagination .page-numbers li {
  list-style: none;
}
.products-overview__pagination a,
.products-overview__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 0;
  padding: 0 0.75rem;
  background: var(--nostalg-gray-300);
  color: var(--nostalg-black);
  font-weight: 600;
}
.products-overview__pagination .prev.page-numbers,
.products-overview__pagination .next.page-numbers {
  padding: 0 1.25rem;
}
.products-overview__pagination .current {
  background: var(--nostalg-primary);
  color: #fff;
}

/* WooCommerce cards (Blocksy type 2) */
[data-products] .ct-woo-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  justify-content: center;
  text-align: center;
  box-shadow: none;
  transform-origin: 50% 100%;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-products] .ct-woo-card-actions:hover,
[data-products] .ct-woo-card-actions:focus-within {
  background: transparent !important;
  border: none !important;
  box-shadow: none;
  transform: none;
}

[data-products] .ct-woo-card-actions .price,
[data-products] .ct-woo-card-actions .price * {
  color: #ffffff !important;
}

[data-products] .ct-woo-card-actions .price:not(:only-child)::after {
  background: rgba(255, 255, 255, 0.12) !important;
}

[data-products] .ct-woo-card-actions .button,
[data-products] .ct-woo-card-actions .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  font-size: 0.7rem;
  padding-inline: 0.95rem 2.2rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

[data-products] .ct-woo-card-actions .price,
[data-products] .ct-woo-card-actions .price * {
  font-size: 0.82rem !important;
}

@media (max-width: 640px) {
  .nostalg-product-section [data-products] .ct-woo-card-actions {
    font-size: 0.85rem;
    gap: 0.3rem;
  }

  .nostalg-product-section [data-products] .ct-woo-card-actions .price,
  .nostalg-product-section [data-products] .ct-woo-card-actions .price * {
    font-size: 0.8rem !important;
  }

  .nostalg-product-section [data-products] .ct-woo-card-actions .button,
  .nostalg-product-section [data-products] .ct-woo-card-actions .added_to_cart {
    min-height: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
}

.ct-cart-actions .single_add_to_cart_button::after,
[data-products] .ct-woo-card-actions .button::after,
[data-products] .ct-woo-card-actions .added_to_cart::after {
  content: '';
  width: 18px;
  height: 18px;
  position: absolute;
  inset-inline-end: clamp(0.9rem, 1.8vw, 1.35rem);
  top: 50%;
  margin-top: -9px;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  mask-image: url('data:image/svg+xml,%3Csvg width=\"20\" height=\"20\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\"%3E%3Cpath d=\"M2 3h2l2 11h10l2-8H6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/%3E%3Ccircle cx=\"8.5\" cy=\"16.5\" r=\"1.5\"/%3E%3Ccircle cx=\"14.5\" cy=\"16.5\" r=\"1.5\"/%3E%3C/svg%3E');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg width=\"20\" height=\"20\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"1.6\"%3E%3Cpath d=\"M2 3h2l2 11h10l2-8H6\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/%3E%3Ccircle cx=\"8.5\" cy=\"16.5\" r=\"1.5\"/%3E%3Ccircle cx=\"14.5\" cy=\"16.5\" r=\"1.5\"/%3E%3C/svg%3E');
}


.ct-cart-actions .single_add_to_cart_button.loading,
[data-products] .ct-woo-card-actions .button.loading,
[data-products] .ct-woo-card-actions .added_to_cart.loading {
  gap: 0.45rem;
}

.ct-cart-actions .single_add_to_cart_button.loading::after,
[data-products] .ct-woo-card-actions .button.loading::after,
[data-products] .ct-woo-card-actions .added_to_cart.loading::after {
  animation: none !important;
  -webkit-animation: none !important;
  mask-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="1.6"%3E%3Cpath d="M2 3h2l2 11h10l2-8H6" stroke-linecap="round" stroke-linejoin="round"/%3E%3Ccircle cx="8.5" cy="16.5" r="1.5"/%3E%3Ccircle cx="14.5" cy="16.5" r="1.5"/%3E%3C/svg%3E') !important;
  -webkit-mask-image: url('data:image/svg+xml,%3Csvg width="20" height="20" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-width="1.6"%3E%3Cpath d="M2 3h2l2 11h10l2-8H6" stroke-linecap="round" stroke-linejoin="round"/%3E%3Ccircle cx="8.5" cy="16.5" r="1.5"/%3E%3Ccircle cx="14.5" cy="16.5" r="1.5"/%3E%3C/svg%3E') !important;
}

[data-products="type-2"] .ct-woo-card-actions {
  background: var(--nostalg-black) !important;
  border-block: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: var(--nostalg-white) !important;
}

[data-products="type-2"] .ct-woo-card-actions .price,
[data-products="type-2"] .ct-woo-card-actions .price * {
  color: var(--nostalg-white) !important;
}

[data-products="type-2"] .ct-woo-card-actions .price:not(:only-child)::after {
  background: rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .ct-cart-actions,
  [data-products] .ct-woo-card-actions {
    transition: border-color 0.25s ease, box-shadow 0.25s ease,
      background 0.25s ease;
  }

  .ct-cart-actions:hover,
  .ct-cart-actions:focus-within,
  [data-products] .ct-woo-card-actions:hover,
  [data-products] .ct-woo-card-actions:focus-within {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .products-overview__inner {
    grid-template-columns: 1fr;
  }
  .products-overview__filters {
    position: relative;
    order: -1;
    z-index: var(--layer-filter-panel, 5300);
    margin-bottom: clamp(1rem, 4vw, 2rem);
  }
  .products-overview__filters-toggle {
    justify-content: space-between;
  }
  .products-overview__filters-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100dvh;
    min-height: 100vh;
    width: min(90vw, 360px);
    max-width: 400px;
    margin-top: 0;
    padding: calc(env(safe-area-inset-top, 0px) + clamp(3.5rem, 10vw, 4.75rem)) clamp(1.5rem, 5vw, 2.25rem) clamp(2.5rem, 6vw, 3rem);
    transform: translateX(-105%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: var(--layer-filter-panel, 5300);
    box-shadow: 0 32px 80px rgba(12, 22, 32, 0.3);
    background: #ffffff;
    color: var(--nostalg-black);
  }
  .products-overview__filters-panel .products-filter__toggle {
    background: #ffffff !important;
    border-color: rgba(12, 22, 32, 0.18) !important;
    color: rgba(12, 12, 12, 0.95) !important;
  }
  .products-overview__filters-panel .products-filter__header:hover .products-filter__toggle,
  .products-overview__filters-panel .products-filter__header:focus-within .products-filter__toggle,
  .products-overview__filters-panel .products-filter__toggle:hover,
  .products-overview__filters-panel .products-filter__toggle:focus-visible,
  .products-overview__filters-panel .products-filter__toggle:active,
  .products-overview__filters-panel .products-filter__toggle[aria-expanded="true"] {
    background: rgba(12, 22, 32, 0.04) !important;
    border-color: rgba(12, 22, 32, 0.4) !important;
    color: rgba(12, 12, 12, 0.95) !important;
    box-shadow: 0 12px 26px rgba(12, 22, 32, 0.1);
  }
  .products-overview__filters-panel .products-filter__summary {
    color: rgba(12, 12, 12, 0.85);
  }
  .products-overview__filters.is-collapsed .products-overview__filters-panel {
    display: block;
  }
  .products-overview__filters-backdrop {
    display: block !important;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: var(--layer-filter-backdrop, 5100);
  }
  .products-overview__filters-drawer-header {
    display: flex;
  }
  .products-overview__filters-title {
    font-size: 1.2rem;
  }
  .products-overview__filters.is-drawer-active .products-overview__filters-panel {
    transform: translateX(0);
  }
.products-overview__filters.is-drawer-active .products-overview__filters-backdrop {
  opacity: 1;
  display: block !important;
  pointer-events: auto;
}
.products-overview__inner.filters-collapsed .products-overview__filters {
  position: static;
  top: auto;
  width: 100%;
  margin-bottom: 1rem;
  order: -1;
}
.products-overview__inner.filters-collapsed .products-overview__filters:not(.is-drawer-enabled) {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}
.products-overview__inner.filters-collapsed .products-overview__filters:not(.is-drawer-enabled) .products-overview__filters-toggle {
  width: auto;
  min-width: 0;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.products-overview__inner.filters-collapsed .products-overview__filters:not(.is-drawer-enabled) .products-overview__filters-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  min-height: 1.5rem;
}
.products-overview__inner.filters-collapsed .products-overview__filters.is-drawer-enabled .products-overview__filters-toggle {
  width: 100%;
}
  .products-filter__sections-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .products-filter--actions {
    flex-direction: row;
  }
  .products-filter__apply {
    width: auto;
    flex: 1;
  }
  .products-overview__filters--autosubmit .products-filter--actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 600px) {
  .products-filter__sections-grid {
    gap: 1rem;
  }

  .products-filter__controls {
    flex-direction: column;
    align-items: stretch;
  }
  .products-filter--actions {
    flex-direction: column;
  }
  .products-filter__list {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .products-filter__summary {
    font-size: 0.8rem;
    max-width: 60%;
    text-align: right;
    flex-basis: auto;
    display: flex;
    justify-content: flex-end;
  }
  .products-filter__option {
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.35rem 0.5rem;
  }
  .products-filter__count {
    margin-left: auto;
  }
  .products.columns-3,
  .products.columns-4,
  .products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.75rem, 4vw, 1.35rem);
  }
  .products.columns-3 > li,
  .products.columns-4 > li,
  .products.columns-5 > li {
    width: 100% !important;
    margin: 0 !important;
  }
  .products-price-slider__fields {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .products-price-slider__dash {
    display: none;
  }
  .products-price-slider__field--max input {
    text-align: left;
    padding-right: 1rem;
  }
  .products-price-slider__field--max .products-price-slider__field-prefix {
    right: auto;
    left: 0.9rem;
  }
  .products-price-slider__reset {
    justify-self: flex-start;
  }
  .products-price-slider__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .products-price-slider__reset {
    align-self: flex-start;
  }
  .products-price-slider__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 1280px) {
  .products.columns-3,
  .products.columns-4,
  .products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.65rem, 2vw, 1.25rem);
  }

  .products.columns-3 > li,
  .products.columns-4 > li,
  .products.columns-5 > li {
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (min-width: 1281px) and (max-width: 1919px) {
  .products.columns-3,
  .products.columns-4,
  .products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.8vw, 1.5rem);
  }

  .products.columns-3 > li,
  .products.columns-4 > li,
  .products.columns-5 > li {
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (min-width: 1920px) and (max-width: 3839px) {
  .products.columns-3,
  .products.columns-4,
  .products.columns-5 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.75rem);
  }

  .products.columns-3 > li,
  .products.columns-4 > li,
  .products.columns-5 > li {
    width: 100% !important;
    margin: 0 !important;
  }
}

@media (min-width: 3840px) {
  .products.columns-3,
  .products.columns-4,
  .products.columns-5,
  .products.columns-6 {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(1.25rem, 1.2vw, 2rem);
  }

.products.columns-3 > li,
.products.columns-4 > li,
.products.columns-5 > li,
.products.columns-6 > li {
  width: 100% !important;
  margin: 0 !important;
}
}

/* WooCommerce gallery navigation */
.woocommerce-product-gallery__trigger {
  display: none !important;
}

.ct-product-gallery-container [class*='flexy-arrow'] {
  color: #050505 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(5, 5, 5, 0.35);
  box-shadow: 0 18px 35px rgba(5, 5, 5, 0.15);
  opacity: 1 !important;
  visibility: visible !important;
}
.ct-product-gallery-container [class*='flexy-arrow']:hover,
.ct-product-gallery-container [class*='flexy-arrow']:focus-visible {
  background: #050505 !important;
  color: #ffffff !important;
  border-color: #050505;
}

/* Ensure transparent PNGs render on white instead of dark backgrounds */
.woocommerce ul.products li.product .ct-woo-card-image,
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product .ct-woo-card-inner,
.woocommerce div.product div.images,
.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-product-gallery__image,
.woocommerce .wp-block-woocommerce-product-image-gallery,
.woocommerce .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image {
  background: #ffffff !important;
}

/* Product card hover swap */
.nostalg-image-stack {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  isolation: isolate;
}

.nostalg-image-stack > a,
.nostalg-image-stack > img {
  grid-area: 1 / 1;
}

.nostalg-image-stack > a {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nostalg-image-stack > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nostalg-image-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.28s ease-in-out;
  will-change: opacity;
}

.nostalg-image-stack img.nostalg-hover-image {
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.nostalg-image-stack:focus-within img.nostalg-hover-image,
.nostalg-image-stack:hover img.nostalg-hover-image {
  opacity: 1;
}

.nostalg-image-stack:focus-within img:not(.nostalg-hover-image),
.nostalg-image-stack:hover img:not(.nostalg-hover-image) {
  opacity: 0;
}

/* Buttons: keep text dark on hover (outline / white variants) */
.wp-block-button__link.has-black-color.has-white-background-color,
.wp-block-button.is-style-outline > .wp-block-button__link,
.wp-block-button__link.has-black-color.has-background {
  color: #000000 !important;
}

.wp-block-button__link.has-black-color.has-white-background-color:hover,
.wp-block-button__link.has-black-color.has-white-background-color:focus-visible,
.wp-block-button.is-style-outline > .wp-block-button__link:hover,
.wp-block-button.is-style-outline > .wp-block-button__link:focus-visible,
.wp-block-button__link.has-black-color.has-background:hover,
.wp-block-button__link.has-black-color.has-background:focus-visible {
  color: #000000 !important;
  background: transparent !important;
  border-color: currentColor !important;
}
.has-filter-drawer-open {
  overflow: hidden;
  touch-action: none;
}
.has-filter-drawer-open .ct-header,
.has-filter-drawer-open #header {
  pointer-events: none;
}

/* Keep navbar above page content but below mobile filter drawer/backdrop */
.ionso-navbar {
  z-index: 2000 !important;
}

/* Stock badges */
.single-product .product .stock,
.products .product .stock {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px !important;
  border: 1px solid transparent;
  margin: 1.1rem 0 0;
  line-height: 1;
}

.single-product .product .stock.out-of-stock,
.products .product .stock.out-of-stock {
  background: #d62828;
  color: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

.single-product .product .stock.out-of-stock::before,
.products .product .stock.out-of-stock::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px !important;
  background: #ffffff;
  display: inline-block;
}

.nostalg-condition-stars,
.nostalg-condition-rating {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.woocommerce-product-details__short-description .nostalg-condition-inline {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.woocommerce-product-details__short-description .nostalg-condition-label {
  font-weight: 600;
}

.woocommerce-product-details__short-description .nostalg-size-inline {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.woocommerce-product-details__short-description .nostalg-size-label {
  font-weight: 600;
}

.woocommerce-product-details__short-description .nostalg-size-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.woocommerce-product-details__short-description .nostalg-size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.woocommerce-product-details__short-description .nostalg-size-chip:hover,
.woocommerce-product-details__short-description .nostalg-size-chip:focus {
  background: #1f1f1f;
  color: #ffffff;
  border-color: #1f1f1f;
}

.woocommerce-product-details__short-description .nostalg-size-chip:focus {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}

.woocommerce-product-details__short-description .nostalg-size-chip:hover,
.woocommerce-product-details__short-description .nostalg-size-chip:focus {
  transform: translateY(-1px);
}

.single-product .nostalg-used-shoe-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f8f7f4;
  color: #1f1f1f;
  font-weight: 500;
  line-height: 1.5;
  font-size: 0.9rem;
}

.nostalg-condition-stars {
  color: #d4a72c;
}

.nostalg-condition-star {
  font-size: 0.95em;
  line-height: 1;
}

.nostalg-condition-star--empty {
  opacity: 0.35;
}

.nostalg-condition-rating {
  letter-spacing: 0.04em;
  color: #1f1f1f;
}

.nostalg-size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #ffffff;
  color: #1f1f1f;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nostalg-size-chip:hover,
.nostalg-size-chip:focus-visible {
  background: #1f1f1f;
  color: #ffffff;
  border-color: #1f1f1f;
  transform: translateY(-1px);
}

.nostalg-size-chip.is-selected {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.nostalg-size-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(12, 12, 12, 0.75);
  letter-spacing: 0.02em;
}

.nostalg-size-text-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 0.05rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nostalg-size-text-link:hover,
.nostalg-size-text-link:focus-visible {
  color: #000000;
  border-color: #000000;
}

.nostalg-size-text-link.is-selected {
  color: #000000;
  border-color: #000000;
  font-weight: 600;
}

.nostalg-title-sizes {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}

.nostalg-title-size-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.02em;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nostalg-title-size-link:hover,
.nostalg-title-size-link:focus-visible {
  color: #000000;
  border-color: #000000;
}

.nostalg-title-size-link.is-selected {
  color: #000000;
  border-color: #000000;
  font-weight: 600;
}

.nostalg-size-picker {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.nostalg-size-picker__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(12, 12, 12, 0.65);
}

.nostalg-size-picker__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nostalg-size-option {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  color: #1f1f1f;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nostalg-size-option:hover,
.nostalg-size-option:focus-visible {
  background: #1f1f1f;
  color: #ffffff;
  border-color: #1f1f1f;
  transform: translateY(-1px);
}

.nostalg-size-option.is-selected {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.nostalg-size-option.is-selected:hover,
.nostalg-size-option.is-selected:focus-visible {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #000000 !important;
}

@media (max-width: 420px) {
  .nostalg-hero-slider,
  .nostalg-hero-slider.is-products-scrollable {
    padding-bottom: 0 !important;
  }
}

.nostalg-hero-slider,
.nostalg-hero-slider.is-products-scrollable {
  padding-bottom: 0 !important;
  padding-block-end: 0 !important;
}
.ct-woo-card-actions {
  width: 100%;
  align-self: stretch;
}

/* Related product card overrides (ensure full-width CTA + icon alignment). */
.single-product .related.products.is-width-constrained .ct-woo-card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
}

.single-product .related.products .ct-woo-card-actions .button,
.single-product .related.products .ct-woo-card-actions .added_to_cart {
  display: flex !important;
  width: 100% !important;
  justify-content: center !important;
  padding: 0.7rem 0.95rem !important;
  padding-inline: 0.95rem !important;
  white-space: normal !important;
}

.single-product .related.products .ct-woo-card-actions .button::after,
.single-product .related.products .ct-woo-card-actions .added_to_cart::after {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-block !important;
  margin-left: 0.4rem !important;
}

.single-product .related.products .ct-woo-card-actions .button::before,
.single-product .related.products .ct-woo-card-actions .added_to_cart::before {
  display: none !important;
  content: none !important;
}
