/* ==========================================================================
   LRL Apparel — theme.css
   All visual styling for the theme lives here (Section 10 / 15.1).
   ========================================================================== */

:root {
  --color-background: #f7f5f3;
  --color-foreground: #121212;
  --color-primary: #171717;
  --color-secondary: #ebe9e5;
  --color-muted: #e3e1dd;
  --color-muted-foreground: #575757;
  --color-accent: #c31d1d;
  --color-accent-bright: #ea3e3e;
  --color-border: #d6d2cd;
  --color-button-text: var(--color-background);

  --font-display: 'Bebas Neue', Arial, sans-serif;
  --font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  --radius: 0.25rem;
  --btn-radius: 0;
  --btn-height: 3rem;
  --btn-padding: 0 2rem;
  --btn-font-size: 0.6875rem;
  --btn-font-weight: 600;
  --btn-letter-spacing: 0.28em;
  --btn-text-transform: uppercase;
  --btn-icon-padding: 0.5rem;

  --header-height: 6.4rem;
  --logo-lockup-height: 56px;
  --logo-lockup-height-mobile: 48px;
  --logo-lockup-height-menu: 40px;
  --logo-lockup-height-footer: 48px;
  --logo-height: 56px;
  --checkout-gap: 2rem;
  --checkout-max-width: 1280px;
  --checkout-field-radius: 0.375rem;
  --checkout-field-height: 3rem;
  --card-radius: 0.5rem;
  --section-padding: 2rem;

  --shadow-soft: 0 6px 24px -8px rgba(0,0,0,.18);
  --shadow-elevated: 0 14px 40px -12px rgba(0,0,0,.32);
  --transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

@media (min-width: 1024px) { :root { --header-height: 7rem; } }

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: clip;
  max-width: 100%;
}
body {
  overflow-x: clip;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-section__slide):not(.parallax-divider__img):not(.theme-product-card__image):not(.theme-product-main-image__img):not(.category-tiles__image):not(.product-banner__bg):not(.site-logo-img) {
  max-width: 100%;
  height: auto;
}
.cover-img,
.hero-section__slide,
.parallax-divider__img,
.theme-product-main-image__img,
.category-tiles__image,
.product-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
a[aria-disabled="true"], button:disabled { cursor: not-allowed; }
.category-tiles__tile,
.theme-product-card-wrap,
.faq-item__question,
.hero-section__dot,
.shop-chip,
.theme-size-pill,
.theme-attr-pill,
.featured-row__nav-btn,
.theme-mobile-menu__action,
.theme-cart-drawer__remove,
.theme-search-dialog__categories button,
.theme-search-dialog__result-link,
.site-header__logo,
.site-footer a,
.theme-contact-modal__scrim { cursor: pointer; }
ul, ol { margin: 0; padding: 0; }
figure, blockquote { margin: 0; }

/* Lovable scroll-mt-32 — fixed header anchor offset */
#sneaker-cleaning,
#testimonials,
#faq,
#contact { scroll-margin-top: 8rem; }

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}
.font-display,
h1, h2, h3, h4, h5, h6,
.hero-section__title, .featured-row__heading, .category-tiles__label,
.shop-section__heading, .product-banner__title, .brand-section__title,
.sneaker-section__title, .testimonials-section__heading, .faq-section__heading,
.contact-section__title, .page-title, .not-found__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container-wide {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-inline: 1.5rem;
  padding-block: 0;
  min-width: 0;
}
@media (min-width: 1024px) {
  .container-wide { padding-inline: 2.5rem; }
}

.label-eyebrow, .label-eyebrow-accent {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
}
.label-eyebrow { color: var(--color-muted-foreground); }
.label-eyebrow-accent { color: var(--color-accent); display: inline-flex; align-items: center; gap: .5rem; }

.theme-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: var(--btn-height);
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  border: 1px solid transparent;
  transition: opacity .2s ease, background-color .25s var(--transition-smooth), color .25s var(--transition-smooth);
  cursor: pointer;
  text-transform: none;
}
.theme-btn-hero-primary,
.theme-btn-primary { text-transform: uppercase; }
.theme-btn-hero-primary { background: #fff; color: var(--color-foreground); }
.theme-btn-hero-primary:hover { background: var(--color-accent); color: var(--color-button-text); }
.theme-btn-dark { background: var(--color-foreground); color: var(--color-background); text-transform: uppercase; }
.theme-btn-dark:hover { background: var(--color-accent); color: var(--color-button-text); }
.theme-btn-accent { background: var(--color-accent); color: var(--color-button-text); border-color: var(--color-accent); text-transform: uppercase; }
.theme-btn-accent:hover { background: var(--color-primary); color: var(--color-background); }
.theme-btn-outline { background: transparent; color: var(--color-foreground); border-color: var(--color-primary); text-transform: uppercase; font-size: .7rem; height: 2.75rem; padding: 0 1.5rem; }
.theme-btn-outline:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn-primary { width: 100%; background: var(--color-accent); color: var(--color-button-text); border: 1px solid var(--color-accent); height: 3.5rem; }
.theme-btn-primary:hover { background: var(--color-primary); color: var(--color-background); }
.theme-btn-primary.disabled, .theme-btn-primary:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

/* -------------------------------------------------------------------------
   Reveal / entrance animations (Section 2.1)
   ------------------------------------------------------------------------- */
.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--transition-smooth), transform .7s var(--transition-smooth); }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
body.no-js .reveal-item { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-item { transition: none; opacity: 1; transform: none; }
}

