
:where(p, h1, h2, h3, h4, h5, h6, figure, blockquote, dl, dd, pre) { margin: 0; }




* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

input {
  font-family: inherit;
}


.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.js .animate-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(30px);
}

.js .animate-on-scroll {
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.js .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.js .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.js .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.js .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.js .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }
.js .animate-on-scroll:nth-child(7) { transition-delay: 0.6s; }
.js .animate-on-scroll:nth-child(8) { transition-delay: 0.7s; }
.js .animate-on-scroll:nth-child(9) { transition-delay: 0.8s; }



.hero {
  font-family: 'Space Mono', monospace;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  min-height: 75vh;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 0;
  overflow-x: clip;
}


.hero-marquee {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  overflow: hidden;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) 0;
  white-space: nowrap;
}

.hero-marquee-track {
  display: flex;
  animation: hero-marquee-scroll 20s linear infinite;
  width: max-content;
}

.hero-marquee-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: var(--wp--preset--spacing--50);
}

@keyframes hero-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.hero-header {
  border-top: 4px solid var(--wp--preset--color--accent-1);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--base);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.hero-header.is-scrolled {
  box-shadow: 0 6px 0 var(--wp--preset--color--contrast);
}

.hero-header-inner {
      margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-brand {
  display: flex;
  align-items: baseline;
  gap: var(--wp--preset--spacing--30);
}

.hero-brand-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--display);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-brand-accent {
  color: var(--wp--preset--color--accent-1);
}

.hero-brand-tag {
  font-family: 'Space Mono', monospace;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--wp--preset--color--accent-2);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  display: none;
}

@media (min-width: 769px) {
.hero-brand-tag {
 display: inline-block; 
}
}

.hero-nav {
  gap: var(--wp--preset--spacing--40);
  align-items: center;
}

.hero-nav a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.hero-nav a:hover {
  color: var(--wp--preset--color--accent-1);
}

.hero-nav-cart {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base) !important;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  border: 3px solid var(--wp--preset--color--contrast);
  transition: background 0.15s, color 0.15s !important;
}

.hero-nav-cart:hover {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1);
}


.hero-filters {
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--base-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hero-filters-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  display: flex;
  gap: var(--wp--preset--spacing--20);
  align-items: center;
}

.hero-filter {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.12s;
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

.hero-filter:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}

.hero-filter-active {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
}


.hero-grid {
  padding: var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--base-2);
}

.hero-grid-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}

.hero-product-featured {
  grid-column: span 2;
  grid-row: span 2;
}


.hero-product {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  animation: hero-card-in 0.5s ease-out both;
}

.hero-product:nth-child(1) { animation-delay: 0.05s; }
.hero-product:nth-child(2) { animation-delay: 0.12s; }
.hero-product:nth-child(3) { animation-delay: 0.19s; }
.hero-product:nth-child(4) { animation-delay: 0.26s; }
.hero-product:nth-child(5) { animation-delay: 0.33s; }

@keyframes hero-card-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-product:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}

.hero-product-media {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}

.hero-product-featured .hero-product-media {
  flex: 1;
  min-height: 300px;
}

.hero-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-product-featured .hero-product-media img {
  position: absolute;
  top: 0;
  left: 0;
}

.hero-product-badge {
  position: absolute;
  top: var(--wp--preset--spacing--30);
  right: var(--wp--preset--spacing--30);
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  border: 2px solid var(--wp--preset--color--contrast);
  transform: rotate(2deg);
  z-index: 2;
  line-height: 1.2;
}

.hero-product-badge-alt {
  background: var(--wp--preset--color--contrast);
  transform: rotate(-1.5deg);
}

.hero-product-details {
  padding: var(--wp--preset--spacing--30);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
  flex-shrink: 0;
}

.hero-product-featured .hero-product-details {
  padding: var(--wp--preset--spacing--40);
  gap: var(--wp--preset--spacing--30);
}

.hero-product-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--lg);
  line-height: 1.2;
  margin: 0;
}

.hero-product-featured .hero-product-name {
  font-size: var(--wp--preset--font-size--xx-large);
}

.hero-product-desc {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  margin: 0;
  line-height: 1.4;
}

.hero-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--wp--preset--spacing--20);
}

.hero-product-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xxx-large);
  color: var(--wp--preset--color--accent-1);
  letter-spacing: -0.02em;
}

.hero-product-featured .hero-product-price {
  font-size: var(--wp--preset--font-size--huge);
}

.hero-product-add {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--contrast);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  cursor: pointer;
  transition: background 0.12s, transform 0.12s;
  white-space: nowrap;
}

.hero-product-add:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

.hero-product-featured .hero-product-add {
  font-size: var(--wp--preset--font-size--base);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

.hero-product-featured .hero-product-add:hover {
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}


.hero-view-all-strip {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--wp--preset--spacing--30) 0;
}

.hero-view-all {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--lg);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--60);
  box-shadow: 4px 4px 0 var(--wp--preset--color--accent-1);
  display: inline-block;
  transition: all 0.15s;
}

.hero-view-all:hover {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  transform: translate(-2px, -2px);
}


@media (max-width: 1024px) {
.hero-grid-inner {

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

    grid-column: span 2;
    grid-row: span 1;
  
}
}

@media (max-width: 768px) {
.hero-brand-name {

    font-size: var(--wp--preset--font-size--xxx-large);
  
}

.hero-grid-inner {

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
.hero-product-featured {

    grid-column: span 2;
    grid-row: span 1;
  
}
.hero-product-featured .hero-product-media {

    min-height: 220px;
  
}
.hero-product {

    box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  
}
.hero-product-name {

    font-size: var(--wp--preset--font-size--base);
  
}
.hero-product-featured .hero-product-name {

    font-size: var(--wp--preset--font-size--xl);
  
}
.hero-product-price {

    font-size: var(--wp--preset--font-size--xx-large);
  
}
.hero-product-add {

    font-size: var(--wp--preset--font-size--small);
    padding: 0.25rem var(--wp--preset--spacing--20);
  
}
.hero-product-featured .hero-product-add {

    font-size: var(--wp--preset--font-size--small);
    padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  
}
}

@media (max-width: 480px) {
.hero-grid {

    padding: var(--wp--preset--spacing--30);
  
}
.hero-product-footer {

    flex-direction: column;
    align-items: flex-start;
    gap: var(--wp--preset--spacing--20);
  
}
.hero-product-add {

    width: 100%;
    text-align: center;
  
}
.hero-product-featured .hero-product-footer {

    flex-direction: row;
    align-items: center;
  
}
.hero-product-featured .hero-product-add {

    width: auto;
  
}
}



.shop {
  background: var(--wp--preset--color--base);
  border-top: 3px solid var(--wp--preset--color--contrast);
}

.shop-header {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--50) var(--wp--preset--spacing--40);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}
.shop-header-inner {
      max-width: none;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--30);
}

.shop-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  letter-spacing: -0.02em;
  line-height: 1;
}

.shop-subtitle {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--accent-2);
}

.shop-subtitle strong {
  color: var(--wp--preset--color--accent-1);
}

.shop-layout {
  padding: var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--base-2);
}
.shop-layout-inner {
      max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--wp--preset--spacing--50);
  align-items: start;
}


.shop-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--30);
}

.filter-group {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
}

.filter-group-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  margin: 0;
}

.filter-options {
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
}

.filter-checkbox,
.filter-radio {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
  font-size: var(--wp--preset--font-size--small);
  cursor: pointer;
  padding: var(--wp--preset--spacing--20) 0;
  transition: color 0.12s;
}

.filter-checkbox:hover,
.filter-radio:hover {
  color: var(--wp--preset--color--accent-1);
}

.filter-checkbox input,
.filter-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-check-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  flex-shrink: 0;
  position: relative;
  transition: background 0.12s, border-color 0.12s;
}

.filter-checkbox input:checked + .filter-check-mark {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

.filter-checkbox input:checked + .filter-check-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid var(--wp--preset--color--base);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-radio-mark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 50%;
  background: var(--wp--preset--color--base);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.12s;
}

.filter-radio input:checked + .filter-radio-mark {
  border-color: var(--wp--preset--color--accent-1);
}

.filter-radio input:checked + .filter-radio-mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--accent-1);
}

.filter-label-text {
  flex: 1;
}

.filter-count {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  background: var(--wp--preset--color--base-2);
  padding: 2px 6px;
  border: 1px solid var(--wp--preset--color--accent-2);
}

.filter-reset {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  text-align: center;
  color: var(--wp--preset--color--accent-1);
  border: 2px solid var(--wp--preset--color--accent-1);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  transition: all 0.12s;
  display: block;
}

.filter-reset:hover {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
}


.shop-sidebar-toggle {
  display: none;
}

/* WooCommerce Product Filter Blocks - Brutalist Styling */
:root :where(.shop-products .wp-block-woocommerce-product-filters) {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--30);
  margin-bottom: var(--wp--preset--spacing--40);
}

:root :where(.shop-products .wp-block-woocommerce-product-filter-taxonomy),
:root :where(.shop-products .wp-block-woocommerce-product-filter-price),
:root :where(.shop-products .wp-block-woocommerce-product-filter-attribute),
:root :where(.shop-products .wp-block-woocommerce-product-filter-rating),
:root :where(.shop-products .wp-block-woocommerce-product-filter-status),
:root :where(.shop-products [class*="product-filter-wrapper"]) {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  padding: 0;
  flex: 1;
  min-width: 200px;
}

:root :where(.shop-products [class*="product-filter"] h3),
:root :where(.shop-products [class*="product-filter"] label.wc-block-product-filter__label),
:root :where(.shop-products [class*="product-filter"] > label:first-child),
:root :where(.shop-products .wc-block-product-filter-panel-heading) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  margin: 0;
  display: block;
}

:root :where(.shop-products [class*="product-filter"] ul) {
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  list-style: none;
  margin: 0;
}

:root :where(.shop-products [class*="product-filter"] li) {
  padding: var(--wp--preset--spacing--10) 0;
  font-size: var(--wp--preset--font-size--small);
}

:root :where(.shop-products [class*="product-filter"] input[type="checkbox"]) {
  width: 18px;
  height: 18px;
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  accent-color: var(--wp--preset--color--accent-1);
  cursor: pointer;
}

:root :where(.shop-products .wc-block-product-filter-price-slider),
:root :where(.shop-products [class*="price-slider"]) {
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
}

:root :where(.shop-products [class*="price-slider"] input[type="range"]) {
  accent-color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-products [class*="price-slider"] .wc-block-product-filter-price-slider__range-input-wrapper input[type="text"]),
:root :where(.shop-products [class*="price-slider"] input[type="number"]),
:root :where(.shop-products [class*="price-filter"] input[type="text"]) {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
  background: var(--wp--preset--color--base);
}

/* Sorting Dropdown */
:root :where(.shop-products .wc-block-catalog-sorting select),
:root :where(.shop-products .wp-block-woocommerce-catalog-sorting select),
:root :where(.shop-products select.orderby) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40) var(--wp--preset--spacing--20) var(--wp--preset--spacing--20);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  -webkit-appearance: none;
  appearance: none;
}

:root :where(.shop-products .wc-block-catalog-sorting select:hover),
:root :where(.shop-products .wp-block-woocommerce-catalog-sorting select:hover),
:root :where(.shop-products select.orderby:hover) {
  box-shadow: 6px 6px 0 var(--wp--preset--color--contrast);
  transform: translate(-2px, -2px);
}

/* Results Count */
:root :where(.shop-products .wc-block-product-results-count),
:root :where(.shop-products .wp-block-woocommerce-product-results-count) {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wp--preset--color--accent-3);
}

/* Breadcrumbs */
:root :where(.shop-products .wc-block-breadcrumbs),
:root :where(.shop-products .wp-block-woocommerce-breadcrumbs) {
  font-family: 'Space Mono', monospace;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  margin-bottom: var(--wp--preset--spacing--20);
}

:root :where(.shop-products .wc-block-breadcrumbs a),
:root :where(.shop-products .wp-block-woocommerce-breadcrumbs a) {
  color: var(--wp--preset--color--accent-3);
  text-decoration: none;
  transition: color 0.12s;
}

:root :where(.shop-products .wc-block-breadcrumbs a:hover),
:root :where(.shop-products .wp-block-woocommerce-breadcrumbs a:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* Hide breadcrumbs on mobile */
@media (max-width: 768px) {
  :root :where(.shop-products .wc-block-breadcrumbs),
  :root :where(.shop-products .wp-block-woocommerce-breadcrumbs),
  :root :where(.shop-breadcrumbs-wrap),
  :root :where(.single-product-content .wc-block-breadcrumbs) {
    display: none;
  }
}


.shop-products {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--50);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}

.shop-card {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}

.shop-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--wp--preset--color--contrast);
}

.shop-card-media {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  aspect-ratio: 4 / 5;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.shop-card:hover .shop-card-media img {
  transform: scale(1.04);
}

.shop-card-badge {
  position: absolute;
  top: var(--wp--preset--spacing--30);
  right: var(--wp--preset--spacing--30);
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  padding: 3px var(--wp--preset--spacing--20);
  border: 2px solid var(--wp--preset--color--contrast);
  transform: rotate(2deg);
  z-index: 2;
  line-height: 1.2;
}

.shop-card-badge-alt {
  background: var(--wp--preset--color--contrast);
  transform: rotate(-1.5deg);
}

.shop-card-details {
  padding: var(--wp--preset--spacing--30);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.shop-card-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.2;
  margin: 0;
}

.shop-card-meta {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  margin: 0;
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--wp--preset--spacing--20);
}

.shop-card-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--lg);
  color: var(--wp--preset--color--contrast);
}

.shop-card-add {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--contrast);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
}

.shop-card-add:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}


.shop-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
}

.pagination-btn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: all 0.12s;
  display: inline-block;
}

.pagination-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
}

.pagination-active {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
}

.pagination-next {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

.pagination-next:hover {
  background: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}


@media (max-width: 1024px) {
.shop-layout-inner {

    grid-template-columns: 220px 1fr;
    gap: var(--wp--preset--spacing--40);
  
}
.shop-grid {

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
}

@media (max-width: 768px) {
.shop-layout-inner {

    grid-template-columns: 1fr;
  
}
.shop-sidebar {

    position: relative;
    top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  
}
.shop-sidebar.is-open {

    max-height: 2000px;
    opacity: 1;
  
}
.shop-sidebar-toggle {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--wp--preset--spacing--20);
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: var(--wp--preset--font-size--small);
    text-transform: uppercase;
    background: var(--wp--preset--color--base);
    color: var(--wp--preset--color--contrast);
    border: 3px solid var(--wp--preset--color--contrast);
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
    box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
    width: 100%;
    transition: all 0.12s;
  
}
.shop-sidebar-toggle:hover {

    background: var(--wp--preset--color--accent-1);
    color: var(--wp--preset--color--base);
  
}
.shop-grid {

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
.shop-card {

    box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  
}
.shop-card-name {

    font-size: var(--wp--preset--font-size--small);
  
}
}

@media (max-width: 480px) {
.shop-card-footer {

    flex-direction: column;
    align-items: flex-start;
    gap: var(--wp--preset--spacing--20);
  
}
.shop-card-add {

    width: 100%;
    text-align: center;
  
}
}



.mystery {
  background: var(--wp--preset--color--accent-1);
  border-top: 3px solid var(--wp--preset--color--contrast);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  position: relative;
  overflow: clip;
}

.mystery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--wp--preset--color--contrast) 0px,
    var(--wp--preset--color--contrast) 20px,
    transparent 20px,
    transparent 40px
  );
  z-index: 2;
}

