/* ==========================================================================
   Belinda Barker Theme - Main Stylesheet
   ========================================================================== */

/* -----------------------------------------------------------------------
   CSS Variables (overridden by Customizer via inline style)
   ----------------------------------------------------------------------- */
:root {
  --color-primary: #141414;
  --color-primary-foreground: #ffffff;
  --color-background: #ffffff;
  --color-foreground: #0d0d0d;
  --color-muted: #e5e5e5;
  --color-muted-foreground: #737373;
  --color-border: #e5e5e5;
  --color-secondary: #f2f2f2;
  --color-secondary-foreground: #262626;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-soft: 0 4px 20px -4px rgba(0,0,0,0.06);
  --shadow-elevated: 0 8px 40px -8px rgba(0,0,0,0.12);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --radius: 0.25rem;
  --card-radius: 0.25rem;
  --btn-radius: 0;
  --btn-height: 44px;
  --btn-padding: 0.625rem 2rem;
  --btn-font-size: 0.8125rem;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0.05em;
  --btn-text-transform: uppercase;
  --btn-icon-padding: 0.5rem;

  --header-height: 112px;
  --logo-height: 60px;

  --section-padding: 2rem;
  --checkout-gap: 2rem;
}

/* -----------------------------------------------------------------------
   Reset & Base
   ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-foreground);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* -----------------------------------------------------------------------
   Utility
   ----------------------------------------------------------------------- */
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.py-inner { padding-top: 2.5rem; padding-bottom: 5rem; }
.scroll-mt-header { scroll-margin-top: var(--header-height); }

.link-underline { position: relative; display: inline-block; }
.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s var(--transition-smooth);
}
.link-underline:hover::after { transform: scaleX(1); }

.card-hover { transition: all 0.5s var(--transition-smooth); }
.card-hover:hover { box-shadow: var(--shadow-elevated); transform: translateY(-4px); }

.image-zoom { transition: transform 0.7s ease-out; }
.image-zoom:hover { transform: scale(1.05); }
.opacity-dimmed { opacity: 0.6; }

.section-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}
.section-label--light { color: rgba(255,255,255,0.5); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--color-foreground);
}
.section-header { text-align: center; margin-bottom: 3rem; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.6s var(--transition-smooth) forwards; }

/* Glitch keyframes */
@keyframes glitch-jitter {
  0% { transform: translate(0); filter: none; }
  10% { transform: translate(-4px, 2px) skewX(-1deg); filter: hue-rotate(30deg) saturate(1.5); }
  20% { transform: translate(3px, -1px); filter: hue-rotate(-20deg) brightness(1.3); }
  30% { transform: translate(-2px, 0) skewX(2deg); filter: saturate(0); }
  40% { transform: translate(5px, 1px); filter: hue-rotate(60deg) contrast(1.5); }
  50% { transform: translate(-3px, -2px) skewX(-1deg); filter: invert(0.1) brightness(1.8); }
  60% { transform: translate(2px, 1px); filter: saturate(2) hue-rotate(-40deg); }
  70% { transform: translate(0, -1px); filter: none; opacity: 0.6; }
  80% { transform: translate(-1px, 0); filter: brightness(0.5); opacity: 0.3; }
  90% { transform: translate(0); filter: none; opacity: 0.1; }
  100% { transform: translate(0); filter: none; opacity: 0; }
}

/* -----------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  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);
  padding: var(--btn-padding);
  min-height: var(--btn-height);
  border-radius: var(--btn-radius);
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
}
.btn-primary:hover { opacity: 0.85; background: var(--color-primary); color: var(--color-primary-foreground); }

.btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}
.btn-outline:hover { background: var(--color-secondary); opacity: 1; }

.btn-full { width: 100%; }

/* -----------------------------------------------------------------------
   Sold-out / New Badges
   ----------------------------------------------------------------------- */
.sold-out-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-foreground);
  color: var(--color-background);
}
.new-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--color-foreground);
  color: var(--color-background);
}

/* -----------------------------------------------------------------------
   Logo
   ----------------------------------------------------------------------- */
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; }
.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: var(--logo-height);
  display: block;
}