@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* Lovable: text-5xl sm:6xl md:7xl lg:8xl on marquee root (separators use 0.55em of this size). */
.theme-marquee {
  overflow: hidden;
  width: 100%;
  font-size: 3rem;
  line-height: 1;
  color: inherit;
  /* Room for -webkit-text-stroke so glyphs are not clipped vertically. */
  padding-block: 0.1em;
  box-sizing: content-box;
}
@media (min-width: 640px) {
  .theme-marquee { font-size: 3.75rem; }
}
@media (min-width: 768px) {
  .theme-marquee { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .theme-marquee { font-size: 6rem; }
}
.theme-marquee__track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration, 32s) linear infinite;
  will-change: transform;
}
.theme-marquee__track:hover,
.theme-marquee__track:focus-within { animation-play-state: paused; }
.theme-marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.theme-marquee__item { display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0; }
.theme-marquee__text {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: .04em;
  font-size: 1em;
}
/* Lovable TextMarquee outlined: hollow letters with a solid stroke (not color-mix on currentColor). */
.theme-marquee__text--outlined {
  display: inline-block;
  padding-block: 0.04em;
  -webkit-text-stroke-width: clamp(1.5px, 0.14vw, 2.5px);
  -webkit-text-stroke-color: var(--color-foreground);
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Dark band: white stroke on foreground background. */
.theme-marquee-band--dark .theme-marquee__text--outlined {
  -webkit-text-stroke-color: var(--color-background);
}
.theme-marquee__sep {
  display: inline-block;
  flex-shrink: 0;
  margin-inline: 1.5rem;
  font-size: 0.55em;
  opacity: 0.8;
  line-height: 1;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .theme-marquee__sep { margin-inline: 3rem; }
}
@media (prefers-reduced-motion: reduce) { .theme-marquee__track { animation: none; } }

/* Lovable: bg-background py-5 md:py-7 border-y border-border */
.theme-marquee-band {
  background: var(--color-background);
  padding-block: 1.25rem;
  border-block: 1px solid var(--color-border);
  color: var(--color-foreground);
  max-width: 100%;
}
@media (min-width: 768px) {
  .theme-marquee-band { padding-block: 1.75rem; }
}
/* Lovable: bg-foreground py-5 md:py-7 border-y border-foreground + text-background on track */
.theme-marquee-band--dark {
  background: var(--color-foreground);
  border-block-color: var(--color-foreground);
  color: var(--color-background);
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-main,
.home-main,
.shop-archive-main,
.single-product-main,
.page-main {
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--color-background) 80%, transparent);
  backdrop-filter: blur(6px);
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: color-mix(in srgb, var(--color-background) 95%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
  box-shadow: 0 6px 24px -18px rgba(0,0,0,.4);
  backdrop-filter: blur(12px);
}
.site-header__inner { max-width: 80rem; margin: 0 auto; padding: 0 1rem; position: relative; display: flex; align-items: center; justify-content: space-between; height: var(--header-height); width: 100%; min-width: 0; }
@media (min-width: 1024px) { .site-header__inner { padding: 0 2rem; } }
.site-header__left,
.site-header__right {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
}
.site-header__left { gap: 1.5rem; justify-content: flex-start; }
.site-header__right { gap: .125rem; justify-content: flex-end; }
.site-header__menu-btn { display: inline-flex; padding: .5rem; margin-left: -.5rem; flex-shrink: 0; }
.site-header__nav { display: none; align-items: center; gap: 1.75rem; flex-shrink: 0; }
@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
  .site-header__nav--right { margin-right: 1rem; }
  .site-header__menu-btn { display: none; }
}
.site-header__nav .nav-link { font-size: .8125rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; transition: color .3s ease; white-space: nowrap; }
.site-header__nav .nav-link:hover { color: var(--color-accent); }
.site-header__logo { position: absolute; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; max-width: 52vw; }
.site-logo, .site-footer__logo-link { display: inline-flex; align-items: center; gap: .5rem; flex-shrink: 0; line-height: 1; }
.site-header__logo .site-logo,
body.woocommerce-page .site-header__logo .site-logo,
body.woocommerce-cart .site-header__logo .site-logo,
body.woocommerce-checkout .site-header__logo .site-logo,
body.single-product .site-header__logo .site-logo,
body.woocommerce-account .site-header__logo .site-logo {
  height: var(--logo-lockup-height-mobile);
  max-width: 52vw;
}
@media (min-width: 768px) {
  .site-header__logo .site-logo,
  body.woocommerce-page .site-header__logo .site-logo,
  body.woocommerce-cart .site-header__logo .site-logo,
  body.woocommerce-checkout .site-header__logo .site-logo,
  body.single-product .site-header__logo .site-logo,
  body.woocommerce-account .site-header__logo .site-logo {
    height: var(--logo-lockup-height);
    max-width: none;
  }
}
body.woocommerce-page .site-logo-img,
body.woocommerce-cart .site-logo-img,
body.woocommerce-checkout .site-logo-img,
body.single-product .site-logo-img,
body.woocommerce-account .site-logo-img {
  height: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  max-width: none !important;
}
.theme-mobile-menu__header .site-logo { height: var(--logo-lockup-height-menu); max-width: none; }
.site-footer__logo-link .site-logo { height: var(--logo-lockup-height-footer); max-width: none; }
.site-logo-img {
  height: 100%;
  width: auto;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-logo-word {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: clamp(1rem, 4vw, 1.6rem);
  line-height: 1;
  white-space: nowrap;
}
.site-logo-word--light { color: var(--color-background); }
.site-logo-text { font-family: var(--font-display); font-weight: 800; letter-spacing: .1em; font-size: 1.5rem; }
.site-header__icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; transition: color .3s ease; }
.site-header__icon-btn:hover { color: var(--color-accent); }
.site-header__search-btn { display: none; }
@media (min-width: 640px) { .site-header__search-btn { display: inline-flex; } }
.theme-cart-count { position: absolute; top: -2px; right: -2px; min-width: 1.15rem; height: 1.15rem; display: inline-flex; align-items: center; justify-content: center; font-size: .6875rem; font-weight: 500; background: var(--color-accent); color: var(--color-button-text); border-radius: 999px; padding: 0 3px; }
.theme-cart-count:empty { display: none; }

.site-header.is-solid { background: color-mix(in srgb, var(--color-background) 96%, transparent); }
body.theme-no-hero .site-header { background: color-mix(in srgb, var(--color-background) 96%, transparent); }

