/* ==========================================================================
   Sweet Haven Crepes and Bakery — theme stylesheet
   ========================================================================== */

:root {
  --radius: 1rem;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --shadow-soft: 0 12px 30px -18px rgba(107, 33, 168, 0.28);
  --shadow-elevated: 0 24px 60px -28px rgba(107, 33, 168, 0.32);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --btn-radius: 999px;
  --btn-height: 44px;
  --btn-padding: 0 1.75rem;
  --btn-font-size: 0.75rem;
  --btn-font-weight: 500;
  --btn-letter-spacing: 0.16em;
  --btn-text-transform: uppercase;
  --btn-icon-padding: 0.6rem;
  --card-radius: 1rem;
  --section-padding: 2rem;
  --header-height: 96px;
  --checkout-gap: 2rem;
}
@media (min-width: 1024px) {
  :root { --header-height: 112px; }
}

/* ---------------------------------------------------------------------- */
/* Reset / base                                                            */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700; /* reference design: h1..h6 default to bold — typography parity */
  font-size: inherit;
  margin: 0;
  letter-spacing: -0.015em;
  color: inherit;
  text-wrap: balance;
  padding-bottom: 0.06em;
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em { padding-right: 0.06em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Cover / full-bleed images (Section 15.1). The base `img` rule above is
   intentionally LOW specificity (element-only) so every component-scoped
   image rule below (cart item thumb, product thumbnails, etc.) naturally
   wins the cascade and can set height:100% inside a defined-height
   container without needing an ever-growing :not() exclusion list. */
.cover-img, .theme-product-card-img, .theme-about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.container-wide {
  width: 100%;
  max-width: 1280px; /* reference design: max-w-7xl (80rem) — container width parity */
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container-wide { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-muted-foreground);
}
.brass-rule { display: block; height: 1px; width: 3rem; background: var(--color-primary); margin: 2rem 0; }

.chef-pill, .chef-pill-dark {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 999px; padding: 0.4rem 0.9rem;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em;
}
.chef-pill { border: 1px solid var(--color-border); background: #fff; color: var(--color-foreground); }
.chef-pill-dark { border: 1px solid color-mix(in srgb, var(--color-background) 25%, transparent); background: color-mix(in srgb, var(--color-background) 10%, transparent); color: var(--color-background); }

/* ---------------------------------------------------------------------- */
/* Animations (Section 2.1)                                                */
/* ---------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.animate-fade-in { animation: fadeIn 0.7s var(--transition-smooth) forwards; }
.animate-slide-up { animation: slideUp 0.7s var(--transition-smooth) forwards; }
.animate-scale-in { animation: scaleIn 0.6s var(--transition-smooth) forwards; }

.reveal, .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
  will-change: opacity, transform;
}
.reveal.is-visible, .reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* Customizer preview fallback: never hide content while editing (Section 2.1.5) */
body.is-customizer .reveal,
body.is-customizer .reveal-item {
  opacity: 1 !important;
  transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-item, .animate-fade-in, .animate-slide-up, .animate-scale-in {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.theme-btn-primary, .theme-btn-outline, .theme-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--btn-radius);
  min-height: var(--btn-height);
  padding: var(--btn-padding);
  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: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.theme-btn-lg { min-height: 52px; padding: 0 2rem; }
.theme-btn-sm { min-height: 36px; padding: 0 1.25rem; }
.theme-btn-primary {
  background: var(--color-primary);
  color: var(--color-button-text);
  box-shadow: 0 2px 0 0 color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.theme-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.theme-btn-outline {
  background: transparent;
  color: var(--color-foreground);
  border: 1px solid var(--color-border);
}
.theme-btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-btn-outline-dark {
  background: transparent;
  color: var(--color-background);
  border: 1px solid color-mix(in srgb, var(--color-background) 40%, transparent);
}
.theme-btn-outline-dark:hover { background: color-mix(in srgb, var(--color-background) 10%, transparent); }
.single_add_to_cart_button.disabled,
.theme-btn-primary.disabled { opacity: 0.4; pointer-events: none; cursor: not-allowed; }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 0.5s ease, border-color 0.5s ease;
  background: transparent;
  --header-height: 96px;
}
.site-header.is-scrolled { --header-height: 80px; }
@media (min-width: 1024px) {
  .site-header { --header-height: 112px; }
  .site-header.is-scrolled { --header-height: 96px; }
}
.site-header.is-solid,
.site-header.menu-is-open {
  background: var(--color-background);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-border);
}
.site-header.menu-is-open {
  backdrop-filter: none;
  border-bottom-color: var(--color-background);
}
.site-header__gradient {
  position: absolute; inset: 0 0 auto 0; height: 8rem; pointer-events: none;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--color-noir) 55%, transparent), color-mix(in srgb, var(--color-noir) 25%, transparent), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.site-header:not(.is-solid):not(.menu-is-open) .site-header__gradient { opacity: 1; }
.site-header.menu-is-open .site-header__gradient { opacity: 0; }
.site-header__inner { position: relative; z-index: 1; }
.site-header__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  height: var(--header-height); transition: height 0.3s ease;
}
.site-header__brand {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0;
  flex-shrink: 0; min-width: 0; max-width: calc(100% - 7.5rem);
}
.site-logo-img {
  height: 60px; width: auto; max-height: 60px; object-fit: contain; transition: height 0.3s ease, max-height 0.3s ease;
}
@media (min-width: 768px) {
  .site-logo-img { height: var(--logo-height, 78px); max-height: none; }
}
.site-header.is-scrolled .site-logo-img { height: 52px; max-height: 52px; }
@media (min-width: 768px) {
  .site-header.is-scrolled .site-logo-img { height: 60px; max-height: none; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); }