.mystery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: repeating-linear-gradient(
    90deg,
    var(--wp--preset--color--contrast) 0px,
    var(--wp--preset--color--contrast) 20px,
    transparent 20px,
    transparent 40px
  );
  z-index: 2;
}

.mystery-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wp--preset--spacing--60);
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
  align-items: center;
}

.mystery-media {
  position: relative;
}

.mystery-media img {
  width: 100%;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}

.mystery-sticker {
  position: absolute;
  top: -15px;
  right: -15px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xxx-large);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--accent-1);
  border: 3px solid var(--wp--preset--color--contrast);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  z-index: 3;
}

.mystery-content {
  color: var(--wp--preset--color--base);
}

.mystery-eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  background: var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  margin-bottom: var(--wp--preset--spacing--40);
}

.mystery-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: var(--wp--preset--spacing--40);
  letter-spacing: -0.03em;
}

.mystery-title-line {
  display: block;
}

.mystery-desc {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.6;
  margin-bottom: var(--wp--preset--spacing--50);
  max-width: 480px;
  opacity: 0.9;
}

.mystery-price-row {
  display: flex;
  align-items: baseline;
  gap: var(--wp--preset--spacing--30);
  margin-bottom: var(--wp--preset--spacing--50);
}

.mystery-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  color: var(--wp--preset--color--base);
}

.mystery-price-note {
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  opacity: 0.7;
}

.mystery-cta {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--lg);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--accent-1);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--60);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
  display: inline-block;
  transition: all 0.15s;
}

.mystery-cta:hover {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}

@media (max-width: 768px) {
.mystery-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--50);
    padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
  
}
.mystery-media {

    order: -1;
    max-width: 400px;
    margin: 0 auto;
  
}
.mystery-title {

    font-size: var(--wp--preset--font-size--huge);
  
}
}



.reviews {
  background: var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
  border-top: 3px solid var(--wp--preset--color--contrast);
}

.reviews-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--60);
}

.reviews-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--wp--preset--spacing--20);
}

.reviews-subtitle {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--accent-3);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}

.review-card {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--40);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--30);
  transition: transform 0.18s, box-shadow 0.18s;
}

.review-card:hover {
  transform: translate(-2px, -2px) rotate(0deg) !important;
  box-shadow: 7px 7px 0 var(--wp--preset--color--contrast);
}

.review-card-tilt-l {
  transform: rotate(-1deg);
}

.review-card-tilt-r {
  transform: rotate(1.5deg);
}

.review-card-featured {
  grid-column: span 2;
  background: var(--wp--preset--color--base-2);
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 5px 5px 0 var(--wp--preset--color--accent-1);
}

.review-card-featured:hover {
  box-shadow: 7px 7px 0 var(--wp--preset--color--accent-1) !important;
}

.review-stars {
  font-size: var(--wp--preset--font-size--xl);
  color: var(--wp--preset--color--accent-1);
  letter-spacing: 2px;
}

.review-text {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.6;
  flex: 1;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--wp--preset--spacing--30);
  border-top: 2px solid var(--wp--preset--color--contrast);
}

.review-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
}

.review-product {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-1);
}

@media (max-width: 1024px) {
.reviews-grid {

    grid-template-columns: repeat(2, 1fr);
  
}
.review-card-featured {

    grid-column: span 2;
  
}
}

@media (max-width: 768px) {
.reviews-grid {

    grid-template-columns: 1fr;
  
}
.review-card-featured {

    grid-column: span 1;
  
}
.review-card-tilt-l,
  .review-card-tilt-r {

    transform: rotate(0deg);
  
}
}



.about {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border-top: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
}

.about-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--wp--preset--spacing--65);
  align-items: start;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--40);
}

.about-stat {
  border: 3px solid var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--40);
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
  transition: transform 0.18s, box-shadow 0.18s;
}

.about-stat:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--accent-1);
}

.about-stat-number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--wp--preset--color--accent-1);
  line-height: 1;
}

.about-stat-label {
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--accent-2);
}

.about-content {
  padding-top: var(--wp--preset--spacing--30);
}

.about-eyebrow {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--accent-1);
  display: inline-block;
  border: 2px solid var(--wp--preset--color--accent-1);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  margin-bottom: var(--wp--preset--spacing--50);
}

.about-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--wp--preset--spacing--50);
}

.about-text {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--accent-2);
  margin-bottom: var(--wp--preset--spacing--40);
  max-width: 600px;
}

.about-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
.about-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--60);
  
}
.about-stats {

    flex-direction: row;
    position: relative;
    top: 0;
  
}
.about-stat {

    flex: 1;
  
}
}

@media (max-width: 768px) {
.about-stats {

    flex-direction: column;
  
}
}



.faq {
  background: var(--wp--preset--color--base-2);
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
  border-top: 3px solid var(--wp--preset--color--contrast);
}

.faq-inner {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}

.faq-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  text-align: center;
  margin-bottom: var(--wp--preset--spacing--60);
  letter-spacing: -0.02em;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--30);
}

.faq-item {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: box-shadow 0.15s;
}

.faq-item.is-open {
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--wp--preset--spacing--40);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  text-align: left;
  background: none;
  border: none;
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: color 0.12s;
  gap: var(--wp--preset--spacing--30);
}

.faq-question:hover {
  color: var(--wp--preset--color--accent-1);
}

.faq-icon {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xl);
  color: var(--wp--preset--color--accent-1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--accent-3);
  padding: 0 var(--wp--preset--spacing--40) var(--wp--preset--spacing--40);
}



.newsletter {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border-top: 3px solid var(--wp--preset--color--contrast);
}

.newsletter-marquee {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  overflow: hidden;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) 0;
  white-space: nowrap;
}

.newsletter-marquee-track {
  display: flex;
  animation: hero-marquee-scroll 15s linear infinite;
  width: max-content;
}

.newsletter-marquee-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-right: var(--wp--preset--spacing--50);
}

.newsletter-inner {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
  text-align: center;
}

.newsletter-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--huge);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--wp--preset--spacing--40);
}

.newsletter-title-line {
  display: block;
}

.newsletter-desc {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--accent-2);
  line-height: 1.6;
  margin-bottom: var(--wp--preset--spacing--50);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  margin-bottom: var(--wp--preset--spacing--40);
}

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  border: 3px solid var(--wp--preset--color--base);
}

.newsletter-input {
  flex: 1;
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  font-size: var(--wp--preset--font-size--base);
  background: transparent;
  border: none;
  color: var(--wp--preset--color--base);
  outline: none;
}

.newsletter-input::placeholder {
  color: var(--wp--preset--color--accent-3);
}

.newsletter-btn {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: none;
  border-left: 3px solid var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--wp--preset--color--accent-1-dark);
}

.newsletter-fine {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  line-height: 1.5;
}

@media (max-width: 480px) {
.newsletter-input-wrap {

    flex-direction: column;
    border: none;
  
}
.newsletter-input {

    border: 3px solid var(--wp--preset--color--base);
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  
}
.newsletter-btn {

    border-left: none;
    border: 3px solid var(--wp--preset--color--accent-1);
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  
}
}



.site-footer {
  background: var(--wp--preset--color--base);
  border-top: 3px solid var(--wp--preset--color--contrast);
}

.footer-inner {
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--wp--preset--spacing--60);
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xxx-large);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: var(--wp--preset--spacing--30);
}

.footer-logo-accent {
  color: var(--wp--preset--color--accent-1);
}

.footer-tagline {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--accent-3);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--50);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--20);
}

.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--wp--preset--spacing--20);
}

.footer-link {
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  color: var(--wp--preset--color--accent-3);
  transition: color 0.12s;
}

.footer-link:hover {
  color: var(--wp--preset--color--accent-1);
}

.footer-bottom {
  border-top: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--40);
  text-align: center;
}

.footer-copy {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
}

@media (max-width: 768px) {
.footer-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--50);
  
}
.footer-links {

    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--40);
  
}
}

@media (max-width: 480px) {
.footer-links {

    grid-template-columns: 1fr 1fr;
    gap: var(--wp--preset--spacing--40);
  
}
}




.wp-block-button.hero-product-add {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.hero-product-add .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--contrast);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  cursor: pointer;
  transition: background 0.12s, transform 0.12s;
  white-space: nowrap;
  border-radius: 0;
}

.wp-block-button.hero-product-add .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

.hero-product-featured .wp-block-button.hero-product-add .wp-block-button__link {
  font-size: var(--wp--preset--font-size--base);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

.hero-product-featured .wp-block-button.hero-product-add .wp-block-button__link:hover {
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}


.wp-block-button.hero-view-all {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.hero-view-all .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--lg);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--60);
  box-shadow: 4px 4px 0 var(--wp--preset--color--accent-1);
  display: inline-block;
  transition: all 0.15s;
  border-radius: 0;
}

.wp-block-button.hero-view-all .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  transform: translate(-2px, -2px);
}


:root :where(.hero-filter a) {
  text-decoration: none;
  color: inherit;
}


:root :where(.hero-product-media .wp-block-image) {
  height: 100%;
  margin: 0;
}

:root :where(.hero-product-media .wp-block-image img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root :where(.hero-product-featured .hero-product-media .wp-block-image) {
  position: static;
}

:root :where(.hero-product-featured .hero-product-media .wp-block-image img) {
  position: absolute;
  top: 0;
  left: 0;
}


.hero-grid-inner.hero-grid-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}


:root :where(.hero-product-badge) {
  position: absolute;
  top: var(--wp--preset--spacing--30);
  right: var(--wp--preset--spacing--30);
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  border: 2px solid var(--wp--preset--color--contrast);
  transform: rotate(2deg);
  z-index: 2;
  line-height: 1.2;
}

:root :where(.hero-product-badge-alt) {
  background: var(--wp--preset--color--contrast);
  transform: rotate(-1.5deg);
}


:root :where(.hero-nav) .wp-block-navigation-item__content {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  color: var(--wp--preset--color--contrast);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

:root :where(.hero-nav) .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--accent-1);
}


:root :where(.hero-nav-cart) .wp-block-navigation-item__content {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base) !important;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  border: 3px solid var(--wp--preset--color--contrast);
  transition: background 0.15s, color 0.15s;
}

:root :where(.hero-nav-cart) .wp-block-navigation-item__content:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}


@media (max-width: 768px) {
.hero-nav .wp-block-navigation__responsive-container-open {

    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    position: relative;
    z-index: 110;
    background: var(--wp--preset--color--contrast);
    border: 3px solid var(--wp--preset--color--contrast);
    padding: 0;
  
}
.hero-nav .wp-block-navigation__responsive-container-open svg {

    width: 24px;
    height: 24px;
    fill: var(--wp--preset--color--contrast);
  
}
}





@media (max-width: 768px) {
.wp-block-button.hero-product-add .wp-block-button__link {

    font-size: var(--wp--preset--font-size--small);
    padding: 0.25rem var(--wp--preset--spacing--20);
  
}
.hero-product-featured .wp-block-button.hero-product-add .wp-block-button__link {

    font-size: var(--wp--preset--font-size--small);
    padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  
}
}

@media (max-width: 480px) {
.wp-block-button.hero-product-add .wp-block-button__link {

    width: 100%;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    font-size: var(--wp--preset--font-size--small);
  
}
.hero-product-featured .wp-block-button.hero-product-add .wp-block-button__link {

    width: auto;
  
}
}


@media (max-width: 1024px) {
.hero-grid-inner.hero-grid-inner {

    grid-template-columns: repeat(2, 1fr);
  
}
}

@media (max-width: 768px) {
.hero-grid-inner.hero-grid-inner {

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
}




.shop-layout-inner.shop-layout-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--wp--preset--spacing--50);
  align-items: start;
}


.shop-grid.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}


:root :where(.shop-card-media .wp-block-image) {
  height: 100%;
  margin: 0;
}

:root :where(.shop-card-media .wp-block-image img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

:root :where(.shop-card:hover .shop-card-media .wp-block-image img) {
  transform: scale(1.04);
}


:root :where(.shop-card-badge) {
  position: absolute;
  top: var(--wp--preset--spacing--30);
  right: var(--wp--preset--spacing--30);
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  padding: 3px var(--wp--preset--spacing--20);
  border: 2px solid var(--wp--preset--color--contrast);
  transform: rotate(2deg);
  z-index: 2;
  line-height: 1.2;
}

:root :where(.shop-card-badge-alt) {
  background: var(--wp--preset--color--contrast);
  transform: rotate(-1.5deg);
}


.wp-block-button.shop-card-add {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.shop-card-add .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--contrast);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  transition: background 0.12s, border-color 0.12s;
  white-space: nowrap;
  border-radius: 0;
}

.wp-block-button.shop-card-add .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}


.wp-block-button.filter-reset {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.filter-reset .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  text-align: center;
  color: var(--wp--preset--color--accent-1);
  background: transparent;
  border: 2px solid var(--wp--preset--color--accent-1);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  transition: all 0.12s;
  display: block;
  border-radius: 0;
}

.wp-block-button.filter-reset .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
}


:root :where(.pagination-btn a) {
  text-decoration: none;
  color: inherit;
}


@media (max-width: 1024px) {
.shop-layout-inner.shop-layout-inner {

    grid-template-columns: 220px 1fr;
    gap: var(--wp--preset--spacing--40);
  
}
.shop-grid.shop-grid {

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
}

@media (max-width: 768px) {
.shop-layout-inner.shop-layout-inner {

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

    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  
}
}

@media (max-width: 480px) {
.wp-block-button.shop-card-add .wp-block-button__link {

    width: 100%;
    text-align: center;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
  
}
}


/* ========== WooCommerce Shop Integration ========== */

:root :where(.shop-breadcrumbs-wrap) {
  padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--40);
  margin-top: var(--wp--preset--spacing--50);
  background: var(--wp--preset--color--contrast);
  border: 3px solid var(--wp--preset--color--contrast);
}
:root :where(.shop-breadcrumbs-wrap .wc-block-breadcrumbs),
    :root :where(.shop-breadcrumbs-wrap .woocommerce-breadcrumb) {
      max-width: none;
  margin: 0 auto;
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-breadcrumbs-wrap a) {
  color: var(--wp--preset--color--base);
  text-decoration: none;
  transition: color 0.15s ease;
}
:root :where(.shop-breadcrumbs-wrap a:hover) {
  color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-sidebar .wp-block-woocommerce-product-filters) {
  display: flex;
  flex-direction: column;
  gap: var(--wp--preset--spacing--30);
}

:root :where(.shop-sidebar [class*="wp-block-woocommerce-product-filter"]) {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  overflow: hidden;
}

:root :where(.shop-sidebar [class*="product-filter"] h3),
:root :where(.shop-sidebar [class*="product-filter"] summary),
:root :where(.shop-sidebar [class*="product-filter"] label[class*="title"]) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  margin: 0;
}

:root :where(.shop-sidebar [class*="product-filter"] ul) {
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  list-style: none;
}

:root :where(.shop-sidebar .wc-block-components-price-slider) {
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
}

:root :where(.shop-sidebar .wc-block-components-price-slider__range-input-progress) {
  background: var(--wp--preset--color--accent-1);
}

:root :where(.shop-products .wc-block-product-template),
:root :where(.shop-products .wp-block-woocommerce-product-template) {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
  list-style: none;
  padding: 0;
  margin: 0;
}