/* WordPress admin bar — keep sticky header below the toolbar in Customizer preview */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
body.admin-bar .theme-mobile-menu { top: 32px; height: calc(100% - 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .theme-mobile-menu { top: 46px; height: calc(100% - 46px); }
}

/* Mobile menu drawer */
.theme-mobile-menu-scrim {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
body.mobile-menu-open .theme-mobile-menu-scrim {
  opacity: 1;
  pointer-events: auto;
}
.theme-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  height: 100dvh;
  width: 88vw;
  max-width: 24rem;
  background: var(--color-background);
  border-right: 1px solid var(--color-border);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .35s var(--transition-smooth);
  visibility: hidden;
}
body.mobile-menu-open .theme-mobile-menu {
  transform: translateX(0);
  visibility: visible;
}
.theme-mobile-menu__header { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 4.8rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; min-width: 0; }
.theme-mobile-menu__brand { display: inline-flex; align-items: center; min-width: 0; max-width: calc(100% - 3rem); }
.theme-mobile-menu__nav { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: .75rem .5rem; -webkit-overflow-scrolling: touch; }
.theme-mobile-menu__list { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; width: 100%; }
.theme-mobile-menu__item { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 40%, transparent); }
.theme-mobile-menu__link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem .75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-foreground);
  transition: color .3s ease;
  overflow-wrap: anywhere;
}
.theme-mobile-menu__link:hover { color: var(--color-primary); }
.theme-mobile-menu__footer { border-top: 1px solid var(--color-border); padding: 1rem .75rem; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; flex-shrink: 0; min-width: 0; }
.theme-mobile-menu__action { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem; border: 1px solid var(--color-border); font-size: .8125rem; letter-spacing: .24em; text-transform: uppercase; min-width: 0; }
.theme-mobile-menu__action--primary { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-mobile-menu__action--primary:hover { background: var(--color-primary); color: var(--color-background); }
.theme-nav-list { display: flex; flex-direction: column; list-style: none; }

/* -------------------------------------------------------------------------
   Overlay + Cart drawer
   ------------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 95; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
body.cart-open #theme-cart-overlay, body.search-open #theme-cart-overlay, body.contact-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer { position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 32rem; background: var(--color-background); z-index: 100; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s var(--transition-smooth); }
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: .6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { position: relative; width: 6rem; height: 8rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-title { font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; }
.theme-cart-item-meta { list-style: none; margin: .5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .35rem; }
.theme-cart-item-meta__row { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--color-muted-foreground); }
.theme-cart-item-meta-swatch { width: .75rem; height: .75rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); flex-shrink: 0; }
.theme-cart-item-meta__label { font-weight: 600; }
.theme-cart-drawer__item-price { font-size: .9rem; margin-top: .35rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-drawer__qty button { padding: .35rem .55rem; }
.theme-cart-drawer__qty span { padding: 0 .6rem; font-size: .875rem; min-width: 1.75rem; text-align: center; }
.theme-cart-drawer__remove { font-size: .75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__pair { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__pair-heading { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1rem; }
.theme-cart-drawer__pair-row { display: flex; gap: .75rem; overflow-x: auto; padding-bottom: .5rem; }
.theme-cart-drawer__pair-item { flex-shrink: 0; width: 8rem; text-align: left; }
.theme-cart-drawer__pair-image { position: relative; display: block; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; margin-bottom: .5rem; }
.theme-cart-drawer__pair-name { display: block; font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; }
.theme-cart-drawer__pair-price { display: block; font-size: .75rem; color: var(--color-muted-foreground); margin-top: .15rem; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: .75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; }

/* Hide WooCommerce's own "View cart" notice after AJAX add (Section 11.4.2) */
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* -------------------------------------------------------------------------
   Search dialog
   ------------------------------------------------------------------------- */
.theme-search-dialog { position: fixed; inset: 0; z-index: 110; display: none; }
body.search-open .theme-search-dialog { display: block; }
.theme-search-dialog__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 40%, transparent); backdrop-filter: blur(4px); }
.theme-search-dialog__panel { position: relative; background: var(--color-background); width: 100%; max-height: 92vh; overflow-y: auto; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 5; padding: .5rem; opacity: .7; }
.theme-search-dialog__close:hover { opacity: 1; }
.theme-search-dialog__inner { padding-block: 2.5rem; }
.theme-search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.theme-search-dialog__categories h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.theme-search-dialog__categories ul { display: flex; flex-direction: column; gap: .875rem; list-style: none; }
.theme-search-dialog__categories button { font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; }
.theme-search-dialog__categories button:hover { color: var(--color-accent); }
.theme-search-dialog__field { display: flex; align-items: center; gap: .75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); padding-bottom: .75rem; }
.theme-search-dialog__input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; margin: 2.5rem 0 1.5rem; }
.theme-search-dialog__results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__results-grid { grid-template-columns: repeat(4, 1fr); } }
.theme-search-dialog__result { text-align: left; }
.theme-search-dialog__result-image { position: relative; aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; }
.theme-search-dialog__result-image img { transition: transform .7s var(--transition-smooth); }
.theme-search-dialog__result:hover .theme-search-dialog__result-image img { transform: scale(1.05); }
.theme-search-dialog__result-title { margin-top: .75rem; font-size: .75rem; letter-spacing: .24em; text-transform: uppercase; line-height: 1.4; }
.theme-search-dialog__result-price { margin-top: .25rem; font-size: .75rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-search-dialog__empty { font-size: .875rem; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------------
   Contact modal
   ------------------------------------------------------------------------- */
.theme-contact-modal { position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
body.contact-open .theme-contact-modal { display: flex; }
.theme-contact-modal__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-contact-modal__panel { position: relative; background: var(--color-background); width: 100%; max-width: 32rem; max-height: 90vh; overflow-y: auto; padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--card-radius); box-shadow: var(--shadow-elevated); }
.theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; padding: .4rem; opacity: .7; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-top: .5rem; }
.theme-contact-modal__desc { font-size: .9375rem; line-height: 1.6; margin-top: .5rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-contact-modal__meta { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-top: .75rem; }
.theme-contact-modal__meta a { display: inline-flex; align-items: center; gap: .5rem; }
.theme-contact-modal__meta a:hover { color: var(--color-foreground); }
.theme-contact-modal__form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-modal__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-modal__row { grid-template-columns: 1fr 1fr; } }
.theme-field label { margin-bottom: .35rem; }
.theme-field input, .theme-field textarea { width: 100%; padding: .625rem .75rem; background: var(--color-background); border: 1px solid var(--color-border); font-size: .875rem; font-family: var(--font-body); }
.theme-field input:focus, .theme-field textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-field textarea { resize: none; }
.theme-contact-modal__actions { display: flex; justify-content: flex-end; }
.theme-contact-modal__error { font-size: .8125rem; color: var(--color-accent); }
.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-primary); color: var(--color-background); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-modal__success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: .5rem; }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero-section__viewport { position: relative; width: 100%; height: calc(100vh - 6.4rem); min-height: 520px; overflow: hidden; background: var(--color-secondary); }
@media (min-width: 1024px) { .hero-section__viewport { height: calc(100vh - 7rem); min-height: 600px; } }
.hero-section__slide { opacity: 0; transition: opacity 1.2s var(--transition-smooth), transform 8s linear; object-position: right center; }
.hero-section__slide.is-active { opacity: 1; }
@media (min-width: 768px) { .hero-section__slide { object-position: right top; } }
.hero-section__gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,18,18,.9), rgba(18,18,18,.6) 60%, rgba(18,18,18,.2)); }
@media (min-width: 768px) { .hero-section__gradient { background: linear-gradient(to right, rgba(18,18,18,.85), rgba(18,18,18,.55) 55%, rgba(18,18,18,.2)); } }
.hero-section__content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.hero-section__content-wrap .container-wide { position: relative; padding-bottom: 4rem; }
@media (min-width: 768px) { .hero-section__content-wrap .container-wide { padding-bottom: 6rem; } }
@media (min-width: 1024px) { .hero-section__content-wrap .container-wide { padding-bottom: 7rem; } }
.hero-section__content { width: 100%; max-width: 42rem; }
.hero-section__eyebrow { display: block; font-family: var(--font-body); font-weight: 600; font-size: .625rem; letter-spacing: .42em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-section__eyebrow { font-size: .6875rem; } }
.hero-section__title { font-size: 2.25rem; text-transform: uppercase; color: #fff; line-height: .95; margin-bottom: 1.5rem; max-width: 36rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__subtitle { font-size: .875rem; color: rgba(255,255,255,.9); max-width: 28rem; margin-bottom: 2rem; line-height: 1.65; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1rem; } }
.hero-section__dots { position: absolute; bottom: 1.5rem; display: flex; align-items: center; gap: .75rem; }
@media (min-width: 768px) { .hero-section__dots { bottom: 2rem; } }
.hero-section__dot { height: .75rem; width: .75rem; min-width: .75rem; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.7); transition: all .3s ease; }
.hero-section__dot.is-active { width: 2rem; background: var(--color-accent); border-color: var(--color-accent); }

/* -------------------------------------------------------------------------
   Featured row / carousel
   ------------------------------------------------------------------------- */
.featured-row { padding: 3.5rem 0; }
@media (min-width: 1024px) { .featured-row { padding: 5rem 0; } }
.featured-row__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.featured-row__heading, .shop-section__heading { font-family: var(--font-body); font-weight: 600; font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; }
@media (min-width: 640px) { .featured-row__heading, .shop-section__heading { font-size: .875rem; } }
.featured-row__nav { display: flex; align-items: center; gap: .25rem; }
.featured-row__nav-btn { width: 2.25rem; height: 2.25rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); transition: background-color .2s, color .2s; }
.featured-row__nav-btn:hover { background: var(--color-foreground); color: var(--color-background); }
.featured-row { overflow-x: clip; max-width: 100%; }
.featured-row .container-wide { overflow-x: clip; max-width: 100%; }
/* Left edge aligns with .featured-row__heading (inside .container-wide padding).
   Right bleed only so cards can scroll into the container’s right gutter (Lovable ProductRow). */
.featured-row__scroller {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 0;
  padding-bottom: 1rem;
  scrollbar-width: none;
  margin: 0;
  margin-right: -1.5rem;
  padding-left: 0;
  padding-right: 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
}
.featured-row__scroller::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .featured-row__scroller {
    gap: 1.5rem;
    margin-right: -2.5rem;
    padding-right: 2.5rem;
  }
}
.theme-product-card-wrap--carousel { flex-shrink: 0; width: 68vw; scroll-snap-align: start; }
/* Mobile: one full-width card (no peek); centered in the container content box. */
@media (max-width: 639px) {
  .featured-row__scroller {
    margin-right: 0;
    padding-right: 0;
    scroll-snap-type: x mandatory;
  }
  .theme-product-card-wrap--carousel {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
  }
}
@media (min-width: 640px) { .theme-product-card-wrap--carousel { width: 40vw; } }
@media (min-width: 768px) { .theme-product-card-wrap--carousel { width: 30vw; } }
@media (min-width: 1024px) { .theme-product-card-wrap--carousel { width: calc((100% - 4.5rem) / 4); } }

/* -------------------------------------------------------------------------
   Product card
   ------------------------------------------------------------------------- */
