/* =========================================================================
   Story House theme.css
   Design tokens are emitted at runtime as --*-hex custom properties by
   functions.php (wp_add_inline_style) from the Customizer color settings,
   which are themselves derived from the original design source's raw HSL tokens via
   theme_hsl_to_hex() (Section 6.1). This file consumes those variables.
   ========================================================================= */

:root {
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, system-ui, sans-serif;
  --radius: 0.875rem;
  --shadow-soft: 0 4px 24px -8px rgba(30, 20, 10, 0.10);
  --shadow-elevated: 0 20px 60px -20px rgba(30, 20, 10, 0.22);
  --shadow-card: 0 1px 2px rgba(30, 20, 10, 0.04), 0 8px 32px -12px rgba(30, 20, 10, 0.12);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;

  --btn-radius: 9999px;
  --btn-height: 3rem;
  --btn-padding: 0 1.75rem;
  --btn-font-size: 0.9375rem;
  --btn-font-weight: 600;
  --btn-letter-spacing: 0.01em;
  --btn-text-transform: none;
  --card-radius: 1rem;
  --section-padding: 2rem;
  --checkout-gap: 2rem;
  --color-primary: var(--cta-hex, #a35a3a);
  --color-button-text: var(--cta-foreground-hex, var(--background-hex, #f8f2e7));
  --color-surface: var(--secondary-hex, #efe6d6);
  --color-border: var(--border-hex, #dcd0bd);
  --muted-foreground: var(--muted-foreground-hex, #70645c);
  --destructive: var(--destructive-hex, #a83a2c);
  --on-dark: var(--on-dark-hex, #f8f2e7);
  --hero-background: var(--hero-background-hex, #241c14);
  --hero-accent: var(--hero-accent-hex, #e9d3a8);
  --shadow-brand-glow: 0 10px 40px -10px color-mix(in srgb, var(--cta-hex, #a35a3a) 45%, transparent);
}

/* ---------------------------- Reset / base ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}
body {
  margin: 0;
  background-color: var(--background-hex, #f8f2e7);
  color: var(--foreground-hex, #2e2620);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
img.cover-img,
.theme-hero__img, .theme-hero__video,
.theme-offering-card__img, .theme-path-card__img,
.theme-portfolio-item__img,
.theme-owner-photo img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 0.9375rem; }
ul { margin: 0; padding: 0; list-style: none; }

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: inherit;
  font-size: inherit;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 1.5rem;
  min-width: 0;
  box-sizing: border-box;
}
.site-main,
.theme-front-page > section {
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) { .container-wide { padding-inline: 2rem; } }

.eyebrow { font-size: 0.8125rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.22em; }
.theme-muted-text { color: var(--muted-foreground); }
.theme-text-sm { font-size: 0.9375rem; }

.theme-text-sessions { color: var(--sessions-hex); }
.theme-text-workshops { color: var(--workshops-hex); }
.theme-text-experiences { color: var(--experiences-hex); }
.theme-text-shop { color: var(--shop-hex); }
.theme-tint-sessions { background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, var(--sessions-hex) 128%); }
.theme-tint-workshops { background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, var(--workshops-hex) 128%); }
.theme-tint-experiences { background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, transparent 30%, var(--experiences-hex) 128%); }

/* ---------------------------- Buttons ---------------------------- */
.btn-cta, .btn-outline-hero, .theme-pill-button, .theme-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--btn-radius);
  height: var(--btn-height);
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: var(--btn-text-transform);
  transition: all 0.3s var(--transition-smooth);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta {
  background-color: var(--cta-hex);
  color: var(--cta-foreground-hex, var(--background-hex));
  box-shadow: 0 6px 24px -8px color-mix(in srgb, var(--cta-hex) 50%, transparent);
}
.btn-cta:hover {
  background-color: var(--cta-glow-hex);
  box-shadow: var(--shadow-brand-glow);
  filter: none;
  transform: translateY(-2px);
}
.btn-outline-hero, .theme-btn-outline {
  border: 2px solid var(--border-hex);
  background: transparent;
  color: inherit;
}
.btn-outline-hero:hover, .theme-btn-outline:hover { background: rgba(0,0,0,0.05); }
.theme-pill-button {
  border: 1px solid var(--border-hex);
  background: transparent;
  color: inherit;
  height: auto;
  padding: 0.75rem 2rem;
}
.theme-pill-button:hover { background: var(--foreground-hex); color: var(--background-hex); }
.theme-pill-link {
  display: inline-flex; align-items: center; border-radius: 9999px; border: 1px solid var(--border-hex);
  padding: 0.375rem 1rem; font-size: 0.75rem; transition: all 0.25s var(--transition-smooth);
}
.theme-pill-link:hover { background: var(--foreground-hex); color: var(--background-hex); }
.theme-icon-btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem;
  border-radius: 9999px; border: 1px solid var(--border-hex); transition: all 0.25s var(--transition-smooth);
}
.theme-icon-btn:hover { background: var(--foreground-hex); color: var(--background-hex); }

/* ---------------------------- Reveal animations (2.1) ---------------------------- */
.reveal-item, .theme-offering-card-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible, .theme-offering-card-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.is-customizer .reveal-item,
body.is-customizer .theme-offering-card-wrap {
  opacity: 1 !important;
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-item, .theme-offering-card-wrap { transition: none !important; opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
.theme-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none;
}
.theme-scroll-progress span {
  display: block; height: 100%; width: 100%; background: var(--sessions-hex);
  transform-origin: 0 50%; transform: scaleX(0); transition: transform 0.1s linear;
}

/* ---------------------------- Admin bar offset ---------------------------- */
body.admin-bar .site-header { top: 32px; }
body.admin-bar .theme-scroll-progress { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
  body.admin-bar .theme-scroll-progress { top: 46px; }
}
body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar.theme-no-hero .site-main { padding-top: calc(var(--header-height) + 46px); }
}

/* ---------------------------- Clickable cursor ---------------------------- */
.theme-path-card,
.theme-filter-pill,
.theme-faq-question,
.theme-cart-btn,
.theme-menu-toggle,
.theme-cart-clear,
.theme-cart-drawer__close,
.theme-cart-qty-btn,
.theme-cart-remove,
.theme-product-thumb,
.theme-back-to-shop,
.theme-offering-card__cta,
.theme-offering-card__image-link,
.theme-pill-link,
.theme-icon-btn,
.site-brand,
.theme-404-link,
.theme-contact-list a,
.theme-footer-links a,
.theme-footer-contact-list a,
.theme-offering-card__companion a,
.theme-offering-card__title a,
.theme-product-cats a,
.theme-cart-item__image,
.theme-cart-item__name,
.theme-cart-checkout-btn,
label.theme-field-label {
  cursor: pointer;
}

/* ---------------------------- Header ---------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  max-width: 100%;
  overflow-x: clip;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.5s, border-color 0.5s;
}
.site-header.is-solid, .site-header.is-scrolled,
.site-header.is-menu-open {
  background-color: var(--background-hex);
  border-bottom-color: var(--border-hex);
}
.theme-header-inner { padding-top: 0; padding-bottom: 0; max-width: 100%; min-width: 0; }
.theme-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; min-width: 0; width: 100%; height: 80px;
  transition: height 0.5s var(--transition-smooth);
}
.site-header.is-scrolled .theme-nav-row { height: 56px; }

@media (min-width: 1024px) {
  .theme-nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1.5rem;
  }
  .site-brand {
    grid-column: 1;
    justify-self: start;
  }
  .theme-nav-links {
    grid-column: 2;
    justify-self: center;
  }
  .theme-header-actions {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 1023px) {
  .theme-nav-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.5rem;
  }
  .theme-nav-links {
    display: none !important;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
  }
  .site-brand {
    grid-column: 1;
    justify-self: start;
    max-width: 100%;
  }
  .theme-header-actions {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
  }
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 0 1 auto;
  max-width: 100%;
  overflow: hidden;
}
.site-brand-logo {
  flex: 0 0 auto;
  width: var(--logo-height, 40px);
  height: var(--logo-height, 40px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.site-header .site-logo-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  object-fit: contain;
  display: block;
}
.site-logo-text, .site-brand-name {
  font-family: var(--font-display); font-size: 1.125rem; letter-spacing: -0.025em;
  color: var(--foreground-hex); min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
@media (max-width: 639px) {
  .site-brand-name { display: none; }
}
@media (min-width: 1024px) {
  .site-brand-name { font-size: 1.25rem; }
}
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open) .site-brand-name { color: var(--on-dark); }
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open) .site-brand-logo .site-logo-img {
  filter: brightness(0) invert(1);
}
.site-header.is-solid .site-brand-name,
.site-header.is-scrolled .site-brand-name,
.site-header.is-menu-open .site-brand-name { color: var(--foreground-hex); }
.site-header.is-solid .site-brand-logo .site-logo-img,
.site-header.is-scrolled .site-brand-logo .site-logo-img,
.site-header.is-menu-open .site-brand-logo .site-logo-img { filter: none; }

.theme-nav-links { display: none; }
@media (min-width: 1024px) {
  .theme-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
}
.theme-nav-links .theme-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}
.theme-nav-links .theme-nav-list a {
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  position: relative;
  color: var(--foreground-hex);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open) .theme-nav-links .theme-nav-list a {
  color: var(--on-dark);
  opacity: 0.85;
}
.theme-nav-links .theme-nav-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--transition-smooth);
}
.theme-nav-links .theme-nav-list a:hover::after { transform: scaleX(1); }
.theme-nav-links .theme-nav-list a:hover { opacity: 1; }

.theme-header-actions { display: flex; align-items: center; gap: 0.25rem; flex-shrink: 0; margin-left: auto; }
.theme-cart-btn {
  position: relative;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground-hex);
  transition: opacity 0.2s var(--transition-smooth);
}
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open) .theme-cart-btn { color: var(--on-dark); }
.theme-cart-btn:hover,
.theme-menu-toggle: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(--workshops-hex); color: var(--on-dark); border-radius: 9999px;
}
.theme-cart-count:empty { display: none; }
.theme-menu-toggle {
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--foreground-hex);
  transition: opacity 0.2s var(--transition-smooth);
}
.site-header:not(.is-solid):not(.is-scrolled):not(.is-menu-open) .theme-menu-toggle { color: var(--on-dark); }
@media (min-width: 1024px) { .theme-menu-toggle { display: none; } }
.theme-menu-toggle .icon-close { display: none; }
.theme-menu-toggle.is-open .icon-menu { display: none; }
.theme-menu-toggle.is-open .icon-close { display: block; }

@media (max-width: 1023px) {
  .theme-mobile-menu {
    display: grid;
    grid-template-rows: 0fr;
    max-width: 100%;
    overflow: hidden;
    border-top: 1px solid transparent;
    opacity: 0;
    transition:
      grid-template-rows 0.4s var(--transition-smooth),
      opacity 0.4s var(--transition-smooth),
      border-color 0.4s var(--transition-smooth);
  }
  .theme-mobile-menu.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    border-top-color: color-mix(in srgb, var(--border-hex) 30%, transparent);
  }
}
@media (min-width: 1024px) {
  .theme-mobile-menu { display: none !important; }
}
.theme-mobile-menu__inner { overflow: hidden; min-height: 0; }
.theme-nav-list--mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  margin: 0;
  list-style: none;
}
.theme-nav-list--mobile a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: var(--foreground-hex);
  opacity: 1;
  transition: color 0.2s var(--transition-smooth);
}
.theme-nav-list--mobile a::after { display: none !important; }
.theme-nav-list--mobile a:hover { color: var(--muted-foreground); opacity: 1; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li {
  animation: theme-mobile-nav-in 0.4s var(--transition-smooth) backwards;
}
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(1) { animation-delay: 0.05s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(2) { animation-delay: 0.09s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(3) { animation-delay: 0.13s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(4) { animation-delay: 0.17s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(5) { animation-delay: 0.21s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(6) { animation-delay: 0.25s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(7) { animation-delay: 0.29s; }
.theme-mobile-menu.is-open .theme-nav-list--mobile > li:nth-child(8) { animation-delay: 0.33s; }
@keyframes theme-mobile-nav-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .theme-mobile-menu,
  .theme-mobile-menu.is-open .theme-nav-list--mobile > li {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------- Hero ---------------------------- */
.theme-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--hero-background); }
.theme-hero__media { position: absolute; inset: 0; overflow: hidden; }
.theme-hero__img, .theme-hero__video { position: absolute; inset: 0; opacity: 0.9; }
.theme-hero__gradient-1 { position: absolute; inset: 0; background: linear-gradient(to top right, rgba(160,90,60,0.45), rgba(30,20,10,0.4), transparent); mix-blend-mode: multiply; }
.theme-hero__gradient-2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,15,10,1), rgba(20,15,10,0.55), transparent); }
.theme-hero__content { position: relative; padding-bottom: 5rem; padding-top: 8rem; color: var(--on-dark); width: 100%; min-width: 0; }
@media (min-width: 1024px) { .theme-hero__content { padding-bottom: 7rem; } }
.theme-hero__eyebrow { display: block; color: color-mix(in srgb, var(--on-dark) 80%, transparent); }
.theme-hero__title {
  font-size: 3rem; margin-top: 1rem; max-width: 56rem; line-height: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 768px) { .theme-hero__title { font-size: 5rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 6rem; } }
.theme-hero__title-italic { font-style: italic; color: var(--hero-accent); }
.theme-hero__subtitle { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; color: color-mix(in srgb, var(--on-dark) 85%, transparent); line-height: 1.7; }
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1.25rem; } }
.theme-hero__ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 768px) { .theme-hero__ctas { flex-direction: row; } }
.theme-hero__ctas .btn-cta, .theme-hero__ctas .btn-outline-hero { width: 100%; }
@media (min-width: 768px) { .theme-hero__ctas .btn-cta, .theme-hero__ctas .btn-outline-hero { width: auto; } }
.theme-hero__ctas .btn-outline-hero { border-color: color-mix(in srgb, var(--on-dark) 40%, transparent); background: color-mix(in srgb, var(--on-dark) 10%, transparent); color: var(--on-dark); }
.theme-hero__ctas .btn-outline-hero:hover { border-color: var(--on-dark); background: color-mix(in srgb, var(--on-dark) 20%, transparent); }
.theme-hero__scroll-cue { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: color-mix(in srgb, var(--on-dark) 70%, transparent); }
.theme-hero__scroll-cue::before {
  content: ''; display: block; width: 26px; height: 42px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.4);
}
.theme-hero__scroll-dot {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; border-radius: 9999px; background: rgba(255,255,255,0.8);
  animation: theme-scroll-bounce 2s ease-in-out infinite;
}
@keyframes theme-scroll-bounce { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .theme-hero__scroll-dot { animation: none; } }

/* main content offset — home hero fills viewport under fixed header (22.7) */
body.theme-no-hero .site-main { padding-top: var(--header-height); }

/* ---------------------------- Choose Your Path ---------------------------- */
.theme-path-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-path-section { padding: 7rem 0; } }
.theme-path-section__title { font-size: 2.5rem; margin-top: 0.75rem; max-width: 48rem; }
@media (min-width: 768px) { .theme-path-section__title { font-size: 3.75rem; } }
.theme-path-section__subtitle { margin-top: 1rem; max-width: 36rem; }
.theme-path-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1.25rem; }
@media (min-width: 768px) { .theme-path-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; } }
.theme-path-card {
  position: relative; display: block; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: var(--secondary-hex); box-shadow: var(--shadow-card); transition: box-shadow 0.5s, transform 0.5s var(--transition-smooth);
}
.theme-path-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); }
.theme-path-card__img { position: absolute; inset: 0; transition: transform 1.4s var(--transition-smooth); }
.theme-path-card:hover .theme-path-card__img { transform: scale(1.08); }
.theme-path-card__tint { position: absolute; inset: 0; }
.theme-path-card__content {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem; color: var(--on-dark); min-width: 0; overflow: hidden;
}
@media (min-width: 1024px) { .theme-path-card__content { padding: 2rem; } }
.theme-path-card__top { display: flex; align-items: center; justify-content: space-between; }
.theme-path-card__pill {
  display: inline-flex; align-items: center; gap: 0.5rem; border-radius: 9999px; background: var(--background-hex);
  padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; box-shadow: var(--shadow-soft);
  max-width: calc(100% - 2rem); min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.theme-path-card__arrow { opacity: 0; transform: translateX(-8px); transition: all 0.3s; }
.theme-path-card:hover .theme-path-card__arrow { opacity: 1; transform: translateX(0); }
.theme-path-card__label {
  font-size: 2.5rem; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  overflow-wrap: break-word; word-break: break-word;
}
@media (min-width: 1024px) { .theme-path-card__label { font-size: 3rem; } }
.theme-path-card__blurb { margin-top: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.95); max-width: 28ch; }