:root :where(.shop-products .wc-block-product-template > li),
:root :where(.shop-products .wp-block-woocommerce-product-template > li) {
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  overflow: hidden;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}

:root :where(.shop-products .wc-block-product-template > li:hover),
:root :where(.shop-products .wp-block-woocommerce-product-template > li:hover) {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--wp--preset--color--contrast);
}

:root :where(.shop-products [class*="product-image"]) {
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  overflow: hidden;
  margin: 0;
}

:root :where(.shop-products [class*="product-image"] img) {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

:root :where(.shop-products .wc-block-product-template > li:hover [class*="product-image"] img) {
  transform: scale(1.04);
}

:root :where(.shop-products [class*="product-image"] a) {
  display: block;
  line-height: 0;
}

:root :where(.shop-products [class*="sale-badge"]) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: 4px 10px;
  border-radius: 0;
  line-height: 1.2;
}

:root :where(.shop-products .wc-block-product-template .wp-block-post-title) {
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30) 0;
  margin: 0;
}

:root :where(.shop-products .wc-block-product-template .wp-block-post-title a) {
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
}

:root :where(.shop-products .wc-block-product-template .wp-block-post-title a:hover) {
  color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-products .wc-block-components-product-price) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--medium);
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--accent-1);
  padding: 8px 16px;
  letter-spacing: -0.02em;
  margin: 0;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  border: 3px solid var(--wp--preset--color--contrast);
  line-height: 1.2;
}

:root :where(.shop-products [class*="product-button"]) {
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
  margin-top: auto;
}

:root :where(.shop-products [class*="product-button"] a),
:root :where(.shop-products [class*="product-button"] button) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--base);
  background: var(--wp--preset--color--contrast);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  transition: background 0.12s, border-color 0.12s;
  border-radius: 0;
  display: block;
  text-align: center;
  width: 100%;
  cursor: pointer;
}

:root :where(.shop-products [class*="product-button"] a:hover),
:root :where(.shop-products [class*="product-button"] button:hover) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-products .shop-pagination) {
  gap: var(--wp--preset--spacing--20);
  padding-top: var(--wp--preset--spacing--40);
}

:root :where(.shop-products .shop-pagination .page-numbers),
:root :where(.shop-products .shop-pagination a) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  transition: all 0.12s;
}

:root :where(.shop-products .shop-pagination .page-numbers.current),
:root :where(.shop-products .shop-pagination .page-numbers:hover),
:root :where(.shop-products .shop-pagination a:hover) {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.shop-products .wc-block-product-collection-no-results) {
  padding: var(--wp--preset--spacing--60);
  text-align: center;
  font-family: 'Unbounded', sans-serif;
  color: var(--wp--preset--color--accent-3);
}

@media (max-width: 1024px) {
  :root :where(.shop-products .wc-block-product-template),
  :root :where(.shop-products .wp-block-woocommerce-product-template) {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  }

  :root :where(.shop-products .wc-block-components-product-price) {
    font-size: var(--wp--preset--font-size--base);
    padding: 6px 12px;
    top: 10px;
    right: 10px;
  }

  :root :where(.shop-products [class*="sale-badge"]) {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  :root :where(.shop-products .wc-block-product-template),
  :root :where(.shop-products .wp-block-woocommerce-product-template) {
    grid-template-columns: 1fr;
  }

  :root :where(.shop-products .wc-block-components-product-price) {
    font-size: var(--wp--preset--font-size--base);
    padding: 6px 12px;
    top: 8px;
    right: 8px;
    border-width: 2px;
  }

  :root :where(.shop-products [class*="sale-badge"]) {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  :root :where(.shop-products .wc-block-product-template .wp-block-post-title) {
    padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--20) 0;
  }

  :root :where(.shop-products [class*="product-button"]) {
    padding: var(--wp--preset--spacing--20);
  }
}


.mystery-inner.mystery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wp--preset--spacing--60);
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--65) var(--wp--preset--spacing--40);
  align-items: center;
}


:root :where(.mystery-media .wp-block-image) {
  margin: 0;
}

:root :where(.mystery-media .wp-block-image img) {
  width: 100%;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}


:root :where(.mystery-sticker) {
  position: absolute;
  top: -15px;
  right: -15px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xxx-large);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--accent-1);
  border: 3px solid var(--wp--preset--color--contrast);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  z-index: 3;
}


.wp-block-button.mystery-cta {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.mystery-cta .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--lg);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--wp--preset--color--accent-1);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--60);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
  display: inline-block;
  transition: all 0.15s;
  border-radius: 0;
}

.wp-block-button.mystery-cta .wp-block-button__link:hover {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--wp--preset--color--contrast);
}


@media (max-width: 768px) {
.mystery-inner.mystery-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--50);
    padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
  
}
}






.reviews-grid.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--40);
}


@media (max-width: 1024px) {
.reviews-grid.reviews-grid {

    grid-template-columns: repeat(2, 1fr);
  
}
}

@media (max-width: 768px) {
.reviews-grid.reviews-grid {

    grid-template-columns: 1fr;
  
}
}








.about-inner.about-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--wp--preset--spacing--65);
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  align-items: start;
}


@media (max-width: 1024px) {
.about-inner.about-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--60);
  
}
}






:root :where(.faq-item) summary {
  list-style: none;
}

:root :where(.faq-item) summary::marker,
:root :where(.faq-item) summary::-webkit-details-marker {
  display: none;
}

:root :where(.faq-item) summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--wp--preset--spacing--40);
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  text-align: left;
  color: var(--wp--preset--color--contrast);
  transition: color 0.12s;
  gap: var(--wp--preset--spacing--30);
}

:root :where(.faq-item) summary:hover {
  color: var(--wp--preset--color--accent-1);
}

:root :where(.faq-item) summary::after {
  content: '+';
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--xl);
  color: var(--wp--preset--color--accent-1);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

:root :where(.faq-item[open]) summary::after {
  content: '−';
  transform: rotate(0deg);
}

:root :where(.faq-item[open]) {
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

:root :where(.faq-item) p {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--accent-3);
  padding: 0 var(--wp--preset--spacing--40) var(--wp--preset--spacing--40);
}




:root :where(.newsletter-marquee-track) {
  display: flex;
  animation: hero-marquee-scroll 15s linear infinite;
  width: max-content;
}


.wp-block-button.newsletter-btn {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}

.wp-block-button.newsletter-btn .wp-block-button__link {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: none;
  border-left: 3px solid var(--wp--preset--color--base);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
  border-radius: 0;
}

.wp-block-button.newsletter-btn .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-1-dark);
}

@media (max-width: 480px) {
.wp-block-button.newsletter-btn .wp-block-button__link {

    border-left: none;
    border: 3px solid var(--wp--preset--color--accent-1);
    padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  
}
}


:root :where(.newsletter-input-wrap) {
  max-width: 480px;
  margin: 0 auto;
  border: 3px solid var(--wp--preset--color--base);
}

@media (max-width: 480px) {
:root :where(.newsletter-input-wrap) {

    flex-direction: column;
    border: none;
  
}
:root :where(.newsletter-input) {

    border: 3px solid var(--wp--preset--color--base);
  
}
}




.footer-inner.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--wp--preset--spacing--60);
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
  padding: var(--wp--preset--spacing--60) var(--wp--preset--spacing--40);
}


.footer-links.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wp--preset--spacing--50);
}


:root :where(.footer-logo a) {
  text-decoration: none;
  color: inherit;
}


:root :where(.footer-nav) .wp-block-navigation-item__content {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  transition: color 0.12s;
}

:root :where(.footer-nav) .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--accent-1);
}


@media (max-width: 768px) {
.footer-inner.footer-inner {

    grid-template-columns: 1fr;
    gap: var(--wp--preset--spacing--50);
  
}
.footer-links.footer-links {

    grid-template-columns: repeat(3, 1fr);
    gap: var(--wp--preset--spacing--40);
  
}
}

@media (max-width: 480px) {
.footer-links.footer-links {

    grid-template-columns: 1fr 1fr;
    gap: var(--wp--preset--spacing--40);
  
}
}






.wp-block-navigation ul,
.wp-block-navigation li,
.wp-block-navigation__container,
.wp-block-navigation-item {
  list-style: none;
  list-style-type: none;
}


:root :where(.hero-product-media) {
  position: relative;
  overflow: hidden;
}

:root :where(.shop-card-media) {
  position: relative;
  overflow: hidden;
}

:root :where(.mystery-media) {
  position: relative;
}



:root :where(.wp-block-post-title) {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--wp--preset--font-size--huge);
  color: var(--wp--preset--color--contrast);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

:root :where(.wp-block-post-date),
:root :where(.wp-block-post-author) {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
}

:root :where(.wp-block-post-excerpt) {
  font-size: var(--wp--preset--font-size--base);
  color: var(--wp--preset--color--accent-3);
  line-height: 1.6;
}

:root :where(.wp-block-post-featured-image) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
  overflow: hidden;
}

:root :where(.wp-block-post-featured-image img) {
  width: 100%;
  height: auto;
  display: block;
}

:root :where(.wp-block-query-pagination) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
  margin-top: var(--wp--preset--spacing--50);
}

:root :where(.wp-block-query-pagination-numbers) a,
:root :where(.wp-block-query-pagination-numbers) span,
:root :where(.wp-block-query-pagination-next),
:root :where(.wp-block-query-pagination-previous) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: all 0.12s;
}

:root :where(.wp-block-query-pagination-numbers) a:hover,
:root :where(.wp-block-query-pagination-next):hover,
:root :where(.wp-block-query-pagination-previous):hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
}

:root :where(.wp-block-query-pagination-numbers) span[aria-current] {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
}

:root :where(.wp-block-search__input) {
  font-family: 'Space Mono', monospace;
  font-size: var(--wp--preset--font-size--base);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  border: 3px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  outline: none;
  transition: border-color 0.12s;
}

:root :where(.wp-block-search__input):focus {
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.wp-block-search__button) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
  cursor: pointer;
  transition: background 0.12s;
}

:root :where(.wp-block-search__button):hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.wp-block-comment-template) {
  list-style: none;
  padding: 0;
}

:root :where(.wp-block-comment-author-name) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
}

:root :where(.wp-block-comment-content) {
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--accent-3);
}

:root :where(.wp-block-comments-pagination) {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--wp--preset--spacing--20);
  margin-top: var(--wp--preset--spacing--50);
}

:root :where(.wp-block-comments-pagination-numbers) a,
:root :where(.wp-block-comments-pagination-numbers) span {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--base);
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: all 0.12s;
}

:root :where(.wp-block-comments-pagination-previous),
:root :where(.wp-block-comments-pagination-next) {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  text-decoration: none;
  color: var(--wp--preset--color--accent-1);
  transition: color 0.12s;
}

:root :where(.wp-block-comments-pagination-previous):hover,
:root :where(.wp-block-comments-pagination-next):hover {
  color: var(--wp--preset--color--accent-1-dark);
}

:root :where(.wp-block-quote) {
  border-left: 4px solid var(--wp--preset--color--accent-1);
  padding-left: var(--wp--preset--spacing--40);
  font-style: italic;
  color: var(--wp--preset--color--accent-3);
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
}

:root :where(.wp-block-code) {
  font-family: 'Space Mono', monospace;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--base-2);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--40);
  overflow-x: auto;
  color: var(--wp--preset--color--contrast);
}


.admin-bar .nav,
.admin-bar [class*="nav"][style*="position: fixed"],
.admin-bar [class*="header"][style*="position: fixed"] {
  top: 32px;
}

@media screen and (max-width: 782px) {
.admin-bar .nav,
  .admin-bar [class*="nav"][style*="position: fixed"],
  .admin-bar [class*="header"][style*="position: fixed"] {

    top: 46px;
  
}
}


:where(.wp-block-paragraph) {
  margin: 0;
}


.wp-block-button__link {
  line-height: normal;
}


.wp-block-button {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0;
  box-shadow: none !important;
}


:where([class*="nav"] a),
:where([class*="nav"] .wp-block-paragraph a),
:where([class*="-link-wrapper"] a) {
  text-decoration: none;
}


:where([class*="nav"] .wp-block-paragraph) {
  margin: 0;
}


:where(.wp-block-navigation),
:where(.wp-block-navigation-item__content) {
  font-family: inherit;
  text-decoration: none;
  color: inherit;
}


:where(.wp-block-navigation__container) {
  padding: 0;
}


:where(.wp-block-navigation .wp-block-spacer) {
  flex-grow: 1;
  height: 0 !important;
  min-height: 0 !important;
}


.wp-block-navigation .wp-block-navigation__responsive-container:not(.is-menu-open.is-menu-open) {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.wp-block-navigation__responsive-container-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  overflow: visible;
}


:where(.wp-block-navigation .wp-block-navigation__container) {
  gap: var(--nav-gap, 1.5rem);
}


.wp-block-navigation__responsive-container-content > .wp-block-navigation__container {
  flex-shrink: 1;
  min-width: 0;
}

:where(.wp-block-navigation__responsive-container-content > .wp-block-navigation__container) {
  display: flex;
  align-items: center;
}


.wp-block-navigation__container {
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  z-index: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  width: auto !important;
  max-width: none !important;
}

.wp-block-navigation__responsive-container-content > * {
  flex-shrink: 0;
}

:where(.wp-block-navigation .wp-block-search) {
  flex-shrink: 0;
}

.wp-block-site-title {
  margin: 0;
}

.wp-block-site-title a {
  text-decoration: none;
  color: inherit;
}

.wp-block-navigation .wp-block-navigation-item__content {
  display: inline;
  white-space: nowrap;
}


.wp-block-navigation__responsive-container-open {
  background: transparent;
  border: none;
  color: inherit;
}