.theme-product-card-wrap { display: block; text-align: center; }
.theme-product-card__image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: color-mix(in srgb, var(--color-muted) 60%, transparent);
  overflow: hidden;
}
.theme-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease;
}
.theme-product-card-wrap:hover .theme-product-card__image { opacity: .9; }
.theme-product-card-wrap.is-sold-out .theme-product-card__image { opacity: .6; }
.theme-product-card__badge { position: absolute; top: .75rem; left: .75rem; z-index: 2; font-size: .625rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; background: color-mix(in srgb, var(--color-background) 90%, transparent); backdrop-filter: blur(4px); color: var(--color-foreground); padding: .375rem .75rem; }
.theme-product-card__info { display: block; padding-top: 1rem; }
.theme-product-card__title { display: block; font-size: .8125rem; color: var(--color-foreground); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .3s ease; }
.theme-product-card-wrap:hover .theme-product-card__title { color: var(--color-accent); }
.theme-product-card__cat { display: block; font-size: .6875rem; color: var(--color-muted-foreground); margin-top: .25rem; }
.theme-product-card__price { display: block; font-size: .75rem; color: var(--color-foreground); margin-top: .25rem; }
.theme-product-card__price .woocommerce-Price-amount { font-size: inherit; }

.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem 1.25rem; row-gap: 2.5rem; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* -------------------------------------------------------------------------
   Category tiles
   ------------------------------------------------------------------------- */
.category-tiles { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .category-tiles { grid-template-columns: repeat(3, 1fr); } }
.category-tiles__tile { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--color-secondary); }
.category-tiles__image { transition: transform .7s var(--transition-smooth); }
.category-tiles__tile:hover .category-tiles__image { transform: scale(1.05); }
.category-tiles__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: background-color .3s ease; }
.category-tiles__tile:hover .category-tiles__overlay { background: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.category-tiles__label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 600; color: #fff; font-size: .95rem; letter-spacing: .32em; text-transform: uppercase; text-align: center; padding: 0 1rem; font-family: var(--font-body); }

/* -------------------------------------------------------------------------
   Shop section
   ------------------------------------------------------------------------- */
.shop-section { padding: 3.5rem 0; }
@media (min-width: 1024px) { .shop-section { padding: 5rem 0; } }
.shop-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.shop-section__count { font-size: .75rem; color: var(--color-muted-foreground); }
.shop-section__controls { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; align-items: end; }
@media (min-width: 1024px) { .shop-section__controls { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.shop-section__search { position: relative; max-width: 28rem; width: 100%; }
.shop-section__search svg { position: absolute; left: .75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-section__search-input { width: 100%; height: 2.75rem; padding: 0 1rem 0 2.5rem; border: 1px solid var(--color-border); background: var(--color-background); font-size: .875rem; font-family: var(--font-body); }
.shop-section__search-input:focus { outline: none; border-color: var(--color-foreground); }
.shop-section__price { width: 100%; }
@media (min-width: 1024px) { .shop-section__price { width: 18rem; } }
.shop-section__price-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; font-size: .75rem; }
.shop-section__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.shop-chip { padding: 0 1rem; height: 2.25rem; display: inline-flex; align-items: center; font-size: .6875rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--color-border); background: var(--color-background); color: var(--color-foreground); transition: border-color .2s, color .2s, background-color .2s; }
.shop-chip:hover { border-color: var(--color-accent); color: var(--color-accent); }
.shop-chip.is-active { background: var(--color-accent); color: var(--color-button-text); border-color: var(--color-accent); }
.shop-section__empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); font-size: .875rem; }

/* Dual-handle price range (Section 31.4) */
.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-accent); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-foreground); border: 2px solid var(--color-background); box-shadow: 0 0 0 1px var(--color-border); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 50%; background: var(--color-foreground); border: 2px solid var(--color-background); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

/* -------------------------------------------------------------------------
   Product banner
   ------------------------------------------------------------------------- */
.product-banner { position: relative; width: 100%; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
@media (min-width: 1024px) { .product-banner { min-height: 70vh; align-items: center; } }
.product-banner__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,18,18,.85), rgba(18,18,18,.45) 55%, transparent); }
@media (min-width: 1024px) { .product-banner__scrim { background: linear-gradient(to right, rgba(18,18,18,.85), rgba(18,18,18,.4) 55%, transparent); } }
.product-banner__inner { position: relative; padding-block: 3.5rem; }
@media (min-width: 1024px) { .product-banner__inner { padding-block: 5rem; } }
.product-banner__content { max-width: 34rem; }
.product-banner__eyebrow { font-size: .6875rem; letter-spacing: .36em; text-transform: uppercase; font-weight: 600; color: var(--color-accent-bright); display: block; }
.product-banner__title { font-size: 1.875rem; text-transform: uppercase; color: var(--color-background); line-height: 1.05; margin: .75rem 0 1rem; }
@media (min-width: 768px) { .product-banner__title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .product-banner__title { font-size: 3rem; } }
.product-banner__body { color: rgba(247,245,243,.85); line-height: 1.65; margin-bottom: 1.5rem; }
.product-banner__price { font-size: 1.125rem; color: var(--color-background); margin-bottom: 2rem; }

/* -------------------------------------------------------------------------
   Brand / founder section
   ------------------------------------------------------------------------- */
.brand-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .brand-section { padding: 7rem 0; } }
.brand-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .brand-section__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.brand-section__image-wrap { position: relative; }
@media (min-width: 1024px) { .brand-section__image-wrap { grid-column: span 5; } }
.brand-section__image-frame { display: none; position: absolute; left: -1rem; bottom: -1rem; width: 100%; height: 100%; border: 2px solid var(--color-accent); }
@media (min-width: 1024px) { .brand-section__image-frame { display: block; } }
.brand-section__image-inner { position: relative; height: 100%; min-height: 26rem; overflow: hidden; background: var(--color-background); }
.brand-section__content { display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .brand-section__content { grid-column: 7 / span 6; } }
.brand-section__title { font-size: 2.25rem; text-transform: uppercase; margin-top: 1rem; line-height: 1.05; max-width: 14ch; }
@media (min-width: 768px) { .brand-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .brand-section__title { font-size: 3.5rem; } }
.brand-section__quote { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--color-accent); margin-top: 1.5rem; line-height: 1.1; }
@media (min-width: 768px) { .brand-section__quote { font-size: 1.875rem; } }
.brand-section__body { margin-top: 1.5rem; max-width: 54ch; display: flex; flex-direction: column; gap: 1rem; }
.brand-section__body p { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.65; }
/* Lovable: mt-10 pt-8 border-t grid sm:grid-cols-3 gap-6 */
.brand-section__facts {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .brand-section__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.brand-section__facts > div {
  min-width: 0;
}
.brand-section__facts dt {
  margin: 0;
  font-family: var(--font-body);
  font-size: .625rem;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
}
.brand-section__facts dd {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-foreground);
}
.brand-section__signature { font-family: var(--font-display); text-transform: uppercase; font-size: 1.125rem; margin-top: 2.5rem; letter-spacing: .02em; }
.brand-section__signature span { font-family: var(--font-body); text-transform: none; letter-spacing: normal; font-size: .875rem; color: var(--color-muted-foreground); margin-left: .35rem; }
.brand-section__cta { margin-top: 1.5rem; }

/* -------------------------------------------------------------------------
   Sneaker service section
   ------------------------------------------------------------------------- */