/* -----------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  color: var(--color-background);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(4px);
  color: var(--color-foreground);
  border-bottom-color: var(--color-border);
}

.site-header .container-wide { position: relative; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
}
@media (min-width: 1024px) { .site-nav { height: 8rem; } }

.site-logo--mobile { display: flex; }
.site-logo--desktop { display: none; }
@media (min-width: 1024px) {
  .site-logo--mobile { display: none; }
  .site-logo--desktop { display: flex; }
}

.site-nav__desktop {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
}
@media (min-width: 1024px) { .site-nav__desktop { display: flex; } }

.site-nav__left, .site-nav__right { flex: 1; display: flex; }
.site-nav__left { justify-content: flex-end; }
.site-nav__right { justify-content: flex-start; }

.theme-nav-list { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.theme-nav-list--left { justify-content: flex-end; }
.theme-nav-list--right { justify-content: flex-start; }
.theme-nav-list a {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: inherit;
}
.site-logo--desktop { margin: 0 4rem; flex-shrink: 0; }

.site-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) { .site-nav__actions .mobile-menu-toggle { display: none; } }

.cart-btn {
  position: relative;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  color: inherit;
  transition: opacity 0.2s;
}
.cart-btn:hover { opacity: 0.6; }

.theme-cart-count {
  position: absolute;
  top: -2px; right: -2px;
  width: 1.25rem; height: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem;
  font-weight: 500;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle {
  padding: 0.5rem;
  color: inherit;
  transition: opacity 0.2s;
}
.mobile-menu-toggle:hover { opacity: 0.6; }
.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle.is-open .icon-menu { display: none; }
.mobile-menu-toggle.is-open .icon-close { display: block; }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--color-border);
  padding: 1rem 0;
}
.mobile-menu.is-open { display: block; animation: fadeIn 0.2s ease; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 1rem; }
.mobile-menu__list a {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  transition: opacity 0.2s;
}
.mobile-menu__list a:hover { opacity: 0.6; }

/* -----------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--color-foreground);
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s ease, transform 1s ease;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }

.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-slide__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.1);
}

.hero-content {
  position: relative; z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-primary-foreground);
  text-align: center;
  padding: 0 1.5rem;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-heading.is-active { opacity: 1; animation: fadeIn 0.6s var(--transition-smooth) forwards; }

.hero-bottom {
  position: absolute; bottom: 3rem;
  left: 0; right: 0;
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}

.btn-hero-cta {
  background: var(--color-primary-foreground);
  color: var(--color-foreground);
  padding: 0.75rem 2.5rem;
  font-size: 0.8125rem;
}
.btn-hero-cta:hover { background: rgba(255,255,255,0.9); opacity: 1; }

.hero-dots { display: flex; gap: 0.5rem; }
.hero-dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  transition: all 0.5s ease;
  cursor: pointer;
}
.hero-dot.is-active { background: rgba(255,255,255,1); width: 1.5rem; border-radius: 4px; }

/* -----------------------------------------------------------------------
   Brand Statement Bar
   ----------------------------------------------------------------------- */
.brand-statement-bar {
  background: var(--color-foreground);
  color: var(--color-background);
}
.brand-statement-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
}
.brand-statement-text,
.brand-statement-sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.brand-statement-sep { opacity: 0.3; }

/* -----------------------------------------------------------------------
   Curated Picks
   ----------------------------------------------------------------------- */
.curated-section { padding: 5rem 0; }
.curated-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 1024px) { .curated-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.curated-item {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-secondary);
}
.curated-item__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.curated-item__img-wrap { position: relative; z-index: 0; width: 100%; height: 100%; }
.curated-item__img { width: 100%; height: 100%; object-fit: cover; }
.curated-item:hover .curated-item__img.image-zoom { transform: scale(1.05); }
.curated-item__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: transparent;
  display: flex; align-items: flex-end; padding: 1rem;
  transition: background 0.5s ease;
  pointer-events: none;
}
.curated-item:hover .curated-item__overlay { background: rgba(0,0,0,0.4); }
.curated-item__info {
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.5s ease;
}
.curated-item:hover .curated-item__info { transform: translateY(0); opacity: 1; }
.curated-item__cat { font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.125rem; }
.curated-item__name { font-family: var(--font-display); font-size: 0.875rem; color: #fff; font-weight: 500; }
.curated-item__price { font-size: 0.75rem; color: rgba(255,255,255,0.8); margin-top: 0.125rem; }

/* -----------------------------------------------------------------------
   Brand Manifesto
   ----------------------------------------------------------------------- */
.manifesto-section {
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 6rem 0;
}
.manifesto-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.manifesto-ornament {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 2rem;
}
.manifesto-line { display: block; width: 2.5rem; height: 1px; background: rgba(255,255,255,0.3); }
.manifesto-diamond { display: block; width: 0.5rem; height: 0.5rem; border: 1px solid rgba(255,255,255,0.3); transform: rotate(45deg); }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--color-background);
}
.manifesto-description { color: rgba(255,255,255,0.6); max-width: 32rem; margin: 0 auto 2.5rem; }
.btn-manifesto {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 2rem;
  height: 2.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--color-background);
  transition: background 0.2s;
}
.btn-manifesto:hover { background: rgba(255,255,255,0.1); opacity: 1; }