.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 100000 !important;

  width: 100vw;
  height: 100vh;
  height: 100dvh; 
  padding: var(--mobile-nav-padding, 1.5rem); 
  box-sizing: border-box;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  font-size: var(--mobile-nav-font-size, 1.5rem);
  text-decoration: none;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover {
color: var(--wp--preset--color--accent-1, #A855F7);
    }
    
    /* Mobile nav close button */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close {
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100001;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close svg {
  width: 24px;
  height: 24px;
}
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover {
      color: var(--wp--preset--color--accent-1, #A855F7);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-close:hover svg {
  fill: var(--wp--preset--color--accent-1, #A855F7);
}

/* Cart button inside mobile nav overlay */
.wp-block-navigation__responsive-container.is-menu-open .hero-nav-cart .wp-block-navigation-item__content {
background: var(--wp--preset--color--accent-1, #A855F7);
      color: var(--wp--preset--color--base, #FFFFFF);
      border-color: var(--wp--preset--color--accent-1, #A855F7);
}

.wp-block-navigation__responsive-container.is-menu-open .hero-nav-cart .wp-block-navigation-item__content:hover {
  background: var(--wp--preset--color--base, #FFFFFF);
  color: var(--wp--preset--color--contrast, #0A0A0A);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--mobile-nav-gap, 1.5rem);
}





.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  flex-direction: column;
  align-items: center;
  gap: var(--mobile-nav-gap, 1.5rem);
}






.wp-block-template-part:has(.wp-block-navigation .is-menu-open),
header:has(.wp-block-navigation .is-menu-open) {
  z-index: 100001;
  position: relative;
}

.hero:has(.wp-block-navigation__responsive-container.is-menu-open) {
  overflow: visible !important;
}


header.wp-block-template-part:has([class*="nav"][style*="position: sticky"]),
header.wp-block-template-part:has([class*="nav"][style*="position:sticky"]),
header.wp-block-template-part:has([class*="header"][style*="position: sticky"]),
header.wp-block-template-part:has([class*="header"][style*="position:sticky"]) {
  position: sticky;
  top: 0;
  z-index: 100;
}


.admin-bar header.wp-block-template-part[style*="sticky"],
.admin-bar header.wp-block-template-part:has([style*="sticky"]) {
  top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar header.wp-block-template-part[style*="sticky"],
  .admin-bar header.wp-block-template-part:has([style*="sticky"]) {

    top: 46px;
  
}
}


:where(.wp-block-quote) {
  margin-left: 0;
  margin-right: 0;
}


footer.wp-block-template-part,
footer.wp-block-template-part > .wp-block-group {
  position: relative;
  z-index: 1;
}


[class*="site-footer"],
[class*="footer-section"] {
  margin-block-start: 0 !important;
}




.wp-block-post-content:has(> .overlay-header),
.wp-site-blocks:has(> .overlay-header) {
  position: relative;
}


.wp-block-post-content > .overlay-header,
.wp-site-blocks > .overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  
  padding-left: var(--wp--style--root--padding-left, 2rem);
  padding-right: var(--wp--style--root--padding-right, 2rem);
}


.wp-block-post-content > .overlay-header:not(.is-scrolled),
.wp-site-blocks > .overlay-header:not(.is-scrolled) {
  background-color: transparent !important;
}
.wp-block-post-content > .overlay-header:not(.is-scrolled) > *,
.wp-site-blocks > .overlay-header:not(.is-scrolled) > * {
  background-color: transparent !important;
}


.wp-block-post-content > .overlay-header.miles-sticky-top,
.wp-site-blocks > .overlay-header.miles-sticky-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-left: var(--wp--style--root--padding-left, 2rem);
  padding-right: var(--wp--style--root--padding-right, 2rem);
  transition: background-color 0.3s ease;
}

.admin-bar .overlay-header.miles-sticky-top {
  top: 32px;
}
@media screen and (max-width: 782px) {
.admin-bar .overlay-header.miles-sticky-top {

    top: 46px;
  
}
}



.wp-block-post-content > .overlay-header + *,
.wp-site-blocks > .overlay-header + * {
  margin-block-start: 0 !important;
}

.wp-block-post-content > .overlay-header + * > :first-child,
.wp-site-blocks > .overlay-header + * > :first-child {
  padding-top: clamp(4rem, 8vw, 6rem);
}


.is-root-container:has(> .overlay-header) {
  display: grid !important;
  grid-template-columns: 1fr;
}
.is-root-container > .overlay-header {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  z-index: 100;
  position: relative;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.is-root-container > .overlay-header.miles-sticky-top {
  position: sticky !important;
  top: 0;
}
.is-root-container > .overlay-header:not(.is-scrolled) {
  background-color: transparent !important;
}
.is-root-container > .overlay-header:not(.is-scrolled) > * {
  background-color: transparent !important;
}
.is-root-container > .overlay-header + * {
  grid-column: 1;
  grid-row: 1;
}



.wp-block-navigation__container.block-editor-block-list__layout {
  gap: 0 !important;
}




.admin-bar .hero-header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
.admin-bar .hero-header {

    top: 46px !important;
  
}
}




.miles-row-stack {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--40, 1.5rem);
}

@media (max-width: 781px) {
.miles-row-stack {

    flex-direction: column;
    align-items: stretch;
  
}
}


@media (max-width: 781px) {
.miles-swap-order {

    flex-direction: column-reverse;
  
}
}


.miles-sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}


.is-root-container > .miles-sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

.admin-bar .miles-sticky-top {
  top: 32px;
}

@media screen and (max-width: 782px) {
.admin-bar .miles-sticky-top {

    top: 46px;
  
}
}


.miles-no-shrink {
  flex-shrink: 0;
}


.miles-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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


.miles-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}







body .hero { display: grid; }
body .hero > * { margin-block-start: 0; margin-block-end: 0; }
.hero { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .hero-grid-inner { display: grid; }
body .hero-grid-inner > * { margin-block-start: 0; margin-block-end: 0; }
.hero-grid-inner { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .shop-layout-inner { display: grid; }
body .shop-layout-inner > * { margin-block-start: 0; margin-block-end: 0; }
.shop-layout-inner { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .shop-grid { display: grid; }
body .shop-grid > * { margin-block-start: 0; margin-block-end: 0; }
.shop-grid { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .mystery-inner { display: grid; }
body .mystery-inner > * { margin-block-start: 0; margin-block-end: 0; }
.mystery-inner { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .reviews-grid { display: grid; }
body .reviews-grid > * { margin-block-start: 0; margin-block-end: 0; }
.reviews-grid { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .about-inner { display: grid; }
body .about-inner > * { margin-block-start: 0; margin-block-end: 0; }
.about-inner { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .footer-inner { display: grid; }
body .footer-inner > * { margin-block-start: 0; margin-block-end: 0; }
.footer-inner { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }
body .footer-links { display: grid; }
body .footer-links > * { margin-block-start: 0; margin-block-end: 0; }
.footer-links { --wp--style--global--content-size: 100%; --wp--style--global--wide-size: 100%; }

@media (prefers-reduced-motion: reduce) {
.hero-marquee-track {
 animation: none !important; 
}
.newsletter-marquee-track {
 animation: none !important; 
}
:root :where(.newsletter-marquee-track) {
 animation: none !important; 
}
.hero-product {
 animation: none !important; 
}
html {
 scroll-behavior: auto !important; 
}
}

/* ========================================================================
   Single Product Page
   ======================================================================== */

/* --- Breadcrumbs --- */
:root :where(.single-product-content .wc-block-breadcrumbs) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wp--preset--color--accent-1);
  margin-top: var(--wp--preset--spacing--50);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
  background: var(--wp--preset--color--contrast);
  border: 3px solid var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wc-block-breadcrumbs a) {
  color: var(--wp--preset--color--base);
  text-decoration: none;
  transition: color 0.15s ease;
}
:root :where(.single-product-content .wc-block-breadcrumbs a:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* --- Product Layout (Columns) --- */
:root :where(.single-product-content .wp-block-columns) {
  gap: var(--wp--preset--spacing--60);
  margin-top: var(--wp--preset--spacing--40);
  margin-bottom: var(--wp--preset--spacing--60);
  align-items: flex-start;
}

/* --- Product Image Gallery --- */
:root :where(.single-product-content .product-image-col) {
  position: sticky;
  top: var(--wp--preset--spacing--40);
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 8px 8px 0 var(--wp--preset--color--accent-1);
  background: var(--wp--preset--color--base);
  border-radius: 0;
  overflow: hidden;
  position: relative;
    }
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery img) {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery > .woocommerce-product-gallery__wrapper img:hover),
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image img:hover) {
  transform: scale(1.03);
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs img) {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs img:hover),
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs img.flex-active) {
  opacity: 1;
}
:root :where(.single-product-content .woocommerce-product-gallery__trigger) {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  z-index: 2;
}
:root :where(.single-product-content .woocommerce-product-gallery__trigger:hover) {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1);
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs) {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
  border-radius: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li) {
  flex: 1;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li:hover) {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
  transform: translate(-1px, -1px);
}
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li img.flex-active),
:root :where(.single-product-content .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li:has(.flex-active)) {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}

/* --- Product Gallery (WooCommerce Blocks Gallery) --- */
:root :where(.single-product-content .wp-block-woocommerce-product-gallery) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 8px 8px 0 var(--wp--preset--color--accent-1);
  background: var(--wp--preset--color--base);
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery img) {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-large-image img) {
  transition: transform 0.3s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-large-image img:hover) {
  transform: scale(1.03);
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails) {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  border-radius: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  cursor: pointer;
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > * img) {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  border-radius: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *:hover) {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
  transform: translate(-1px, -1px);
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *:hover img) {
  opacity: 1;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *.is-active),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *[aria-current]),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *.wc-block-product-gallery-thumbnails__thumbnail--is-active) {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *.is-active img),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *[aria-current] img),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery-thumbnails > *.wc-block-product-gallery-thumbnails__thumbnail--is-active img) {
  opacity: 1;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery [class*="dialog__button"]),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery [class*="pswp__button"]) {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  transition: background 0.15s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-gallery [class*="dialog__button"]:hover),
:root :where(.single-product-content .wp-block-woocommerce-product-gallery [class*="pswp__button"]:hover) {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1);
}

/* --- Product Gallery Universal Fallback (no wrapper dependency) --- */
/* Targets all 3 gallery variants: classic, old blocks, new blocks */
/* Uses body.single-product (always present on WooCommerce product pages) */

body.single-product .woocommerce-product-gallery,
body.single-product .wp-block-woocommerce-product-image-gallery,
body.single-product .wp-block-woocommerce-product-gallery {
  border: 3px solid var(--wp--preset--color--contrast) !important;
  box-shadow: 8px 8px 0 var(--wp--preset--color--accent-1) !important;
  background: var(--wp--preset--color--base) !important;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
}
body.single-product .woocommerce-product-gallery img,
body.single-product .wp-block-woocommerce-product-image-gallery img,
body.single-product .wp-block-woocommerce-product-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0 !important;
}
/* Large image hover zoom */
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img,
body.single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image img,
body.single-product .wp-block-woocommerce-product-gallery-large-image img {
  transition: transform 0.3s ease;
}
body.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img:hover,
body.single-product .wp-block-woocommerce-product-image-gallery .woocommerce-product-gallery__image img:hover,
body.single-product .wp-block-woocommerce-product-gallery-large-image img:hover {
  transform: scale(1.03);
}
/* Thumbnail containers - classic */
body.single-product .woocommerce-product-gallery .flex-control-thumbs,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
  border-radius: 0;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs li,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li {
  flex: 1;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  cursor: pointer;
  border-radius: 0 !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs li:hover,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li:hover {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
  transform: translate(-1px, -1px);
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs img,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs img {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  border-radius: 0 !important;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs li:hover img,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li:hover img,
body.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active,
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs img.flex-active {
  opacity: 1;
}
body.single-product .woocommerce-product-gallery .flex-control-thumbs li:has(img.flex-active),
body.single-product .wp-block-woocommerce-product-image-gallery .flex-control-thumbs li:has(img.flex-active) {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}
/* Thumbnail containers - new blocks */
body.single-product .wp-block-woocommerce-product-gallery-thumbnails {
  display: flex;
  gap: 10px;
  padding: 0;
  list-style: none;
  border-radius: 0;
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > * {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  cursor: pointer;
  border-radius: 0 !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > * img {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  border-radius: 0 !important;
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *:hover {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
  transform: translate(-1px, -1px);
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *:hover img {
  opacity: 1;
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *.is-active,
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *[aria-current],
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *.wc-block-product-gallery-thumbnails__thumbnail--is-active {
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--accent-1);
}
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *.is-active img,
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *[aria-current] img,
body.single-product .wp-block-woocommerce-product-gallery-thumbnails > *.wc-block-product-gallery-thumbnails__thumbnail--is-active img {
  opacity: 1;
}
/* Gallery trigger / zoom buttons */
body.single-product .woocommerce-product-gallery__trigger,
body.single-product [class*="dialog__button"],
body.single-product .wp-block-woocommerce-product-gallery [class*="pswp__button"] {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  transition: background 0.15s ease;
}
body.single-product .woocommerce-product-gallery__trigger:hover,
body.single-product [class*="dialog__button"]:hover,
body.single-product .wp-block-woocommerce-product-gallery [class*="pswp__button"]:hover {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1);
}





/* --- Product Details Column --- */
:root :where(.single-product-content .product-details-col) {
  padding: var(--wp--preset--spacing--60);
  border: 3px solid var(--wp--preset--color--contrast);
  border-top: 4px solid var(--wp--preset--color--accent-1);
  box-shadow: 6px 6px 0 var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  position: relative;
}

/* --- Product Title --- */
:root :where(.single-product-content .product-details-col .wp-block-post-title) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--huge);
  font-weight: 900;
  padding-right: 130px;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--wp--preset--color--contrast);
  margin-bottom: var(--wp--preset--spacing--40);
  padding-bottom: var(--wp--preset--spacing--30);
  border-bottom: 4px solid var(--wp--preset--color--accent-1);
  display: block;
  width: 100%;
}

/* --- Product Rating --- */
:root :where(.single-product-content .wp-block-woocommerce-product-rating) {
  margin-bottom: var(--wp--preset--spacing--40);
}
:root :where(.single-product-content .wc-block-components-product-rating__stars) {
  font-size: 1.25rem;
  color: var(--wp--preset--color--accent-1);
}

/* --- Product Price --- */
:root :where(.single-product-content .product-details-col .wc-block-components-product-price) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 900;
  color: #FFFFFF;
  background: var(--wp--preset--color--accent-1);
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 0;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  position: absolute;
  top: var(--wp--preset--spacing--60);
  right: var(--wp--preset--spacing--60);
  z-index: 2;
}
:root :where(.single-product-content .product-details-col .wc-block-components-product-price del) {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.7em;
  text-decoration: line-through;
  margin-right: 0.5em;
}
:root :where(.single-product-content .product-details-col .wc-block-components-product-price ins) {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 900;
}

/* --- Post Excerpt / Short Description --- */
:root :where(.single-product-content .product-details-col .wp-block-post-excerpt) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--accent-3);
  margin-bottom: var(--wp--preset--spacing--50);
  padding-left: var(--wp--preset--spacing--40);
  border-left: 4px solid var(--wp--preset--color--accent-1);
  border-bottom: none;
}

/* --- Description paragraph spacing --- */
:root :where(.single-product-content .product-details-col .wp-block-post-excerpt p),
:root :where(.single-product-content .woocommerce-product-details__short-description p),
:root :where(.single-product-content .product-description-full p) {
  margin-bottom: 1.2em;
  line-height: 1.65;
}
:root :where(.single-product-content .product-details-col .wp-block-post-excerpt p:last-child),
:root :where(.single-product-content .woocommerce-product-details__short-description p:last-child),
:root :where(.single-product-content .product-description-full p:last-child) {
  margin-bottom: 0;
}

/* --- Description lists with pink bullets --- */
:root :where(.single-product-content .wp-block-post-excerpt ul),
:root :where(.single-product-content .woocommerce-product-details__short-description ul),
:root :where(.single-product-content .product-description-full ul) {
  list-style: none;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
:root :where(.single-product-content .wp-block-post-excerpt ul li),
:root :where(.single-product-content .woocommerce-product-details__short-description ul li),
:root :where(.single-product-content .product-description-full ul li) {
  position: relative;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.65;
}
:root :where(.single-product-content .wp-block-post-excerpt ul li)::before,
:root :where(.single-product-content .woocommerce-product-details__short-description ul li)::before,
:root :where(.single-product-content .product-description-full ul li)::before {
  content: '—';
  position: absolute;
  left: -1.5em;
  color: var(--wp--preset--color--accent-1);
  font-weight: 700;
}

/* --- Description headings --- */
:root :where(.single-product-content .wp-block-post-excerpt h1),
:root :where(.single-product-content .wp-block-post-excerpt h2),
:root :where(.single-product-content .wp-block-post-excerpt h3),
:root :where(.single-product-content .wp-block-post-excerpt h4),
:root :where(.single-product-content .woocommerce-product-details__short-description h1),
:root :where(.single-product-content .woocommerce-product-details__short-description h2),
:root :where(.single-product-content .woocommerce-product-details__short-description h3),
:root :where(.single-product-content .woocommerce-product-details__short-description h4),
:root :where(.single-product-content .product-description-full h1),
:root :where(.single-product-content .product-description-full h2),
:root :where(.single-product-content .product-description-full h3),
:root :where(.single-product-content .product-description-full h4) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 900;
  color: var(--wp--preset--color--contrast);
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  line-height: 1.3;
}