.sneaker-section { padding: 5rem 0; border-top: 1px solid var(--color-border); background: var(--color-background); }
@media (min-width: 1024px) { .sneaker-section { padding: 7rem 0; } }
.sneaker-section .label-eyebrow-accent { font-size: 0.625rem; letter-spacing: 0.36em; }
.sneaker-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .sneaker-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.sneaker-section__image-wrap { position: relative; min-height: 20rem; height: 100%; overflow: hidden; background: var(--color-secondary); order: 2; }
@media (min-width: 1024px) { .sneaker-section__image-wrap { order: 1; } }
.sneaker-section__content { order: 1; }
@media (min-width: 1024px) { .sneaker-section__content { order: 2; } }
.sneaker-section__title { font-size: 2.25rem; text-transform: uppercase; margin: 1rem 0 1.5rem; line-height: 1.05; }
@media (min-width: 768px) { .sneaker-section__title { font-size: 3rem; } }
.sneaker-section__body { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.625; margin-bottom: 2rem; max-width: 28rem; }
.sneaker-section__steps { position: relative; display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.25rem; list-style: none; }
.sneaker-section__line {
  position: absolute;
  left: 15px;
  top: 1rem;
  bottom: auto;
  height: 12rem;
  width: 2px;
  background: var(--color-border);
  pointer-events: none;
}
.sneaker-section__line--accent {
  background: var(--color-accent);
  transform-origin: top center;
  transform: scaleY(0);
  z-index: 1;
}
.sneaker-section__step {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 4rem;
  gap: 1rem;
  will-change: transform;
}
.sneaker-section__step-marker {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-foreground);
  color: var(--color-background);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0;
}
.sneaker-section__step-marker-fill {
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  opacity: 0;
}
.sneaker-section__step-marker-num {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .sneaker-section__line--accent { transform: scaleY(1); }
  .sneaker-section__step-marker-fill { opacity: 1; }
  .sneaker-section__step { will-change: auto; transform: none !important; }
}
.sneaker-section__step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--color-foreground);
}
.sneaker-section__step p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  line-height: 1.625;
  margin-top: 0.25rem;
}

/* -------------------------------------------------------------------------
   Testimonials
   ------------------------------------------------------------------------- */
.testimonials-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-section__head { text-align: center; margin-bottom: 3rem; }
@media (min-width: 1024px) { .testimonials-section__head { margin-bottom: 4rem; } }
.testimonials-section__head .label-eyebrow-accent { display: block; font-size: 0.6875rem; letter-spacing: 0.36em; }
.testimonials-section__heading { font-size: 2.25rem; text-transform: uppercase; margin-top: 0.75rem; line-height: 1.05; }
@media (min-width: 768px) { .testimonials-section__heading { font-size: 3rem; } }
.testimonials-section__featured { max-width: 48rem; margin: 0 auto 4rem; text-align: center; }
@media (min-width: 1024px) { .testimonials-section__featured { margin-bottom: 5rem; } }
.testimonials-section__featured > svg { display: block; margin: 0 auto 2rem; width: 2.5rem; height: 2.5rem; color: var(--color-accent); }
.testimonials-section__featured blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.375;
  color: var(--color-foreground);
}
@media (min-width: 768px) { .testimonials-section__featured blockquote { font-size: 1.875rem; } }
@media (min-width: 1024px) { .testimonials-section__featured blockquote { font-size: 2.25rem; } }
.testimonials-section__featured .testimonials-section__stars { margin-bottom: 0.75rem; }
.testimonials-section__stars { display: flex; justify-content: center; gap: 0.15rem; }
.testimonials-section__stars svg { width: 1rem; height: 1rem; fill: var(--color-accent); stroke: var(--color-accent); }
.testimonials-section__card .testimonials-section__stars { justify-content: flex-start; margin-bottom: 1.25rem; }
.testimonials-section__stars--sm svg { width: 0.875rem; height: 0.875rem; }
.testimonials-section__featured figcaption { margin-top: 2rem; }
.testimonials-section__name { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); }
.testimonials-section__place {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-top: 0.25rem;
}
.testimonials-section__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
@media (min-width: 768px) { .testimonials-section__grid { grid-template-columns: repeat(3, 1fr); } }
.testimonials-section__card { background: var(--color-background); padding: 2rem; display: flex; flex-direction: column; transition: background-color 0.3s ease; }
@media (min-width: 1024px) { .testimonials-section__card { padding: 2.5rem; } }
.testimonials-section__card:hover { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); }
.testimonials-section__card blockquote {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
.testimonials-section__card figcaption { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--color-border); }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.faq-section__intro { position: static; }
@media (min-width: 1024px) { .faq-section__intro { position: sticky; top: 8rem; } }
.faq-section__heading { font-size: 2.25rem; text-transform: uppercase; margin-top: .75rem; line-height: 1.05; }
@media (min-width: 768px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__body { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.65; margin-top: 1.5rem; max-width: 26rem; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 1.25rem 0; gap: 1.5rem; }
.faq-item__question span:first-child { font-size: .875rem; transition: color .3s ease; }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1rem; } }
.faq-item__question:hover span:first-child { color: var(--color-accent); }
.faq-item__icon { position: relative; width: 1rem; height: 1rem; flex-shrink: 0; }
.faq-item__icon-plus, .faq-item__icon-minus { position: absolute; inset: 0; transition: opacity .2s ease; }
.faq-item__icon-minus { opacity: 0; }
.faq-item.is-open .faq-item__icon-plus { opacity: 0; }
.faq-item.is-open .faq-item__icon-minus { opacity: 1; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--transition-smooth); }
.faq-item__answer p { font-size: .875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.65; padding: 0 2.5rem 1.5rem 0; }

/* -------------------------------------------------------------------------
   Parallax divider
   ------------------------------------------------------------------------- */
.parallax-divider { position: relative; width: 100%; height: 12rem; overflow: hidden; background: var(--color-secondary); }
@media (min-width: 768px) { .parallax-divider { height: 18rem; } }
@media (min-width: 1024px) { .parallax-divider { height: 24rem; } }
.parallax-divider__img { will-change: transform; }

/* -------------------------------------------------------------------------
   Contact section
   ------------------------------------------------------------------------- */
.contact-section { padding: 5rem 0; border-top: 1px solid var(--color-border); background: var(--color-background); }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }
.contact-section .label-eyebrow { font-size: 0.625rem; letter-spacing: 0.36em; }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__title { font-size: 2.25rem; text-transform: uppercase; margin: 0.75rem 0 1.5rem; line-height: 1.05; }
@media (min-width: 768px) { .contact-section__title { font-size: 3rem; } }
.contact-section__body {
  font-family: var(--font-body);
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 28rem;
}
.contact-section__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.25;
}
.contact-section__details a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-foreground);
  transition: color 0.3s ease;
  word-break: break-all;
}
.contact-section__details a:hover { color: var(--color-accent); }
.contact-section__details p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  color: var(--color-foreground);
}
.contact-section__details .theme-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.contact-section__details p .theme-icon { margin-top: 0.125rem; }
.contact-section__card { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 1024px) { .contact-section__card { padding: 3rem; } }
.contact-section__card > .label-eyebrow { margin-bottom: 0.75rem; }
.contact-section__card-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 1.5rem;
}
@media (min-width: 768px) { .contact-section__card-title { font-size: 1.875rem; } }
.contact-section__card-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  line-height: 1.625;
  margin-bottom: 2rem;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--color-foreground); color: var(--color-background); overflow-x: clip; max-width: 100%; }
.site-footer__inner { padding-block: 4rem 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem 2.5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__blurb { margin-top: 1.5rem; font-size: .875rem; color: rgba(247,245,243,.7); max-width: 20rem; line-height: 1.65; }
.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-bright);
  margin: 0 0 1.25rem;
}
.site-footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a, .site-footer__list span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(247, 245, 243, 0.7);
  transition: color 0.3s ease;
}
.site-footer__list a:hover { color: var(--color-accent-bright); }
.site-footer__list--contact { font-family: var(--font-body); font-size: 0.875rem; line-height: 1.25; }
.site-footer__contact-row { display: flex; gap: 0.5rem; margin: 0; }
.site-footer__contact-row--start { align-items: flex-start; }
.site-footer__contact-row--center { align-items: center; }
.site-footer__list--contact .theme-icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.site-footer__contact-row--start .theme-icon { margin-top: 0.125rem; }
.site-footer__list--contact a { word-break: break-all; }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(247,245,243,.15); display: flex; flex-direction: column; align-items: center; gap: .75rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__copy, .site-footer__credit { font-size: .625rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(247,245,243,.6); }
.site-footer__credit a { text-decoration: underline; text-underline-offset: 4px; }
.site-footer__credit a:hover { color: var(--color-accent-bright); }
/* -------------------------------------------------------------------------
   Generic page / 404
   ------------------------------------------------------------------------- */