.site-header:not(.is-solid):not(.menu-is-open) .site-logo-text { color: var(--color-background); }
.site-header__brand-text { font-family: var(--font-display); font-size: 1rem; }

.site-header__links { display: none; align-items: center; gap: 1.5rem; margin-left: auto; }
@media (min-width: 1024px) { .site-header__links { display: flex; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.theme-nav-list a, .site-header__phone {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  color: var(--color-foreground); position: relative; transition: color 0.3s ease;
}
.site-header:not(.is-solid):not(.menu-is-open) .theme-nav-list a,
.site-header:not(.is-solid):not(.menu-is-open) .site-header__phone { color: var(--color-background); }
.theme-nav-list a::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--transition-smooth);
}
.theme-nav-list a:hover::after { transform: scaleX(1); }
.site-header__phone { display: inline-flex; align-items: center; gap: 0.4rem; }
.site-header__cta {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 0.6rem 1.25rem;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  background: var(--color-primary); color: var(--color-button-text);
}
.site-header__cta:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; margin-left: auto; }
@media (min-width: 1024px) { .site-header__actions { margin-left: 0; } }
.site-header__cart-btn, .site-header__menu-toggle {
  position: relative; padding: 0.75rem; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--color-foreground); transition: color 0.3s ease;
}
.site-header:not(.is-solid):not(.menu-is-open) .site-header__cart-btn,
.site-header:not(.is-solid):not(.menu-is-open) .site-header__menu-toggle { color: var(--color-background); }
.site-header.menu-is-open .site-header__cart-btn,
.site-header.menu-is-open .site-header__menu-toggle { color: var(--color-foreground); }
.theme-cart-count {
  position: absolute; top: 2px; right: 2px; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; background: var(--color-accent); color: #fff; border-radius: 999px;
}
.theme-cart-count:empty { display: none; }
.site-header__menu-toggle .icon-close { display: none; }
.site-header.menu-is-open .icon-menu { display: none; }
.site-header.menu-is-open .icon-close { display: block; }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__mobile {
  display: none;
  border-top: 1px solid var(--color-background);
  padding: 1rem 0 1.25rem;
  background: var(--color-background);
}
.site-header__mobile[hidden] { display: none !important; }
.site-header.menu-is-open .site-header__mobile { display: block; animation: fadeIn 0.4s ease; }
.site-header__mobile-list,
.site-header__mobile .theme-nav-list {
  display: flex; flex-direction: column; gap: 0.25rem; list-style: none; margin: 0; padding: 0;
}
.site-header__mobile-list li,
.site-header__mobile .theme-nav-list li { margin: 0; }
.site-header__mobile-list a,
.site-header__mobile .theme-nav-list a,
.site-header__mobile-phone,
.site-header__mobile-cta {
  display: block; width: 100%; padding: 0.75rem 0.5rem; min-height: 44px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
  border-radius: 0.375rem; transition: color 0.3s ease, background-color 0.3s ease;
}
.site-header__mobile-list a:hover,
.site-header__mobile .theme-nav-list a:hover,
.site-header__mobile-phone:hover {
  color: var(--color-primary);
  background: var(--color-secondary);
}
.site-header__mobile-list a::after { display: none; }
.site-header__mobile-phone {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem;
  letter-spacing: 0.18em;
}
.site-header__mobile-cta {
  margin-top: 0.5rem; text-align: center; border-radius: 999px;
  background: var(--color-primary); color: var(--color-button-text);
  display: flex; align-items: center; justify-content: center;
}
.site-header__mobile-cta:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); color: var(--color-button-text); }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }

body.menu-is-open { overflow: hidden; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.theme-hero {
  position: relative; width: 100%; overflow: hidden;
  min-height: 100svh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--color-noir);
}
@media (min-width: 1024px) { .theme-hero { height: 100vh; min-height: 720px; } }
.theme-hero__media { position: absolute; inset: 0; }
.theme-hero__video { animation: hero-ken-burns 24s ease-in-out infinite alternate; }
@keyframes hero-ken-burns { from { transform: scale(1); } to { transform: scale(1.12); } }
.theme-hero__scrim-1 { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-noir) 25%, transparent); pointer-events: none; }
.theme-hero__scrim-2 {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-noir) 75%, transparent), color-mix(in srgb, var(--color-noir) 30%, transparent), color-mix(in srgb, var(--color-noir) 10%, transparent));
}
.theme-hero__content {
  position: relative; z-index: 10; width: 100%;
  padding-top: calc(var(--header-height, 96px) + 1rem);
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) { .theme-hero__content { padding-bottom: 5rem; padding-top: calc(var(--header-height, 96px) + 1.5rem); } }
@media (min-width: 1024px) { .theme-hero__content { padding-bottom: 6rem; } }
.theme-hero__inner { max-width: 56rem; }
.theme-hero__eyebrow { color: var(--color-brass-light); margin-bottom: 1.25rem; }
.theme-hero__title {
  font-family: var(--font-display); color: var(--color-background);
  font-size: clamp(1.65rem, 7.5vw, 2.25rem); line-height: 1.05; letter-spacing: -0.015em; text-wrap: balance;
}
@media (min-width: 640px) { .theme-hero__title { font-size: 3rem; } }
@media (min-width: 768px) { .theme-hero__title { font-size: 4.25rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 5.25rem; } }
.theme-hero__title em { color: var(--color-brass-light); font-style: italic; display: block; margin-top: 0.25rem; }
.theme-hero__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
@media (min-width: 768px) { .theme-hero__pills { margin-top: 1.75rem; } }
.theme-hero__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .theme-hero__actions { margin-top: 2rem; } }
@media (min-width: 640px) { .theme-hero__actions { flex-direction: row; flex-wrap: wrap; } }
.theme-hero__actions button { width: 100%; }
@media (min-width: 640px) { .theme-hero__actions button { width: auto; } }
@media (max-width: 639px) {
  .theme-hero .chef-pill-dark { font-size: 10px; padding: 0.35rem 0.75rem; letter-spacing: 0.14em; }
}