/* -----------------------------------------------------------------------
   Manifesto Video
   ----------------------------------------------------------------------- */
.manifesto-video-section {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.manifesto-video { width: 100%; height: 100%; object-fit: cover; }
.manifesto-video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }

/* -----------------------------------------------------------------------
   Shop Section
   ----------------------------------------------------------------------- */
.shop-section { padding: 5rem 0; }

.shop-controls { margin-bottom: 3rem; }
.shop-search-wrap {
  position: relative;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
.shop-search-icon {
  position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%);
  color: var(--color-muted-foreground);
}
.shop-search {
  width: 100%; height: 2.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-background);
  padding: 0 2.5rem 0 2.5rem;
  font-size: 0.875rem;
  color: var(--color-foreground);
  outline: none;
  transition: box-shadow 0.2s;
}
.shop-search:focus { box-shadow: 0 0 0 2px var(--color-primary); }
.shop-search::placeholder { color: var(--color-muted-foreground); }
.shop-search-clear {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  color: var(--color-muted-foreground);
  transition: color 0.2s;
}
.shop-search-clear:hover { color: var(--color-foreground); }

.shop-categories { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.shop-cat-btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-secondary);
  color: var(--color-secondary-foreground);
  transition: background 0.3s, color 0.3s;
}
.shop-cat-btn:hover { background: var(--color-muted); }
.shop-cat-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); }

.shop-load-more { text-align: center; margin-top: 2rem; }
.shop-empty { text-align: center; padding: 5rem 0; }
.shop-empty-text { color: var(--color-muted-foreground); margin-bottom: 1rem; }

/* -----------------------------------------------------------------------
   Product Grid & Cards
   ----------------------------------------------------------------------- */
.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1rem;
  align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
  display: flex; flex-direction: column;
  height: 100%;
}
.theme-product-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-secondary);
  margin-bottom: 1rem;
}
.theme-card-image-link {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.theme-product-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.theme-product-card__category {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted-foreground);
}
.theme-product-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
  margin: 0;
}
.theme-product-card__name-link { color: inherit; transition: opacity 0.2s; }
.theme-product-card__name-link:hover { opacity: 0.7; }
.theme-product-card__price { font-size: 0.875rem; color: var(--color-muted-foreground); }

.theme-product-card__quick-add {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: var(--color-foreground);
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.theme-product-card__quick-add:hover {
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  transform: scale(1.1);
  opacity: 1;
}

/* -----------------------------------------------------------------------
   Statement Section
   ----------------------------------------------------------------------- */
.statement-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
}
@media (min-width: 1024px) { .statement-section { grid-template-columns: 1fr 1fr; } }

.statement-text-col {
  background: var(--color-foreground);
  color: var(--color-background);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}
@media (min-width: 1024px) { .statement-text-col { padding: 5rem; } }

.statement-text-inner {
  width: 100%;
  max-width: 28rem;
  text-align: left;
}

.statement-text-col .section-label { color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.statement-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-background);
  margin-bottom: 1.5rem;
}
.statement-description { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 2rem; }
.btn-statement {
  background: var(--color-background);
  color: var(--color-foreground);
  padding: 0 2rem;
  height: 2.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-statement:hover { background: rgba(255,255,255,0.9); opacity: 1; }

.statement-video-col { position: relative; overflow: hidden; background: var(--color-foreground); min-height: 50vh; }
@media (min-width: 1024px) { .statement-video-col { min-height: unset; } }
.statement-video { width: 100%; height: 100%; object-fit: cover; transition: filter 0.5s ease, opacity 0.5s ease; }
.statement-video.is-glitching { filter: blur(20px) brightness(1.2); opacity: 0.3; }
.statement-video-overlay-text {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-background);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.statement-video-overlay-text.is-visible { opacity: 1; }

/* -----------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------- */
.faq-section { padding: 5rem 0; }
.faq-list { max-width: 40rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--color-border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  list-style: none;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(0,0,0,0.03); }
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  color: var(--color-muted-foreground);
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 1.25rem 1.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.7; }