.page-main, .not-found-main, .shop-archive-main { padding-top: 3rem; padding-bottom: 3rem; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
.not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; }
.not-found__title { font-size: 3rem; }
.not-found__text { font-size: 1.125rem; color: var(--color-muted-foreground); margin-bottom: .5rem; }

/* -------------------------------------------------------------------------
   Single product — mirrors ProductDetail.tsx
   ------------------------------------------------------------------------- */
body.theme-no-hero .site-main.single-product-main,
.single-product-main.site-main {
  padding-top: 2.5rem;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  body.theme-no-hero .site-main.single-product-main,
  .single-product-main.site-main {
    padding-top: 3.5rem;
  }
}
.theme-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  align-items: start;
}
@media (min-width: 1024px) {
  .theme-product-layout {
    grid-template-columns: minmax(0, 1fr) 440px;
  }
}
@media (min-width: 1280px) {
  .theme-product-layout {
    grid-template-columns: minmax(0, 1fr) 500px;
  }
}
.theme-product-gallery,
.theme-product-info {
  min-width: 0;
  max-width: 100%;
}
.theme-product-gallery {
  position: relative;
  background: var(--color-background);
}
@media (min-width: 1024px) {
  .theme-product-gallery {
    position: sticky;
    top: 8rem;
    align-self: start;
  }
}
.theme-product-gallery__row {
  display: flex;
  align-items: stretch;
  min-width: 0;
}
.theme-product-thumbnails--desktop {
  display: none;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem 1rem 1rem 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .theme-product-thumbnails--desktop {
    display: flex;
    padding: 1rem 1rem 1.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .theme-product-thumbnails--desktop {
    padding: 1.5rem 1rem 1.5rem 2.5rem;
  }
}
.theme-product-thumbnails--mobile {
  display: flex;
  gap: .5rem;
  padding: 1rem 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
@media (min-width: 768px) {
  .theme-product-thumbnails--mobile {
    display: none;
  }
}
.theme-product-thumb {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: .375rem;
  overflow: hidden;
  opacity: .6;
  transition: opacity .2s ease, border-color .2s ease;
  background: none;
}
@media (min-width: 1024px) {
  .theme-product-thumb {
    width: 4rem;
    height: 4rem;
  }
}
.theme-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-product-thumb.is-active,
.theme-product-thumb:hover {
  opacity: 1;
  border-color: var(--color-accent);
}
.theme-product-main-image {
  flex: 1;
  min-width: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .theme-product-main-image {
    min-height: 78vh;
  }
}
@media (min-width: 1024px) {
  .theme-product-main-image {
    min-height: 88vh;
    padding: 0 2.5rem 0 0;
  }
}
.theme-product-main-image__img {
  position: static !important;
  width: auto;
  max-width: 100%;
  height: auto !important;
  max-height: 60vh;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .theme-product-main-image__img {
    max-height: 78vh;
  }
}
@media (min-width: 1024px) {
  .theme-product-main-image__img {
    max-height: 88vh;
  }
}
.theme-product-info {
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .theme-product-info {
    padding: 2.5rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .theme-product-info {
    padding: 4rem 3rem;
  }
}
.theme-product-breadcrumb { font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin: 0 .5rem; }
.theme-product-cats { font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: .5rem; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: .9375rem; letter-spacing: .22em; text-transform: uppercase; line-height: 1.5; }
@media (min-width: 768px) { .product-title { font-size: 1rem; } }
.theme-product-sku { font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-top: .75rem; }
.theme-product-divider { height: 1px; background: var(--color-border); margin: 1.75rem 0; }
.theme-product-price { font-size: 1.125rem; }
.theme-stock-badge { display: inline-block; margin-top: .75rem; font-size: .6875rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; padding: .3rem .75rem; }
.theme-stock-badge--out { background: color-mix(in srgb, var(--color-accent) 12%, transparent); color: var(--color-accent); }
.theme-product-note { margin-top: 1.75rem; background: color-mix(in srgb, var(--color-secondary) 70%, transparent); padding: 1rem 1.25rem; font-size: .8125rem; line-height: 1.6; border-radius: .375rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-size-selector { margin-top: 1.75rem; }
.theme-size-selector h3 { font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: .75rem; }
.theme-size-selector__options { display: flex; flex-wrap: wrap; gap: .5rem; }
.theme-size-pill { min-width: 3.5rem; padding: .625rem 1rem; font-size: .75rem; letter-spacing: .05em; border: 1px solid var(--color-border); border-radius: .375rem; transition: all .2s ease; }
.theme-size-pill:hover { border-color: var(--color-accent); }
.theme-size-pill.is-selected { background: var(--color-accent); color: var(--color-button-text); border-color: var(--color-accent); }
.theme-product-attr { margin-top: 1.75rem; }
.theme-product-attr__label { font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: .75rem; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: .75rem; }
.theme-attr-pills--color { flex-direction: column; align-items: flex-start; gap: .75rem; }
.theme-attr-pill { display: inline-flex; align-items: center; gap: .625rem; padding: .5rem .75rem; border: 1px solid var(--color-border); border-radius: .375rem; font-size: .75rem; transition: border-color .2s ease, background .2s ease; }
.theme-attr-pill--color.is-selected { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 5%, transparent); }
.theme-attr-pill__swatch { width: 1.25rem; height: 1.25rem; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent); flex-shrink: 0; }
.theme-attr-pills--license { gap: .5rem; }
.theme-attr-pill--license.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-attr-select-wrap { margin-top: .75rem; }
.theme-attr-select,
.theme-product-attr select { width: 100%; max-width: 100%; padding: .625rem .75rem; font-family: var(--font-body); font-size: .8125rem; border: 1px solid var(--color-border); border-radius: .375rem; background: var(--color-background); }
.theme-attr-select-hidden { display: none !important; }
.theme-variable-product-form .theme-add-to-cart-area { margin-top: 2rem; }
.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.single-product-main .theme-btn-add-to-cart {
  width: 100%;
  min-height: 3.5rem;
  height: 3.5rem;
  font-size: .75rem;
  letter-spacing: .28em;
  border: 1px solid var(--color-accent) !important;
}
.single-product-main .theme-btn-add-to-cart:hover:not(:disabled):not(.disabled) {
  background: var(--color-primary) !important;
  color: var(--color-background) !important;
  opacity: 1 !important;
}
.theme-product-details { margin-top: 3rem; }
.theme-product-details h2 { font-size: .6875rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 1.25rem; }
.theme-product-details__description {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
  white-space: pre-line;
  margin: 0;
}
.theme-product-details__list {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.theme-product-details__list li {
  font-family: var(--font-body);
  font-size: .875rem;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  line-height: 1.6;
}
.theme-product-details__list li::marker {
  color: var(--color-accent);
}
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in,
.single-product .product_meta,
.single-product .woocommerce-tabs,
.single-product .woocommerce-product-gallery,
.single-product form.cart:not(.theme-variable-product-form),
.single-product .woocommerce-notices-wrapper {
  display: none !important;
}

.related-products-section {
  padding-block: 6rem;
  border-top: 1px solid var(--color-border);
  margin-top: 3rem;
}
.related-products-section__inner {
  padding-block: 0;
}
.related-products-section__head {
  margin-bottom: 3rem;
}
.related-products-section__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.15;
  text-transform: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .related-products-section__title {
    font-size: 2.25rem;
  }
}
.related-products-section__title-accent {
  font-style: italic;
  color: var(--color-primary);
}
.related-products-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem 2rem;
}
@media (min-width: 640px) {
  .related-products-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .related-products-section__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
    row-gap: 3rem;
  }
}
.theme-related-card {
  display: block;
  min-width: 0;
}
.theme-related-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: color-mix(in srgb, var(--color-muted) 40%, transparent);
}
.theme-related-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .5s ease;
}
.theme-related-card:hover .theme-related-card__image {
  opacity: .9;
}
.theme-related-card__image-wrap.is-sold-out .theme-related-card__image {
  opacity: .6;
}
.theme-related-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 2;
  font-size: .625rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
  background: color-mix(in srgb, var(--color-background) 90%, transparent);
  backdrop-filter: blur(4px);
  padding: .375rem .75rem;
}
.theme-related-card__info {
  display: block;
  padding-top: 1rem;
  text-align: center;
}
.theme-related-card__title {
  display: block;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--color-foreground);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .3s ease;
}
.theme-related-card:hover .theme-related-card__title {
  color: var(--color-accent);
}
.theme-related-card__cat {
  display: block;
  font-family: var(--font-body);
  font-size: .6875rem;
  color: var(--color-muted-foreground);
  margin-top: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.theme-related-card__price {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--color-foreground);
  margin-top: .25rem;
}