/* --- Add to Cart Form --- */
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form) {
      margin-bottom: var(--wp--preset--spacing--50);
      padding-bottom: var(--wp--preset--spacing--50);
    }
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .quantity input[type="number"]) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 700;
  border: 3px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  padding: 12px 16px;
  text-align: center;
  width: 80px;
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  -moz-appearance: textfield;
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .quantity input[type="number"]::-webkit-inner-spin-button),
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .quantity input[type="number"]::-webkit-outer-spin-button) {
  -webkit-appearance: none;
  margin: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form button.single_add_to_cart_button),
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .wc-block-components-product-button__button) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: 1rem 1.5rem;
  border-radius: 0;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form button.single_add_to_cart_button:hover),
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .wc-block-components-product-button__button:hover) {
  background: var(--wp--preset--color--contrast);
  border-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form select) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--base);
  border: 3px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  padding: 12px 16px;
  cursor: pointer;
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .variations label) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .variations td) {
  padding: 8px 0;
}

/* --- Stock Badge --- */
:root :where(.single-product-content .stock) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  display: inline-block;
  margin-top: var(--wp--preset--spacing--30);
  border-radius: 50px;
}
:root :where(.single-product-content .stock.in-stock) {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35em 0.75em;
  border: 2px solid var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .stock.in-stock)::before {
  content: "●";
  color: #00C853;
  margin-right: 0.3em;
}
:root :where(.single-product-content .stock.out-of-stock) {
  background: var(--wp--preset--color--accent-3);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}

/* --- Product Meta --- */
:root :where(.single-product-content .wp-block-woocommerce-product-meta) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: var(--wp--preset--spacing--40);
  border-top: 3px solid var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wp-block-woocommerce-product-meta a) {
  color: var(--wp--preset--color--contrast);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-meta a:hover) {
  color: var(--wp--preset--color--accent-1);
}
:root :where(.single-product-content .wp-block-woocommerce-product-meta .wc-block-components-product-sku) {
  font-family: var(--wp--preset--font-family--space-mono);
  letter-spacing: 0.05em;
}

/* --- Product Details / Tabs --- */
:root :where(.single-product-content .wp-block-woocommerce-product-details) {
  margin-top: var(--wp--preset--spacing--60);
  margin-bottom: var(--wp--preset--spacing--60);
  padding-top: var(--wp--preset--spacing--60);
  border-top: 4px solid var(--wp--preset--color--accent-1);
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .wc-tabs) {
  list-style: none;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0 0 var(--wp--preset--spacing--40) 0;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .wc-tabs li a) {
  display: block;
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--accent-3);
  text-decoration: none;
  padding: 12px 24px;
  border: 3px solid transparent;
  border-bottom: none;
  margin-bottom: -3px;
  transition: all 0.2s ease;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .wc-tabs li.active a),
:root :where(.single-product-content .wp-block-woocommerce-product-details .wc-tabs li a:hover) {
  color: var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
  border-top: 3px solid var(--wp--preset--color--accent-1);
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--base);
  line-height: 1.7;
  color: var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--40) 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel h2) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--xx-large);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: var(--wp--preset--spacing--30);
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel p) {
  margin-bottom: 1.2em;
  line-height: 1.65;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel p:last-child) {
  margin-bottom: 0;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel ul) {
  list-style: none;
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel ul li) {
  position: relative;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.65;
}
:root :where(.single-product-content .wp-block-woocommerce-product-details .woocommerce-Tabs-panel ul li)::before {
  content: '\2014';
  position: absolute;
  left: -1.5em;
  color: var(--wp--preset--color--accent-1);
  font-weight: 700;
}
:root :where(.single-product-content .woocommerce-product-attributes) {
  width: 100%;
  border-collapse: collapse;
}
:root :where(.single-product-content .woocommerce-product-attributes th) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 2px solid var(--wp--preset--color--base-2);
  color: var(--wp--preset--color--contrast);
  width: 30%;
}
:root :where(.single-product-content .woocommerce-product-attributes td) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--base);
  padding: 12px 16px;
  border-bottom: 2px solid var(--wp--preset--color--base-2);
  color: var(--wp--preset--color--accent-3);
}

/* --- Related Products Section --- */
:root :where(.related-products-section) {
  margin-top: var(--wp--preset--spacing--65);
  padding-top: var(--wp--preset--spacing--60);
  border-top: 4px solid var(--wp--preset--color--accent-1);
}
:root :where(.related-products-section > .wp-block-heading) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--xxx-large);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--wp--preset--color--contrast);
  margin-bottom: var(--wp--preset--spacing--50);
  padding-bottom: var(--wp--preset--spacing--30);
  border-bottom: 4px solid var(--wp--preset--color--accent-1);
  display: inline-block;
}
:root :where(.related-products-section .wc-block-product-template) {
  gap: var(--wp--preset--spacing--40) !important;
}
:root :where(.related-products-section .wc-block-product-template .wc-block-product) {
  position: relative;
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  overflow: hidden;
  transition: all 0.25s ease;
}
:root :where(.related-products-section .wc-block-product-template .wc-block-product:hover) {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--wp--preset--color--contrast);
}
:root :where(.related-products-section .wc-block-product .wc-block-components-product-image) {
  position: relative;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  overflow: hidden;
}
:root :where(.related-products-section .wc-block-product .wc-block-components-product-image img) {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
:root :where(.related-products-section .wc-block-product:hover .wc-block-components-product-image img) {
  transform: scale(1.05);
}
:root :where(.related-products-section .wc-block-product .wp-block-post-title) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 900;
  text-transform: uppercase;
  padding: 12px 14px 4px;
  color: var(--wp--preset--color--contrast);
}
:root :where(.related-products-section .wc-block-product .wp-block-post-title a) {
  color: inherit;
  text-decoration: none;
}
:root :where(.related-products-section .wc-block-product .wc-block-components-product-price) {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.2;
  padding: 0.35rem 0.75rem;
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 20px;
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  white-space: nowrap;
}
:root :where(.related-products-section .wc-block-product .wc-block-components-product-price del) {
  opacity: 0.7;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--wp--preset--color--base);
}
:root :where(.related-products-section .wc-block-product .wc-block-components-product-price ins) {
  text-decoration: none;
}
:root :where(.related-products-section .wc-block-product .wp-block-button .wc-block-components-product-button__button) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border: none;
  border-top: 3px solid var(--wp--preset--color--contrast);
  padding: 12px 14px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease;
}
:root :where(.related-products-section .wc-block-product .wp-block-button .wc-block-components-product-button__button:hover) {
  background: var(--wp--preset--color--accent-1);
}

/* --- Sale Badge on Related Products --- */
:root :where(.related-products-section .wc-block-product .wc-block-components-product-sale-badge) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 900;
  text-transform: uppercase;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  padding: 4px 10px;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  :root :where(.single-product-content .wp-block-columns) {
    gap: var(--wp--preset--spacing--50);
  }
  :root :where(.single-product-content .product-image-col) {
    position: static;
  }
  :root :where(.single-product-content .product-details-col .wp-block-post-title) {
    font-size: var(--wp--preset--font-size--xxx-large);
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  :root :where(.single-product-content .wp-block-columns) {
    gap: var(--wp--preset--spacing--40);
  }
  :root :where(.single-product-content .product-details-col) {
    padding: var(--wp--preset--spacing--40);
    box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  }
  :root :where(.single-product-content .product-details-col .wp-block-post-title) {
    font-size: var(--wp--preset--font-size--xx-large);
  }
  :root :where(.single-product-content .product-details-col .wc-block-components-product-price) {
    font-size: var(--wp--preset--font-size--large);
    top: var(--wp--preset--spacing--40);
    right: var(--wp--preset--spacing--40);
  }
  :root :where(.single-product-content .product-details-col .wp-block-post-title) {
    padding-right: 120px;
  }
  :root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form button.single_add_to_cart_button),
  :root :where(.single-product-content .wp-block-woocommerce-add-to-cart-form .wc-block-components-product-button__button) {
    padding: 14px 30px;
    width: 100%;
  }
  :root :where(.single-product-content .wp-block-woocommerce-product-details .wc-tabs li a) {
    padding: 10px 16px;
    font-size: 0.65rem;
  }
  :root :where(.related-products-section > .wp-block-heading) {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}

/* ============================================
   HEADER POWER-UP — Trading Card Shop Vibe
   ============================================ */

/* Brand name — hot pink accent dot */
:root :where(.hero-brand-name) a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

:root :where(.hero-brand-name) a::after {
  content: '.';
  color: var(--wp--preset--color--accent-1);
}

:root :where(.hero-brand-name) a:hover {
  color: var(--wp--preset--color--accent-1);
}

/* Nav link — animated underline on hover */
:root :where(.hero-nav) .wp-block-navigation-item:not(.hero-nav-cart) {
  position: relative;
}

:root :where(.hero-nav) .wp-block-navigation-item:not(.hero-nav-cart) .wp-block-navigation-item__content {
  position: relative;
  padding-bottom: 6px;
}

:root :where(.hero-nav) .wp-block-navigation-item:not(.hero-nav-cart) .wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--wp--preset--color--accent-1);
  transition: width 0.2s ease;
}

:root :where(.hero-nav) .wp-block-navigation-item:not(.hero-nav-cart) .wp-block-navigation-item__content:hover::after {
  width: 100%;
}

/* Cart button — chunky shadow treatment */
:root :where(.hero-nav-cart) .wp-block-navigation-item__content {
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: all 0.15s ease !important;
}

:root :where(.hero-nav-cart) .wp-block-navigation-item__content:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--accent-1) !important;
}

/* Customer account — bold circle */
:root :where(.wp-block-woocommerce-customer-account) a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 50%;
  transition: all 0.15s ease;
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
}

:root :where(.wp-block-woocommerce-customer-account) a:hover {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  transform: scale(1.1);
}

:root :where(.wp-block-woocommerce-customer-account) a svg {
  width: 20px;
  height: 20px;
}

/* Mini cart — chunky frame + hot pink badge */
:root :where(.wc-block-mini-cart__button) {
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 8px 12px !important;
  transition: all 0.15s ease !important;
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  background: transparent !important;
}

:root :where(.wc-block-mini-cart__button):hover {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1) !important;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--accent-1);
}

:root :where(.wc-block-mini-cart__badge) {
  background: var(--wp--preset--color--accent-1) !important;
  color: var(--wp--preset--color--base) !important;
  font-family: 'Space Mono', monospace !important;
  font-weight: 700 !important;
  font-size: 0.6rem !important;
  min-width: 18px !important;
  height: 18px !important;
  line-height: 18px !important;
  border-radius: 0 !important;
  border: 2px solid var(--wp--preset--color--contrast) !important;
}

:root :where(.wc-block-mini-cart__quantity-badge) {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

/* Fix duplicate product images in mini-cart drawer */
:root :where(.wc-block-cart-item__image) img ~ img,
:root :where(.wc-block-mini-cart__drawer) :where(.wc-block-components-product-image) img ~ img,
:root :where(.wc-block-cart-item__image) a ~ a,
:root :where(.wc-block-cart-item__image) :where(.wc-block-components-product-image) ~ :where(.wc-block-components-product-image) {
  display: none !important;
}

/* Header mobile enhancements */
@media (max-width: 768px) {
  :root :where(.hero-header) {
    border-top-width: 3px;
  }

  :root :where(.wc-block-mini-cart__button) {
    padding: 6px 8px !important;
    border-width: 2px !important;
    box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  }

  :root :where(.wp-block-woocommerce-customer-account) a {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  :root :where(.wp-block-woocommerce-customer-account) a svg {
    width: 16px;
    height: 16px;
  }

  :root :where(.hero-nav) .wp-block-navigation__responsive-container-open {
    border: 3px solid var(--wp--preset--color--contrast) !important;
    border-radius: 0 !important;
    padding: 6px !important;
    background: transparent !important;
    transition: all 0.15s ease;
    box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
  }

  :root :where(.hero-nav) .wp-block-navigation__responsive-container-open svg {
    fill: var(--wp--preset--color--contrast) !important;
  }

  :root :where(.hero-nav) .wp-block-navigation__responsive-container-open:hover {
    background: var(--wp--preset--color--accent-1) !important;
    border-color: var(--wp--preset--color--accent-1) !important;
    box-shadow: 2px 2px 0 var(--wp--preset--color--accent-1);
  }

  :root :where(.hero-nav) .wp-block-navigation__responsive-container-open:hover svg {
    fill: var(--wp--preset--color--base) !important;
  }
}

/* ========================================================================
   Izzi's Products Block — Brutalist Trading Card Shop Style
   ======================================================================== */

/* Block wrapper spans full parent grid */
:root :where(.shop-layout-inner) > *,
.shop-layout-inner > * {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--wp--preset--spacing--50);
  align-items: start;
}

/* Also handle display:contents or missing wrapper */
.shop-layout-inner .woocommerce {
  display: contents;
}

/* --- Product Grid --- */
:root :where(.shop-layout-inner) ul.products,
:root :where(.shop-layout-inner) .products,
.shop-layout-inner ul.products,
.shop-layout-inner .products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--wp--preset--spacing--40) !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Product Cards --- */
:root :where(.shop-layout-inner) ul.products li.product,
:root :where(.shop-layout-inner) .products .product,
:root :where(.shop-layout-inner) .product,
.shop-layout-inner ul.products li.product,
.shop-layout-inner .products .product,
.shop-layout-inner .product {
  background: var(--wp--preset--color--base) !important;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast) !important;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex !important;
  flex-direction: column;
  position: relative;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

:root :where(.shop-layout-inner) ul.products li.product:hover,
:root :where(.shop-layout-inner) .products .product:hover,
:root :where(.shop-layout-inner) .product:hover,
.shop-layout-inner ul.products li.product:hover,
.shop-layout-inner .products .product:hover,
.shop-layout-inner .product:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--wp--preset--color--contrast) !important;
}

/* --- Product Images --- */
:root :where(.shop-layout-inner) li.product > a:first-child,
:root :where(.shop-layout-inner) .product > a:first-child,
.shop-layout-inner li.product > a:first-child,
.shop-layout-inner .product > a:first-child {
  display: block;
  overflow: hidden;
  line-height: 0;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}

:root :where(.shop-layout-inner) li.product img,
:root :where(.shop-layout-inner) .product img,
.shop-layout-inner li.product img,
.shop-layout-inner .product img {
  width: 100% !important;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block !important;
  transition: transform 0.3s ease;
}

:root :where(.shop-layout-inner) li.product:hover img,
:root :where(.shop-layout-inner) .product:hover img,
.shop-layout-inner li.product:hover img,
.shop-layout-inner .product:hover img {
  transform: scale(1.04);
}