/* ---------------------------------------------------------------------- */
/* Generic sections                                                        */
/* ---------------------------------------------------------------------- */
.theme-section { border-top: 1px solid var(--color-border); background: var(--color-background); }
.theme-section > .container-wide { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .theme-section > .container-wide { padding-top: 7rem; padding-bottom: 7rem; } }
.theme-surface-noir { background: var(--color-noir); color: var(--color-background); border-top: none; border-bottom: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); }
.theme-surface-noir .eyebrow { color: var(--color-brass-light); }

.section-heading { font-size: 1.875rem; line-height: 1.05; text-wrap: balance; }
.section-heading em { color: var(--color-primary); font-style: italic; }
.theme-surface-noir .section-heading em { color: var(--color-brass-light); }

/* Per-section heading scales (Section 2.2.5) — verified against exact
   Tailwind classes per component in src/components + src/pages. */

/* text-3xl md:text-5xl lg:text-6xl — Categories, Shop, FAQ, Contact, Pillars, Services */
.theme-categories-section .section-heading,
.theme-shop-section .section-heading,
.theme-pillars-section .section-heading,
.theme-services-section .section-heading,
.theme-faq-section .section-heading,
.theme-contact-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) {
  .theme-categories-section .section-heading,
  .theme-shop-section .section-heading,
  .theme-pillars-section .section-heading,
  .theme-services-section .section-heading,
  .theme-faq-section .section-heading,
  .theme-contact-section .section-heading { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .theme-categories-section .section-heading,
  .theme-shop-section .section-heading,
  .theme-pillars-section .section-heading,
  .theme-services-section .section-heading,
  .theme-faq-section .section-heading,
  .theme-contact-section .section-heading { font-size: 3.75rem; }
}

/* text-3xl md:text-4xl lg:text-5xl — About (Index.tsx About section) and
   Owner Story (Index.tsx OwnerSection) share this smaller scale. */
.theme-about-section .section-heading,
.theme-story-section .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-about-section .section-heading, .theme-story-section .section-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-about-section .section-heading, .theme-story-section .section-heading { font-size: 3rem; } }

.theme-section__header { margin-bottom: 3rem; }
@media (min-width: 768px) { .theme-section__header { margin-bottom: 4rem; } }
.theme-section__header--center { max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; }
.theme-section__header--split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: end; }
@media (min-width: 768px) { .theme-section__header--split { grid-template-columns: 7fr 5fr; gap: 3rem; } }
.theme-section__header-main .eyebrow { margin-bottom: 1rem; }
.theme-section__header-aside { color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; }
.theme-surface-noir .theme-section__header-aside { color: color-mix(in srgb, var(--color-background) 70%, transparent); }
.theme-section__header-aside .theme-btn-outline { margin-top: 1rem; }

/* ---------------------------------------------------------------------- */
/* Categories section                                                      */
/* ---------------------------------------------------------------------- */
.theme-categories-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .theme-categories-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-categories-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.75rem; } }
.theme-category-card {
  position: relative; min-height: 340px; border-radius: 1rem; border: 1px solid var(--color-border);
  background: #fff; overflow: hidden; padding: 0; text-align: left; width: 100%; display: block;
  transition: border-color 0.5s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (min-width: 768px) { .theme-category-card { min-height: 380px; } }
.theme-category-card__bg { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.theme-category-card:hover .theme-category-card__bg { opacity: 1; }
.theme-category-card__bg img { transform: scale(1.05); transition: transform 1.2s ease; }
.theme-category-card:hover .theme-category-card__bg img { transform: scale(1.1); }
.theme-category-card__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-noir) 70%, transparent); }
.theme-category-card__content {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
  height: 100%; padding: 2rem 2.25rem; color: var(--color-primary); transition: color 0.5s ease;
}
.theme-category-card:hover .theme-category-card__content { color: var(--color-background); }
.theme-category-card__icon { width: 32px; height: 32px; }
@media (min-width: 768px) { .theme-category-card__icon { width: 36px; height: 36px; } }
.theme-category-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; margin-top: 1.5rem; color: var(--color-foreground); transition: color 0.5s ease; text-wrap: balance; }
@media (min-width: 768px) { .theme-category-card__title { font-size: 1.75rem; } }
.theme-category-card:hover .theme-category-card__title { color: var(--color-background); }
.theme-category-card__desc {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  font-weight: 300;
  line-height: 1.625;
  max-width: 28ch;
  transition: color 0.5s ease;
}
@media (min-width: 768px) { .theme-category-card__desc { font-size: 15px; } }
.theme-category-card:hover .theme-category-card__desc { color: color-mix(in srgb, var(--color-background) 85%, transparent); }
.theme-category-card__content p, .theme-category-card__desc { flex: 0; }
.theme-category-card__cta {
  margin-top: auto; padding-top: 2rem; display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
}
.theme-category-card__cta svg { transition: transform 0.5s ease; }
.theme-category-card:hover .theme-category-card__cta svg { transform: translateX(4px); }

/* ---------------------------------------------------------------------- */
/* Pillars                                                                 */
/* ---------------------------------------------------------------------- */
.theme-pillars-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .theme-pillars-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-pillars-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.theme-pillar-card {
  position: relative; background: var(--color-noir-soft); border-radius: 1rem; padding: 1.75rem;
  border: 1px solid color-mix(in srgb, var(--color-background) 5%, transparent);
  transition: background-color 0.5s ease;
}
@media (min-width: 768px) { .theme-pillar-card { padding: 2.5rem; } }
.theme-pillar-card:hover { background: var(--color-noir); }
.theme-pillar-card__icon { color: var(--color-brass-light); margin-bottom: 2rem; transition: transform 0.5s ease; }
.theme-pillar-card:hover .theme-pillar-card__icon { transform: translateY(-2px) scale(1.1); }
.theme-pillar-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-pillar-card h3 { font-size: 1.5rem; } }
.theme-pillar-card p { font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: color-mix(in srgb, var(--color-background) 70%, transparent); }