/* Add to cart button style override (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_add_to_cart_button {
  background-color: var(--color-accent) !important;
  color: var(--color-button-text) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  min-height: var(--btn-height) !important;
  padding: var(--btn-padding) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-accent) !important;
  color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
  cursor: not-allowed !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
  opacity: 0.4 !important;
  background-color: var(--color-accent) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: .6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* -------------------------------------------------------------------------
   WooCommerce notices (scoped visibility, Section 14.1)
   ------------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-top-color: var(--color-accent) !important;
  font-family: var(--font-body);
  border-radius: .375rem;
}

/* -------------------------------------------------------------------------
   Shop archive
   ------------------------------------------------------------------------- */
.shop-archive-main .page-title { text-transform: uppercase; }
.shop-archive-empty { padding: 4rem 0; text-align: center; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------------
   WooCommerce Checkout Block (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .page-main.theme-checkout-main,
body.woocommerce-checkout .theme-checkout-main {
  padding-top: 30px;
  padding-bottom: 4rem;
}
.theme-checkout-shell {
  width: 100%;
  max-width: none;
  padding-block: 0 4rem;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .theme-checkout-shell { padding-inline: 2.5rem; }
}
.theme-checkout-header,
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
  max-width: var(--checkout-max-width);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
.theme-checkout-header { margin-bottom: 0; }
.checkout-continue-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}
.checkout-continue-link:hover { color: var(--color-foreground); }
.theme-checkout-title { margin: 0; font-family: var(--font-display); font-size: 2rem; }
.theme-checkout-intro { margin: .75rem 0 0; color: var(--color-muted-foreground); max-width: 40rem; }
body.woocommerce-checkout .theme-checkout-main > .theme-checkout-shell,
body.woocommerce-checkout .theme-checkout-main > .container-wide,
body.woocommerce-checkout .theme-checkout-shell,
body.woocommerce-checkout .entry-content,
.entry-content:has(.wc-block-checkout) {
  max-width: none;
  width: 100%;
}
body.woocommerce-checkout .theme-checkout-main .entry-content,
.entry-content:has(.wc-block-checkout) {
  margin-top: 0;
  padding-top: 0;
}
body.woocommerce-checkout .theme-checkout-main .entry-content > .wc-block-checkout,
body.woocommerce-checkout .theme-checkout-main .entry-content > .wp-block-woocommerce-checkout,
.entry-content > .wc-block-checkout:first-child,
.entry-content > .wp-block-woocommerce-checkout:first-child {
  margin-top: 0;
}
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout {
  max-width: var(--checkout-max-width);
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  min-width: 0;
  margin-top: 0;
  padding-top: 0;
}
body.woocommerce-checkout .wc-block-checkout.alignwide,
.entry-content .wc-block-checkout.alignwide {
  margin-top: 0;
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-components-main,
.entry-content .wc-block-checkout__main,
.entry-content .wc-block-components-main {
  margin-top: 0;
  padding-top: 0;
}
body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
  margin-top: 0;
  padding-top: 0;
}
body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices:empty,
.entry-content .wc-block-checkout > .wc-block-components-notices:empty {
  display: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: var(--checkout-gap);
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .wc-block-checkout .wc-block-checkout-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout,
  .entry-content .wc-block-checkout .wc-block-checkout-sidebar-layout {
    display: grid !important;
    grid-template-columns: 1fr minmax(360px, 400px);
    gap: var(--checkout-gap);
    align-items: start;
    flex-direction: unset;
    flex-wrap: nowrap;
    margin: 0;
  }
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar,
  body.woocommerce-checkout .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar,
  .entry-content .wc-block-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: auto !important;
    max-width: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
  body.woocommerce-checkout .wc-block-checkout:has(> .wc-block-checkout__main):has(> .wc-block-checkout__sidebar),
  .entry-content .wc-block-checkout:has(> .wc-block-checkout__main):has(> .wc-block-checkout__sidebar) {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 400px);
    gap: var(--checkout-gap);
    align-items: start;
  }
  body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices,
  .entry-content .wc-block-checkout > .wc-block-components-notices {
    grid-column: 1 / -1;
  }
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar {
  background: transparent;
  border-radius: 0;
  padding: 0;
}
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  background: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
  box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-checkout-empty,
.entry-content .wc-block-checkout-empty {
  margin-inline: auto;
  max-width: 36rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* —— Checkout form: typography, steps, field system (Blocks + theme) —— */
body.woocommerce-checkout .wc-block-checkout__form,
.entry-content .wc-block-checkout__form {
  font-family: var(--font-body);
  color: var(--color-foreground);
}

body.woocommerce-checkout .wc-block-components-checkout-step,
.entry-content .wc-block-components-checkout-step {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
body.woocommerce-checkout .wc-block-components-checkout-step:last-of-type,
.entry-content .wc-block-components-checkout-step:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
}

body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-title.wc-block-components-title,
.entry-content .wc-block-components-checkout-step__title,
.entry-content .wc-block-components-title.wc-block-components-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--color-foreground);
}

body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__heading-container,
.entry-content .wc-block-checkout__main .wc-block-components-checkout-step__heading-container,
body.woocommerce-checkout .wc-block-checkout__main #order-notes .wc-block-components-checkout-step__heading-container,
.entry-content .wc-block-checkout__main #order-notes .wc-block-components-checkout-step__heading-container {
  margin-bottom: 0;
  padding-bottom: 0;
}

body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__heading,
.entry-content .wc-block-checkout__main .wc-block-components-checkout-step__heading {
  margin: 0;
  padding: 0;
}

body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__content,
.entry-content .wc-block-checkout__main .wc-block-components-checkout-step__content {
  margin-top: 0;
  padding-top: 0;
}

body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-checkout-step__content > *:first-child,
.entry-content .wc-block-checkout__main .wc-block-components-checkout-step__content > *:first-child {
  margin-top: 0;
}

/* Billing address form — even 20px vertical rhythm + unified field chrome */
body.woocommerce-checkout .wc-block-checkout__main #billing.wc-block-components-address-form,
.entry-content .wc-block-checkout__main #billing.wc-block-components-address-form {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 12px;
}

body.woocommerce-checkout .wc-block-checkout__main #billing.wc-block-components-address-form > *,
.entry-content .wc-block-checkout__main #billing.wc-block-components-address-form > * {
  grid-column: 1 / -1;
  min-width: 0;
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__first_name,
body.woocommerce-checkout .wc-block-checkout__main #billing #billing-first_name,
.entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__first_name,
.entry-content .wc-block-checkout__main #billing #billing-first_name {
  grid-column: span 12;
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__last_name,
body.woocommerce-checkout .wc-block-checkout__main #billing #billing-last_name,
.entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__last_name,
.entry-content .wc-block-checkout__main #billing #billing-last_name {
  grid-column: span 12;
}