/* --- Product Titles --- */
:root :where(.shop-layout-inner) li.product .woocommerce-loop-product__title,
:root :where(.shop-layout-inner) li.product h2,
:root :where(.shop-layout-inner) .product .woocommerce-loop-product__title,
:root :where(.shop-layout-inner) .product h2,
.shop-layout-inner li.product .woocommerce-loop-product__title,
.shop-layout-inner li.product h2,
.shop-layout-inner .product .woocommerce-loop-product__title,
.shop-layout-inner .product h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.3;
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--30) 0;
  margin: 0;
  color: var(--wp--preset--color--contrast);
}

:root :where(.shop-layout-inner) li.product a,
:root :where(.shop-layout-inner) .product a,
.shop-layout-inner li.product a,
.shop-layout-inner .product a {
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
  transition: color 0.15s ease;
}

:root :where(.shop-layout-inner) li.product a:hover,
:root :where(.shop-layout-inner) .product a:hover,
.shop-layout-inner li.product a:hover,
.shop-layout-inner .product a:hover {
  color: var(--wp--preset--color--accent-1);
}

/* --- Product Prices --- */
:root :where(.shop-layout-inner) li.product .price,
:root :where(.shop-layout-inner) .product .price,
.shop-layout-inner li.product .price,
.shop-layout-inner .product .price,
:root :where(.shop-layout-inner) li.product .amount,
:root :where(.shop-layout-inner) .product .amount,
.shop-layout-inner li.product .amount,
.shop-layout-inner .product .amount {
  font-family: 'Unbounded', sans-serif !important;
  font-weight: 900 !important;
  font-size: var(--wp--preset--font-size--medium) !important;
  color: var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  line-height: 1.2;
  display: block;
}

:root :where(.shop-layout-inner) li.product .price del,
:root :where(.shop-layout-inner) .product .price del,
.shop-layout-inner li.product .price del,
.shop-layout-inner .product .price del {
  color: var(--wp--preset--color--accent-3);
  font-weight: 400;
  font-size: 0.7em;
}

:root :where(.shop-layout-inner) li.product .price ins,
:root :where(.shop-layout-inner) .product .price ins,
.shop-layout-inner li.product .price ins,
.shop-layout-inner .product .price ins {
  color: var(--wp--preset--color--accent-1);
  text-decoration: none;
  font-weight: 900;
}

/* --- Add to Cart / Read More Buttons --- */
:root :where(.shop-layout-inner) li.product .button,
:root :where(.shop-layout-inner) li.product .add_to_cart_button,
:root :where(.shop-layout-inner) li.product a.added_to_cart,
:root :where(.shop-layout-inner) .product .button,
:root :where(.shop-layout-inner) .product .add_to_cart_button,
:root :where(.shop-layout-inner) .product a.added_to_cart,
.shop-layout-inner li.product .button,
.shop-layout-inner li.product .add_to_cart_button,
.shop-layout-inner li.product a.added_to_cart,
.shop-layout-inner .product .button,
.shop-layout-inner .product .add_to_cart_button,
.shop-layout-inner .product a.added_to_cart {
  font-family: 'Unbounded', sans-serif !important;
  font-weight: 700 !important;
  font-size: var(--wp--preset--font-size--small) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30) !important;
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.15s ease !important;
  cursor: pointer;
  margin: auto var(--wp--preset--spacing--30) var(--wp--preset--spacing--30);
  line-height: 1.4;
}

:root :where(.shop-layout-inner) li.product .button:hover,
:root :where(.shop-layout-inner) li.product .add_to_cart_button:hover,
:root :where(.shop-layout-inner) li.product a.added_to_cart:hover,
:root :where(.shop-layout-inner) .product .button:hover,
:root :where(.shop-layout-inner) .product .add_to_cart_button:hover,
:root :where(.shop-layout-inner) .product a.added_to_cart:hover,
.shop-layout-inner li.product .button:hover,
.shop-layout-inner li.product .add_to_cart_button:hover,
.shop-layout-inner li.product a.added_to_cart:hover,
.shop-layout-inner .product .button:hover,
.shop-layout-inner .product .add_to_cart_button:hover,
.shop-layout-inner .product a.added_to_cart:hover {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1) !important;
  color: var(--wp--preset--color--base) !important;
}

/* --- Out of Stock Text --- */
:root :where(.shop-layout-inner) li.product .stock,
:root :where(.shop-layout-inner) .product .stock,
.shop-layout-inner li.product .stock,
.shop-layout-inner .product .stock {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 var(--wp--preset--spacing--30);
}

/* --- Sale Badge --- */
:root :where(.shop-layout-inner) li.product .onsale,
:root :where(.shop-layout-inner) .product .onsale,
.shop-layout-inner li.product .onsale,
.shop-layout-inner .product .onsale {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  padding: 4px 10px;
  position: absolute;
  top: var(--wp--preset--spacing--30);
  right: var(--wp--preset--spacing--30);
  z-index: 1;
  line-height: 1.2;
}

/* --- Sidebar / Filters --- */
:root :where(.shop-layout-inner) h3,
:root :where(.shop-layout-inner) h4,
.shop-layout-inner h3,
.shop-layout-inner h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--contrast);
  margin: 0 0 var(--wp--preset--spacing--20);
  padding-bottom: var(--wp--preset--spacing--20);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}

:root :where(.shop-layout-inner) label,
.shop-layout-inner label {
  font-family: 'Unbounded', sans-serif;
  font-size: var(--wp--preset--font-size--small);
  cursor: pointer;
  color: var(--wp--preset--color--contrast);
}

:root :where(.shop-layout-inner) input[type="number"],
.shop-layout-inner input[type="number"] {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  padding: 4px 8px;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
}

:root :where(.shop-layout-inner) input[type="checkbox"],
.shop-layout-inner input[type="checkbox"] {
  accent-color: var(--wp--preset--color--accent-1);
  width: 18px;
  height: 18px;
  border: 2px solid var(--wp--preset--color--contrast);
  cursor: pointer;
}

/* --- Pagination --- */
:root :where(.shop-layout-inner) nav.woocommerce-pagination,
:root :where(.shop-layout-inner) .woocommerce-pagination,
.shop-layout-inner nav.woocommerce-pagination,
.shop-layout-inner .woocommerce-pagination {
  padding-top: var(--wp--preset--spacing--40);
}

:root :where(.shop-layout-inner) .woocommerce-pagination .page-numbers,
:root :where(.shop-layout-inner) .woocommerce-pagination a,
.shop-layout-inner .woocommerce-pagination .page-numbers,
.shop-layout-inner .woocommerce-pagination a {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: 6px 14px;
  text-decoration: none;
  transition: all 0.12s;
}

:root :where(.shop-layout-inner) .woocommerce-pagination .page-numbers.current,
:root :where(.shop-layout-inner) .woocommerce-pagination .page-numbers:hover,
:root :where(.shop-layout-inner) .woocommerce-pagination a:hover,
.shop-layout-inner .woocommerce-pagination .page-numbers.current,
.shop-layout-inner .woocommerce-pagination .page-numbers:hover,
.shop-layout-inner .woocommerce-pagination a:hover {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--accent-1);
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  :root :where(.shop-layout-inner) ul.products,
  :root :where(.shop-layout-inner) .products {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--30);
  }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
  :root :where(.shop-layout-inner) ul.products,
  :root :where(.shop-layout-inner) .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  :root :where(.shop-layout-inner) ul.products,
  :root :where(.shop-layout-inner) .products {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Izzi's Products Block
   ============================================ */

/* --- Layout: two-column grid (sidebar + main) --- */
:root :where(.izzis-block) {
      width: 100%;
      padding: var(--wp--preset--spacing--40) var(--wp--preset--spacing--40) var(--wp--preset--spacing--65);
    }

:root :where(.izzis-layout) {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}

:root :where(.izzis-sidebar) {
  position: sticky;
  top: 2rem;
}

:root :where(.izzis-main) {
  min-width: 0;
}

/* --- Product Grid --- */
:root :where(.izzis-products) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* --- Product Card --- */
:root :where(.izzis-product) {
  list-style: none;
  padding: 0;
  margin: 0;
}
:root :where(.izzis-product__inner) {
      border-radius: 25px;
  position: relative;
      display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

:root :where(.izzis-product__inner:hover) {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--wp--preset--color--contrast);
}

/* --- Product Image --- */
:root :where(.izzis-product__image-link) {
  display: block;
  overflow: hidden;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}

:root :where(.izzis-product__image) {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

:root :where(.izzis-product__image-link:hover .izzis-product__image) {
  transform: scale(1.05);
}

/* --- Product Body --- */
:root :where(.izzis-product__body) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  flex-grow: 1;
}

/* --- Product Title --- */
:root :where(.izzis-product__title) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: var(--wp--preset--font-size--base);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--wp--preset--color--contrast);
  margin: 0;
  text-align: center;
}

:root :where(.izzis-product__title a) {
  color: inherit;
  text-decoration: none;
}

:root :where(.izzis-product__title a:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* --- Product Price --- */
:root :where(.izzis-product__price) {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.2;
  padding: 0.35rem 0.75rem;
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 20px;
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  white-space: nowrap;
}

:root :where(.izzis-product__price del) {
  opacity: 0.7;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--wp--preset--color--base);
}

:root :where(.izzis-product__price ins) {
  text-decoration: none;
}

/* --- Product Rating --- */
:root :where(.izzis-product__rating) {
  color: var(--wp--preset--color--accent-1);
  font-size: var(--wp--preset--font-size--small);
}

/* --- Out of Stock --- */
:root :where(.izzis-product__stock--out) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wp--preset--color--accent-1);
  letter-spacing: 0.05em;
}

/* --- Add to Cart / Actions Button --- */
:root :where(.izzis-product__actions) {
  padding: 0 1rem 1rem;
  margin-top: auto;
}

:root :where(.izzis-product__actions .button) {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.25rem;
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

:root :where(.izzis-product__actions .button:hover) {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--contrast);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--wp--preset--color--contrast);
}

/* --- Active Filter Chips --- */
:root :where(.izzis-active-filters) {
  margin-bottom: 1.25rem;
}

:root :where(.izzis-chips) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

:root :where(.izzis-chips__item) {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.75rem;
  border: 2px solid var(--wp--preset--color--contrast);
  border-radius: 999px;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

:root :where(.izzis-chips__item:hover) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
}

:root :where(.izzis-chips__remove) {
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

:root :where(.izzis-chips__clear-all) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: none;
  border: none;
  border-radius: 999px;
  color: var(--wp--preset--color--accent-1);
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

:root :where(.izzis-chips__clear-all:hover) {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
}

/* --- Pagination --- */
:root :where(.izzis-pagination) {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

:root :where(.izzis-pagination__btn) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  min-width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

:root :where(.izzis-pagination__btn:hover) {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
}

:root :where(.izzis-pagination__btn--active) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
}

/* --- Sidebar Filters --- */
:root :where(.izzis-sidebar) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--contrast);
}
:root :where(.izzis-sidebar__inner) {
    }

/* --- Filter Form Container --- */
:root :where(.izzis-filters) {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Filter Panel (each section: Categories, Price, etc.) --- */
:root :where(.izzis-filter-panel) {
  border: none;
  border-bottom: 2px solid var(--wp--preset--color--contrast);
  padding: 1rem 0;
  margin: 0;
}

:root :where(.izzis-filter-panel:first-child) {
  padding-top: 0;
}

:root :where(.izzis-filter-panel:last-child) {
  border-bottom: none;
  padding-bottom: 0;
}

/* --- Panel Title (legend) --- */
:root :where(.izzis-filter-panel__title) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wp--preset--color--contrast);
  margin-bottom: 0.75rem;
  padding: 0;
  display: block;
  width: 100%;
}

/* --- Checkbox List --- */
:root :where(.izzis-filter-panel__list) {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

:root :where(.izzis-filter-panel__item) {
  margin: 0;
  padding: 0;
}

/* --- Checkbox Row --- */
:root :where(.izzis-checkbox) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.2rem 0;
  transition: color 0.15s ease;
}

:root :where(.izzis-checkbox:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* --- Custom Checkbox Input --- */
:root :where(.izzis-checkbox__input) {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
  margin: 0;
  padding: 0;
}

:root :where(.izzis-checkbox:hover .izzis-checkbox__input) {
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.izzis-checkbox__input:checked) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.izzis-checkbox__input:checked::after) {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid var(--wp--preset--color--base);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* --- Checkbox Label --- */
:root :where(.izzis-checkbox__label) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.72rem;
  color: var(--wp--preset--color--contrast);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

:root :where(.izzis-checkbox:hover .izzis-checkbox__label) {
  color: var(--wp--preset--color--accent-1);
}

/* --- Count Badge --- */
:root :where(.izzis-checkbox__count) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--wp--preset--color--accent-3);
  background: var(--wp--preset--color--base-2);
  padding: 0.1rem 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1.4;
}

/* --- Price Range Container --- */
:root :where(.izzis-price-range) {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* --- Price Range Slider --- */
:root :where(.izzis-price-range__slider) {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
}

:root :where(.izzis-price-range__input) {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  pointer-events: none;
  margin: 0;
  padding: 0;
  top: 50%;
  transform: translateY(-50%);
}

.izzis-price-range__input::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--wp--preset--color--contrast);
  border: none;
}

.izzis-price-range__input::-moz-range-track {
  height: 4px;
  background: var(--wp--preset--color--contrast);
  border: none;
}

.izzis-price-range__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--wp--preset--color--accent-1);
  border: 3px solid var(--wp--preset--color--contrast);
  cursor: pointer;
  pointer-events: all;
  margin-top: -7px;
  transition: transform 0.15s ease;
}

.izzis-price-range__input::-moz-range-thumb {
  appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--wp--preset--color--accent-1);
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  cursor: pointer;
  pointer-events: all;
  transition: transform 0.15s ease;
}

.izzis-price-range__input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.izzis-price-range__input::-moz-range-thumb:hover {
  transform: scale(1.15);
}

/* --- Price Range Min/Max Inputs Row --- */
:root :where(.izzis-price-range__inputs) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

:root :where(.izzis-price-range__label) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

:root :where(.izzis-price-range__number) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.75rem;
  font-weight: 700;
  width: 70px;
  border: 2px solid var(--wp--preset--color--contrast);
  padding: 0.3rem 0.4rem;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  text-align: center;
  outline: none;
  transition: border-color 0.15s ease;
}

:root :where(.izzis-price-range__number:focus) {
  border-color: var(--wp--preset--color--accent-1);
}

:root :where(.izzis-price-range__separator) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  font-size: 0.85rem;
}

/* --- Rating Filter --- */
:root :where(.izzis-rating-filter) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

:root :where(.izzis-rating-filter__option) {
  cursor: pointer;
  margin: 0;
  padding: 0;
}

:root :where(.izzis-rating-filter__input) {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

:root :where(.izzis-rating-filter__label) {
  display: inline-flex;
  align-items: center;
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid var(--wp--preset--color--contrast);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  line-height: 1.4;
  white-space: nowrap;
}

:root :where(.izzis-rating-filter__label:hover) {
  border-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--accent-1);
}

:root :where(.izzis-rating-filter__input:checked + .izzis-rating-filter__label) {
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--accent-1);
}

/* --- Filter Toggle Button (mobile) --- */
:root :where(.izzis-filter-toggle) {
  display: none;
}

/* --- Mobile Overlay --- */
:root :where(.izzis-overlay) {
  display: none;
}