/* ---------------------------------------------------------------------- */
/* Shop / product grid / cards                                             */
/* ---------------------------------------------------------------------- */
.theme-shop-filters { background: #fff; border: 1px solid var(--color-border); border-radius: 1rem; padding: 1.25rem; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 768px) { .theme-shop-filters { padding: 1.5rem; } }
.theme-shop-filters__row { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-shop-filters__row { flex-direction: row; } }
.theme-shop-search { position: relative; flex: 1; }
.theme-shop-search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.theme-shop-search input {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; min-height: 44px; background: var(--color-background);
  border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem;
}
.theme-shop-search input:focus { outline: none; border-color: var(--color-primary); }
.theme-shop-sort { position: relative; }
@media (min-width: 640px) { .theme-shop-sort { width: 14rem; } }
.theme-shop-sort svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); pointer-events: none; }
.theme-shop-sort select {
  width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; min-height: 44px; background: var(--color-background);
  border: 1px solid var(--color-border); border-radius: 999px; font-size: 0.875rem; appearance: none; cursor: pointer;
}
.theme-shop-categories__list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.75rem; }
.theme-filter-chip {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 999px; padding: 0.65rem 1rem; min-height: 44px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--color-border); background: var(--color-background); color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
  transition: all 0.3s ease;
}
.theme-filter-chip:hover { border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); color: var(--color-foreground); }
.theme-filter-chip.is-active { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

.theme-shop-count { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }

.theme-shop-empty { border: 1px dashed var(--color-border); border-radius: 1rem; padding: 4rem 1.5rem; text-align: center; }
.theme-shop-empty__title { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; margin-bottom: 0.5rem; }
.theme-shop-empty__desc { font-size: 0.875rem; color: var(--color-muted-foreground); }

.theme-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  align-items: stretch;
  gap: 1.5rem;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.75rem; } }
.theme-product-grid[data-archive-grid] { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--color-card, #fff); border: 1px solid var(--color-border); overflow: hidden; border-radius: 0.75rem;
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
}
.theme-product-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-secondary); }
.theme-product-card-img { transition: transform 0.8s cubic-bezier(0.25,0.4,0.25,1); }
.theme-product-card:hover .theme-product-card-img { transform: scale(1.05); }
.theme-product-card-img.is-muted { opacity: 0.6; }
.theme-product-card__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 3; padding: 0.35rem 0.75rem; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  background: var(--color-accent); color: #fff;
}
.theme-product-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.25rem 1.5rem; }
.theme-product-card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; min-width: 0; }
.theme-product-card__title { font-size: 1.125rem; line-height: 1.35; min-width: 0; overflow: hidden; text-overflow: ellipsis; transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.25rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; color: var(--color-primary); white-space: nowrap; }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.35rem; font-weight: 400; }
.theme-product-card__notes {
  font-size: 0.75rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6;
  margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-product-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--color-border); display: flex; justify-content: flex-end; }
.theme-product-card__cta { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--color-primary); }
.theme-product-card__cta-arrow { display: inline-block; transition: transform 0.3s ease; }
.theme-product-card:hover .theme-product-card__cta-arrow { transform: translateX(4px); }

.theme-shop-showmore { display: flex; justify-content: center; margin-top: 3rem; }
.theme-shop-showmore[hidden] { display: none; }

.theme-archive-pagination { margin-top: 3rem; text-align: center; }
.theme-archive-pagination .page-numbers { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-archive-pagination .page-numbers li { display: inline-block; }
.theme-archive-pagination .page-numbers a, .theme-archive-pagination .page-numbers span {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px;
  border-radius: 999px; border: 1px solid var(--color-border); font-size: 0.875rem;
}
.theme-archive-pagination .page-numbers .current { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }

/* ---------------------------------------------------------------------- */
/* About section                                                           */
/* ---------------------------------------------------------------------- */
.theme-about-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.theme-about-slider { order: 2; }
.theme-about-copy { order: 1; }
@media (min-width: 1024px) { .theme-about-slider { order: 1; } .theme-about-copy { order: 2; padding-top: 1rem; } }
.theme-about-slider__viewport { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; background: var(--color-secondary); }
.theme-about-slide { opacity: 0; transition: opacity 0.8s ease; }
.theme-about-slide.is-active { opacity: 1; }
.theme-about-slider__nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px;
  background: color-mix(in srgb, var(--color-background) 85%, transparent); color: var(--color-noir); border: none;
  display: flex; align-items: center; justify-content: center; opacity: 1; transition: opacity 0.3s ease; z-index: 2;
}
@media (min-width: 768px) { .theme-about-slider__nav { opacity: 0; } .theme-about-slider__viewport:hover .theme-about-slider__nav { opacity: 1; } }
.theme-about-slider__nav--prev { left: 0.75rem; }
.theme-about-slider__nav--next { right: 0.75rem; }
.theme-about-slider__dots { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 2; }
.theme-about-slider__dots button { height: 6px; width: 16px; border-radius: 999px; border: none; background: color-mix(in srgb, var(--color-background) 50%, transparent); transition: all 0.3s ease; padding: 0; }
.theme-about-slider__dots button.is-active { width: 32px; background: var(--color-background); }
.theme-about-copy__body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.7; max-width: 42rem; }
.theme-about-copy__italic { color: var(--color-foreground); font-weight: 400; font-style: italic; }
.theme-about-copy__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-about-copy__actions { flex-direction: row; flex-wrap: wrap; } }
.theme-about-copy__actions button { width: 100%; }
@media (min-width: 640px) { .theme-about-copy__actions button { width: auto; } }