/* ---------------------------- Section heading defaults ---------------------------- */
.section-heading {
  font-size: 2.25rem; margin-top: 0.75rem;
  overflow-wrap: break-word; word-break: break-word;
}
@media (min-width: 768px) { .section-heading { font-size: 3rem; } }
.theme-section-intro { max-width: 48rem; }
.theme-section-intro--narrow { max-width: 42rem; }

/* ---------------------------- Offerings ---------------------------- */
.theme-offerings-section { padding: 5rem 0; background: var(--secondary-hex); background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); }
@media (min-width: 1024px) { .theme-offerings-section { padding: 7rem 0; } }
.theme-anchor { display: block; scroll-margin-top: 6rem; height: 0; }
.theme-offerings-header { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; min-width: 0; width: 100%; }
@media (min-width: 1024px) {
  .theme-offerings-header { flex-direction: row; align-items: flex-end; gap: 2rem; }
  .theme-offerings-header > div:first-child { flex: 1 1 auto; min-width: 0; }
  .theme-offerings-header .theme-filter-pills { flex: 0 0 auto; }
}
.theme-offerings-section__title { font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .theme-offerings-section__title { font-size: 3.75rem; } }
.theme-offerings-section__subtitle { margin-top: 1rem; max-width: 36rem; }
.theme-filter-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
@media (min-width: 640px) {
  .theme-filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    width: auto;
  }
}
.theme-filter-pill {
  width: 100%;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid var(--border-hex);
  background: transparent;
  font-size: 0.8125rem;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  transition: all 0.2s;
}
@media (min-width: 640px) {
  .theme-filter-pill {
    width: auto;
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
.theme-filter-pill:hover { background: var(--foreground-hex); color: var(--background-hex); }
.theme-filter-pill.is-active { background: var(--foreground-hex); color: var(--background-hex); border-color: var(--foreground-hex); }
.theme-filter-pill[data-cat-slug="sessions"]:hover { background: var(--sessions-hex); color: var(--on-dark); border-color: var(--sessions-hex); }
.theme-filter-pill[data-cat-slug="workshops"]:hover { background: var(--workshops-hex); color: var(--on-dark); border-color: var(--workshops-hex); }
.theme-filter-pill[data-cat-slug="experiences"]:hover { background: var(--experiences-hex); color: var(--on-dark); border-color: var(--experiences-hex); }
.theme-filter-pill[data-cat-slug="shop"]:hover { background: var(--shop-hex); color: var(--on-dark); border-color: var(--shop-hex); }

.theme-offerings-grid {
  margin-top: 3rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); column-gap: 1.25rem; row-gap: 2.5rem; align-items: stretch;
}
@media (min-width: 640px) { .theme-offerings-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-offerings-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.theme-offerings-grid__item { display: flex; min-width: 0; }
.theme-offerings-grid__item.is-hidden-by-filter { display: none; }

.theme-offering-card-wrap { display: flex; width: 100%; }
.theme-offering-card {
  display: flex; flex-direction: column; height: 100%; width: 100%; background: color-mix(in srgb, var(--secondary-hex) 60%, transparent);
  border-radius: 1rem; padding: 0.75rem; border: 1px solid color-mix(in srgb, var(--border-hex) 40%, transparent);
  box-shadow: var(--shadow-soft); transition: box-shadow 0.5s, transform 0.5s var(--transition-smooth);
}
@media (min-width: 640px) { .theme-offering-card { padding: 1rem; } }
.theme-offering-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-6px); }
.theme-offering-card__media { position: relative; aspect-ratio: 4/5; background: var(--background-hex); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-offering-card__image-link { position: absolute; inset: 0; display: block; }
.theme-offering-card__img { transition: transform 1.1s var(--transition-smooth); }
.theme-offering-card:hover .theme-offering-card__img { transform: scale(1.06); }
.theme-offering-card__badge {
  position: absolute; top: 0.5rem; left: 0.5rem; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; background: color-mix(in srgb, var(--background-hex) 95%, transparent); box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) { .theme-offering-card__badge { top: 0.75rem; left: 0.75rem; font-size: 11px; padding: 0.25rem 0.65rem; } }
.theme-pill-sessions { color: var(--sessions-hex); border: 1px solid color-mix(in srgb, var(--sessions-hex) 25%, transparent); }
.theme-pill-workshops { color: var(--workshops-hex); border: 1px solid color-mix(in srgb, var(--workshops-hex) 25%, transparent); }
.theme-pill-experiences { color: var(--experiences-hex); border: 1px solid color-mix(in srgb, var(--experiences-hex) 25%, transparent); }
.theme-pill-shop { color: var(--shop-hex); border: 1px solid color-mix(in srgb, var(--shop-hex) 25%, transparent); }
.theme-offering-card__badge-new, .theme-offering-card__badge-oos {
  position: absolute; top: 0.5rem; right: 0.5rem; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; background: var(--foreground-hex); color: var(--background-hex);
}
@media (min-width: 640px) { .theme-offering-card__badge-new, .theme-offering-card__badge-oos { top: 0.75rem; right: 0.75rem; font-size: 11px; padding: 0.25rem 0.65rem; } }
.theme-offering-card__badge-oos { background: var(--destructive); color: var(--on-dark); }
.theme-offering-card__body { display: flex; flex-direction: column; flex: 1; padding: 0 0.25rem; gap: 0.375rem; }
.theme-offering-card__price-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-foreground); }
.theme-offering-card__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.2;
  overflow-wrap: break-word; word-break: break-word; min-width: 0;
}
.theme-offering-card__title a { color: inherit; }
@media (min-width: 640px) { .theme-offering-card__title { font-size: 1.25rem; } }
@media (min-width: 768px) { .theme-offering-card__title { font-size: 1.5rem; } }
.theme-offering-card__desc { font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .theme-offering-card__desc { font-size: 0.875rem; } }
.theme-offering-card__bridge { font-size: 0.6875rem; font-style: italic; padding-top: 0.25rem; }
.theme-offering-card__spacer { flex: 1; }
.theme-offering-card__cta {
  margin-top: 1rem; width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; border-radius: 0.75rem;
  padding: 0 1rem; height: 3rem; font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  box-shadow: var(--shadow-soft); transition: all 0.2s; background: var(--foreground-hex); color: var(--background-hex); border: none;
}
.theme-offering-card__cta:hover { box-shadow: var(--shadow-elevated); transform: translateY(-2px); }
.theme-offering-card__cta--service { background: var(--cta-hex); color: var(--cta-foreground-hex, var(--on-dark)); }
.theme-offering-card__cta--disabled { background: var(--muted-hex); color: var(--muted-foreground, #6b5f52); cursor: not-allowed; box-shadow: none; }
.theme-offering-card__companion { margin-top: 0.5rem; min-height: 1.25rem; }
.theme-offering-card__companion a { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 11px; font-weight: 500; color: var(--workshops-hex); }
.theme-offering-card__companion a:hover { text-decoration: underline; }

.theme-offerings-view-all { margin-top: 3rem; display: flex; justify-content: center; }

/* ---------------------------- Pricing ---------------------------- */
.theme-pricing-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-pricing-section { padding: 7rem 0; } }
.theme-pricing-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-pricing-section__title { font-size: 3rem; } }
.theme-pricing-grid { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .theme-pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.theme-pricing-card {
  height: 100%; display: flex; flex-direction: column; background: var(--background-hex); border: 1px solid var(--border-hex);
  border-radius: 1.25rem; padding: 1.75rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s;
}
.theme-pricing-card:hover { box-shadow: var(--shadow-elevated); }
.theme-pricing-card__label { font-size: 1.875rem; margin-top: 0.5rem; }
.theme-pricing-card__rows { margin-top: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-pricing-card__row { border-top: 1px solid var(--border-hex); padding-top: 1rem; }
.theme-pricing-card__row-top { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem 1rem; flex-wrap: wrap; min-width: 0; }
.theme-pricing-card__row-name { font-weight: 600; min-width: 0; flex: 1 1 8rem; }
.theme-pricing-card__row-price { font-family: var(--font-display); font-size: 1.25rem; white-space: nowrap; flex-shrink: 0; }
.theme-pricing-card__row-detail { font-size: 0.875rem; color: var(--muted-foreground, #6b5f52); margin-top: 0.25rem; }
.theme-pricing-card__cta { margin-top: 1.75rem; font-size: 0.875rem; width: 100%; }

/* ---------------------------- Portfolio ---------------------------- */
.theme-portfolio-section { padding: 5rem 0; background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); }
@media (min-width: 1024px) { .theme-portfolio-section { padding: 7rem 0; } }
.theme-portfolio-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-portfolio-section__title { font-size: 3rem; } }
.theme-portfolio-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1rem; }
@media (min-width: 640px) { .theme-portfolio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-portfolio-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.theme-portfolio-item { position: relative; aspect-ratio: 1/1; border-radius: 0.75rem; overflow: hidden; background: var(--background-hex); box-shadow: var(--shadow-soft); margin: 0; }
.theme-portfolio-item__img { transition: transform 1.2s; }
.theme-portfolio-item:hover .theme-portfolio-item__img { transform: scale(1.05); }
.theme-portfolio-item__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1rem 1rem; padding-top: 3rem; font-size: 0.875rem; font-weight: 500; color: var(--on-dark);
  background: linear-gradient(to top, rgba(20,15,10,0.85), transparent);
}

/* ---------------------------- About ---------------------------- */
.theme-about-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-about-section { padding: 7rem 0; } }
.theme-about-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-about-section__title { font-size: 3rem; } }
.theme-about-grid { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 2.5rem; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 4rem; } }
.theme-about-copy { color: var(--muted-foreground, #6b5f52); min-width: 0; }
@media (min-width: 1024px) { .theme-about-copy { grid-column: span 7; } }
.theme-about-copy p { margin: 0 0 1rem; line-height: 1.7; }
.theme-about-quote { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--foreground-hex); overflow-wrap: break-word; }
.theme-about-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.75rem; min-width: 0;
}
@media (min-width: 1024px) { .theme-about-stats { grid-column: span 5; align-self: start; } }
.theme-about-stat { border-radius: 0.75rem; border: 1px solid var(--border-hex); background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); padding: 1.25rem; }
.theme-about-stat__val { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground, #6b5f52); }

/* ---------------------------- Owner ---------------------------- */
.theme-owner-section { padding: 5rem 0; background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); }
@media (min-width: 1024px) { .theme-owner-section { padding: 7rem 0; } }
.theme-owner-grid { display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-owner-grid { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 4rem; } }
.theme-owner-photo-wrap { min-width: 0; }
@media (min-width: 1024px) { .theme-owner-photo-wrap { grid-column: span 5; } }
.theme-owner-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; background: var(--background-hex); }
.theme-owner-photo__accent { position: absolute; bottom: 0; right: 0; height: 6rem; width: 6rem; background: var(--workshops-hex); }
.theme-owner-copy { min-width: 0; }
@media (min-width: 1024px) { .theme-owner-copy { grid-column: span 7; } }
.theme-owner-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-owner-section__title { font-size: 3rem; } }
.theme-owner-paragraphs { margin-top: 1.5rem; color: var(--muted-foreground, #6b5f52); }
.theme-owner-paragraphs p { margin: 0 0 1rem; line-height: 1.7; }
.theme-owner-ctas { margin-top: 1.75rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 0.75rem; }
@media (min-width: 768px) { .theme-owner-ctas { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.theme-owner-cta { width: 100%; }

/* ---------------------------- Testimonials ---------------------------- */
.theme-testimonials-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-testimonials-section { padding: 7rem 0; } }
.theme-testimonials-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-testimonials-section__title { font-size: 3rem; } }
.theme-testimonials-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .theme-testimonials-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.theme-testimonial-card { height: 100%; display: flex; flex-direction: column; border-radius: 1.25rem; border: 1px solid var(--border-hex); background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); padding: 1.75rem; margin: 0; }
.theme-testimonial-card__icon { color: var(--experiences-hex); }
.theme-testimonial-card__quote { margin-top: 1rem; line-height: 1.7; flex: 1; }
.theme-testimonial-card__footer { margin-top: 1.5rem; font-size: 0.875rem; }
.theme-testimonial-card__name { display: block; font-weight: 600; }
.theme-testimonial-card__role { color: var(--muted-foreground, #6b5f52); }

/* ---------------------------- Schedule ---------------------------- */
.theme-schedule-section { padding-bottom: 1rem; }
.theme-schedule-banner {
  border-radius: 1.25rem; border: 1px solid var(--border-hex); background: color-mix(in srgb, var(--sessions-hex) 7%, transparent);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between;
}
@media (min-width: 768px) { .theme-schedule-banner { flex-direction: row; align-items: center; padding: 2.25rem; } }
.theme-schedule-banner__text { display: flex; align-items: flex-start; gap: 1rem; min-width: 0; flex: 1 1 auto; }
.theme-schedule-banner__text > div { min-width: 0; }
.theme-schedule-banner__text svg { margin-top: 0.25rem; flex-shrink: 0; }
.theme-schedule-banner__title { font-size: 1.5rem; }

/* ---------------------------- FAQ ---------------------------- */
.theme-faq-section { padding: 5rem 0; background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); }
@media (min-width: 1024px) { .theme-faq-section { padding: 7rem 0; } }
.theme-faq-grid { display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 2.5rem; }
@media (min-width: 1024px) { .theme-faq-grid { grid-template-columns: repeat(12, minmax(0,1fr)); gap: 4rem; } }
.theme-faq-intro { min-width: 0; }
@media (min-width: 1024px) { .theme-faq-intro { grid-column: span 4; } }
.theme-faq-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-faq-section__title { font-size: 3rem; } }
.theme-faq-intro p { margin-top: 1.25rem; }
.theme-faq-list {
  min-width: 0;
  border-top: 1px solid var(--border-hex); border-bottom: 1px solid var(--border-hex);
}
@media (min-width: 1024px) { .theme-faq-list { grid-column: span 8; } }
.theme-faq-item { border-bottom: 1px solid var(--border-hex); }
.theme-faq-item:last-child { border-bottom: none; }
.theme-faq-question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; text-align: left; padding: 1.25rem 0; background: none; border: none; min-width: 0; }
.theme-faq-question__text { font-family: var(--font-display); font-size: 1.25rem; min-width: 0; flex: 1 1 auto; overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 768px) { .theme-faq-question__text { font-size: 1.5rem; } }
.theme-faq-question__icon { margin-top: 0.25rem; flex-shrink: 0; color: var(--workshops-hex); }
.theme-faq-question__icon .icon-minus { display: none; }
.theme-faq-item.is-open .theme-faq-question__icon .icon-plus { display: none; }
.theme-faq-item.is-open .theme-faq-question__icon .icon-minus { display: block; }
.theme-faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--transition-smooth); }
.theme-faq-item.is-open .theme-faq-answer { max-height: 32rem; }
.theme-faq-answer p { padding: 0 0 1.5rem 0; color: var(--muted-foreground, #6b5f52); line-height: 1.7; overflow-wrap: break-word; }

/* ---------------------------- Contact ---------------------------- */
.theme-contact-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-contact-section { padding: 7rem 0; } }
.theme-contact-grid { display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 3rem; }
@media (min-width: 1024px) { .theme-contact-grid { grid-template-columns: repeat(12, minmax(0,1fr)); } }
.theme-contact-info { min-width: 0; }
@media (min-width: 1024px) { .theme-contact-info { grid-column: span 5; } }
.theme-contact-section__title { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-contact-section__title { font-size: 3rem; } }
.theme-contact-info p { margin-top: 1.25rem; color: var(--muted-foreground, #6b5f52); line-height: 1.7; }
.theme-contact-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.theme-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; min-width: 0; }
.theme-contact-list a {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.theme-contact-list a:hover { text-decoration: underline; }
.theme-contact-form-wrap { min-width: 0; }
@media (min-width: 1024px) { .theme-contact-form-wrap { grid-column: span 7; } }
.theme-contact-form {
  background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); border: 1px solid var(--border-hex); border-radius: 1rem;
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; box-shadow: var(--shadow-soft);
  min-width: 0; max-width: 100%; box-sizing: border-box;
}
@media (min-width: 1024px) { .theme-contact-form { padding: 2rem; } }
.theme-contact-form__row { display: grid; grid-template-columns: repeat(1, minmax(0,1fr)); gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.theme-field-label { display: block; font-size: 0.875rem; }
.theme-field-label > span { display: block; margin-bottom: 0.375rem; color: var(--muted-foreground, #6b5f52); }
.theme-field-input {
  width: 100%; max-width: 100%; background: var(--background-hex); border: 1px solid var(--border-hex); border-radius: 0.5rem;
  padding: 0.625rem 0.75rem; color: inherit; box-sizing: border-box;
}
.theme-field-input:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--workshops-hex) 40%, transparent); }
.theme-field-textarea { resize: none; }
.theme-contact-submit { width: 100%; }
@media (min-width: 1024px) { .theme-contact-submit { width: auto; } }

/* ---------------------------- Footer ---------------------------- */
.site-footer { border-top: 1px solid var(--border-hex); background: color-mix(in srgb, var(--secondary-hex) 50%, transparent); overflow-x: clip; max-width: 100%; }
.theme-footer-inner { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-block: 5rem; } }
.theme-footer-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-footer-grid { gap: 3rem; } }
.theme-footer-brand { min-width: 0; }
@media (min-width: 768px) { .theme-footer-brand { grid-column: span 5; } }
.theme-footer-logo { display: inline-flex; align-items: center; gap: 0.75rem; min-width: 0; max-width: 100%; }
.theme-footer-logo .site-logo-img {
  width: 44px;
  height: 44px;
  max-width: 44px;
  object-fit: contain;
}
.theme-footer-name {
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: -0.025em;
  overflow-wrap: break-word; word-break: break-word; min-width: 0;
}
.theme-footer-tagline { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); max-width: 28rem; line-height: 1.625; }
.theme-footer-social { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.theme-footer-nav { min-width: 0; }
@media (min-width: 768px) { .theme-footer-nav { grid-column: span 3; } }
.theme-footer-nav .eyebrow,
.theme-footer-contact > .eyebrow:first-child { margin: 0 0 1rem; }
.theme-footer-links { display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.theme-footer-links a { transition: color 0.2s var(--transition-smooth), opacity 0.2s var(--transition-smooth); }
.theme-footer-links a:hover { opacity: 0.7; }
.theme-footer-links .theme-link-sessions:hover { opacity: 1; color: var(--sessions-hex); }
.theme-footer-links .theme-link-workshops:hover { opacity: 1; color: var(--workshops-hex); }
.theme-footer-links .theme-link-experiences:hover { opacity: 1; color: var(--experiences-hex); }
.theme-footer-links .theme-link-shop:hover { opacity: 1; color: var(--shop-hex); }
.theme-footer-contact { min-width: 0; }
@media (min-width: 768px) { .theme-footer-contact { grid-column: span 4; } }
.theme-footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.theme-footer-contact-list li { display: flex; align-items: flex-start; gap: 0.625rem; }
.theme-footer-contact-icon { flex-shrink: 0; width: 1rem; height: 1rem; margin-top: 0.125rem; color: var(--workshops-hex); }
.theme-footer-contact-list a { word-break: break-all; transition: color 0.2s var(--transition-smooth); }
.theme-footer-contact-list a:hover { color: var(--foreground-hex); }
.theme-footer-marketplaces-title { margin-top: 2rem; margin-bottom: 0.75rem; }
.theme-footer-marketplaces { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.theme-footer-bottom {
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border-hex); display: flex; flex-direction: column; gap: 0.75rem;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 768px) { .theme-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------------------------- Cart drawer ---------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(30,20,10,0.3); z-index: 50; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
  position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--background-hex); z-index: 51;
  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(--border-hex); }
.theme-cart-drawer__title-row { display: flex; align-items: center; gap: 0.75rem; min-width: 0; flex: 1 1 auto; }
.theme-cart-drawer__title { font-size: 1.25rem; min-width: 0; overflow-wrap: break-word; }
.theme-cart-clear { background: none; border: none; font-size: 0.75rem; color: var(--muted-foreground, #6b5f52); }
.theme-cart-clear:hover { color: var(--destructive); }
.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; }
.theme-cart-drawer__empty svg { color: var(--muted-foreground, #6b5f52); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--muted-foreground, #6b5f52); margin-bottom: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { width: 5rem; height: 6rem; background: var(--secondary-hex); border-radius: 0.25rem; overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--muted-foreground, #6b5f52); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--muted-foreground, #6b5f52); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; background: none; border: none; border-radius: 0.25rem; }
.theme-cart-qty-btn:hover { background: var(--secondary-hex); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 0.75rem; background: none; border: none; color: var(--muted-foreground, #6b5f52); }
.theme-cart-remove:hover { color: var(--foreground-hex); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--border-hex); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; font-weight: 500; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--muted-foreground, #6b5f52); }
.theme-cart-checkout-btn { width: 100%; }

/* Hide WooCommerce's injected "View cart" (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 (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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* Card compact variant is not used in this design — cards use the full-size
   .theme-offering-card__cta button, so no scoped override is required. */

/* ---------------------------- Single product ---------------------------- */
body.theme-no-hero .site-main.single-product-main,
body.admin-bar.theme-no-hero .site-main.single-product-main {
  padding-top: 0 !important;
}
body.single-product .site-main.single-product-main .theme-single-product-wrap {
  padding-block: 6rem 5rem;
}
@media (min-width: 768px) {
  body.single-product .site-main.single-product-main .theme-single-product-wrap {
    padding-block-start: 7rem;
  }
}

.theme-back-to-shop { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground, #6b5f52); margin-bottom: 2rem; }
.theme-back-to-shop:hover { color: var(--foreground-hex); }

.single-product-main .theme-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  min-width: 0;
}
@media (min-width: 1024px) {
  .single-product-main .theme-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
}
.single-product-main .theme-product-gallery,
.single-product-main .theme-product-info { min-width: 0; max-width: 100%; }

.single-product-main .theme-product-main-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--border-hex);
  overflow: hidden;
  background: var(--secondary-hex);
}
.single-product-main .theme-product-main-img {
  position: static !important;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.single-product-main .theme-product-cats {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground, #6b5f52);
  margin: 0 0 0.5rem;
}

.single-product-main .product-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1.1;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 768px) {
  .single-product-main .product-title { font-size: 3rem; }
}

.single-product-main .theme-product-price {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--foreground-hex);
}

.single-product-main .theme-product-description {
  overflow-wrap: break-word;
  word-break: break-word;
  margin-top: 1.25rem;
  line-height: 1.7;
  color: var(--muted-foreground, #6b5f52);
}
.single-product-main .theme-product-description p { margin: 0 0 0.75rem; }
.single-product-main .theme-product-description p:last-child { margin-bottom: 0; }

.single-product-main .theme-add-to-cart-area {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.single-product-main .theme-product-info .theme-product-options { margin-top: 1.5rem; margin-bottom: 0; }

.single-product-main .theme-atc-button,
.single-product-main .single_add_to_cart_button.theme-atc-button {
  flex: 1 1 auto;
  min-width: 160px;
  min-height: var(--btn-height);
  background: var(--cta-hex, var(--color-primary, #a35a3a)) !important;
  color: var(--cta-foreground-hex, var(--background-hex, #f8f2e7)) !important;
  border: none !important;
  border-radius: var(--btn-radius) !important;
  font-weight: var(--btn-font-weight);
  font-size: var(--btn-font-size);
  cursor: pointer;
}
.single-product-main .theme-atc-button:hover:not(:disabled):not(.disabled) {
  filter: brightness(0.95);
}

.single-product-main .theme-quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-hex);
  border-radius: var(--btn-radius);
  overflow: hidden;
  background: var(--background-hex);
}
.single-product-main .theme-qty-minus,
.single-product-main .theme-qty-plus {
  width: 2.75rem;
  height: 3rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
}
.single-product-main .theme-qty-minus:hover,
.single-product-main .theme-qty-plus:hover { background: var(--secondary-hex); }
.single-product-main .theme-qty-value {
  min-width: 2.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
  user-select: none;
}
.single-product-main .theme-qty-input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.single-product-main .theme-product-details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-hex);
}
.single-product-main .theme-product-details__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}
.single-product-main .theme-product-details-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground, #6b5f52);
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.single-product-main .theme-product-details-list li::marker {
  color: var(--cta-hex, var(--color-primary, #a35a3a));
}

.single-product-main .variations.shop_attributes tbody,
.single-product-main .variations tbody tr,
.single-product-main .variations tbody td { display: block; width: 100%; }
.single-product-main .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product-main .variations tbody td.value { padding-top: 0; }

.single-product-main .woocommerce-tabs,
.single-product-main .product_meta,
.single-product-main .woocommerce-breadcrumb,
.single-product-main .woocommerce-product-gallery,
.single-product-main .flex-control-thumbs,
.single-product-main .pswp,
.single-product-main form.cart .reset_variations,
.single-product-main .woocommerce-variation-price,
.single-product-main .woocommerce-variation-availability {
  display: none !important;
}

.theme-related-products__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .theme-related-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.theme-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--card-radius);
  border: 1px solid color-mix(in srgb, var(--border-hex) 60%, transparent);
  background: color-mix(in srgb, var(--secondary-hex) 60%, transparent);
  overflow: hidden;
  transition: box-shadow 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}
.theme-related-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.theme-related-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--background-hex);
}
.theme-related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-related-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1rem 1rem 1.25rem;
}
.theme-related-card__cat {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-foreground, #6b5f52);
}
.theme-related-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--foreground-hex);
}
.theme-related-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground-hex);
}
.theme-attr-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* PDP product options */
.theme-product-options { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 1.5rem; width: 100%; }
.theme-product-option__label { margin: 0 0 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground-hex); }
.theme-product-option__swatches,
.theme-product-option__pills { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.theme-product-option { position: relative; }

.theme-color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.875rem;
  border: 2px solid var(--border-hex);
  border-radius: 0.75rem;
  background: transparent;
  transition: border-color 0.2s, background-color 0.2s;
}
.theme-color-swatch:hover { border-color: color-mix(in srgb, var(--cta-hex) 40%, var(--border-hex)); }
.theme-color-swatch.is-selected {
  border-color: var(--cta-hex);
  background: color-mix(in srgb, var(--cta-hex) 5%, transparent);
}
.theme-color-swatch__circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--foreground-hex) 15%, transparent);
  flex-shrink: 0;
}
.theme-color-swatch__name { font-size: 0.875rem; font-weight: 500; color: var(--foreground-hex); }