/* --- Mobile Close Button --- */
:root :where(.izzis-sidebar__close) {
  display: none;
}

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
  :root :where(.izzis-layout) {
    grid-template-columns: 1fr;
  }

  :root :where(.izzis-sidebar) {
    position: static;
  }

  .shop-layout-inner > * {
    grid-template-columns: 1fr !important;
  }

  :root :where(.izzis-products) {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Responsive: Mobile Drawer (768px) --- */
@media (max-width: 768px) {

  /* Show filter toggle button */
  :root :where(.izzis-filter-toggle) {
    display: block;
    font-family: var(--wp--preset--font-family--space-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--wp--preset--color--base);
    color: var(--wp--preset--color--contrast);
    border: 3px solid var(--wp--preset--color--contrast);
    padding: 0.75rem 1.5rem;
    box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  :root :where(.izzis-filter-toggle:hover),
  :root :where(.izzis-filter-toggle:active) {
    background: var(--wp--preset--color--accent-1);
    color: var(--wp--preset--color--base);
    border-color: var(--wp--preset--color--accent-1);
    box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  }

  /* Sidebar drawer */
  :root :where(.izzis-sidebar) {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    transition: left 0.3s ease;
  }

/* Drawer inner padding */
  :root :where(.izzis-sidebar__inner) {
      }

  /* Show close button */
  :root :where(.izzis-sidebar__close) {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--wp--preset--font-family--space-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: none;
    color: var(--wp--preset--color--contrast);
    border: 2px solid var(--wp--preset--color--contrast);
    padding: 0.5rem 1rem;
    cursor: pointer;
    margin-bottom: 1.25rem;
    transition: background 0.2s ease, color 0.2s ease;
  }

  :root :where(.izzis-sidebar__close:hover),
  :root :where(.izzis-sidebar__close:active) {
    background: var(--wp--preset--color--contrast);
    color: var(--wp--preset--color--base);
  }

  /* Overlay backdrop */
  :root :where(.izzis-overlay) {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  :root :where(.izzis-block--drawer-open .izzis-sidebar) {
    left: 0 !important;
  }

  /* Overlay visible when drawer open */
  :root :where(.izzis-block--drawer-open .izzis-overlay) {
    opacity: 1;
    pointer-events: all;
  }

  /* Filter panels — touch-friendly spacing */
  :root :where(.izzis-filter-panel) {
    padding: 1.1rem 0;
  }

  :root :where(.izzis-filter-panel__title) {
    font-size: 0.75rem;
    margin-bottom: 0.85rem;
  }

  /* Checkbox list — roomier tap targets */
  :root :where(.izzis-filter-panel__list) {
    gap: 0.25rem;
  }

  :root :where(.izzis-checkbox) {
    padding: 0.4rem 0;
    min-height: 44px;
    align-items: center;
  }

  :root :where(.izzis-checkbox__input) {
    width: 20px;
    height: 20px;
  }

  :root :where(.izzis-checkbox__label) {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Price range — larger touch target */
  :root :where(.izzis-price-range input[type="range"]::-webkit-slider-thumb) {
    width: 22px;
    height: 22px;
  }

  :root :where(.izzis-price-range input[type="range"]::-moz-range-thumb) {
    width: 22px;
    height: 22px;
  }

  /* Rating stars — larger touch targets */
  :root :where(.izzis-rating-star) {
    font-size: 1.4rem;
    padding: 0.2rem;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

}


/* --- Post Content Typography Spacing --- */
:root :where(.wp-block-post-content) h1,
:root :where(.wp-block-post-content) h2,
:root :where(.wp-block-post-content) h3,
:root :where(.wp-block-post-content) h4,
:root :where(.wp-block-post-content) h5,
:root :where(.wp-block-post-content) h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

:root :where(.wp-block-post-content) > :first-child {
  margin-top: 0;
}

:root :where(.wp-block-post-content) p {
  margin-bottom: 1em;
}

:root :where(.wp-block-post-content) ul,
:root :where(.wp-block-post-content) ol {
  margin-bottom: 1em;
}

:root :where(.wp-block-post-content) li {
  margin-bottom: 0.25em;
}

/* ── Izzis Toolbar ── */

:root :where(.izzis-toolbar) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2rem;
}

:root :where(.izzis-toolbar) select,
:root :where(.izzis-toolbar) .sort-dropdown {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}







@media (max-width: 768px) {
  :root :where(.izzis-toolbar) {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
  }

  :root :where(.izzis-toolbar) select,
  :root :where(.izzis-toolbar) .sort-dropdown,
  :root :where(.izzis-sort) {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1rem;
  }

  :root :where(.izzis-toolbar) .result-count,
  :root :where(.izzis-toolbar) p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wp-block-post-content {
    padding-left: var(--wp--preset--spacing--40);
    padding-right: var(--wp--preset--spacing--40);
  }
}



/* Mobile: Add breathing room to the Izzi's block children */
@media (max-width: 767px) {
  .izzis-block .izzis-main,
  .izzis-block .izzis-topbar {
    padding-inline: 1rem;
  }
}

span.izzis-checkbox__label {
    font-size: 1em;
    text-wrap: auto;
}

/* ══════════════════════════════════════════
   CART PAGE — Brutalist Overrides
   ══════════════════════════════════════════ */

/* Base font for cart */
:root :where(.wp-block-woocommerce-cart) {
  font-family: var(--wp--preset--font-family--space-mono);
  color: var(--wp--preset--color--contrast);
}

/* Table headers */
:root :where(.wc-block-cart-items__header) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 3px solid var(--wp--preset--color--contrast) !important;
}

:root :where(.wc-block-cart-items__header span) {
  padding-bottom: 0.75rem;
}

/* Cart item rows */
:root :where(.wc-block-cart-items .wc-block-cart-items__row) {
  border-bottom: 3px solid var(--wp--preset--color--contrast) !important;
  padding: 1.5rem 0;
}

/* Product image */
:root :where(.wc-block-cart-item__image img) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  border-radius: 0 !important;
}

/* Product name */
:root :where(.wc-block-components-product-name) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  text-decoration: none !important;
  color: var(--wp--preset--color--contrast);
}

:root :where(.wc-block-components-product-name:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* Product metadata */
:root :where(.wc-block-components-product-metadata) {
      font-family: var(--wp--preset--font-family--space-mono);
      font-size: 0.75rem;
      display: none !important;
    }

/* Prices */
:root :where(.wc-block-components-product-price) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
}

/* Single product price - white text on hot pink badge */
:root :where(.single-product-content .product-details-col .wc-block-components-product-price),
:root :where(.single-product-content .product-details-col .wc-block-components-product-price) .woocommerce-Price-amount,
:root :where(.single-product-content .product-details-col .wc-block-components-product-price) bdi,
:root :where(.single-product-content .product-details-col .wc-block-components-product-price) .woocommerce-Price-currencySymbol {
  color: #FFFFFF;
}

/* Quantity selector */
:root :where(.wc-block-components-quantity-selector) {
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  overflow: hidden;
}

:root :where(.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  border-radius: 0 !important;
  font-size: 0.9rem;
  border-left: 2px solid var(--wp--preset--color--contrast) !important;
  border-right: 2px solid var(--wp--preset--color--contrast) !important;
}

:root :where(.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button) {
  font-weight: 700;
  border-radius: 0 !important;
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  transition: background 0.15s ease, color 0.15s ease;
}

:root :where(.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:hover) {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
}

/* Remove link */
:root :where(.wc-block-cart-item__remove-link) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--accent-3);
  text-decoration: none !important;
  transition: color 0.15s ease;
}

:root :where(.wc-block-cart-item__remove-link:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* ─── Cart Totals Sidebar ─── */

:root :where(.wc-block-cart__sidebar .wp-block-woocommerce-cart-order-summary-block) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  padding: 1.5rem;
}

:root :where(.wc-block-cart__totals-title) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 1rem;
  margin-bottom: 0;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
}

/* Totals items */
:root :where(.wc-block-components-totals-item__label),
:root :where(.wc-block-components-totals-item__value) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
}

/* Coupon panel toggle */
:root :where(.wc-block-components-panel__button) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Coupon input */
:root :where(.wc-block-components-totals-coupon__content input) {
  font-family: var(--wp--preset--font-family--space-mono);
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 0.6rem 0.75rem;
}

:root :where(.wc-block-components-totals-coupon__content input:focus) {
  border-color: var(--wp--preset--color--accent-1) !important;
  outline: none;
  box-shadow: none;
}

:root :where(.wc-block-components-totals-coupon__content button) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

:root :where(.wc-block-components-totals-coupon__content button:hover) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

/* Sidebar dividers */
:root :where(.wc-block-components-totals-wrapper)::after,
:root :where(.wc-block-components-totals-wrapper)::before {
  border-color: var(--wp--preset--color--contrast) !important;
  opacity: 0.2;
}

/* ─── Checkout Button ─── */

:root :where(.wc-block-cart__submit-button),
:root :where(.wc-block-cart__submit-container .wc-block-components-button) {
  font-family: var(--wp--preset--font-family--space-mono) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--wp--preset--color--accent-1) !important;
  color: var(--wp--preset--color--base) !important;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  padding: 1rem 2rem !important;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
}

:root :where(.wc-block-cart__submit-button:hover),
:root :where(.wc-block-cart__submit-container .wc-block-components-button:hover) {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

/* Empty cart title */
:root :where(.wc-block-cart__empty-cart__title) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 900;
}

/* Empty cart return-to-shop button */
:root :where(.wp-block-woocommerce-empty-cart-block a.wp-block-button__link) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

:root :where(.wp-block-woocommerce-empty-cart-block a.wp-block-button__link:hover) {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

/* ─── Cart Page Heading Spacing ─── */

:root :where(.page-template-default .wp-block-post-title),
:root :where(body.woocommerce-cart .wp-block-post-title) {
      padding-top: 2rem;
      margin-top: 0;
      border-bottom: 5px solid var(--wp--preset--color--contrast);
      padding-bottom: 1rem;
    }

/* ─── Cart Page Layout Polish ─── */

:root :where(.cart-page-main) {
  background: var(--wp--preset--color--base);
}

/* Cart page title — accent dot */
:root :where(.cart-page-main .wp-block-post-title)::after {
  content: '.';
  color: var(--wp--preset--color--accent-1);
}

/* Cart items container — subtle background */
:root :where(.wc-block-cart__main) {
  background: var(--wp--preset--color--base-2);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: 1.5rem;
  margin-bottom: var(--wp--preset--spacing--50);
}

/* Make the total row bold and big */
:root :where(.wc-block-components-totals-footer-item .wc-block-components-totals-item__label),
:root :where(.wc-block-components-totals-footer-item .wc-block-components-totals-item__value) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.2rem;
  font-weight: 900;
}

:root :where(.wc-block-components-totals-footer-item) {
  border-top: 3px solid var(--wp--preset--color--contrast) !important;
  padding-top: 1rem;
  margin-top: 0.5rem;
}

/* Shipping row refinements */
:root :where(.wc-block-components-totals-shipping .wc-block-components-totals-item__label),
:root :where(.wc-block-components-shipping-calculator .wc-block-components-button) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

:root :where(.wc-block-components-shipping-calculator .wc-block-components-button) {
  color: var(--wp--preset--color--accent-1);
  text-decoration: none;
  font-weight: 700;
}

:root :where(.wc-block-components-shipping-calculator .wc-block-components-button:hover) {
  color: var(--wp--preset--color--contrast);
}

/* Shipping address form inputs */
:root :where(.wc-block-components-shipping-calculator-address input),
:root :where(.wc-block-components-shipping-calculator-address select) {
  font-family: var(--wp--preset--font-family--space-mono);
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 0.6rem 0.75rem;
}

:root :where(.wc-block-components-shipping-calculator-address input:focus),
:root :where(.wc-block-components-shipping-calculator-address select:focus) {
  border-color: var(--wp--preset--color--accent-1) !important;
  outline: none;
  box-shadow: none;
}

/* Cross-sells heading */
:root :where(.cross-sells-product-list h2),
:root :where(.wp-block-woocommerce-cart-cross-sells-block h2),
:root :where(.wc-block-cart__cross-sells h2) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

/* Cross-sells product cards */
:root :where(.wc-block-cart-cross-sells-product) {
  border: 3px solid var(--wp--preset--color--contrast);
  padding: 1rem;
  background: var(--wp--preset--color--base);
}

:root :where(.wc-block-cart-cross-sells-product):hover {
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
}

/* Totals sidebar — tighten up */
:root :where(.wc-block-cart__sidebar) {
  position: sticky;
  top: 2rem;
}

/* Product price in cart — larger weight */
:root :where(.wc-block-cart-items .wc-block-components-product-price) {
  font-size: 1rem;
}

/* Cart wrapper max width override */
:root :where(.wp-block-woocommerce-cart) {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* Reduce sidebar divider opacity lines */
:root :where(.wc-block-components-totals-wrapper) {
  border-color: var(--wp--preset--color--contrast) !important;
}

/* Empty cart — more impactful */
:root :where(.wc-block-cart__empty-cart__title) {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 5px solid var(--wp--preset--color--contrast);
  padding-bottom: 1rem;
  display: inline-block;
}

:root :where(.wc-block-cart__empty-cart__title)::after {
  content: '.';
  color: var(--wp--preset--color--accent-1);
}
/* ══════════════════════════════════════════
   CLASSIC CART — Brutalist Overrides
   ══════════════════════════════════════════ */

/* Base font for classic cart */
:root :where(.woocommerce-cart .woocommerce) {
  font-family: var(--wp--preset--font-family--space-mono);
  color: var(--wp--preset--color--contrast);
}

/* Cart table */
:root :where(.woocommerce-cart-form .shop_table) {
  border: 3px solid var(--wp--preset--color--contrast);
  border-collapse: collapse;
  border-radius: 0;
  width: 100%;
  margin-bottom: var(--wp--preset--spacing--50);
}

/* Table header cells */
:root :where(.woocommerce-cart-form .shop_table thead th) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: 1rem;
  background: var(--wp--preset--color--base-2);
}

/* Table body cells */
:root :where(.woocommerce-cart-form .shop_table td) {
  border-bottom: 2px solid var(--wp--preset--color--contrast);
  padding: 1.25rem 1rem;
  vertical-align: middle;
}

/* Product thumbnail */
:root :where(.woocommerce-cart-form .product-thumbnail img) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  max-width: 80px;
}

/* Product name link */
:root :where(.woocommerce-cart-form .product-name a) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  text-decoration: none;
  transition: color 0.15s ease;
}

:root :where(.woocommerce-cart-form .product-name a:hover) {
  color: var(--wp--preset--color--accent-1);
}

/* Price and subtotal */
:root :where(.woocommerce-cart-form .product-price),
:root :where(.woocommerce-cart-form .product-subtotal) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  font-size: 1rem;
}

/* Quantity input */
:root :where(.woocommerce-cart-form .quantity .qty) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  font-size: 0.9rem;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 0.5rem;
  width: 60px;
  text-align: center;
  -moz-appearance: textfield;
}

:root :where(.woocommerce-cart-form .quantity .qty::-webkit-outer-spin-button),
:root :where(.woocommerce-cart-form .quantity .qty::-webkit-inner-spin-button) {
  -webkit-appearance: none;
  margin: 0;
}

:root :where(.woocommerce-cart-form .quantity .qty:focus) {
  border-color: var(--wp--preset--color--accent-1) !important;
  outline: none;
}

/* Remove button (×) */
:root :where(.woocommerce-cart-form .product-remove a) {
  font-size: 1.2rem;
  color: var(--wp--preset--color--contrast) !important;
  font-weight: 900;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wp--preset--color--contrast);
  text-decoration: none;
  transition: all 0.15s ease;
}