/* ---------------------------------------------------------------------- */
/* Services                                                                */
/* ---------------------------------------------------------------------- */
.theme-services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .theme-services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.theme-service-card {
  display: flex; flex-direction: column; border-radius: 1rem; overflow: hidden; border: 1px solid var(--color-border);
  background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04); transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.theme-service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15); }
.theme-service-card__image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.theme-service-card__image-wrap img { transition: transform 1.2s ease; }
.theme-service-card:hover .theme-service-card__image-wrap img { transform: scale(1.05); }
.theme-service-card__icon {
  position: absolute; top: 1rem; left: 1rem; width: 40px; height: 40px; border-radius: 999px; background: var(--color-background);
  color: var(--color-primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.theme-service-card__body { flex: 1; display: flex; flex-direction: column; padding: 1.5rem 1.75rem; }
.theme-service-card__body h3 { font-size: 1.25rem; }
@media (min-width: 768px) { .theme-service-card__body h3 { font-size: 1.5rem; } }
.theme-service-card__body p { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 300; line-height: 1.6; color: var(--color-muted-foreground); }
.theme-service-card__cta { margin-top: auto; padding-top: 1.5rem; }
.theme-service-card__cta a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--color-primary); }

.theme-services-cta {
  margin-top: 3.5rem; border-radius: 1rem; border: 1px solid var(--color-border); background: #fff;
  padding: 2rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start;
}
@media (min-width: 768px) { .theme-services-cta { flex-direction: row; align-items: center; padding: 2.5rem; gap: 2.5rem; } }
.theme-services-cta__copy { flex: 1; }
.theme-services-cta__copy h3 { font-size: 1.5rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .theme-services-cta__copy h3 { font-size: 1.875rem; } }
.theme-services-cta__copy p { margin-top: 0.75rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.6; max-width: 36rem; }

/* ---------------------------------------------------------------------- */
/* Owner Story                                                             */
/* ---------------------------------------------------------------------- */
.theme-story-section { position: relative; overflow: hidden; }
.theme-story-section__glow {
  position: absolute; right: -6rem; bottom: -6rem; width: 28rem; height: 28rem; border-radius: 999px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 20%, transparent) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none;
}
.theme-story-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-story-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-story-photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-background) 10%, transparent); }
.theme-story-copy__body { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; max-width: 42rem; font-weight: 300; line-height: 1.7; color: color-mix(in srgb, var(--color-background) 80%, transparent); }
.theme-story-copy__italic { color: var(--color-background); font-style: italic; }
.theme-story-pills { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-story-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .theme-story-actions { flex-direction: row; } }

/* ---------------------------------------------------------------------- */
/* FAQ                                                                     */
/* ---------------------------------------------------------------------- */
.theme-faq-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .theme-faq-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
.theme-faq-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; }
@media (min-width: 1024px) { .theme-faq-image { position: sticky; top: 7rem; } }
.theme-faq-image__quote {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; border-radius: 0 0 1rem 1rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--color-noir) 85%, transparent), transparent);
  z-index: 1;
}
.theme-faq-image__quote .eyebrow { color: var(--color-brass-light); margin-bottom: 0.5rem; }
.theme-faq-image__quote p { font-family: var(--font-display); color: var(--color-background); font-size: 1.5rem; line-height: 1.375; font-style: italic; max-width: 22rem; text-wrap: balance; }
@media (min-width: 768px) { .theme-faq-image__quote p { font-size: 1.875rem; } }
.theme-faq-content > p { margin-top: 1.25rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.7; max-width: 32rem; }
.theme-faq-list { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-faq-item { border-bottom: 1px solid var(--color-border); }
.theme-faq-item__question {
  width: 100%; display: flex; align-items: center; gap: 1.25rem; padding: 1.5rem 0; min-height: 44px;
  background: none; border: none; text-align: left;
}
.theme-faq-item__num { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--color-muted-foreground); flex-shrink: 0; transition: color 0.3s ease; }
.theme-faq-item.is-open .theme-faq-item__num { color: var(--color-primary); font-style: italic; }
.theme-faq-item__text { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); transition: color 0.3s ease; text-wrap: balance; }
.theme-faq-item.is-open .theme-faq-item__text { color: var(--color-foreground); }
.theme-faq-item__icon { flex-shrink: 0; color: var(--color-muted-foreground); transition: transform 0.3s ease, color 0.3s ease; }
.theme-faq-item.is-open .theme-faq-item__icon { transform: rotate(45deg); color: var(--color-primary); }
.theme-faq-item__answer { overflow: hidden; height: 0; opacity: 0; transition: height 0.4s var(--transition-smooth), opacity 0.4s var(--transition-smooth); }
.theme-faq-item.is-open .theme-faq-item__answer { height: auto; opacity: 1; }
.theme-faq-item__answer p { padding: 0 1.5rem 1.5rem 2.5rem; color: var(--color-muted-foreground); font-weight: 300; line-height: 1.7; max-width: 40rem; font-size: 0.9375rem; }