.theme-attr-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--border-hex);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.theme-attr-pill:hover { border-color: var(--foreground-hex); }
.theme-attr-pill.is-selected {
  background: var(--foreground-hex);
  color: var(--background-hex);
  border-color: var(--foreground-hex);
}

.theme-product-request { margin-top: 0.25rem; }

/* Cart drawer line meta */
.theme-cart-item__meta { list-style: none; margin: 0.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground, #6b5f52); }
.theme-cart-item__meta-row { display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; align-items: center; }
.theme-cart-item__meta-label { font-weight: 600; color: var(--foreground-hex); }
.theme-cart-item__meta-value--color { display: inline-flex; align-items: center; gap: 0.375rem; }
.theme-cart-item__swatch { width: 0.875rem; height: 0.875rem; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--foreground-hex) 20%, transparent); flex-shrink: 0; }
.theme-cart-item__meta-value--request { font-style: italic; }

.theme-related-products { margin-top: 5rem; }
.theme-related-products__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  margin: 0 0 2rem;
}

/* ---------------------------- Shop archive ---------------------------- */
.woocommerce-shop-archive .theme-shop-wrap { padding-block: 8rem 5rem; }
.theme-shop-header { margin-bottom: 2.5rem; }
.theme-shop-header__title { font-size: 2.5rem; margin-top: 0.5rem; }
.theme-no-products { padding-block: 3rem; color: var(--muted-foreground, #6b5f52); }
.woocommerce-page .woocommerce-message,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-error {
  list-style: none; margin: 0 0 1.5rem; padding: 1rem 1.5rem; border-radius: 0.5rem; background: var(--secondary-hex); color: var(--foreground-hex); font-size: 0.875rem;
}
.single-product-main .woocommerce-message,
.single-product-main .woocommerce-info,
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* ---------------------------- Checkout Block ---------------------------- */
body.woocommerce-checkout .site-main,
body.theme-checkout-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout,
body.theme-checkout-page { overflow-x: clip; max-width: 100%; }

body.woocommerce-checkout .container-wide--checkout,
body.theme-checkout-page .container-wide--checkout,
.entry-content--checkout {
  max-width: none;
  width: 100%;
}

.theme-checkout-header { max-width: 48rem; margin-bottom: 3rem; }
.theme-checkout-back { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--muted-foreground, #6b5f52); }
.theme-checkout-back:hover { color: var(--foreground-hex); }
.theme-checkout-eyebrow { display: block; margin-top: 1.5rem; }
.theme-checkout-title { font-family: var(--font-display); font-size: 2.25rem; margin-top: 0.75rem; line-height: 1.1; }
@media (min-width: 768px) { .theme-checkout-title { font-size: 3.75rem; } }
.theme-checkout-intro { margin-top: 1rem; max-width: 36rem; line-height: 1.7; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .entry-content .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .entry-content .wc-block-checkout__main,
body.woocommerce-checkout .entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__main,
.entry-content .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-cart-items { font-family: var(--font-body); }

body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
body.woocommerce-checkout .entry-content .wc-block-components-sidebar-layout,
body.woocommerce-checkout .entry-content .wc-block-checkout-sidebar-layout,
.entry-content .wc-block-components-sidebar-layout,
.entry-content .wc-block-checkout-sidebar-layout {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  body.woocommerce-checkout .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
  body.woocommerce-checkout .entry-content .wc-block-components-sidebar-layout,
  body.woocommerce-checkout .entry-content .wc-block-checkout-sidebar-layout,
  .entry-content .wc-block-components-sidebar-layout,
  .entry-content .wc-block-checkout-sidebar-layout {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 400px);
    gap: var(--checkout-gap);
    align-items: start;
  }
}

body.woocommerce-checkout .wc-block-components-notices,
body.woocommerce-checkout .entry-content .wc-block-components-notices,
.entry-content .wc-block-components-notices {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  box-sizing: border-box;
  grid-column: 1 / -1;
  order: 1;
}

body.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-checkout .entry-content .wc-block-components-notice-banner,
.entry-content .wc-block-components-notice-banner {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .entry-content .wc-block-checkout__main,
.entry-content .wc-block-checkout__main { order: 2; }

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar { order: 3; }

body.woocommerce-checkout .wc-block-components-sidebar-layout > *,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
.entry-content .wc-block-components-sidebar-layout > *,
.entry-content .wc-block-checkout-sidebar-layout > * {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .entry-content .wc-block-checkout__sidebar,
body.woocommerce-checkout .entry-content .wc-block-components-sidebar,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
.entry-content .wp-block-woocommerce-checkout-totals-block {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  background-color: var(--color-surface);
  border-radius: var(--card-radius);
  padding: var(--section-padding);
  box-sizing: border-box;
}
@media (min-width: 768px) {
  body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
  body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout-order-summary-block,
  .entry-content .wp-block-woocommerce-checkout-order-summary-block {
    min-width: 360px;
  }
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select { width: 100% !important; max-width: none !important; }
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 {
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--foreground-hex);
  border: 1px solid var(--border-hex) !important; border-radius: 0.5rem; background: var(--background-hex);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { box-shadow: 0 0 0 2px color-mix(in srgb, var(--workshops-hex) 40%, transparent); }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--muted-foreground, #6b5f52); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background-color: var(--cta-hex) !important; color: var(--cta-foreground-hex, var(--on-dark)) !important; border-radius: var(--btn-radius) !important;
}

body.woocommerce-checkout .wc-block-checkout-empty,
body.woocommerce-checkout .entry-content .wc-block-checkout-empty,
.entry-content .wc-block-checkout-empty {
  margin-inline: auto;
  max-width: 36rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

body.woocommerce-checkout .entry-content,
body.theme-checkout-page .entry-content { max-width: none; }
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; }

/* ---------------------------- Thank-you page (Section 22.8) ---------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 2rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border: none; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
@media (min-width: 768px) {
  body.theme-thankyou-page .woocommerce-customer-details {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
  }
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; }

/* ---------------------------- Cart / Account width parity (13.7) ---------------------------- */
body.woocommerce-cart .site-main, body.woocommerce-account .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }

/* ---------------------------- Generic / 404 pages ---------------------------- */
.theme-generic-page { padding-block: 8rem 5rem; max-width: 100%; overflow-x: clip; }
.theme-generic-page .entry-content,
.entry-content--checkout {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}
.theme-404 { min-height: 60vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; }
.theme-404-inner h1 { font-size: 3.5rem; overflow-wrap: break-word; }

/* ---------------------------- Mobile overflow safeguards ---------------------------- */
@media (max-width: 767px) {
  .btn-cta,
  .btn-outline-hero,
  .theme-pill-button,
  .theme-pill-link {
    white-space: normal;
    height: auto;
    min-height: var(--btn-height);
    padding-block: 0.75rem;
    text-align: center;
    max-width: 100%;
  }

  .theme-hero__title { font-size: 2.5rem; }
  .theme-path-section__title,
  .theme-offerings-section__title { font-size: 2rem; }
  .theme-path-card__label { font-size: 2rem; }
  .theme-about-quote { font-size: 1.25rem; }

  .theme-schedule-banner .btn-cta { width: 100%; }
  .theme-pricing-card__row-price { white-space: normal; }

  .theme-offering-card {
    padding: 0.75rem;
    min-width: 0;
  }
  .theme-offering-card__body { padding-inline: 0; }

  .single-product-main .theme-add-to-cart-area {
    flex-direction: column;
    align-items: stretch;
  }
  .single-product-main .theme-quantity-wrapper,
  .single-product-main .theme-atc-button,
  .single-product-main .single_add_to_cart_button.theme-atc-button {
    width: 100%;
    min-width: 0;
    flex: 1 1 auto;
  }

  .theme-footer-bottom p { overflow-wrap: break-word; }
}

@media (max-width: 374px) {
  .container-wide { padding-inline: 1rem; }
  .theme-hero__title { font-size: 2.125rem; }
  .theme-filter-pill { font-size: 0.75rem; padding-inline: 0.5rem; }
}
.theme-404-link { display: inline-block; margin-top: 1rem; text-decoration: underline; }