:root :where(.woocommerce-cart-form .product-remove a:hover) {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base) !important;
}

/* Coupon section */
:root :where(.woocommerce-cart-form .coupon) {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

:root :where(.woocommerce-cart-form .coupon #coupon_code) {
  font-family: var(--wp--preset--font-family--space-mono);
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 0.65rem 0.75rem;
  font-size: 0.8rem;
}

:root :where(.woocommerce-cart-form .coupon #coupon_code:focus) {
  border-color: var(--wp--preset--color--accent-1) !important;
  outline: none;
}

:root :where(.woocommerce-cart-form .coupon .button) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  border-radius: 0 !important;
  padding: 0.65rem 1rem;
  cursor: pointer;
  transition: background 0.15s ease;
}

:root :where(.woocommerce-cart-form .coupon .button:hover) {
  background: var(--wp--preset--color--accent-1);
  border-color: var(--wp--preset--color--accent-1);
}

/* Update cart button */
:root :where(.woocommerce-cart-form button[name="update_cart"]),
:root :where(.woocommerce-cart-form .button[name="update_cart"]) {
  font-family: var(--wp--preset--font-family--space-mono) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem !important;
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  padding: 0.75rem 1.5rem !important;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
}

:root :where(.woocommerce-cart-form button[name="update_cart"]:hover) {
  background: var(--wp--preset--color--accent-1) !important;
  border-color: var(--wp--preset--color--accent-1) !important;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

:root :where(.woocommerce-cart-form button[name="update_cart"]:disabled) {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ─── Classic Cart Totals ─── */

:root :where(.cart_totals) {
  max-width: 480px;
  margin-left: auto;
}

:root :where(.cart_totals h2) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  margin-bottom: 0;
}

:root :where(.cart_totals .shop_table) {
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  border-collapse: collapse;
  border-radius: 0;
}

:root :where(.cart_totals .shop_table th),
:root :where(.cart_totals .shop_table td) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--wp--preset--color--contrast);
}

:root :where(.cart_totals .shop_table th) {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--wp--preset--color--base-2);
  width: 35%;
}

/* Total row — make it pop */
:root :where(.cart_totals .order-total th),
:root :where(.cart_totals .order-total td) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border-bottom: none;
}

:root :where(.cart_totals .order-total .woocommerce-Price-amount) {
  color: var(--wp--preset--color--base);
}

/* Shipping labels in totals */
:root :where(.cart_totals .shipping td) {
  font-size: 0.8rem;
}

:root :where(.cart_totals .shipping a),
:root :where(.woocommerce-shipping-calculator .shipping-calculator-button) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--accent-1);
  text-decoration: none;
}

:root :where(.cart_totals .shipping a:hover),
:root :where(.woocommerce-shipping-calculator .shipping-calculator-button:hover) {
  color: var(--wp--preset--color--contrast);
}

/* Proceed to checkout button */
:root :where(.wc-proceed-to-checkout .checkout-button) {
  font-family: var(--wp--preset--font-family--space-mono) !important;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--wp--preset--color--accent-1) !important;
  color: var(--wp--preset--color--base) !important;
  border: 3px solid var(--wp--preset--color--contrast) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  padding: 1rem 2rem !important;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
}

:root :where(.wc-proceed-to-checkout .checkout-button:hover) {
  background: var(--wp--preset--color--contrast) !important;
  color: var(--wp--preset--color--base) !important;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

/* ─── Classic Cart Responsive ─── */

@media (max-width: 768px) {
  :root :where(.woocommerce-cart-form .shop_table) {
    display: block;
  }

  :root :where(.woocommerce-cart-form .shop_table thead) {
    display: none;
  }

  :root :where(.woocommerce-cart-form .shop_table tbody,
  .woocommerce-cart-form .shop_table tr,
  .woocommerce-cart-form .shop_table td) {
    display: block;
    width: 100%;
  }

  :root :where(.woocommerce-cart-form .shop_table td) {
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--wp--preset--color--accent-2);
  }

  :root :where(.woocommerce-cart-form .shop_table td)::before {
    font-family: var(--wp--preset--font-family--space-mono);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wp--preset--color--accent-3);
    display: block;
    margin-bottom: 0.25rem;
  }

  :root :where(.woocommerce-cart-form .product-thumbnail) {
    text-align: center;
    padding-top: 1rem;
  }

  :root :where(.cart_totals) {
    max-width: 100%;
    margin-top: var(--wp--preset--spacing--50);
  }
}

/* ─── About Page Styles ─── */
    
    :root :where(.about-hero) {
  background-color: var(--wp--preset--color--contrast);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

:root :where(.about-label) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wp--preset--color--accent-1);
  margin-bottom: 1rem;
}

:root :where(.about-hero-heading) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--wp--preset--color--base);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

:root :where(.about-hero-sub) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.25rem;
  color: var(--wp--preset--color--accent-2);
  max-width: 600px;
  margin: 0 auto 2rem;
}

:root :where(.about-pink-divider) {
  border: none !important;
  height: 4px !important;
  background-color: var(--wp--preset--color--accent-1) !important;
  width: 100%;
  margin: 0;
  max-width: 100%;
  opacity: 1;
}

:root :where(.about-origin) {
  padding: 5rem 2rem;
  background-color: var(--wp--preset--color--base);
}

:root :where(.about-origin-heading) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  line-height: 1.15;
  margin-bottom: 2rem;
}

:root :where(.about-origin-text) {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--wp--preset--color--contrast);
}

:root :where(.about-pullquote) {
  border-left: 4px solid var(--wp--preset--color--accent-1);
  border-top: 3px solid var(--wp--preset--color--contrast);
  border-right: 3px solid var(--wp--preset--color--contrast);
  border-bottom: 3px solid var(--wp--preset--color--contrast);
  padding: 2rem;
  background-color: var(--wp--preset--color--base-2);
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
}

:root :where(.about-stats) {
  padding: 4rem 2rem;
  background-color: var(--wp--preset--color--base-2);
}

:root :where(.about-stats-grid) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  :root :where(.about-stats-grid) {
    grid-template-columns: 1fr;
  }
}

:root :where(.about-stat-card) {
  background-color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

:root :where(.about-stat-number) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--wp--preset--color--accent-1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

:root :where(.about-stat-label) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--contrast);
}

:root :where(.about-brands) {
  padding: 5rem 2rem;
  background-color: var(--wp--preset--color--base);
}

:root :where(.about-brands-heading) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  margin-bottom: 2rem;
}

:root :where(.about-brands-grid) {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

:root :where(.about-brand-chip) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--wp--preset--color--contrast);
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

:root :where(.about-brand-chip:hover) {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--wp--preset--color--contrast);
}

:root :where(.about-brand-chip.chip-featured) {
  background-color: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--accent-1);
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
}

:root :where(.about-msrp-callout) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--wp--preset--color--contrast);
  padding: 1.5rem 2rem;
  border-top: 4px solid var(--wp--preset--color--accent-1);
  border-bottom: 4px solid var(--wp--preset--color--accent-1);
  text-align: center;
  text-transform: uppercase;
}

:root :where(.about-kayou) {
  padding: 5rem 2rem;
  background-color: var(--wp--preset--color--contrast);
}

:root :where(.about-kayou-inner) {
  max-width: 900px;
  margin: 0 auto;
}

:root :where(.about-kayou-heading) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--wp--preset--color--base);
  line-height: 1.15;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

:root :where(.about-kayou-text) {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--wp--preset--color--accent-2);
  margin-bottom: 1.5rem;
}

:root :where(.about-kayou-highlight) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--accent-1);
  padding: 1.5rem 2rem;
  border: 3px solid var(--wp--preset--color--accent-1);
  margin: 2.5rem 0;
  text-align: center;
}

:root :where(.about-kayou-brands) {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

:root :where(.about-kayou-brand) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--accent-1);
}

:root :where(.about-kayou-closing) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--wp--preset--color--base);
  margin-top: 2.5rem;
  line-height: 1.5;
}

:root :where(.about-community) {
  padding: 5rem 2rem;
  background-color: var(--wp--preset--color--base);
  text-align: center;
}

:root :where(.about-community-stat) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--wp--preset--color--accent-1);
  line-height: 1;
  margin-bottom: 0.75rem;
}

:root :where(.about-community-desc) {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wp--preset--color--contrast);
  margin-bottom: 2.5rem;
}

:root :where(.about-community-text) {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--wp--preset--color--contrast);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

:root :where(.about-community-punchline) {
  font-family: var(--wp--preset--font-family--unbounded);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wp--preset--color--contrast);
  text-transform: uppercase;
  padding: 1.5rem 2rem;
  border: 3px solid var(--wp--preset--color--contrast);
  box-shadow: 4px 4px 0 var(--wp--preset--color--accent-1);
  display: inline-block;
}

/* ─── Single Product Price White Override ─── */
body.single-product .wc-block-components-product-price,
body.single-product .wc-block-components-product-price .woocommerce-Price-amount,
body.single-product .wc-block-components-product-price bdi,
body.single-product .wc-block-components-product-price .woocommerce-Price-currencySymbol {
  color: #FFFFFF !important;
}

/* ─── Single Product Description ─── */
:root :where(.wp-block-woocommerce-product-description) {
  background: #0A0A0A;
  color: #F2F2F2;
  padding: 4rem 6vw;
  margin-top: var(--wp--preset--spacing--70);
  position: relative;
  line-height: 1.75;
  border-top: 4px solid #A855F7;
  box-sizing: border-box;
}

:root :where(.wp-block-woocommerce-product-description)::before {
  content: "DESCRIPTION";
  display: block;
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
color: #A855F7;
          margin-bottom: 2rem;
          padding-bottom: 1rem;
          border-bottom: 3px solid #A855F7;
}

.wp-block-woocommerce-product-description p {
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

/* Headings inside description */
.wp-block-woocommerce-product-description h2,
.wp-block-woocommerce-product-description h3,
.wp-block-woocommerce-product-description h4 {
  font-family: var(--wp--preset--font-family--heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
  border-left: 3px solid #A855F7;
}

/* Lists */
.wp-block-woocommerce-product-description ul,
.wp-block-woocommerce-product-description ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.wp-block-woocommerce-product-description ul {
  list-style: none;
}

.wp-block-woocommerce-product-description ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.wp-block-woocommerce-product-description ul li::before {
  content: "—";
  position: absolute;
left: 0;
      color: #A855F7;
      font-weight: 700;
}

.wp-block-woocommerce-product-description ol li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  padding-left: 0.25rem;
}
.wp-block-woocommerce-product-description ol li::marker {
      color: #A855F7;
  font-weight: 700;
}

/* Links */
.wp-block-woocommerce-product-description a {
          color: #A855F7;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.wp-block-woocommerce-product-description a:hover {
  text-decoration: underline;
}

/* Bold / strong */
.wp-block-woocommerce-product-description strong,
.wp-block-woocommerce-product-description b {
font-weight: 700;
      color: #A855F7;
        }
    
    /* Two-column layout on desktop */
@media (min-width: 900px) {
  :root :where(.wp-block-woocommerce-product-description) {
    columns: 2;
    column-gap: 3rem;
    column-rule: 3px solid rgba(255, 255, 255, 0.06);
  }
  :root :where(.wp-block-woocommerce-product-description)::before {
    column-span: all;
  }
  :root :where(.wp-block-woocommerce-product-description) p,
  :root :where(.wp-block-woocommerce-product-description) h2,
  :root :where(.wp-block-woocommerce-product-description) h3,
  :root :where(.wp-block-woocommerce-product-description) h4 {
    break-inside: avoid;
  }
}

/* Mobile description adjustments */
@media (max-width: 768px) {
  :root :where(.wp-block-woocommerce-product-description) {
    padding: 3rem var(--wp--preset--spacing--40);
  }
}

/* Remove default WooCommerce product gallery bottom margin */
.woocommerce div.product div.images {
    margin-bottom: 0 !important;
}

/* ============================
   STICKY ADD TO CART BAR
   ============================ */
:root :where(.sticky-add-to-cart-bar) {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--wp--preset--color--base);
  border-top: 3px solid var(--wp--preset--color--contrast);
  padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--50);
  box-shadow: 0 -4px 0 var(--wp--preset--color--contrast);
  display: none;
}

:root :where(.sticky-add-to-cart-inner) {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin: 0 auto;
}

:root :where(.woocommerce div.product form.cart) {
  margin-bottom: 0 !important;
}

/* Form layout inside sticky bar */
:root :where(.sticky-add-to-cart-bar) form.cart,
:root :where(.sticky-add-to-cart-bar) .wc-block-components-product-add-to-cart {
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--30);
  width: 100%;
  margin: 0;
}

/* Quantity input in sticky bar */
:root :where(.sticky-add-to-cart-bar) .quantity input[type="number"] {
  font-family: var(--wp--preset--font-family--space-mono);
  font-size: var(--wp--preset--font-size--base);
  font-weight: 700;
  border: 3px solid var(--wp--preset--color--contrast);
  background: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  padding: 10px 12px;
  text-align: center;
  width: 70px;
  box-shadow: 3px 3px 0 var(--wp--preset--color--contrast);
  -moz-appearance: textfield;
}

:root :where(.sticky-add-to-cart-bar) .quantity input[type="number"]::-webkit-inner-spin-button,
:root :where(.sticky-add-to-cart-bar) .quantity input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Add to cart button in sticky bar */
:root :where(.sticky-add-to-cart-bar) button.single_add_to_cart_button,
:root :where(.sticky-add-to-cart-bar) .wc-block-components-product-button__button {
  font-family: var(--wp--preset--font-family--unbounded);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--wp--preset--color--accent-1);
  color: var(--wp--preset--color--base);
  border: 3px solid var(--wp--preset--color--contrast);
  padding: 12px 2rem;
  border-radius: 0;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--wp--preset--color--contrast);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  flex: 1;
  text-align: center;
}

:root :where(.sticky-add-to-cart-bar) button.single_add_to_cart_button:hover,
:root :where(.sticky-add-to-cart-bar) .wc-block-components-product-button__button:hover {
  background: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--wp--preset--color--contrast);
}

/* Hide variations and stock in sticky bar - keep it clean */
:root :where(.sticky-add-to-cart-bar) .variations,
:root :where(.sticky-add-to-cart-bar) .variations_button,
:root :where(.sticky-add-to-cart-bar) .stock,
:root :where(.sticky-add-to-cart-bar) .woocommerce-variation,
:root :where(.sticky-add-to-cart-bar) .woocommerce-variation-add-to-cart-disabled,
:root :where(.sticky-add-to-cart-bar) .reset_variations {
  display: none;
}

/* Bottom padding for page content to prevent sticky bar overlap - mobile only */
@media (max-width: 767px) {
  :root :where(body.single-product .wp-site-blocks),
  :root :where(.single-product-content) ~ .wp-block-template-part {
    padding-bottom: 80px;
  }
}

/* --- Sticky bar responsive: Mobile --- */
@media (max-width: 767px) {
  :root :where(.sticky-add-to-cart-bar) {
    display: block;
    padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
  }
  :root :where(.sticky-add-to-cart-bar) .quantity {
    display: none;
  }
  :root :where(.sticky-add-to-cart-bar) button.single_add_to_cart_button,
  :root :where(.sticky-add-to-cart-bar) .wc-block-components-product-button__button {
    width: 100%;
    padding: 14px 1rem;
    font-size: 0.9rem;
  }
}