@media (min-width: 480px) {
  body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__first_name,
  body.woocommerce-checkout .wc-block-checkout__main #billing #billing-first_name,
  .entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__first_name,
  .entry-content .wc-block-checkout__main #billing #billing-first_name {
    grid-column: span 6;
  }
  body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__last_name,
  body.woocommerce-checkout .wc-block-checkout__main #billing #billing-last_name,
  .entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__last_name,
  .entry-content .wc-block-checkout__main #billing #billing-last_name {
    grid-column: span 6;
  }
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__city,
body.woocommerce-checkout .wc-block-checkout__main #billing #billing-city,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__state,
body.woocommerce-checkout .wc-block-checkout__main #billing #billing-state,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__postcode,
body.woocommerce-checkout .wc-block-checkout__main #billing #billing-postcode,
.entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__city,
.entry-content .wc-block-checkout__main #billing #billing-city,
.entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__state,
.entry-content .wc-block-checkout__main #billing #billing-state,
.entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__postcode,
.entry-content .wc-block-checkout__main #billing #billing-postcode {
  grid-column: span 12;
}

@media (min-width: 600px) {
  body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__city,
  body.woocommerce-checkout .wc-block-checkout__main #billing #billing-city,
  .entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__city,
  .entry-content .wc-block-checkout__main #billing #billing-city {
    grid-column: span 4;
  }
  body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__state,
  body.woocommerce-checkout .wc-block-checkout__main #billing #billing-state,
  .entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__state,
  .entry-content .wc-block-checkout__main #billing #billing-state {
    grid-column: span 4;
  }
  body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-address-form__postcode,
  body.woocommerce-checkout .wc-block-checkout__main #billing #billing-postcode,
  .entry-content .wc-block-checkout__main #billing .wc-block-components-address-form__postcode,
  .entry-content .wc-block-checkout__main #billing #billing-postcode {
    grid-column: span 4;
  }
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select-input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-country-input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select,
.entry-content .wc-block-checkout__main #billing .wc-block-components-text-input,
.entry-content .wc-block-checkout__main #billing .wc-block-components-combobox,
.entry-content .wc-block-checkout__main #billing .wc-block-components-select-input,
.entry-content .wc-block-checkout__main #billing .wc-block-components-country-input,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select {
  margin: 0;
  min-width: 0;
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select select,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select-input select,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select__select,
.entry-content .wc-block-checkout__main #billing .wc-block-components-text-input input,
.entry-content .wc-block-checkout__main #billing .wc-block-components-combobox .wc-block-components-combobox-control input,
.entry-content .wc-block-checkout__main #billing .wc-block-components-select select,
.entry-content .wc-block-checkout__main #billing .wc-block-components-select-input select,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select__select {
  width: 100%;
  max-width: none;
  min-height: var(--checkout-field-height);
  padding: 1.25rem 1rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-foreground);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--checkout-field-radius);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select__container,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select__container {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-combobox label,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select-input label,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select label,
.entry-content .wc-block-checkout__main #billing .wc-block-components-text-input label,
.entry-content .wc-block-checkout__main #billing .wc-block-components-combobox label,
.entry-content .wc-block-checkout__main #billing .wc-block-components-select-input label,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input.is-active input,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-select-input select:focus,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-blocks-components-select__select:focus,
body.woocommerce-checkout .wc-block-checkout__main #billing .wc-block-components-text-input input:focus-visible,
.entry-content .wc-block-checkout__main #billing .wc-block-components-text-input input:focus,
.entry-content .wc-block-checkout__main #billing .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
.entry-content .wc-block-checkout__main #billing .wc-block-components-select select:focus,
.entry-content .wc-block-checkout__main #billing .wc-blocks-components-select__select:focus {
  border-color: var(--color-foreground);
  outline: none;
  box-shadow: 0 0 0 1px var(--color-foreground);
}

/* Avoid duplicate visible section titles (heading + legend). */
body.woocommerce-checkout .wc-block-components-checkout-step__container > legend,
.entry-content .wc-block-components-checkout-step__container > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-select-input,
.entry-content .wc-block-components-form .wc-block-components-text-input,
.entry-content .wc-block-components-form .wc-block-components-combobox,
.entry-content .wc-block-components-form .wc-block-components-select-input {
  margin-top: 0;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-select-input select,
.entry-content .wc-block-components-text-input input,
.entry-content .wc-block-components-combobox .wc-block-components-combobox-control input,
.entry-content .wc-block-components-select select,
.entry-content .wc-block-components-select-input select {
  width: 100%;
  max-width: none;
  min-height: var(--checkout-field-height);
  padding: 1.25rem 1rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-foreground);
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: var(--checkout-field-radius);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-combobox label,
body.woocommerce-checkout .wc-block-components-select-input label,
.entry-content .wc-block-components-text-input label,
.entry-content .wc-block-components-combobox label,
.entry-content .wc-block-components-select-input label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-muted-foreground);
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-text-input.is-active input,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-select-input select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible,
.entry-content .wc-block-components-text-input input:focus,
.entry-content .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
.entry-content .wc-block-components-select select:focus {
  border-color: var(--color-foreground);
  outline: none;
  box-shadow: 0 0 0 1px var(--color-foreground);
}

body.woocommerce-checkout .wc-block-components-checkbox,
.entry-content .wc-block-components-checkbox {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input,
.entry-content .wc-block-components-checkbox .wc-block-components-checkbox__input {
  border-color: var(--color-border);
  border-radius: 0.125rem;
}
body.woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input:checked,
.entry-content .wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
  background: var(--color-foreground);
  border-color: var(--color-foreground);
}

body.woocommerce-checkout .wc-block-components-notice-banner,
.entry-content .wc-block-components-notice-banner {
  font-family: var(--font-body);
  font-size: 0.875rem;
  border-radius: var(--checkout-field-radius);
}

body.woocommerce-checkout .wc-block-components-radio-control,
body.woocommerce-checkout .wc-block-components-radio-control-accordion,
.entry-content .wc-block-components-radio-control,
.entry-content .wc-block-components-radio-control-accordion {
  font-family: var(--font-body);
  gap: 0.75rem;
}
body.woocommerce-checkout .wc-block-components-radio-control__option,
.entry-content .wc-block-components-radio-control__option {
  border: 1px solid var(--color-border);
  border-radius: var(--checkout-field-radius);
  padding: 0.875rem 1rem;
  background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-radio-control__option-checked,
.entry-content .wc-block-components-radio-control__option-checked {
  border-color: var(--color-foreground);
  box-shadow: 0 0 0 1px var(--color-foreground);
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-checkout__sidebar,
  body.woocommerce-checkout .wc-block-components-sidebar,
  .entry-content .wc-block-checkout__sidebar,
  .entry-content .wc-block-components-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    align-self: start;
  }
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
.entry-content .wc-block-components-checkout-place-order-button {
  min-height: var(--btn-height);
  padding: 0 2rem !important;
  background: var(--color-accent) !important;
  color: var(--color-button-text) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  font-size: var(--btn-font-size) !important;
  font-weight: var(--btn-font-weight) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  text-transform: var(--btn-text-transform) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
.entry-content .wc-block-components-checkout-place-order-button:hover {
  background: var(--color-foreground) !important;
  color: var(--color-background) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button,
.entry-content .wc-block-components-checkout-return-to-cart-button {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}
body.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover,
.entry-content .wc-block-components-checkout-return-to-cart-button:hover {
  color: var(--color-foreground);
}
body.woocommerce-cart .woocommerce,
body.single-product .woocommerce {
  min-width: 0;
  max-width: 100%;
}

/* -------------------------------------------------------------------------
   Thank-you page
   ------------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.5rem; }
@media (min-width: 768px) {
  body.theme-thankyou-page .woocommerce-customer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* -------------------------------------------------------------------------
   Customizer media control (Section 22.3)
   ------------------------------------------------------------------------- */
.theme-media-control { display: flex; flex-direction: column; gap: .5rem; }
.theme-media-url-input { width: 100%; min-width: 0; box-sizing: border-box; }
.theme-media-preview { max-width: 100%; height: auto; display: block; }