/* -----------------------------------------------------------------------
   Parallax
   ----------------------------------------------------------------------- */
.parallax-section { position: relative; height: 70vh; overflow: hidden; }
.parallax-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }

/* -----------------------------------------------------------------------
   Contact CTA
   ----------------------------------------------------------------------- */
.contact-cta-section {
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 6rem 0;
}
.contact-cta-inner { text-align: center; }
.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--color-background);
  margin-bottom: 1rem;
}
.contact-cta-description { color: rgba(255,255,255,0.6); max-width: 28rem; margin: 0 auto 2rem; }
.btn-contact-cta {
  background: var(--color-background);
  color: var(--color-foreground);
  padding: 0 2rem;
  height: 3rem;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-contact-cta:hover { background: rgba(255,255,255,0.9); opacity: 1; }

/* -----------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-background); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; padding: 4rem 0; } }

.footer-description { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 22rem; line-height: 1.6; }
.footer-heading { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer-nav-list a { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s; }
.footer-nav-list a:hover { color: var(--color-foreground); }

.footer-connect-list { display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.footer-email-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.footer-email-link { transition: color 0.2s; }
.footer-email-link:hover { color: var(--color-foreground); }
.footer-social-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-social-link { font-size: 0.875rem; color: var(--color-muted-foreground); transition: color 0.2s; }
.footer-social-link:hover { color: var(--color-foreground); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-copyright, .footer-currency, .footer-credit { font-size: 0.75rem; color: var(--color-muted-foreground); }
.footer-credit a { text-decoration: underline; transition: color 0.2s; }
.footer-credit a:hover { color: var(--color-foreground); }

/* -----------------------------------------------------------------------
   Back Link
   ----------------------------------------------------------------------- */
.back-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--color-muted-foreground);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--color-foreground); }

/* -----------------------------------------------------------------------
   Inner Page Spacing
   ----------------------------------------------------------------------- */
.theme-inner-page { padding-top: var(--header-height); }
.theme-no-hero .site-main { padding-top: var(--header-height); }

/* -----------------------------------------------------------------------
   About Page
   ----------------------------------------------------------------------- */
.about-hero { text-align: center; margin-bottom: 5rem; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-top: 1rem; margin-bottom: 2rem;
}
.about-intro { font-size: 1.125rem; color: var(--color-muted-foreground); line-height: 1.7; max-width: 48rem; margin: 0 auto; }

.about-philosophy { max-width: 40rem; margin: 0 auto 5rem; }
.about-para { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; }

.about-video-wrap { position: relative; width: 100%; margin-bottom: 1rem; overflow: hidden; }
.about-video { width: 100%; height: auto; display: block; }
.about-video-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }

.about-owner {
  background: var(--color-foreground);
  color: var(--color-background);
  padding: 2.5rem 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) { .about-owner { padding: 4rem; } }
.about-owner__inner {
  max-width: 48rem; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
}
@media (min-width: 768px) { .about-owner__inner { flex-direction: row; } }
.about-owner__photo-wrap {
  width: 12rem; height: 12rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
}
@media (min-width: 768px) { .about-owner__photo-wrap { width: 14rem; height: 14rem; } }
.about-owner__photo { width: 100%; height: 100%; object-fit: cover; }
.about-owner__bio { text-align: center; }
@media (min-width: 768px) { .about-owner__bio { text-align: left; } }
.about-owner__name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  color: var(--color-background);
  margin-bottom: 1rem;
}
.about-owner__para { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1rem; }

.about-vision { text-align: center; margin-bottom: 5rem; }
.about-vision__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.about-vision__text { color: var(--color-muted-foreground); line-height: 1.7; max-width: 40rem; margin: 0 auto 2.5rem; }

/* -----------------------------------------------------------------------
   Contact Page
   ----------------------------------------------------------------------- */
.contact-wrap { max-width: 40rem; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-intro { color: var(--color-muted-foreground); }

.contact-email-block {
  padding: 1.5rem;
  background: var(--color-secondary);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--color-muted-foreground);
  margin-bottom: 2.5rem;
}
.contact-email-link { transition: color 0.2s; }
.contact-email-link:hover { color: var(--color-foreground); }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; gap: 1.5rem; }
.form-row--2col { grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-foreground);
  outline: none;
  transition: box-shadow 0.2s;
}
.form-input:focus { box-shadow: 0 0 0 1px var(--color-primary); }
.form-input::placeholder { color: var(--color-muted-foreground); }
.form-textarea { resize: none; }
.form-select { -webkit-appearance: none; cursor: pointer; }