/* ---------------------------------------------------------------------- */
/* Contact                                                                 */
/* ---------------------------------------------------------------------- */
.theme-contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-contact-copy p { margin-top: 1.25rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); font-weight: 300; line-height: 1.7; max-width: 28rem; }
.theme-contact-links { display: flex; flex-direction: column; gap: 1.25rem; }
.theme-contact-link { display: flex; align-items: center; gap: 1rem; padding: 0.25rem 0; }
.theme-contact-link__icon {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--color-noir-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-brass-light);
  transition: border-color 0.3s ease;
}
.theme-contact-link:hover .theme-contact-link__icon { border-color: var(--color-brass-light); }
.theme-contact-link span:not(.theme-contact-link__icon) { font-size: 0.875rem; font-weight: 300; color: color-mix(in srgb, var(--color-background) 80%, transparent); transition: color 0.3s ease; }
.theme-contact-link:hover span:not(.theme-contact-link__icon) { color: var(--color-background); }
.theme-contact-link__break { word-break: break-all; }
.theme-contact-social { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.5rem; }
.theme-contact-social a {
  width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--color-noir-soft);
  display: flex; align-items: center; justify-content: center; color: var(--color-brass-light); transition: border-color 0.3s ease;
}
.theme-contact-social a:hover { border-color: var(--color-brass-light); }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--color-noir); color: var(--color-background); border-top: 1px solid var(--color-noir-soft); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 2rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 3rem; } }
.site-footer__brand-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
@media (min-width: 768px) { .site-footer__brand-col { grid-column: span 5; align-items: flex-start; text-align: left; } }
.site-footer__logo-img { height: 88px; width: auto; }
.site-footer__desc { margin-top: 1.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); max-width: 28rem; line-height: 1.6; font-weight: 300; }
.site-footer__tagline { margin-top: 1rem; font-family: var(--font-display); font-style: italic; color: var(--color-brass-light); font-size: 1rem; }
.site-footer__col { }
@media (min-width: 768px) { .site-footer__col { grid-column: span 2; } .site-footer__col--wide { grid-column: span 3; } }
.site-footer__heading { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-brass-light); margin-bottom: 1.25rem; font-weight: 500; padding-bottom: 0; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a, .site-footer__list button {
  background: none; border: none; text-align: left; padding: 0.15rem 0; font-size: 0.875rem; font-weight: 300;
  color: color-mix(in srgb, var(--color-background) 70%, transparent); transition: color 0.3s ease;
}
.site-footer__list a:hover, .site-footer__list button:hover { color: var(--color-background); }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-background) 70%, transparent); font-weight: 300; }
.site-footer__icon-row { align-items: center; gap: 0.75rem; }
.site-footer__icon-row svg { color: var(--color-brass-light); flex-shrink: 0; }
.site-footer__address { align-items: flex-start; gap: 0.75rem; }
.site-footer__address svg { color: var(--color-brass-light); flex-shrink: 0; margin-top: 0.15rem; }
.site-footer__contact-list a:hover { color: var(--color-background); }
.site-footer__social { gap: 0.75rem; padding-top: 0.5rem; }
.site-footer__social-icon { width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--color-noir-soft); display: flex; align-items: center; justify-content: center; color: var(--color-brass-light); }
.site-footer__newsletter { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--color-noir-soft); text-align: center; }
.site-footer__newsletter .site-footer__heading { text-align: center; }
.site-footer__newsletter-embed { max-width: 32rem; margin: 0 auto; }
.site-footer__bottom {
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--color-noir-soft);
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 45%, transparent); }
.site-footer__credit a { color: color-mix(in srgb, var(--color-background) 70%, transparent); text-decoration: underline; text-underline-offset: 4px; }
.site-footer__credit a:hover { color: var(--color-brass-light); }

/* ---------------------------------------------------------------------- */
/* Side cart drawer                                                        */
/* ---------------------------------------------------------------------- */
#theme-cart-overlay {
  position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
  z-index: 60; 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: 61; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-size: 1.125rem; font-weight: 600; }
.theme-cart-drawer__close { background: none; border: none; padding: 0.25rem; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 80px; height: 96px; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; border-radius: 0.5rem; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__meta, .theme-cart-item__price { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__controls button { background: none; border: none; padding: 0.25rem; border-radius: 0.25rem; }
.theme-cart-item__controls button:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; }

/* Hide "View cart" injected after AJAX add-to-cart (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; }

/* ---------------------------------------------------------------------- */
/* Add to cart button overrides (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 {
  background-color: var(--color-primary) !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: var(--btn-text-transform) !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-primary) !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-primary) !important;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.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; }

/* ---------------------------------------------------------------------- */
/* Single product page                                                     */
/* ---------------------------------------------------------------------- */
.theme-single-product { padding-top: var(--header-height); padding-bottom: 4rem; }
.theme-back-link-row { padding: 1.5rem 0; }
.theme-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-back-link:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 4rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-main-img { position: relative; aspect-ratio: 3/4; background: var(--color-secondary); overflow: hidden; border-radius: 1rem; margin-bottom: 1rem; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.5rem; max-width: 100%; }
.theme-product-thumb { width: 4.5rem; height: 4.5rem; overflow: hidden; border-radius: 0.5rem; border: 2px solid transparent; opacity: 0.6; padding: 0; background: none; transition: all 0.2s ease; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-primary); }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-info__cat { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title { font-size: 1.5rem; margin-top: 0.5rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .product-title { font-size: 1.875rem; } }
.theme-product-info__price { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.theme-product-info__price .woocommerce-Price-amount { color: var(--color-primary); }
.theme-stock-badge { display: inline-block; margin-bottom: 1rem; font-size: 0.8rem; font-weight: 600; }
.theme-stock-badge--out { color: var(--color-accent); }
.theme-product-info__description { color: var(--color-muted-foreground); line-height: 1.7; margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-option-group { margin-bottom: 1.5rem; }
.theme-option-group h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; font-family: var(--font-body); }
.theme-option-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-option-pill { padding: 0.5rem 1rem; font-size: 0.875rem; border: 1px solid var(--color-border); background: var(--color-background); transition: all 0.2s ease; border-radius: 0.4rem; }
.theme-option-pill:hover { border-color: color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-option-pill.is-active { background: var(--color-primary); color: var(--color-button-text); border-color: var(--color-primary); }
.theme-dietary-note { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.75rem; color: var(--color-muted-foreground); margin-bottom: 1.5rem; line-height: 1.6; }
.theme-dietary-note svg { margin-top: 0.15rem; flex-shrink: 0; }

.single-product .theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--btn-radius); overflow: hidden; }
.theme-qty-minus, .theme-qty-plus { width: 44px; height: 44px; background: none; border: none; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
  width: 3rem; height: 44px; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
  -moz-appearance: textfield; background: transparent; font-size: 0.9rem;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-product-info__details { border-top: 1px solid var(--color-border); padding-top: 2rem; margin-top: 1rem; }
.theme-product-info__details h3 { font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; font-family: var(--font-body); }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.5rem; }
.theme-product-info__details li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-product-info__details li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: var(--color-primary); margin-top: 0.5rem; flex-shrink: 0; }
.posted_in { margin-top: 1.5rem; font-size: 0.8rem; color: var(--color-muted-foreground); overflow-wrap: break-word; word-break: break-word; }
.posted_in a { color: var(--color-primary); text-decoration: underline; }