.contact-submit { align-self: flex-start; }
@media (min-width: 768px) { .contact-submit { align-self: flex-start; } }

.contact-success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; padding: 5rem 0; }
.contact-success__icon {
  width: 4rem; height: 4rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-foreground);
}
.contact-success__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 500; }
.contact-success__msg { color: var(--color-muted-foreground); }

/* -----------------------------------------------------------------------
   404 Page
   ----------------------------------------------------------------------- */
.not-found-wrap { text-align: center; padding: 8rem 0; }
.not-found-title { font-family: var(--font-display); font-size: 6rem; font-weight: 700; margin-bottom: 1rem; opacity: 0.2; }
.not-found-message { font-size: 1.125rem; color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* -----------------------------------------------------------------------
   Cart Drawer
   ----------------------------------------------------------------------- */
#theme-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%; max-width: 28rem;
  background: var(--color-background);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--transition-smooth);
  box-shadow: var(--shadow-elevated);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; }
.cart-drawer-close { padding: 0.25rem; opacity: 0.7; transition: opacity 0.2s; }
.cart-drawer-close:hover { opacity: 1; }

.cart-drawer-empty {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center; gap: 1.5rem;
  color: var(--color-muted-foreground);
}

.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

.cart-item { display: flex; gap: 1rem; }
.cart-item__img-link {
  display: flex;
  justify-content: center;
  width: 5rem; height: 6rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; border-radius: var(--radius);
}
.cart-item__img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: opacity 0.2s; }
.cart-item__name:hover { opacity: 0.7; }
.cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.cart-item__attr { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.cart-qty-btn {
  width: 1.5rem; height: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-secondary);
  border-radius: var(--radius);
  font-size: 1rem; font-weight: 500;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--color-muted); }
.cart-item__qty { font-size: 0.875rem; min-width: 1.5rem; text-align: center; }
.cart-remove-btn { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.2s; }
.cart-remove-btn:hover { color: var(--color-foreground); }

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex; flex-direction: column; gap: 1rem;
}
.cart-drawer-subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.cart-drawer-subtotal__label { color: var(--color-muted-foreground); }
.cart-drawer-subtotal__value { font-weight: 500; }
.cart-drawer-shipping-note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.cart-checkout-btn { text-decoration: none; }

/* -----------------------------------------------------------------------
   Single Product Page
   ----------------------------------------------------------------------- */
.single-product .theme-product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .single-product .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }
.single-product .theme-product-thumbnails { flex-wrap: wrap; max-width: 100%; }
.single-product .theme-add-to-cart-area { flex-wrap: wrap; gap: 0.75rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.single-product .woocommerce-product-details__short-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.product-back-link-wrap { padding: 1.5rem 0; }

.single-product .product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .single-product .product { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.product-main-img-wrap { overflow: hidden; background: var(--color-secondary); margin-bottom: 0.75rem; }
.product-main-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.theme-product-thumbnails { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-thumb-btn {
  width: 4.5rem; height: 5.5rem;
  overflow: hidden; border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.product-thumb-btn.is-active { border-color: var(--color-foreground); }
.product-thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

.single-product__info { padding-top: 0; }
@media (min-width: 1024px) { .single-product__info { padding-top: 2.5rem; } }

.product-category {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-muted-foreground);
  display: block; margin-bottom: 0.5rem;
}
.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.product-price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.product-sold-out { display: inline-block; padding: 0.5rem 1rem; background: var(--color-muted); color: var(--color-muted-foreground); font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.product-description { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; white-space: pre-line; }

/* Attribute buttons */
.theme-attr-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; }
.theme-attr-btn {
  min-width: 3rem; padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  background: transparent;
  transition: all 0.2s;
}
.theme-attr-btn:hover { border-color: var(--color-foreground); }
.theme-attr-btn.is-active { border-color: var(--color-foreground); background: var(--color-foreground); color: var(--color-background); }
.theme-attr-select-hidden { display: none !important; }

/* Variations table layout */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

/* Quantity */
.theme-add-to-cart-area { display: flex; align-items: stretch; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.single_variation_wrap .theme-add-to-cart-area { flex-wrap: nowrap; align-items: stretch; }
@media (max-width: 380px) { .single_variation_wrap .theme-add-to-cart-area { flex-wrap: wrap; } }
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-qty-minus, .theme-qty-plus {
  padding: 0.75rem 1rem;
  font-size: 1.125rem; line-height: 1;
  transition: background 0.2s;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
  width: 2.5rem; text-align: center;
  border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
  font-size: 0.875rem; padding: 0.75rem 0.25rem;
  outline: none; -moz-appearance: textfield;
}
.theme-qty-input::-webkit-inner-spin-button,
.theme-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.product-details-section { border-top: 1px solid var(--color-border); padding-top: 2rem; }
.product-details-title { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.product-details-content { color: var(--color-muted-foreground); font-size: 0.875rem; line-height: 1.7; }
.product-details-content ul { list-style: none; }
.product-details-content li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.product-details-content li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--color-foreground);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4rem;
}

/* Related products */
.related-products { padding-top: 5rem; padding-bottom: 5rem; border-top: 1px solid var(--color-border); }
.related-products__title { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; margin-bottom: 2.5rem; }

/* -----------------------------------------------------------------------
   WooCommerce: Add to Cart Button Override
   ----------------------------------------------------------------------- */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !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: var(--btn-text-transform) !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  text-decoration: none !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
  opacity: 0.85 !important;
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !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-primary) !important;
}

/* Card compact quick-add button override */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-product-card__quick-add.add_to_cart_button.ajax_add_to_cart {
  min-height: unset !important;
  padding: 0 !important;
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 0 !important;
  background-color: rgba(255,255,255,0.9) !important;
  color: var(--color-foreground) !important;
  box-shadow: var(--shadow-soft) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0 !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart svg,
.theme-product-card__quick-add.add_to_cart_button.ajax_add_to_cart svg { width: 14px !important; height: 14px !important; }
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover,
.theme-product-card__quick-add.add_to_cart_button.ajax_add_to_cart:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  transform: scale(1.1);
  opacity: 1 !important;
}

/* Hide WooCommerce "View cart" after AJAX add */
.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; }

/* Button lock during AJAX */
.ajax_add_to_cart.theme-btn-loading {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: wait !important;
}

/* -----------------------------------------------------------------------
   WooCommerce: Notices
   ----------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  border-left: 4px solid;
}
.woocommerce-message { border-left-color: var(--color-primary); background: var(--color-secondary); }
.woocommerce-error { border-left-color: #dc2626; background: #fef2f2; }
.woocommerce-info { border-left-color: var(--color-muted-foreground); background: var(--color-secondary); }

/* -----------------------------------------------------------------------
   WooCommerce: Checkout
   ----------------------------------------------------------------------- */
body.woocommerce-checkout .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}

body.woocommerce-checkout #main-content.site-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

body.woocommerce-checkout .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  padding: 2rem 0 1.5rem;
}

body.woocommerce-checkout .wc-block-checkout { display: block; }

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--checkout-gap, 2rem);
    align-items: start;
  }
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0; width: 100%; max-width: none;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
  width: 100% !important; max-width: none !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  outline: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
  box-shadow: 0 0 0 1px var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: var(--color-primary) !important;
  color: var(--color-primary-foreground) !important;
  border: none !important;
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 0 2rem !important;
  min-height: 44px !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85 !important; }

body.woocommerce-checkout h2 { font-family: var(--font-display); font-weight: 500; }

/* -----------------------------------------------------------------------
   WooCommerce: Thank You Page
   ----------------------------------------------------------------------- */
body.theme-thankyou-page #main-content.site-main {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}
body.theme-thankyou-page .thankyou-page { margin: 0 auto; }
body.theme-thankyou-page .woocommerce-thankyou-page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  padding: 2rem 0 1.5rem;
  margin: 0;
}
body.theme-thankyou-page .woocommerce-order { max-width: none; margin: 0; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  padding: 0 0 1rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
  display: flex; flex-wrap: wrap; gap: 1rem;
  background: var(--color-secondary);
  padding: 1.5rem;
  margin-bottom: 2rem;
  list-style: none;
}
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--color-border); font-size: 0.875rem; }
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 { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-customer-details {
  display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem;
}
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; font-style: normal; font-size: 0.875rem; line-height: 1.7; }

/* -----------------------------------------------------------------------
   Page title (inner pages)
   ----------------------------------------------------------------------- */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  padding: 2rem 0 1.5rem;
}

/* -----------------------------------------------------------------------
   Archive product page spacing
   ----------------------------------------------------------------------- */
.archive-product .container-wide { padding-top: 2.5rem; padding-bottom: 5rem; }
.archive-product .section-header h1, .archive-product .woocommerce-products-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
}