.theme-related-heading { font-size: 1.25rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-related-heading { font-size: 1.5rem; } }
.related-products-section { padding-top: 5rem; border-top: 1px solid var(--color-border); padding-bottom: 5rem; }

/* Variations table layout (kept for compatibility, not used by this catalog) */
.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; }
.theme-attr-select-hidden { display: none !important; }

/* ---------------------------------------------------------------------- */
/* Custom order / policies / generic pages                                 */
/* ---------------------------------------------------------------------- */
.theme-page-main, .theme-generic-main { padding-top: var(--header-height); padding-bottom: 4rem; min-height: 40vh; }
.theme-page-container { padding-top: 2rem; }
.page-title { font-size: 1.875rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }

.theme-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1.5rem; text-align: center; background: var(--color-secondary); }
.theme-404__title { font-family: var(--font-body); font-weight: 700; font-size: 2.25rem; margin-bottom: 1rem; text-wrap: initial; padding-bottom: 0; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404__cta { display: inline-block; color: var(--color-primary); text-decoration: underline; }
.theme-404__cta:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

.theme-custom-order-page { padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 5rem; }
.theme-custom-order__container { max-width: 48rem; }
.theme-back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 2rem; }
.theme-custom-order__header { text-align: center; margin-bottom: 3rem; }
.theme-custom-order__title { font-size: 1.875rem; margin-top: 0.5rem; }
@media (min-width: 768px) { .theme-custom-order__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-custom-order__title { font-size: 3.75rem; } }
.theme-custom-order__title em { color: var(--color-primary); font-style: italic; }
.theme-custom-order__header p { margin-top: 1.25rem; color: var(--color-muted-foreground); font-weight: 300; max-width: 36rem; margin-left: auto; margin-right: auto; }
.theme-custom-order__form { border-radius: 1rem; background: var(--color-secondary); border: 1px solid var(--color-border); padding: 1.5rem; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .theme-custom-order__form { padding: 2.5rem; } }
.theme-form-group { display: flex; flex-direction: column; gap: 0.6rem; }
.theme-form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .theme-form-row { grid-template-columns: 1fr 1fr; } }
.theme-input {
  width: 100%; border-radius: 0.75rem; padding: 0.75rem 1rem; min-height: 44px; background: var(--color-background);
  border: 1px solid var(--color-border); font-size: 0.875rem;
}
.theme-input:focus { outline: none; border-color: var(--color-primary); }
.theme-textarea { resize: none; }
.theme-experience-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; }
@media (min-width: 640px) { .theme-experience-grid { grid-template-columns: 1fr 1fr; } }
.theme-experience-option { text-align: left; border-radius: 0.75rem; padding: 1rem; min-height: 44px; border: 1px solid var(--color-border); background: var(--color-background); transition: all 0.3s ease; }
.theme-experience-option.is-active { border-color: var(--color-primary); background: color-mix(in srgb, var(--color-primary) 5%, var(--color-background)); box-shadow: 0 0 0 1px var(--color-primary); }
.theme-experience-option__label { display: block; font-family: var(--font-display); font-size: 1rem; }
.theme-experience-option.is-active .theme-experience-option__label { color: var(--color-primary); }
.theme-experience-option__desc { display: block; font-size: 0.75rem; color: var(--color-muted-foreground); font-weight: 300; margin-top: 0.15rem; }
.theme-form-section { padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1.25rem; }
.theme-form-section h2 { font-size: 1.25rem; }
.theme-form-submit { padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.theme-form-submit button { width: 100%; }
.theme-form-note { font-size: 0.75rem; text-align: center; color: var(--color-muted-foreground); margin-top: 1rem; }
.theme-custom-order__success { text-align: center; padding: 2rem 0; }
.theme-custom-order__success-icon { width: 64px; height: 64px; border-radius: 999px; background: var(--color-primary); color: var(--color-button-text); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.theme-custom-order__success h1 { font-size: 1.875rem; margin: 1rem 0; }
@media (min-width: 768px) { .theme-custom-order__success h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-custom-order__success h1 { font-size: 3.75rem; } }
.theme-custom-order__success p { color: var(--color-muted-foreground); max-width: 34rem; margin: 0 auto; line-height: 1.6; }
.theme-custom-order__success-actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; margin-top: 2.5rem; }
@media (min-width: 640px) { .theme-custom-order__success-actions { flex-direction: row; } }

.theme-policies-page { padding-top: var(--header-height); }
.theme-policies-hero { padding-top: 3rem; padding-bottom: 3rem; }
.theme-policies-hero__inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.theme-policies-hero__inner h1 { font-size: 1.875rem; margin-top: 1rem; }
@media (min-width: 768px) { .theme-policies-hero__inner h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-policies-hero__inner h1 { font-size: 3.75rem; } }
.theme-policies-hero__inner h1 em { color: var(--color-primary); font-style: italic; }
.theme-policies-hero__rule { display: block; height: 1px; width: 6rem; margin: 2rem auto; background: color-mix(in srgb, var(--color-brass-light) 60%, transparent); }
.theme-policies-hero__inner p { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; line-height: 1.7; }
.theme-policies-list { padding-bottom: 5rem; }
.theme-policies-list__inner { max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-policy-card { border: 1px solid color-mix(in srgb, var(--color-brass-light) 40%, transparent); background: color-mix(in srgb, var(--color-background) 40%, transparent); padding: 2rem; }
.theme-policy-card__icon { width: 48px; height: 48px; border: 1px solid color-mix(in srgb, var(--color-brass-light) 60%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--color-primary); }
.theme-policy-card h2 { font-size: 1.5rem; }
@media (min-width: 768px) { .theme-policy-card h2 { font-size: 1.625rem; } }
.theme-policy-card__rule { display: block; height: 1px; width: 3rem; margin: 1.25rem 0; background: color-mix(in srgb, var(--color-brass-light) 70%, transparent); }
.theme-policy-card__body { display: flex; flex-direction: column; gap: 1rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-weight: 300; line-height: 1.7; }
.theme-policies-cta { padding-bottom: 6rem; }
.theme-policies-cta__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding-top: 4rem; border-top: 1px solid color-mix(in srgb, var(--color-brass-light) 40%, transparent); }
.theme-policies-cta__inner h2 { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-policies-cta__inner h2 { font-size: 2.25rem; } }
.theme-policies-cta__inner h2 em { color: var(--color-primary); font-style: italic; }
.theme-policies-cta__inner p { margin-top: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); font-weight: 300; }
.theme-policies-cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2.25rem; }
@media (min-width: 640px) { .theme-policies-cta__actions { flex-direction: row; } }

.theme-thankyou { max-width: 48rem; margin: 0 auto; text-align: center; padding: 2rem 0; }
.theme-thankyou__icon { width: 64px; height: 64px; border-radius: 999px; background: var(--color-primary); color: var(--color-button-text); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.theme-thankyou__title { font-size: 1.875rem; margin-bottom: 1rem; }
.theme-thankyou__subtitle { color: var(--color-muted-foreground); max-width: 36rem; margin: 0 auto 2rem; line-height: 1.6; }
body.theme-thankyou-page .woocommerce-order { text-align: left; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; background: var(--color-secondary); border-radius: 0.75rem; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; margin-top: 0.25rem; }
body.theme-thankyou-page .woocommerce-customer-details address { font-style: normal; border: 1px solid var(--color-border); border-radius: 0.75rem; padding: 1.25rem; font-size: 0.875rem; line-height: 1.7; min-width: 0; }
@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-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-details th,
body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left; 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 .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-size: 1.5rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page { overflow-x: hidden; }

/* ---------------------------------------------------------------------- */
/* WooCommerce notices (Section 14.1)                                      */
/* ---------------------------------------------------------------------- */
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  list-style: none; border-radius: 0.75rem; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 0.875rem;
  background: var(--color-secondary); border-left: 4px solid var(--color-primary);
}
.woocommerce-error { border-left-color: var(--color-accent); }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ---------------------------------------------------------------------- */
/* Checkout / Cart / Account (Sections 13, 13.7)                           */
/* ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart {
  font-family: var(--font-body);
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  width: 100%;
  max-width: none;
}
/* Section 13.2/13.3 — ONE grid owner only. WooCommerce Blocks applies the
   `.wc-block-checkout` class to BOTH the outer page wrapper and the inner
   sidebar-layout element that directly parents __main/__sidebar. Grid MUST
   be applied to the inner sidebar-layout element ONLY (matched by the extra
   `.wc-block-components-sidebar-layout` + `.is-large` classes); the outer
   wrapper is forced to `display:block` so it never becomes a second grid,
   which is the "nested grid" bug that breaks the two-column layout. */
body.woocommerce-checkout .wc-block-checkout {
  display: block;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--checkout-gap);
    align-items: start;
  }
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
  background-color: var(--color-secondary);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
}
/* Section 13.4/7 — force typography + border + background to match the
   reference design's input styling with !important (WooCommerce Blocks ships its own scoped
   CSS that otherwise wins). Internal padding is deliberately NOT set here —
   it stays WooCommerce's own default so floating labels / icon slots inside
   the Blocks components are not collapsed or misaligned. */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .woocommerce-checkout .form-row select {
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  color: var(--color-foreground) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 0.6rem !important;
  background-color: var(--color-background) !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: none !important;
  appearance: auto;
}
body.woocommerce-checkout .wc-block-components-select select {
  appearance: none !important;
  -webkit-appearance: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder {
  color: var(--color-muted-foreground) !important;
  opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
  outline: none !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 1px var(--color-primary) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--color-primary) !important;
  border-radius: var(--btn-radius) !important;
  font-family: var(--font-body) !important;
  text-transform: var(--btn-text-transform) !important;
  letter-spacing: var(--btn-letter-spacing) !important;
  font-size: var(--btn-font-size) !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0.6rem; grid-column: 1 / -1; }
body.woocommerce-checkout .wc-block-cart-items { font-size: 0.875rem; }

/* ---------------------------------------------------------------------- */
/* Accessibility helpers                                                   */
/* ---------------------------------------------------------------------- */
.theme-flex-min-safe { min-width: 0; }
