/*
 * StilBruch production foundation — PASS 6C
 * Shared tokens + approved header/footer/sticky CTA from v33.
 * Page-specific layouts are intentionally added in later passes.
 */

:root {
  --sb-black: #1A1A1A;
  --sb-offwhite: #F4F1EA;
  --sb-pink: #E83B99;
  --sb-gold: #B08D57;
  --sb-grey: #8D8984;
  --sb-canvas: #E7E2DA;

  --font-display: 'Neue Haas Grotesk Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --container-max: 1440px;
  --space-xs: clamp(0.5rem, 0.8vw, 0.625rem);
  --space-sm: clamp(0.75rem, 1.2vw, 1rem);
  --space-md: clamp(1rem, 1.8vw, 1.5rem);
  --space-lg: clamp(1.5rem, 2.8vw, 2.5rem);
  --space-xl: clamp(2.2rem, 4.5vw, 3.5rem);
  --space-2xl: clamp(3rem, 7vw, 5.5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body.stilbruch-production {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--sb-offwhite);
  color: var(--sb-black);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.stilbruch-production img,
body.stilbruch-production picture,
body.stilbruch-production video,
body.stilbruch-production svg { display: block; max-width: 100%; height: auto; }
body.stilbruch-production a { color: inherit; text-decoration: none; }
body.stilbruch-production button { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 0;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--sb-pink);
  color: var(--sb-black);
  font-weight: 600;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible { outline: 2px solid var(--sb-pink); outline-offset: 3px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 44px;
  padding: .85em 1.5em;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: clamp(.8rem, .9vw, .9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn-primary { position: relative; overflow: hidden; background: var(--sb-pink); color: var(--sb-black); border-color: var(--sb-pink); }
.btn-primary:hover, .btn-primary:focus-visible { background: #d12f88; border-color: #d12f88; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(232,59,153,.15); }
.btn-primary:active { transform: translateY(1px); box-shadow: none; }

/* HEADER — approved v33 behavior */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  width: 100%;
  padding-block: var(--space-sm);
  background: transparent;
  transition: background-color .3s ease, padding .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  padding-block: calc(var(--space-sm) * .6);
  background: rgba(26,26,26,.92);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); }
.logo-primary { display: flex; align-items: center; flex-shrink: 0; line-height: 1; }
.site-header .header-logo { display: block; width: auto; height: auto; }
.site-header .header-logo-primary { display: none; width: clamp(120px, 10vw, 135px); }
.site-header .header-logo-secondary { display: block; width: clamp(118px, 32vw, 138px); }

.desktop-nav { display: none; }
.desktop-nav ul { display: flex; align-items: center; gap: clamp(1.2rem, 2vw, 2.2rem); margin: 0; padding: 0; list-style: none; }
.desktop-nav a {
  position: relative;
  padding-block: 6px;
  color: var(--sb-offwhite);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, opacity .2s ease;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--sb-pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--sb-pink); opacity: .85; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta-desktop { display: none; flex-shrink: 0; }
.mobile-header-controls { display: flex; align-items: center; gap: var(--space-xs); }
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  margin-right: -6px;
  padding: 6px;
  border: 0;
  background: transparent;
  color: var(--sb-offwhite);
  cursor: pointer;
}
.menu-toggle .bar { display: block; width: 24px; height: 2px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: calc(var(--space-xl) + 56px) clamp(1rem, 4vw, 1.5rem) var(--space-xl);
  background: var(--sb-black);
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), opacity .3s ease, visibility .3s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateX(0); visibility: visible; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: var(--space-sm); margin: 0; padding: 0; list-style: none; }
.mobile-menu nav a { display: block; padding-block: .2em; color: var(--sb-offwhite); font-family: var(--font-display); font-size: clamp(1.8rem,10vw,2.8rem); line-height: 1.1; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { color: var(--sb-pink); opacity: .85; transform: translateX(4px); }
.mobile-menu-cta { margin-top: var(--space-lg); }
.mobile-menu-cta .btn { width: 100%; }
.mobile-menu-secondary { margin-top: auto; padding-top: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-xs); color: var(--sb-grey); font-size: .9rem; }
.mobile-menu-secondary a { color: var(--sb-offwhite); }
.mobile-menu-secondary a:hover, .mobile-menu-secondary a:focus-visible { color: var(--sb-pink); }

@media (min-width: 1024px) {
  .site-header .header-logo-primary { display: block; }
  .site-header .header-logo-secondary { display: none; }
  .desktop-nav, .header-cta-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* FOUNDATION CONTENT SAFETY — removed once page-specific templates arrive */
.stilbruch-foundation-page { min-height: 70vh; padding: calc(110px + var(--space-2xl)) 0 var(--space-2xl); }
.stilbruch-foundation-page h1 { margin: 0 0 var(--space-md); font-family: var(--font-display); font-size: clamp(2.2rem,5.2vw,5rem); line-height: .92; }
.stilbruch-foundation-note { max-width: 60ch; color: var(--sb-grey); }

/* FOOTER — approved v33 behavior */
.site-footer {
  padding-block: var(--space-xl);
  padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(244,241,234,.06);
  background: var(--sb-black);
  color: var(--sb-offwhite);
}
.footer-top { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.footer-brand .logo-primary img { width: clamp(150px,16vw,220px); height: auto; }
.footer-brand p { margin: var(--space-sm) 0 0; color: rgba(244,241,234,.7); }
.footer-group h5 { margin: 0 0 var(--space-sm); color: var(--sb-grey); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.footer-group ul { display: flex; flex-direction: column; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.footer-group a { color: var(--sb-offwhite); transition: color .2s ease, opacity .2s ease; }
.footer-group a:hover, .footer-group a:focus-visible { color: var(--sb-pink); }
.footer-contact p { margin: 0 0 var(--space-sm); color: rgba(244,241,234,.75); line-height: 1.6; }
.footer-bottom { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-xl); padding-top: var(--space-md); border-top: 1px solid rgba(244,241,234,.12); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-md); font-size: .72rem; letter-spacing: .08em; }
.footer-statement { color: var(--sb-grey); font-size: .72rem; letter-spacing: .09em; }

@media (min-width: 768px) {
  .site-footer { padding-block: var(--space-2xl); padding-bottom: calc(var(--space-xl) + env(safe-area-inset-bottom, 0px)); }
  .footer-top { grid-template-columns: minmax(240px,1.4fr) repeat(3,minmax(150px,1fr)); gap: var(--space-lg); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (max-width: 1023px) {
  .site-footer { padding-bottom: calc(var(--space-xl) + 72px + env(safe-area-inset-bottom, 0px)); }
}

/* MOBILE STICKY CTA */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  display: none;
  justify-content: center;
  padding: .65rem 1rem calc(.65rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  background: linear-gradient(to top, rgba(244,241,234,.98), rgba(244,241,234,.88), rgba(244,241,234,0));
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.mobile-sticky-cta.is-active { display: flex; }
.mobile-sticky-cta .btn { width: auto; min-width: 200px; max-width: 90%; pointer-events: auto; box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.mobile-sticky-cta.is-near-footer { opacity: 0; transform: translateY(12px); visibility: hidden; pointer-events: none; }
@media (min-width: 1024px) { .mobile-sticky-cta { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==================================================
   PASS 6D — HOME PRODUCTION TEMPLATE
   Approved v33 HOME translated to real WP/Woo data.
   ================================================== */
body.stilbruch-production h1,
body.stilbruch-production h2,
body.stilbruch-production h3,
body.stilbruch-production h4,
body.stilbruch-production h5,
body.stilbruch-production p,
body.stilbruch-production figure { margin: 0; }
body.stilbruch-production ul { margin: 0; padding: 0; }
body.stilbruch-production .eyebrow {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--sb-grey);
  font-family: var(--font-body);
  font-size: clamp(.65rem,.8vw,.75rem);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.stilbruch-production .h1,
body.stilbruch-production h1 { font-family: var(--font-display); font-size: clamp(2.2rem,5.2vw,5rem); line-height:.92; letter-spacing:-.03em; font-weight:700; }
body.stilbruch-production .h2,
body.stilbruch-production h2 { font-family: var(--font-display); font-size: clamp(1.75rem,3.6vw,3.6rem); line-height:.96; letter-spacing:-.025em; font-weight:700; }
body.stilbruch-production .h3,
body.stilbruch-production h3 { font-family: var(--font-display); font-size: clamp(1.25rem,2vw,1.9rem); line-height:1.1; font-weight:700; }
body.stilbruch-production .h4,
body.stilbruch-production h4 { font-family: var(--font-display); font-size: clamp(.95rem,1.3vw,1.2rem); line-height:1.2; font-weight:700; }
body.stilbruch-production p { font-size: clamp(.93rem,1.05vw,1.05rem); line-height:1.65; max-width:52ch; }

.btn-quiet { min-height:auto; padding-inline:0; position:relative; background:transparent; color:inherit; }
.btn-quiet::after { content:''; position:absolute; left:0; bottom:-2px; width:100%; height:1px; background:currentColor; transform:scaleX(1); transform-origin:left; transition:transform .25s ease, opacity .25s ease; }
.btn-quiet:hover::after,.btn-quiet:focus-visible::after { transform:scaleX(0); transform-origin:right; }
.btn-outline-light { border:1px solid rgba(244,241,234,.6); color:var(--sb-offwhite); }
.btn-outline-light:hover,.btn-outline-light:focus-visible { background:var(--sb-offwhite); color:var(--sb-black); border-color:var(--sb-offwhite); transform:translateY(-1px); }
.btn-outline-dark { border:1px solid var(--sb-black); color:var(--sb-black); }
.btn-outline-dark:hover,.btn-outline-dark:focus-visible { background:var(--sb-black); color:var(--sb-offwhite); transform:translateY(-1px); }
.btn-dark { background:var(--sb-black); color:var(--sb-offwhite); border:1px solid var(--sb-black); }
.btn-dark:hover,.btn-dark:focus-visible { background:#000; border-color:#000; transform:translateY(-1px); }

.stilbruch-home section { position:relative; }
.asset-placeholder { width:100%; height:100%; display:flex; align-items:center; justify-content:center; background:var(--sb-canvas); color:var(--sb-grey); text-align:center; padding:var(--space-sm); font-size:.72rem; font-weight:500; letter-spacing:.07em; text-transform:uppercase; }
.asset-placeholder-dark { background:#3a3836; color:rgba(244,241,234,.45); }

/* Hero A */
.stilbruch-home .hero { min-height:100dvh; display:flex; flex-direction:column; justify-content:center; padding-top:calc(72px + var(--space-xl)); padding-bottom:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.stilbruch-home .hero-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.stilbruch-home .hero-copy { order:1; }
.stilbruch-home .hero-image { order:2; position:relative; }
.stilbruch-home .hero-image .img-canvas { aspect-ratio:4/5; max-height:50vh; display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; background:var(--sb-grey); }
.stilbruch-home .hero-image .img-canvas img { width:100%; height:100%; object-fit:cover; object-position:center center; opacity:.9; }
.stilbruch-home .hero-headline { margin-bottom:var(--space-sm); }
.stilbruch-home .hero-eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
.stilbruch-home .hero-text { margin-bottom:var(--space-md); max-width:46ch; color:rgba(244,241,234,.85); }
.stilbruch-home .hero-actions { display:flex; flex-wrap:wrap; gap:var(--space-xs) var(--space-sm); align-items:center; }
.stilbruch-home .hero-actions .btn { font-size:.82rem; padding:.8em 1.3em; }
.stilbruch-home .hero-actions .btn-quiet { color:var(--sb-offwhite); }
@media (max-width:420px) { .stilbruch-home .hero-actions { flex-direction:column; align-items:stretch; gap:var(--space-xs); } .stilbruch-home .hero-actions .btn { width:100%; } .stilbruch-home .hero-image .img-canvas { max-height:45vh; } }
@media (min-width:768px) { .stilbruch-home .hero-inner { grid-template-columns:45fr 55fr; gap:var(--space-xl); } .stilbruch-home .hero-image .img-canvas { aspect-ratio:3/4; max-height:none; } .stilbruch-home .hero-headline { margin-bottom:var(--space-md); } .stilbruch-home .hero-text { margin-bottom:var(--space-lg); } }

/* Trust strip */
.stilbruch-home .trust-strip { overflow:hidden; padding-block:var(--space-xs); border-top:1px solid rgba(244,241,234,.06); background:var(--sb-black); color:rgba(244,241,234,.4); }
.stilbruch-home .trust-strip-inner { overflow:hidden; font-size:clamp(.62rem,.8vw,.75rem); font-weight:500; letter-spacing:.12em; text-align:center; text-transform:uppercase; white-space:nowrap; }
.stilbruch-home .marquee-track { display:inline-flex; width:max-content; }
@keyframes stilbruchSubtleMarquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@media (prefers-reduced-motion:no-preference) { .stilbruch-home .trust-strip .marquee-track { animation:stilbruchSubtleMarquee 40s linear infinite; } .stilbruch-home .trust-strip:hover .marquee-track { animation-play-state:paused; } }
@media (min-width:768px) { .stilbruch-home .trust-strip { padding-block:var(--space-sm); } }

/* Shared homepage headings */
.stilbruch-home .section-header { margin-bottom:var(--space-md); }
.stilbruch-home .section-header .eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
@media (min-width:768px) { .stilbruch-home .section-header { margin-bottom:var(--space-lg); } }

/* Available now — real WooCommerce */
.stilbruch-home .available-now { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.stilbruch-home .product-grid { display:grid; grid-template-columns:1fr; gap:var(--space-md); }
.stilbruch-home .product-card { display:flex; flex-direction:column; gap:var(--space-sm); }
.stilbruch-home .card-media { position:relative; overflow:hidden; display:block; aspect-ratio:4/5; background:var(--sb-canvas); }
.stilbruch-home .card-media img { width:100%; height:100%; object-fit:cover; transition:transform .5s cubic-bezier(.25,.46,.45,.94), opacity .35s ease; }
.stilbruch-home .card-meta { padding-top:var(--space-xs); }
.stilbruch-home .card-name { margin-bottom:.3em; font-family:var(--font-display); font-size:clamp(1rem,1.15vw,1.15rem); font-weight:700; line-height:1.25; letter-spacing:-.01em; }
.stilbruch-home .card-details { color:var(--sb-grey); font-size:.88rem; line-height:1.45; }
.stilbruch-home .card-details .price { color:inherit; font-size:inherit; font-weight:inherit; }
.stilbruch-home .card-details del { opacity:.55; }
.stilbruch-home .card-details ins { text-decoration:none; }
.stilbruch-home .card-status { display:inline-block; margin-top:.5em; padding:2px 0; font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }
.stilbruch-home .status-available { color:var(--sb-pink); border-bottom:1.5px solid var(--sb-pink); }
.stilbruch-home .status-reserved { color:var(--sb-grey); border-bottom:1.5px solid var(--sb-grey); opacity:.8; }
.stilbruch-home .section-footer-cta { margin-top:var(--space-lg); }
.stilbruch-home .home-shop-links { display:flex; flex-wrap:wrap; align-items:center; gap:var(--space-xs) var(--space-md); }
.stilbruch-home .home-sold-archive-link { color:var(--sb-grey); font-size:.72rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; border-bottom:1px solid rgba(26,26,26,.28); padding-bottom:3px; transition:color .2s ease,border-color .2s ease; }
.stilbruch-home .home-sold-archive-link:hover,.stilbruch-home .home-sold-archive-link:focus-visible { color:var(--sb-black); border-color:var(--sb-black); }
@media (hover:hover) { .stilbruch-home .product-card:hover .card-media img,.stilbruch-home .product-card:focus-within .card-media img { transform:scale(1.02); opacity:.92; } }
@media (min-width:640px) and (max-width:1023px) { .stilbruch-home .product-grid { grid-template-columns:repeat(2,1fr); } }
@media (min-width:1024px) { .stilbruch-home .product-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-lg); } }
@media (min-width:768px) { .stilbruch-home .available-now { padding-block:var(--space-2xl); } }
@media (max-width:767px) { .stilbruch-home .available-now .product-card:nth-child(n+4) { display:none; } }

/* Two ways */
.stilbruch-home .two-ways { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.stilbruch-home .two-ways-intro { margin-bottom:var(--space-sm); color:var(--sb-pink); font-size:.7rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; }
.stilbruch-home .two-ways-inner { display:grid; grid-template-columns:1fr; gap:var(--space-md); position:relative; }
.stilbruch-home .way-block h3 { margin-bottom:var(--space-xs); }
.stilbruch-home .way-block p { margin-bottom:var(--space-sm); max-width:44ch; color:rgba(244,241,234,.8); font-size:.92rem; line-height:1.6; }
.stilbruch-home .way-block .btn-quiet { color:var(--sb-offwhite); }
@media (min-width:768px) { .stilbruch-home .two-ways { padding-block:var(--space-2xl); } .stilbruch-home .two-ways-inner { grid-template-columns:1fr 1px 1fr; gap:var(--space-xl); } .stilbruch-home .two-ways-divider { background:rgba(244,241,234,.15); } .stilbruch-home .way-block { padding-inline:var(--space-sm); } .stilbruch-home .way-block p { margin-bottom:var(--space-md); font-size:.95rem; } }

/* Bring your own */
.stilbruch-home .bring-your-own { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.stilbruch-home .steps-grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); margin-top:var(--space-xl); }
.stilbruch-home .step-number { display:block; margin-bottom:var(--space-xs); color:var(--sb-canvas); font-family:var(--font-display); font-size:clamp(2.2rem,3.5vw,3rem); line-height:1; }
.stilbruch-home .step h4 { margin-bottom:var(--space-xs); }
.stilbruch-home .step p { color:rgba(26,26,26,.75); font-size:.95rem; line-height:1.6; }
.stilbruch-home .bring-cta-block { margin-top:var(--space-lg); display:flex; flex-direction:column; align-items:flex-start; gap:var(--space-xs); }
.stilbruch-home .bring-cta-block .btn { font-size:.82rem; padding:.8em 1.3em; }
.stilbruch-home .kostenlos-statement { margin-top:var(--space-xs); max-width:42ch; font-family:var(--font-display); font-size:clamp(1rem,1.3vw,1.2rem); font-weight:700; line-height:1.3; letter-spacing:-.01em; }
@media (min-width:768px) { .stilbruch-home .steps-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-lg); } }

/* Before / After — approved real-asset ratio change 4:3 -> 4:5 */
.stilbruch-home .before-after { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.stilbruch-home .before-after .eyebrow { color:var(--sb-pink); }
.stilbruch-home .ba-pair { display:grid; grid-template-columns:1fr; gap:var(--space-xs); margin-top:var(--space-sm); }
.stilbruch-home .ba-image { position:relative; overflow:hidden; aspect-ratio:4/5; background:var(--sb-grey); }
.stilbruch-home .ba-image img { width:100%; height:100%; object-fit:cover; object-position:center center; opacity:.88; }
.stilbruch-home .ba-label { position:absolute; left:var(--space-sm); bottom:var(--space-sm); padding:5px 8px; background:rgba(26,26,26,.7); color:var(--sb-offwhite); font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }
.stilbruch-home .ba-copy { margin-top:var(--space-sm); display:flex; flex-direction:column; gap:var(--space-xs); }
.stilbruch-home .ba-copy p { max-width:46ch; font-size:.9rem; line-height:1.6; }
.stilbruch-home .process-line { color:var(--sb-grey); font-size:.68rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; opacity:.8; }
@media (min-width:640px) { .stilbruch-home .ba-pair { grid-template-columns:1fr 1fr; gap:var(--space-sm); } }
@media (min-width:768px) { .stilbruch-home .before-after { padding-block:var(--space-2xl); } }

/* Process */
.stilbruch-home .process { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.stilbruch-home .process .eyebrow { color:var(--sb-pink); }
.stilbruch-home .process-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-xs); margin-top:var(--space-lg); }
.stilbruch-home .process-media { position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; aspect-ratio:3/4; margin-bottom:var(--space-xs); background:var(--sb-canvas); }
.stilbruch-home .process-media img { width:100%; height:100%; object-fit:cover; object-position:center; }
.stilbruch-home .process-label { font-family:var(--font-display); font-size:clamp(.82rem,.9vw,.95rem); font-weight:700; }
@media (min-width:640px) { .stilbruch-home .process-grid { gap:var(--space-sm); } }
@media (min-width:768px) { .stilbruch-home .process { padding-block:var(--space-2xl); } .stilbruch-home .process-media { margin-bottom:var(--space-sm); } }
@media (min-width:1024px) { .stilbruch-home .process-grid { grid-template-columns:repeat(4,1fr); gap:var(--space-md); } }

/* Business */
.stilbruch-home .business { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.stilbruch-home .business-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.stilbruch-home .business-media { position:relative; overflow:hidden; aspect-ratio:16/10; max-height:35vh; background:#3a3836; }
.stilbruch-home .business-media img { width:100%; height:100%; object-fit:cover; object-position:center; }
.stilbruch-home .concept-badge { position:absolute; top:var(--space-sm); left:var(--space-sm); padding:4px 8px; background:rgba(26,26,26,.85); color:var(--sb-offwhite); font-size:.68rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.stilbruch-home .business-copy .eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
.stilbruch-home .business-copy h2 { margin-bottom:var(--space-sm); }
.stilbruch-home .business-copy > p { margin-bottom:var(--space-md); color:rgba(244,241,234,.8); font-size:.92rem; line-height:1.65; }
.stilbruch-home .business-copy .service-line { margin-bottom:var(--space-md); color:var(--sb-gold); font-size:.72rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; opacity:.85; }
@media (min-width:768px) { .stilbruch-home .business { padding-block:var(--space-2xl); } .stilbruch-home .business-media { max-height:none; } .stilbruch-home .business-copy h2 { margin-bottom:var(--space-md); } .stilbruch-home .business-copy > p { margin-bottom:var(--space-lg); font-size:.95rem; } }
@media (min-width:1024px) { .stilbruch-home .business-inner { grid-template-columns:1fr 1fr; gap:var(--space-xl); } }

/* Objects */
.stilbruch-home .objects { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.stilbruch-home .objects .eyebrow { color:var(--sb-pink); }
.stilbruch-home .objects-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-sm); margin-top:var(--space-xl); }
.stilbruch-home .objects-item { display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio:1; background:var(--sb-canvas); }
.stilbruch-home .objects-item img { width:100%; height:100%; object-fit:cover; object-position:center; }
.stilbruch-home .objects-placeholder-text { padding:var(--space-sm); color:var(--sb-grey); font-size:.72rem; letter-spacing:.07em; text-align:center; text-transform:uppercase; }
.stilbruch-home .objects-footer { margin-top:var(--space-lg); }
@media (min-width:640px) { .stilbruch-home .objects-grid { grid-template-columns:repeat(4,1fr); gap:var(--space-md); } }

/* Visit */
.stilbruch-home .visit { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.stilbruch-home .visit-grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:start; }
.stilbruch-home .visit-info .eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
.stilbruch-home .visit-info h2 { margin-bottom:var(--space-sm); }
.stilbruch-home .visit-info > p { margin-bottom:var(--space-md); color:rgba(26,26,26,.85); font-size:.92rem; line-height:1.6; }
.stilbruch-home .visit-details { display:flex; flex-direction:column; gap:var(--space-sm); margin-bottom:var(--space-md); }
.stilbruch-home .visit-block h4 { margin-bottom:.5em; color:var(--sb-black); font-family:var(--font-body); font-size:.72rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; }
.stilbruch-home .visit-block p,.stilbruch-home .visit-block a { color:var(--sb-black); font-size:.92rem; line-height:1.6; }
.stilbruch-home .visit-buttons { display:flex; flex-wrap:wrap; gap:var(--space-xs) var(--space-sm); margin-bottom:var(--space-xs); }
.stilbruch-home .visit-note { margin-top:var(--space-xs); color:var(--sb-grey); font-size:.85rem; font-style:italic; line-height:1.55; }
.stilbruch-home .visit-media { position:relative; overflow:hidden; aspect-ratio:4/3; max-height:40vh; background:var(--sb-canvas); }
.stilbruch-home .visit-media img { width:100%; height:100%; object-fit:cover; object-position:center 42%; }
.stilbruch-home .visit-store-badge { position:absolute; left:var(--space-sm); bottom:var(--space-sm); padding:5px 8px; background:rgba(26,26,26,.85); color:var(--sb-offwhite); font-size:.68rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
@media (min-width:768px) { .stilbruch-home .visit { padding-block:var(--space-2xl); } .stilbruch-home .visit-info > p { margin-bottom:var(--space-lg); font-size:.95rem; } .stilbruch-home .visit-details { gap:var(--space-md); margin-bottom:var(--space-lg); } .stilbruch-home .visit-media { max-height:none; } }
@media (min-width:1024px) { .stilbruch-home .visit-grid { grid-template-columns:1fr 1fr; gap:var(--space-xl); } }

/* Social */
.stilbruch-home .social { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.stilbruch-home .social-headline { display:flex; flex-wrap:wrap; justify-content:space-between; align-items:baseline; gap:var(--space-sm); margin-bottom:var(--space-lg); }
.stilbruch-home .social-handle { color:var(--sb-pink); font-family:var(--font-display); font-size:clamp(1.2rem,1.8vw,1.6rem); letter-spacing:-.01em; }
.stilbruch-home .social-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-sm); }
.stilbruch-home .social-item { display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio:1; background:var(--sb-grey); }
.stilbruch-home .social-item > img,.stilbruch-home .social-item > .asset-placeholder { width:100%; height:100%; }
.stilbruch-home .social-item img { width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .35s ease; }
.stilbruch-home .social-item:hover img { transform:scale(1.025); }
.stilbruch-home .social-ba-split { display:grid; grid-template-columns:1fr 1fr; width:100%; height:100%; overflow:hidden; }
.stilbruch-home .social-ba-split > img,.stilbruch-home .social-ba-split > .asset-placeholder { width:100%; height:100%; min-width:0; }
.stilbruch-home .social-footer { margin-top:var(--space-lg); color:rgba(244,241,234,.35); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; }
@media (min-width:640px) { .stilbruch-home .social-grid { grid-template-columns:repeat(4,1fr); } }

/* v33 mobile-density behavior */
@media (max-width:767px) {
  body.stilbruch-production .h1,body.stilbruch-production h1 { font-size:clamp(1.75rem,6.5vw,2.2rem); line-height:.96; letter-spacing:-.025em; }
  body.stilbruch-production .h2,body.stilbruch-production h2 { font-size:clamp(1.4rem,4.5vw,1.7rem); line-height:1; letter-spacing:-.02em; }
  body.stilbruch-production .h3,body.stilbruch-production h3 { font-size:clamp(1.05rem,3vw,1.3rem); }
  body.stilbruch-production p { font-size:.9rem; line-height:1.6; }
  .stilbruch-home .available-now,.stilbruch-home .two-ways,.stilbruch-home .bring-your-own,.stilbruch-home .before-after,.stilbruch-home .process,.stilbruch-home .business,.stilbruch-home .objects,.stilbruch-home .visit,.stilbruch-home .social { padding-block:var(--space-lg); }
  .stilbruch-home .section-header { margin-bottom:var(--space-sm); }
  .stilbruch-home .section-footer-cta { margin-top:var(--space-sm); }
  .stilbruch-home .hero { padding-top:calc(64px + var(--space-md)); }
  .stilbruch-home .hero-image .img-canvas { max-height:42vh; }
}
@media (max-width:359px) { body.stilbruch-production .h1,body.stilbruch-production h1 { font-size:1.6rem; } body.stilbruch-production .h2,body.stilbruch-production h2 { font-size:1.25rem; } }


/* ==================================================
   PASS 6D.1 — WORDPRESS VISUAL QA FIXES
   Screenshot-driven fixes only. No content/architecture changes.
   ================================================== */

/* Astra/global theme rules were overriding some approved foreground colours. */
body.stilbruch-production .stilbruch-home h1,
body.stilbruch-production .stilbruch-home h2,
body.stilbruch-production .stilbruch-home h3,
body.stilbruch-production .stilbruch-home h4,
body.stilbruch-production .stilbruch-home h5 {
  color: inherit !important;
}

body.stilbruch-production .site-header .desktop-nav a {
  color: var(--sb-offwhite) !important;
}
body.stilbruch-production .site-header .desktop-nav a:hover,
body.stilbruch-production .site-header .desktop-nav a:focus-visible {
  color: var(--sb-pink) !important;
}

/* Lock button label colours against Astra anchor styles. */
body.stilbruch-production .btn-primary { color: var(--sb-black) !important; }
body.stilbruch-production .btn-dark { color: var(--sb-offwhite) !important; }
body.stilbruch-production .btn-outline-dark { color: var(--sb-black) !important; }
body.stilbruch-production .btn-outline-light { color: var(--sb-offwhite) !important; }
body.stilbruch-production .btn-quiet { color: inherit !important; }

/* BYO step numbers: keep them quiet, but readable on the real WP render. */
.stilbruch-home .step-number {
  color: rgba(26,26,26,.18);
}

/* Real Before/After photography must remain fully visible. */
.stilbruch-home .ba-image {
  background: #242424;
}
.stilbruch-home .ba-image img {
  object-fit: contain;
  object-position: center center;
  opacity: 1;
}

/* Storefront asset: use its natural aspect ratio instead of cropping it. */
.stilbruch-home .visit-media {
  aspect-ratio: auto;
  max-height: none;
  background: var(--sb-canvas);
}
.stilbruch-home .visit-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

/* Footer wordmark needs a deliberate air gap before the descriptor. */
body.stilbruch-production .site-footer .footer-brand .logo-primary {
  margin-bottom: var(--space-sm);
}
body.stilbruch-production .site-footer .footer-brand p {
  margin: 0;
}

/* ==================================================
   PASS 6D.2 — RESPONSIVE HEADER + TABLET HERO QA
   Screenshot-driven only. Preserve approved desktop Hero A.
   ================================================== */

/*
 * Some legacy/Astra/Customizer CSS is displacing the production header
 * in responsive preview. Lock the StilBruch header to the viewport origin.
 */
body.stilbruch-production #siteHeader.site-header {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  inset: 0 0 auto 0 !important;
  margin: 0 !important;
  transform: none !important;
  translate: none !important;
  max-width: none !important;
  width: 100% !important;
}

/* Make sure the mobile/tablet menu control cannot be hidden by Astra rules. */
@media (max-width: 1023px) {
  body.stilbruch-production #siteHeader .mobile-header-controls {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.stilbruch-production #siteHeader #menuToggle.menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--sb-offwhite) !important;
    background: transparent !important;
  }
  body.stilbruch-production #siteHeader #menuToggle .bar {
    display: block !important;
    background: var(--sb-offwhite) !important;
  }
}

@media (min-width: 1024px) {
  body.stilbruch-production #siteHeader .mobile-header-controls,
  body.stilbruch-production #siteHeader #menuToggle.menu-toggle {
    display: none !important;
  }
}

/*
 * v33 used a two-column Hero at 768px. WordPress Customizer's tablet
 * viewport is slightly narrower, so use the same tablet composition from 700px.
 * Mobile remains copy/buttons first, image second.
 */
@media (min-width: 700px) and (max-width: 767px) {
  .stilbruch-home .hero-inner {
    grid-template-columns: 45fr 55fr;
    gap: var(--space-xl);
  }
  .stilbruch-home .hero-image .img-canvas {
    aspect-ratio: 3 / 4;
    max-height: none;
  }
  .stilbruch-home .hero-headline { margin-bottom: var(--space-md); }
  .stilbruch-home .hero-text { margin-bottom: var(--space-lg); }
}

/* ==================================================
   PASS 6D.3 — HOME MICRO-SPACING + MOBILE HERO POLISH
   Approved visual refinement only. No structure/content changes.
   ================================================== */

/*
 * Mobile Hero: keep the approved order (copy → CTAs → image), but let the
 * statement image carry slightly more visual weight. Tablet/desktop unchanged.
 */
@media (max-width: 699px) {
  .stilbruch-home .hero-image {
    margin-inline: clamp(-0.35rem, -1.8vw, -0.2rem);
  }
  .stilbruch-home .hero-image .img-canvas {
    width: calc(100% + clamp(0.4rem, 3.6vw, 0.7rem));
    max-width: none;
  }
  .stilbruch-home .hero-image .img-canvas img {
    width: 100% !important;
    min-width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
  }
}

/*
 * Consistent editorial copy rhythm for normal homepage content sections:
 * eyebrow → headline → paragraph. Hero/product cards keep their own rhythm.
 */
.stilbruch-home .section-header .eyebrow {
  margin-bottom: clamp(0.5rem, 0.8vw, 0.65rem);
}
.stilbruch-home .section-header h2 + p {
  margin-top: clamp(0.8rem, 1.2vw, 1rem);
}
.stilbruch-home .section-header > p {
  line-height: 1.6;
}

.stilbruch-home .business-copy .eyebrow,
.stilbruch-home .visit-info .eyebrow {
  margin-bottom: clamp(0.5rem, 0.8vw, 0.65rem);
}
.stilbruch-home .business-copy h2,
.stilbruch-home .visit-info h2 {
  margin-bottom: clamp(0.8rem, 1.2vw, 1rem);
}

/* Footer group labels need a clearer pause before their first entry. */
body.stilbruch-production .site-footer .footer-group h5 {
  margin: 0 0 clamp(0.8rem, 1.1vw, 1rem) !important;
}


/* ==================================================
   PASS 6D.4 — MOBILE HERO FRAMING FIX
   Keep approved mobile order. Restore portrait framing; no other changes.
   ================================================== */
@media (max-width: 699px) {
  .stilbruch-home .hero-image {
    margin-inline: 0;
  }
  .stilbruch-home .hero-image .img-canvas {
    width: 100%;
    max-width: 100%;
    max-height: none !important;
    aspect-ratio: 4 / 5;
  }
  .stilbruch-home .hero-image .img-canvas img,
  .stilbruch-home .hero-image .img-canvas .home-hero-photo {
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* ==================================================
   PASS 6E — PRODUCTION SHOP + SOLD ARCHIVE
   Real WooCommerce query/data, approved v33 catalogue language.
   ================================================== */
body.stilbruch-production .stilbruch-catalog {
  min-height: 70vh;
  padding: calc(72px + var(--space-xl)) 0 var(--space-2xl);
  background: var(--sb-offwhite);
  color: var(--sb-black);
}
body.stilbruch-production .stilbruch-catalog .eyebrow {
  display: block;
  margin-bottom: clamp(.5rem,.8vw,.65rem);
  color: var(--sb-pink);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.stilbruch-production .stilbruch-catalog .h1 {
  margin: 0 0 var(--space-sm);
  color: var(--sb-black) !important;
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5.4vw,5rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.03em;
}
body.stilbruch-production .shop-header,
body.stilbruch-production .sold-archive-header {
  margin-bottom: var(--space-xl);
}
body.stilbruch-production .shop-header p,
body.stilbruch-production .sold-archive-header p {
  max-width: 48ch;
  color: rgba(26,26,26,.72);
  line-height: 1.65;
}

body.stilbruch-production .shop-filters { margin: 0 0 var(--space-lg); }
body.stilbruch-production .shop-filters ul { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin: 0; padding: 0; list-style: none; }
body.stilbruch-production .shop-filters a {
  display: inline-flex;
  padding: .55em 1em;
  border: 1px solid var(--sb-canvas);
  color: var(--sb-black);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background-color .2s ease,color .2s ease,border-color .2s ease,transform .15s ease;
}
body.stilbruch-production .shop-filters a:hover,
body.stilbruch-production .shop-filters a:focus-visible,
body.stilbruch-production .shop-filters a.is-active {
  background: var(--sb-black);
  border-color: var(--sb-black);
  color: var(--sb-offwhite);
  transform: translateY(-1px);
}

body.stilbruch-production .stilbruch-catalog .shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
body.stilbruch-production .stilbruch-catalog .product-card { display: flex; flex-direction: column; gap: var(--space-sm); min-width: 0; }
body.stilbruch-production .stilbruch-catalog .card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sb-canvas);
}
body.stilbruch-production .stilbruch-catalog .card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94),opacity .35s ease;
}
body.stilbruch-production .stilbruch-catalog .card-meta { padding-top: var(--space-xs); }
body.stilbruch-production .stilbruch-catalog .card-name {
  margin-bottom: .3em;
  font-family: var(--font-display);
  font-size: clamp(1rem,1.15vw,1.15rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
body.stilbruch-production .stilbruch-catalog .card-details { color: var(--sb-grey); font-size: .88rem; line-height: 1.45; }
body.stilbruch-production .stilbruch-catalog .card-details .price { color: inherit; font-size: inherit; font-weight: inherit; }
body.stilbruch-production .stilbruch-catalog .card-details del { opacity: .55; }
body.stilbruch-production .stilbruch-catalog .card-details ins { text-decoration: none; }
body.stilbruch-production .stilbruch-catalog .card-status {
  display: inline-block;
  margin-top: .5em;
  padding: 2px 0;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.stilbruch-production .stilbruch-catalog .status-available { color: var(--sb-pink); border-bottom: 1.5px solid var(--sb-pink); }
body.stilbruch-production .stilbruch-catalog .status-reserved { color: var(--sb-grey); border-bottom: 1.5px solid var(--sb-grey); opacity: .85; }
body.stilbruch-production .stilbruch-catalog .status-sold { color: var(--sb-black); border-bottom: 1.5px solid var(--sb-black); }

@media (hover:hover) {
  body.stilbruch-production .stilbruch-catalog .product-card:hover .card-media img,
  body.stilbruch-production .stilbruch-catalog .product-card:focus-within .card-media img { transform: scale(1.015); opacity: .94; }
}
@media (min-width:640px) and (max-width:1023px) {
  body.stilbruch-production .stilbruch-catalog .shop-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: var(--space-md); }
  body.stilbruch-production .stilbruch-shop .product-card.is-featured { grid-column: span 2; }
  body.stilbruch-production .stilbruch-shop .product-card.is-featured .card-media { aspect-ratio: 16 / 10; }
}
@media (min-width:1024px) {
  body.stilbruch-production .stilbruch-catalog { padding-top: calc(80px + var(--space-xl)); }
  body.stilbruch-production .stilbruch-catalog .shop-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: var(--space-lg); }
  body.stilbruch-production .stilbruch-shop .product-card.is-featured { grid-column: span 2; }
  body.stilbruch-production .stilbruch-shop .product-card.is-featured .card-media { aspect-ratio: 16 / 10; }
}

body.stilbruch-production .catalog-empty {
  max-width: 52ch;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--sb-canvas);
}
body.stilbruch-production .catalog-empty h2 { margin: 0 0 var(--space-sm); color: var(--sb-black) !important; font-family: var(--font-display); }
body.stilbruch-production .catalog-empty p { margin: 0 0 var(--space-md); color: rgba(26,26,26,.72); line-height: 1.65; }

body.stilbruch-production .stilbruch-pagination { margin-top: var(--space-xl); }
body.stilbruch-production .stilbruch-pagination ul.page-numbers { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; border: 0; list-style: none; }
body.stilbruch-production .stilbruch-pagination .page-numbers li { border: 0; }
body.stilbruch-production .stilbruch-pagination a.page-numbers,
body.stilbruch-production .stilbruch-pagination span.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sb-canvas);
  color: var(--sb-black);
  font-size: .82rem;
}
body.stilbruch-production .stilbruch-pagination .current { background: var(--sb-black); border-color: var(--sb-black) !important; color: var(--sb-offwhite) !important; }

/* SOLD cards never show a historical price publicly. The global Woo filter also enforces this. */
body.stilbruch-production .stilbruch-sold-archive .card-price { display: none !important; }

/* ==================================================
   PASS 6F — REAL WOOCOMMERCE PRODUCT DETAIL
   ================================================== */
body.stilbruch-production .stilbruch-product-detail {
  min-height: 70vh;
  background: var(--sb-offwhite);
  color: var(--sb-black);
}
body.stilbruch-production .stilbruch-product-detail h1,
body.stilbruch-production .stilbruch-product-detail h2,
body.stilbruch-production .stilbruch-product-detail h3,
body.stilbruch-production .stilbruch-product-detail h4 { color: var(--sb-black) !important; }
body.stilbruch-production .stilbruch-product-detail .product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-top: calc(68px + var(--space-md));
  padding-bottom: var(--space-lg);
}

/* Gallery */
body.stilbruch-production .stilbruch-product-detail .product-gallery { min-width: 0; }
body.stilbruch-production .stilbruch-product-detail .gallery-main {
  position: relative;
  display: flex;
  width: 100%;
  max-height: 65vh;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--sb-canvas);
  cursor: zoom-in;
}
body.stilbruch-production .stilbruch-product-detail .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
body.stilbruch-production .stilbruch-product-detail .gallery-thumbs {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  padding-bottom: 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
body.stilbruch-production .stilbruch-product-detail .gallery-thumbs::-webkit-scrollbar { display: none; }
body.stilbruch-production .stilbruch-product-detail .gallery-thumb {
  display: flex;
  flex: 0 0 clamp(58px,14vw,82px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: var(--sb-canvas);
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color .2s ease, opacity .2s ease;
}
body.stilbruch-production .stilbruch-product-detail .gallery-thumb.is-active { border-color: var(--sb-black); }
body.stilbruch-production .stilbruch-product-detail .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product info */
body.stilbruch-production .stilbruch-product-detail .product-info { min-width: 0; }
body.stilbruch-production .stilbruch-product-detail .product-info-header { margin: 0; }
body.stilbruch-production .stilbruch-product-detail .product-no {
  margin-bottom: .55em;
  color: var(--sb-grey);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.stilbruch-production .stilbruch-product-detail .product-title {
  margin: 0 0 var(--space-xs);
  color: var(--sb-black) !important;
  font-family: var(--font-display);
  font-size: clamp(1.75rem,3vw,2.8rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
}
body.stilbruch-production .stilbruch-product-detail .product-price-current {
  margin-bottom: var(--space-xs);
  color: var(--sb-black);
  font-family: var(--font-display);
  font-size: clamp(1.2rem,1.8vw,1.6rem);
  font-weight: 700;
}
body.stilbruch-production .stilbruch-product-detail .product-price-current .price,
body.stilbruch-production .stilbruch-product-detail .product-price-current .woocommerce-Price-amount { color: inherit; font-size: inherit; font-weight: inherit; }
body.stilbruch-production .stilbruch-product-detail .product-status-badge {
  display: inline-block;
  margin: var(--space-xs) 0 var(--space-sm);
  padding: 6px 14px;
  border-radius: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.stilbruch-production .stilbruch-product-detail .badge-available { background: var(--sb-pink); color: var(--sb-black); }
body.stilbruch-production .stilbruch-product-detail .badge-reserved { border: 1px solid var(--sb-canvas); background: transparent; color: var(--sb-grey); }
body.stilbruch-production .stilbruch-product-detail .badge-sold { background: var(--sb-black); color: var(--sb-offwhite); letter-spacing: .15em; }
body.stilbruch-production .stilbruch-product-detail .product-dims { margin-bottom: var(--space-sm); color: var(--sb-grey); font-size: .88rem; letter-spacing: .02em; }
body.stilbruch-production .stilbruch-product-detail .product-description { max-width: 46ch; margin-bottom: var(--space-md); }
body.stilbruch-production .stilbruch-product-detail .product-description p { margin: 0 0 .7em; color: rgba(26,26,26,.76); line-height: 1.65; }
body.stilbruch-production .stilbruch-product-detail .product-description p:last-child { margin-bottom: 0; }
body.stilbruch-production .stilbruch-product-detail .product-actions { display: flex; flex-direction: column; gap: var(--space-xs); margin-top: var(--space-sm); }
body.stilbruch-production .stilbruch-product-detail .product-actions .cart { margin: 0; }
body.stilbruch-production .stilbruch-product-detail .product-actions .single_add_to_cart_button,
body.stilbruch-production .stilbruch-product-detail .product-actions .btn {
  width: 100%;
  min-height: 50px;
}
body.stilbruch-production .stilbruch-product-detail .product-actions .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: .95em 1.5em !important;
  border: 1px solid var(--sb-pink) !important;
  border-radius: 0 !important;
  background: var(--sb-pink) !important;
  color: var(--sb-black) !important;
  font-family: var(--font-body) !important;
  font-size: .84rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}
body.stilbruch-production .stilbruch-product-detail .product-actions .single_add_to_cart_button:hover,
body.stilbruch-production .stilbruch-product-detail .product-actions .single_add_to_cart_button:focus-visible { background: #d12f88 !important; border-color: #d12f88 !important; }
body.stilbruch-production .stilbruch-product-detail .quantity { display: none !important; }
body.stilbruch-production .stilbruch-product-detail .product-subnote { color: var(--sb-grey); font-size: .78rem; line-height: 1.5; }
body.stilbruch-production .stilbruch-product-detail .product-subnote strong { color: var(--sb-black); }
body.stilbruch-production .stilbruch-product-detail .product-state-note { margin: 0; padding: .65em 0; color: var(--sb-grey); font-size: .92rem; }

/* Delivery */
body.stilbruch-production .stilbruch-product-detail .delivery-block { margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid var(--sb-canvas); }
body.stilbruch-production .stilbruch-product-detail .delivery-block .eyebrow { display: block; margin-bottom: var(--space-xs); color: var(--sb-pink); }
body.stilbruch-production .stilbruch-product-detail .delivery-row { display: flex; justify-content: space-between; align-items: baseline; gap: var(--space-md); padding-block: .55em; border-bottom: 1px solid rgba(231,226,218,.7); font-size: .85rem; }
body.stilbruch-production .stilbruch-product-detail .delivery-label { color: var(--sb-grey); }
body.stilbruch-production .stilbruch-product-detail .delivery-value { flex-shrink: 0; color: var(--sb-black); font-weight: 600; text-align: right; white-space: nowrap; }
body.stilbruch-production .stilbruch-product-detail .delivery-note { margin: var(--space-xs) 0 0; color: var(--sb-grey); font-size: .78rem; line-height: 1.5; }

/* SOLD prompt */
body.stilbruch-production .stilbruch-product-detail .sold-prompt { margin-top: var(--space-lg); padding-top: var(--space-lg); border-top: 1px solid var(--sb-canvas); }
body.stilbruch-production .stilbruch-product-detail .sold-prompt h3 { margin: 0 0 var(--space-sm); font-family: var(--font-display); font-size: clamp(1.2rem,1.8vw,1.55rem); }
body.stilbruch-production .stilbruch-product-detail .sold-prompt p { max-width: 46ch; margin: 0 0 var(--space-md); color: rgba(26,26,26,.75); line-height: 1.6; }
body.stilbruch-production .stilbruch-product-detail .sold-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

/* Below fold editorial */
body.stilbruch-production .stilbruch-product-detail .product-rich-wrap { padding-bottom: var(--space-2xl); }
body.stilbruch-production .stilbruch-product-detail .product-rich-section { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--sb-canvas); }
body.stilbruch-production .stilbruch-product-detail .rich-section { min-width: 0; }
body.stilbruch-production .stilbruch-product-detail .rich-title { margin: 0 0 var(--space-sm); color: var(--sb-black) !important; font-family: var(--font-display); font-size: clamp(1.05rem,1.4vw,1.3rem); font-weight: 700; letter-spacing: -.01em; }
body.stilbruch-production .stilbruch-product-detail .rich-text { max-width: 58ch; margin: 0; color: rgba(26,26,26,.72); line-height: 1.7; }
body.stilbruch-production .stilbruch-product-detail .product-ba-pair { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); margin-top: var(--space-sm); }
body.stilbruch-production .stilbruch-product-detail .product-ba-image { position: relative; overflow: hidden; margin: 0; aspect-ratio: 4 / 5; background: #242424; }
body.stilbruch-production .stilbruch-product-detail .product-ba-image img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }
body.stilbruch-production .stilbruch-product-detail .ba-label { position: absolute; left: var(--space-sm); bottom: var(--space-sm); padding: 5px 8px; background: rgba(26,26,26,.78); color: var(--sb-offwhite); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
body.stilbruch-production .stilbruch-product-detail .detail-list { margin-top: var(--space-md); border-top: 1px solid var(--sb-canvas); }
body.stilbruch-production .stilbruch-product-detail .detail-row { display: grid; grid-template-columns: 110px 1fr; gap: var(--space-sm); align-items: baseline; padding-block: .7em; border-bottom: 1px solid var(--sb-canvas); font-size: .9rem; }
body.stilbruch-production .stilbruch-product-detail .detail-label-mini { color: var(--sb-grey); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
body.stilbruch-production .stilbruch-product-detail .detail-value-mini { color: var(--sb-black); font-weight: 600; word-break: break-word; }
body.stilbruch-production .stilbruch-product-detail .secondhand-notice { padding: var(--space-md); border-left: 3px solid var(--sb-grey); background: var(--sb-canvas); color: var(--sb-grey); font-size: .85rem; line-height: 1.65; }

/* Lightbox */
.stilbruch-lightbox { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; padding: clamp(1rem,3vw,2rem); background: rgba(16,16,16,.96); }
.stilbruch-lightbox.is-open { display: flex; }
.stilbruch-lightbox-inner { position: relative; display: flex; width: min(92vw,1200px); height: min(90vh,900px); align-items: center; justify-content: center; }
.stilbruch-lightbox-image { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.stilbruch-lightbox-close,
.stilbruch-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(244,241,234,.32) !important;
  border-radius: 0;
  background: rgba(26,26,26,.78) !important;
  color: rgba(244,241,234,.92) !important;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  opacity: 1;
  cursor: pointer;
  line-height: 1;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}
.stilbruch-lightbox-close:hover,
.stilbruch-lightbox-close:focus-visible,
.stilbruch-lightbox-nav:hover,
.stilbruch-lightbox-nav:focus-visible {
  color: var(--sb-pink) !important;
  border-color: var(--sb-pink) !important;
  background: rgba(26,26,26,.9) !important;
}
.stilbruch-lightbox-close:focus-visible,
.stilbruch-lightbox-nav:focus-visible { outline: 2px solid var(--sb-pink); outline-offset: 3px; }
.stilbruch-lightbox-close { top: 0; right: 0; font-size: 1.6rem; }
.stilbruch-lightbox-prev { left: 0; top: 50%; transform: translateY(-50%); }
.stilbruch-lightbox-next { right: 0; top: 50%; transform: translateY(-50%); }
.stilbruch-lightbox-prev:hover,
.stilbruch-lightbox-prev:focus-visible { transform: translateY(-50%); }
.stilbruch-lightbox-next:hover,
.stilbruch-lightbox-next:focus-visible { transform: translateY(-50%); }

@media (min-width:640px) {
  body.stilbruch-production .stilbruch-product-detail .product-ba-pair { grid-template-columns: 1fr 1fr; }
  body.stilbruch-production .stilbruch-product-detail .detail-row { grid-template-columns: 140px 1fr; }
}
@media (min-width:768px) {
  body.stilbruch-production .stilbruch-product-detail .gallery-main { max-height: 75vh; }
  body.stilbruch-production .stilbruch-product-detail .product-layout { padding-top: calc(72px + var(--space-lg)); }
  body.stilbruch-production .stilbruch-product-detail .secondhand-notice { padding: var(--space-md) var(--space-lg); }
}
@media (min-width:1024px) {
  body.stilbruch-production .stilbruch-product-detail .product-layout { grid-template-columns: 56fr 44fr; gap: var(--space-xl); align-items: start; padding-top: calc(80px + var(--space-xl)); padding-bottom: var(--space-2xl); }
  body.stilbruch-production .stilbruch-product-detail .gallery-main { max-height: none; }
  body.stilbruch-production .stilbruch-product-detail .product-info-inner { position: sticky; top: 112px; }
  body.stilbruch-production .stilbruch-product-detail .product-rich-section { grid-template-columns: 56fr 44fr; gap: var(--space-xl); padding-top: var(--space-2xl); }
  body.stilbruch-production .stilbruch-product-detail .rich-section,
  body.stilbruch-production .stilbruch-product-detail .secondhand-notice { grid-column: 1 / -1; }
}
@media (max-width:767px) {
  body.stilbruch-production .stilbruch-product-detail { padding-bottom: 72px; }
  body.stilbruch-production .stilbruch-product-detail .product-layout { gap: var(--space-md); }
  body.stilbruch-production .stilbruch-product-detail .gallery-main { max-height: none; }
  body.stilbruch-production .stilbruch-product-detail .product-info { padding-top: var(--space-xs); }
  body.stilbruch-production .stilbruch-product-detail .product-rich-wrap { padding-bottom: var(--space-xl); }
  body.stilbruch-production .stilbruch-product-detail .product-rich-section { gap: var(--space-lg); padding-top: var(--space-lg); }
  .stilbruch-lightbox-nav { width: 40px; height: 40px; }
}

/* ==================================================
   PASS 6G — CART + CHECKOUT
   Native WooCommerce structure, StilBruch presentation.
   ================================================== */

/* Non-home pages must never begin with a transparent header over off-white. */
body.stilbruch-production:not(.home) .site-header {
  background: rgba(26,26,26,.97);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}

body.stilbruch-production.woocommerce-cart,
body.stilbruch-production.woocommerce-checkout { background: var(--sb-offwhite); }

body.stilbruch-production.woocommerce-cart .site-content,
body.stilbruch-production.woocommerce-checkout .site-content {
  min-height: 65vh;
  padding-top: calc(72px + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: var(--sb-offwhite);
}

body.stilbruch-production.woocommerce-cart .site-content > .ast-container,
body.stilbruch-production.woocommerce-checkout .site-content > .ast-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem,4vw,1.5rem);
}

body.stilbruch-production.woocommerce-cart .content-area,
body.stilbruch-production.woocommerce-checkout .content-area,
body.stilbruch-production.woocommerce-cart #primary,
body.stilbruch-production.woocommerce-checkout #primary {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

body.stilbruch-production.woocommerce-cart .entry-header,
body.stilbruch-production.woocommerce-checkout .entry-header { display: none; }

.stilbruch-commerce-intro { margin-bottom: var(--space-xl); }
.stilbruch-commerce-intro .eyebrow { margin-bottom: var(--space-xs); color: var(--sb-pink); }
.stilbruch-commerce-intro .h1 { color: var(--sb-black) !important; }

/* Notices */
body.stilbruch-production .woocommerce-notices-wrapper,
body.stilbruch-production .woocommerce-NoticeGroup { margin-bottom: var(--space-md); }
body.stilbruch-production .woocommerce-message,
body.stilbruch-production .woocommerce-info,
body.stilbruch-production .woocommerce-error {
  margin: 0 0 var(--space-md) !important;
  padding: var(--space-sm) var(--space-md) !important;
  border: 0 !important;
  border-left: 3px solid var(--sb-pink) !important;
  border-radius: 0 !important;
  background: var(--sb-canvas) !important;
  color: var(--sb-black) !important;
  box-shadow: none !important;
}
body.stilbruch-production .woocommerce-error { border-left-color: var(--sb-black) !important; }

/* ---------------- CLASSIC CART ---------------- */
body.stilbruch-production.woocommerce-cart .woocommerce-cart-form { margin: 0; }
body.stilbruch-production.woocommerce-cart table.shop_table {
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
  background: transparent;
}
body.stilbruch-production.woocommerce-cart table.shop_table thead { border-bottom: 1px solid var(--sb-black); }
body.stilbruch-production.woocommerce-cart table.shop_table th {
  padding: .8rem .55rem !important;
  color: var(--sb-grey);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.stilbruch-production.woocommerce-cart table.shop_table td {
  padding: var(--space-sm) .55rem !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--sb-canvas) !important;
  vertical-align: middle;
}
body.stilbruch-production.woocommerce-cart td.product-thumbnail { width: 120px; }
body.stilbruch-production.woocommerce-cart td.product-thumbnail img {
  width: 96px !important;
  height: 120px !important;
  object-fit: contain;
  background: var(--sb-canvas);
}
body.stilbruch-production.woocommerce-cart td.product-name a {
  color: var(--sb-black) !important;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
body.stilbruch-production.woocommerce-cart .variation,
body.stilbruch-production.woocommerce-cart .wc-item-meta {
  margin-top: .45rem;
  color: var(--sb-grey);
  font-size: .78rem;
}
body.stilbruch-production.woocommerce-cart .variation dt,
body.stilbruch-production.woocommerce-cart .variation dd { display: inline; float: none; }
body.stilbruch-production.woocommerce-cart .product-price,
body.stilbruch-production.woocommerce-cart .product-subtotal { font-weight: 600; white-space: nowrap; }
body.stilbruch-production.woocommerce-cart a.remove {
  display: inline-flex !important;
  width: 32px !important;
  height: 32px !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sb-canvas) !important;
  border-radius: 0 !important;
  color: var(--sb-grey) !important;
  font-size: 1.1rem !important;
  line-height: 1 !important;
}
body.stilbruch-production.woocommerce-cart a.remove:hover,
body.stilbruch-production.woocommerce-cart a.remove:focus-visible {
  border-color: var(--sb-pink) !important;
  background: transparent !important;
  color: var(--sb-pink) !important;
}
body.stilbruch-production.woocommerce-cart .quantity { display: none !important; }
body.stilbruch-production.woocommerce-cart .actions { padding-top: var(--space-md) !important; }
body.stilbruch-production.woocommerce-cart .coupon { display: flex; gap: var(--space-xs); }

body.stilbruch-production.woocommerce-cart .cart-collaterals { margin-top: var(--space-xl); }
body.stilbruch-production.woocommerce-cart .cart_totals {
  width: 100% !important;
  float: none !important;
  padding: var(--space-md);
  background: var(--sb-canvas);
}
body.stilbruch-production.woocommerce-cart .cart_totals h2 {
  margin-bottom: var(--space-md) !important;
  color: var(--sb-black) !important;
  font-size: clamp(1.2rem,2vw,1.65rem) !important;
}
body.stilbruch-production.woocommerce-cart .cart_totals table th,
body.stilbruch-production.woocommerce-cart .cart_totals table td {
  padding: .7rem 0 !important;
  border-bottom: 1px solid rgba(141,137,132,.22) !important;
}
body.stilbruch-production.woocommerce-cart .wc-proceed-to-checkout { padding: var(--space-md) 0 0 !important; }

/* ---------------- BUTTONS / INPUTS ---------------- */
body.stilbruch-production.woocommerce-cart .button,
body.stilbruch-production.woocommerce-checkout .button,
body.stilbruch-production .wc-block-components-button:not(.is-link) {
  min-height: 48px !important;
  padding: .9em 1.4em !important;
  border: 1px solid var(--sb-pink) !important;
  border-radius: 0 !important;
  background: var(--sb-pink) !important;
  color: var(--sb-black) !important;
  font-family: var(--font-body) !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}
body.stilbruch-production.woocommerce-cart .button:hover,
body.stilbruch-production.woocommerce-cart .button:focus-visible,
body.stilbruch-production.woocommerce-checkout .button:hover,
body.stilbruch-production.woocommerce-checkout .button:focus-visible,
body.stilbruch-production .wc-block-components-button:not(.is-link):hover,
body.stilbruch-production .wc-block-components-button:not(.is-link):focus-visible {
  background: #d12f88 !important;
  border-color: #d12f88 !important;
}
body.stilbruch-production.woocommerce-cart input[type="text"],
body.stilbruch-production.woocommerce-cart input[type="email"],
body.stilbruch-production.woocommerce-checkout input[type="text"],
body.stilbruch-production.woocommerce-checkout input[type="email"],
body.stilbruch-production.woocommerce-checkout input[type="tel"],
body.stilbruch-production.woocommerce-checkout input[type="number"],
body.stilbruch-production.woocommerce-checkout select,
body.stilbruch-production.woocommerce-checkout textarea {
  min-height: 48px;
  padding: .75rem .85rem !important;
  border: 1px solid var(--sb-canvas) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--sb-black) !important;
  box-shadow: none !important;
}
body.stilbruch-production.woocommerce-checkout textarea { min-height: 110px; }
body.stilbruch-production.woocommerce-checkout input:focus,
body.stilbruch-production.woocommerce-checkout select:focus,
body.stilbruch-production.woocommerce-checkout textarea:focus {
  border-color: var(--sb-pink) !important;
  outline: 1px solid var(--sb-pink);
}

/* ---------------- CLASSIC CHECKOUT ---------------- */
body.stilbruch-production.woocommerce-checkout form.checkout { margin-top: 0; }
body.stilbruch-production.woocommerce-checkout .col2-set {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
body.stilbruch-production.woocommerce-checkout .col2-set .col-1,
body.stilbruch-production.woocommerce-checkout .col2-set .col-2 { width: 100% !important; float: none !important; }
body.stilbruch-production.woocommerce-checkout h3 {
  margin: 0 0 var(--space-md) !important;
  color: var(--sb-black) !important;
  font-family: var(--font-display) !important;
}
body.stilbruch-production.woocommerce-checkout .form-row { margin-bottom: var(--space-sm) !important; }
body.stilbruch-production.woocommerce-checkout .form-row label {
  margin-bottom: .4rem;
  color: var(--sb-grey);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.stilbruch-production.woocommerce-checkout #order_review_heading { margin-top: var(--space-xl) !important; }
body.stilbruch-production.woocommerce-checkout #order_review {
  padding: var(--space-md);
  background: var(--sb-canvas);
}
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table {
  border: 0 !important;
  border-collapse: collapse !important;
  border-radius: 0 !important;
}
body.stilbruch-production.woocommerce-checkout #order_review table th,
body.stilbruch-production.woocommerce-checkout #order_review table td {
  padding: .7rem 0 !important;
  border-bottom: 1px solid rgba(141,137,132,.22) !important;
}
body.stilbruch-production.woocommerce-checkout #payment {
  margin-top: var(--space-md);
  border-radius: 0 !important;
  background: transparent !important;
}
body.stilbruch-production.woocommerce-checkout #payment ul.payment_methods {
  padding: 0 0 var(--space-md) !important;
  border-bottom: 1px solid rgba(141,137,132,.22) !important;
}
body.stilbruch-production.woocommerce-checkout #payment div.payment_box {
  background: rgba(255,255,255,.55) !important;
  color: var(--sb-black) !important;
}
body.stilbruch-production.woocommerce-checkout #payment div.form-row { padding: var(--space-md) 0 0 !important; }
body.stilbruch-production.woocommerce-checkout #place_order { width: 100%; }
body.stilbruch-production.woocommerce-checkout input[type="radio"] { accent-color: var(--sb-pink); }

/* ---------------- CART / CHECKOUT BLOCKS ---------------- */
body.stilbruch-production .wp-block-woocommerce-cart,
body.stilbruch-production .wp-block-woocommerce-checkout { margin: 0; }
body.stilbruch-production .wc-block-cart,
body.stilbruch-production .wc-block-checkout { color: var(--sb-black); }
body.stilbruch-production .wc-block-cart-items,
body.stilbruch-production .wc-block-components-sidebar,
body.stilbruch-production .wc-block-components-totals-wrapper,
body.stilbruch-production .wc-block-components-order-summary {
  border-color: var(--sb-canvas) !important;
}
body.stilbruch-production .wc-block-cart-item__image img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--sb-canvas);
}
body.stilbruch-production .wc-block-components-product-name {
  color: var(--sb-black) !important;
  font-family: var(--font-display);
  font-weight: 700;
}
body.stilbruch-production .wc-block-components-sidebar {
  padding: var(--space-md) !important;
  background: var(--sb-canvas);
}
body.stilbruch-production .wc-block-components-title,
body.stilbruch-production .wc-block-components-checkout-step__title {
  color: var(--sb-black) !important;
  font-family: var(--font-display) !important;
}
body.stilbruch-production .wc-block-components-text-input input,
body.stilbruch-production .wc-block-components-combobox .wc-block-components-combobox-control input,
body.stilbruch-production .wc-block-components-address-form input {
  border-radius: 0 !important;
  box-shadow: none !important;
}
body.stilbruch-production .wc-block-components-text-input.is-active input,
body.stilbruch-production .wc-block-components-text-input input:focus { border-color: var(--sb-pink) !important; }
body.stilbruch-production .wc-block-components-radio-control__input { accent-color: var(--sb-pink); }

/* Empty cart */
body.stilbruch-production.woocommerce-cart .cart-empty,
body.stilbruch-production .wc-block-cart__empty-cart__title {
  margin-bottom: var(--space-md) !important;
  color: var(--sb-black) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.3rem,2.5vw,2rem) !important;
  font-weight: 700;
}

@media (min-width: 768px) {
  body.stilbruch-production.woocommerce-cart .site-content,
  body.stilbruch-production.woocommerce-checkout .site-content { padding-top: calc(72px + var(--space-2xl)); }
  body.stilbruch-production.woocommerce-checkout .col2-set { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
}

@media (min-width: 1024px) {
  body.stilbruch-production.woocommerce-cart .woocommerce {
    display: grid;
    grid-template-columns: minmax(0,1fr) 360px;
    column-gap: var(--space-xl);
    align-items: start;
  }
  body.stilbruch-production.woocommerce-cart .stilbruch-commerce-intro,
  body.stilbruch-production.woocommerce-cart .woocommerce-notices-wrapper { grid-column: 1 / -1; }
  body.stilbruch-production.woocommerce-cart .woocommerce-cart-form { grid-column: 1; }
  body.stilbruch-production.woocommerce-cart .cart-collaterals { grid-column: 2; margin-top: 0; }
  body.stilbruch-production.woocommerce-cart .cart_totals { position: sticky; top: 112px; }

  body.stilbruch-production.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 400px;
    gap: var(--space-xl);
    align-items: start;
  }
  body.stilbruch-production.woocommerce-checkout #customer_details { grid-column: 1; }
  body.stilbruch-production.woocommerce-checkout #order_review_heading {
    grid-column: 2;
    margin-top: 0 !important;
  }
  body.stilbruch-production.woocommerce-checkout #order_review {
    grid-column: 2;
    position: sticky;
    top: 112px;
  }
}

@media (max-width: 767px) {
  body.stilbruch-production.woocommerce-cart .site-content,
  body.stilbruch-production.woocommerce-checkout .site-content { padding-top: calc(64px + var(--space-lg)); padding-bottom: var(--space-xl); }
  .stilbruch-commerce-intro { margin-bottom: var(--space-lg); }
  body.stilbruch-production.woocommerce-cart table.shop_table thead { display: none; }
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item {
    display: grid;
    grid-template-columns: 78px minmax(0,1fr) auto;
    gap: var(--space-xs) var(--space-sm);
    padding-block: var(--space-sm);
    border-bottom: 1px solid var(--sb-canvas);
  }
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item td {
    display: block;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }
  body.stilbruch-production.woocommerce-cart td.product-remove { grid-column: 3; grid-row: 1; }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail { grid-column: 1; grid-row: 1 / span 4; width: auto; }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail img { width: 72px !important; height: 90px !important; }
  body.stilbruch-production.woocommerce-cart td.product-name { grid-column: 2; grid-row: 1; padding-right: var(--space-sm) !important; }
  body.stilbruch-production.woocommerce-cart td.product-price { grid-column: 2; grid-row: 2; }
  body.stilbruch-production.woocommerce-cart td.product-quantity { display: none !important; }
  body.stilbruch-production.woocommerce-cart td.product-subtotal { grid-column: 2; grid-row: 3; color: var(--sb-grey); font-size: .8rem; }
  body.stilbruch-production.woocommerce-cart .coupon { flex-direction: column; }
  body.stilbruch-production.woocommerce-cart .coupon input,
  body.stilbruch-production.woocommerce-cart .coupon .button { width: 100% !important; }
  body.stilbruch-production.woocommerce-cart .cart_totals { padding: var(--space-sm); }
  body.stilbruch-production.woocommerce-checkout #order_review { padding: var(--space-sm); }
}


/* ==================================================
   PASS 6G.1 — persistent cart access
   ================================================== */
body.stilbruch-production .header-cart-link,
body.stilbruch-production .mobile-cart-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  color: var(--sb-offwhite);
  font-family: var(--font-body);
  font-size: .74rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease;
}
body.stilbruch-production .header-cart-link:hover,
body.stilbruch-production .header-cart-link:focus-visible,
body.stilbruch-production .mobile-cart-link:hover,
body.stilbruch-production .mobile-cart-link:focus-visible {
  color: var(--sb-pink);
  opacity: .95;
}
body.stilbruch-production .header-cart-count,
body.stilbruch-production .mobile-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.55em;
  height: 1.55em;
  padding-inline: .35em;
  background: var(--sb-pink);
  color: var(--sb-black);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 0;
}
body.stilbruch-production .header-cart-link:hover .header-cart-count,
body.stilbruch-production .header-cart-link:focus-visible .header-cart-count,
body.stilbruch-production .mobile-cart-link:hover .mobile-cart-count,
body.stilbruch-production .mobile-cart-link:focus-visible .mobile-cart-count {
  background: var(--sb-offwhite);
  color: var(--sb-black);
}
body.stilbruch-production .mobile-header-controls {
  gap: .55rem;
}
body.stilbruch-production .mobile-cart-link {
  padding: 9px 2px 9px 8px;
}
@media (min-width: 1024px) {
  body.stilbruch-production .nav-cart-item { margin-left: .1rem; }
  body.stilbruch-production .mobile-cart-link { display: none; }
}

/* ==================================================
   PASS 6G.2 — CART ALIGNMENT + CHECKOUT LAYOUT POLISH
   ================================================== */

/* Keep CART optically on the same baseline as the other desktop nav items. */
body.stilbruch-production .header-cart-link {
  min-height: 32px;
  padding-block: 6px;
  line-height: 1.2;
}
body.stilbruch-production .header-cart-count,
body.stilbruch-production .mobile-cart-count {
  min-width: 1.5em;
  height: 1.5em;
  line-height: 1;
  flex: 0 0 auto;
}
body.stilbruch-production .mobile-cart-link {
  min-height: 44px;
  padding: 0 2px 0 8px;
  align-items: center;
}

/* Classic checkout: neutralise legacy/plugin floats and width rules first. */
body.stilbruch-production.woocommerce-checkout form.checkout,
body.stilbruch-production.woocommerce-checkout #customer_details,
body.stilbruch-production.woocommerce-checkout #order_review_heading,
body.stilbruch-production.woocommerce-checkout #order_review {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  min-width: 0;
}
body.stilbruch-production.woocommerce-checkout .col2-set {
  display: block !important;
  width: 100% !important;
}
body.stilbruch-production.woocommerce-checkout .col2-set .col-1,
body.stilbruch-production.woocommerce-checkout .col2-set .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}
body.stilbruch-production.woocommerce-checkout .col2-set .col-2:not(:empty) {
  margin-top: var(--space-xl) !important;
}

/* Headings should never collapse into letter-by-letter columns. */
body.stilbruch-production.woocommerce-checkout #order_review_heading,
body.stilbruch-production.woocommerce-checkout #order_review h3,
body.stilbruch-production.woocommerce-checkout .woocommerce-billing-fields > h3,
body.stilbruch-production.woocommerce-checkout .woocommerce-shipping-fields > h3 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  white-space: normal !important;
}

/* Order table: give product and price predictable room. */
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table {
  width: 100% !important;
  table-layout: auto !important;
}
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table th.product-name,
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table td.product-name {
  width: 64%;
  padding-right: var(--space-sm) !important;
  word-break: normal !important;
  overflow-wrap: anywhere;
}
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table th.product-total,
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table td.product-total {
  width: 36%;
  text-align: right;
  white-space: nowrap;
}
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table tfoot th {
  text-align: left;
}
body.stilbruch-production.woocommerce-checkout #order_review table.shop_table tfoot td {
  text-align: right;
}

/* Payment UI must use the full summary width. */
body.stilbruch-production.woocommerce-checkout #payment,
body.stilbruch-production.woocommerce-checkout #payment .payment_box,
body.stilbruch-production.woocommerce-checkout #payment .wc-payment-form,
body.stilbruch-production.woocommerce-checkout #payment iframe {
  max-width: 100% !important;
}

@media (min-width: 1024px) {
  body.stilbruch-production.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, .85fr) !important;
    grid-template-rows: auto auto;
    column-gap: clamp(2.25rem, 4vw, 4rem) !important;
    row-gap: var(--space-sm) !important;
    align-items: start;
  }
  body.stilbruch-production.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
  }
  body.stilbruch-production.woocommerce-checkout #order_review_heading {
    grid-column: 2 !important;
    grid-row: 1 !important;
    align-self: end;
    margin: 0 0 var(--space-sm) !important;
    font-size: clamp(1.35rem, 1.8vw, 1.7rem) !important;
  }
  body.stilbruch-production.woocommerce-checkout #order_review {
    grid-column: 2 !important;
    grid-row: 2 !important;
    padding: var(--space-md) var(--space-lg) !important;
    position: sticky;
    top: 112px;
  }
  body.stilbruch-production.woocommerce-checkout .form-row-first,
  body.stilbruch-production.woocommerce-checkout .form-row-last {
    width: calc(50% - .5rem) !important;
  }
}

@media (max-width: 1023px) {
  body.stilbruch-production.woocommerce-checkout #order_review_heading {
    margin-top: var(--space-xl) !important;
  }
  body.stilbruch-production.woocommerce-checkout #order_review {
    position: static !important;
    padding: var(--space-md) !important;
  }
}

@media (max-width: 767px) {
  body.stilbruch-production.woocommerce-checkout .form-row-first,
  body.stilbruch-production.woocommerce-checkout .form-row-last {
    width: 100% !important;
    float: none !important;
  }
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table th,
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table td {
    font-size: .86rem;
  }
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table th.product-name,
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table td.product-name {
    width: 60%;
  }
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table th.product-total,
  body.stilbruch-production.woocommerce-checkout #order_review table.shop_table td.product-total {
    width: 40%;
  }
}


/* ==================================================
   PASS 6G.3 — CART RESPONSIVE COMPOSITION + INTRO SAFE AREA
   ================================================== */

/* CART label was optically a touch higher than the count / nav axis. Move the
   word only; keep the count badge where it already aligns correctly. */
body.stilbruch-production .header-cart-label,
body.stilbruch-production .mobile-cart-label {
  display: inline-block;
  transform: translateY(1px);
}

/* Cart/checkout intros must clear the fixed StilBruch header independently of
   Astra/Woo wrapper spacing. This prevents DEINE AUSWAHL / CHECKOUT from
   sitting underneath the header in Customizer tablet/mobile previews. */
body.stilbruch-production.woocommerce-cart .stilbruch-commerce-intro,
body.stilbruch-production.woocommerce-checkout .stilbruch-commerce-intro {
  display: block !important;
  position: relative;
  z-index: 1;
  padding-top: calc(72px + var(--space-lg));
  margin-bottom: var(--space-xl);
  overflow: visible;
}
body.stilbruch-production.woocommerce-cart .stilbruch-commerce-intro .h1,
body.stilbruch-production.woocommerce-checkout .stilbruch-commerce-intro .h1 {
  margin: 0 !important;
  overflow: visible;
}
/* Avoid double top spacing from wrappers; commerce intro owns the safe area. */
body.stilbruch-production.woocommerce-cart .site-content,
body.stilbruch-production.woocommerce-checkout .site-content,
body.stilbruch-production.woocommerce-cart #content,
body.stilbruch-production.woocommerce-checkout #content {
  padding-top: 0 !important;
}

/* Checkout CTA: native Woo/Astra rules must not distort the button. */
body.stilbruch-production.woocommerce-cart .wc-proceed-to-checkout {
  width: 100% !important;
  padding: var(--space-md) 0 0 !important;
  margin: 0 !important;
}
body.stilbruch-production.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: .9em 1.4em !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  line-height: 1.1 !important;
  white-space: normal !important;
}

/* WooCommerce's responsive table adds Product:/Price:/Subtotal: via ::before.
   For StilBruch the compact editorial cart is clearer without those labels. */
@media (max-width: 1023px) {
  body.stilbruch-production.woocommerce-cart .stilbruch-commerce-intro,
  body.stilbruch-production.woocommerce-checkout .stilbruch-commerce-intro {
    padding-top: calc(64px + var(--space-md));
    margin-bottom: var(--space-lg);
  }

  body.stilbruch-production.woocommerce-cart table.shop_table thead {
    display: none !important;
  }
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item {
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) 32px !important;
    grid-template-rows: auto auto;
    gap: .3rem var(--space-sm) !important;
    width: 100% !important;
    padding: var(--space-sm) var(--space-sm) !important;
    border-bottom: 1px solid var(--sb-canvas) !important;
    align-items: start;
  }
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item td {
    display: block !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
  }
  body.stilbruch-production.woocommerce-cart table.shop_table_responsive tr.cart_item td::before,
  body.stilbruch-production.woocommerce-cart table.shop_table_responsive tr.cart_item td::after,
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item td::before,
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item td::after {
    display: none !important;
    content: none !important;
  }

  body.stilbruch-production.woocommerce-cart td.product-thumbnail {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 82px !important;
    align-self: start;
  }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail a {
    display: block;
    width: 100%;
  }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail img {
    display: block;
    width: 82px !important;
    height: 102px !important;
    margin: 0 !important;
    object-fit: contain !important;
    background: var(--sb-canvas);
  }
  body.stilbruch-production.woocommerce-cart td.product-name {
    grid-column: 2 !important;
    grid-row: 1 !important;
    padding-right: 0 !important;
    align-self: end;
  }
  body.stilbruch-production.woocommerce-cart td.product-name a {
    display: inline-block;
    font-size: .95rem !important;
    line-height: 1.25;
  }
  body.stilbruch-production.woocommerce-cart td.product-price {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start;
    font-size: .88rem;
  }
  body.stilbruch-production.woocommerce-cart td.product-subtotal,
  body.stilbruch-production.woocommerce-cart td.product-quantity {
    display: none !important;
  }
  body.stilbruch-production.woocommerce-cart td.product-remove {
    grid-column: 3 !important;
    grid-row: 1 / span 2 !important;
    justify-self: end;
    align-self: start;
  }
  body.stilbruch-production.woocommerce-cart a.remove {
    width: 30px !important;
    height: 30px !important;
  }

  body.stilbruch-production.woocommerce-cart td.actions {
    display: block !important;
    padding: var(--space-md) var(--space-sm) !important;
  }
  body.stilbruch-production.woocommerce-cart .coupon {
    max-width: 360px;
  }
  body.stilbruch-production.woocommerce-cart .cart-collaterals {
    margin-top: var(--space-sm) !important;
    padding-inline: var(--space-sm);
  }
  body.stilbruch-production.woocommerce-cart .cart_totals {
    padding: var(--space-md) !important;
  }
}

@media (max-width: 420px) {
  body.stilbruch-production.woocommerce-cart table.shop_table tr.cart_item {
    grid-template-columns: 72px minmax(0, 1fr) 30px !important;
    column-gap: .75rem !important;
    padding-inline: .75rem !important;
  }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail {
    width: 72px !important;
  }
  body.stilbruch-production.woocommerce-cart td.product-thumbnail img {
    width: 72px !important;
    height: 90px !important;
  }
  body.stilbruch-production.woocommerce-cart .cart-collaterals {
    padding-inline: .75rem;
  }
}


/* ==================================================
   PASS 6G.4 — FINAL CART ALIGNMENT / ONE-OF-ONE CLEANUP
   ================================================== */

/* The count badge was already aligned; move only the CART word a final touch
   lower on desktop/tablet/mobile for the same optical axis as nav / burger. */
body.stilbruch-production .header-cart-label,
body.stilbruch-production .mobile-cart-label {
  transform: translateY(2px);
}

/* One-of-one means quantity is always 1. Product price and line subtotal are
   therefore identical, so the cart table intentionally shows PRICE only. */
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table th.product-quantity,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-quantity,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table th.product-subtotal,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-subtotal,
body.stilbruch-production.woocommerce-cart .woocommerce-cart-form__cart-item .product-quantity,
body.stilbruch-production.woocommerce-cart .woocommerce-cart-form__cart-item .product-subtotal,
body.stilbruch-production.woocommerce-cart td[data-title="Subtotal"],
body.stilbruch-production.woocommerce-cart td[data-title="Zwischensumme"] {
  display: none !important;
}

@media (max-width: 1023px) {
  /* Give the cart heading the same intentional inset as the cart rows. */
  body.stilbruch-production.woocommerce-cart .stilbruch-commerce-intro {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box;
  }

  /* The native browser scrollbar may or may not be visible; keep the remove
     control visually inset either way instead of letting it hug the edge. */
  body.stilbruch-production.woocommerce-cart td.product-remove {
    padding-right: .35rem !important;
  }
}

@media (max-width: 767px) {
  /* On mobile the disabled/active UPDATE CART control belongs with the coupon
     controls, not floating on the opposite side of the screen. */
  body.stilbruch-production.woocommerce-cart td.actions > button[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > input[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > .button[name="update_cart"] {
    float: none !important;
    clear: both !important;
    display: inline-flex !important;
    width: auto !important;
    min-width: 138px;
    margin: var(--space-sm) 0 0 0 !important;
    align-items: center;
    justify-content: center;
  }
}

/* ==================================================
   PASS 6G.5 — CART TOTALS / COUPON / SHIPPING CLEANUP
   ================================================== */

/* Keep line-item subtotal + quantity hidden, but DO NOT hide the Cart Totals
   subtotal row. PASS 6G.4's generic data-title selector was too broad. */
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table th.product-quantity,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-quantity,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table th.product-subtotal,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form table.shop_table td.product-subtotal,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form .woocommerce-cart-form__cart-item .product-quantity,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form .woocommerce-cart-form__cart-item .product-subtotal,
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form td[data-title="Subtotal"],
body.stilbruch-production.woocommerce-cart form.woocommerce-cart-form td[data-title="Zwischensumme"] {
  display: none !important;
}
/* Explicitly restore Cart Totals subtotal in case earlier rules matched it. */
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal,
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal th,
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal td {
  display: table-row-group;
}
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal { display: table-row !important; }
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal th,
body.stilbruch-production.woocommerce-cart .cart_totals tr.cart-subtotal td { display: table-cell !important; }

/* The cart is only a review step. Delivery choice belongs to checkout, so hide
   Woo's generic cart calculator / provisional shipping row and show the clear
   StilBruch delivery note inserted by PHP instead. */
body.stilbruch-production.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping,
body.stilbruch-production.woocommerce-cart .cart_totals .shipping-calculator-button,
body.stilbruch-production.woocommerce-cart .cart_totals .shipping-calculator-form {
  display: none !important;
}
body.stilbruch-production.woocommerce-cart .cart_totals tr.stilbruch-cart-delivery-note th,
body.stilbruch-production.woocommerce-cart .cart_totals tr.stilbruch-cart-delivery-note td {
  padding-top: .7rem !important;
  padding-bottom: .7rem !important;
  vertical-align: top;
}
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-main {
  display: block;
  color: var(--sb-black);
  font-weight: 600;
  line-height: 1.35;
}
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-sub {
  display: block;
  margin-top: .25rem;
  color: var(--sb-grey);
  font-size: .76rem;
  line-height: 1.45;
}

/* Tablet/mobile action area: remove legacy floats and give coupon/update
   controls a deliberate layout so no button sits on top of table rules. */
@media (max-width: 1023px) {
  body.stilbruch-production.woocommerce-cart td.actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
    gap: var(--space-sm) !important;
    padding: var(--space-md) var(--space-sm) calc(var(--space-md) + .35rem) !important;
    border-bottom: 0 !important;
    overflow: visible !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions::before,
  body.stilbruch-production.woocommerce-cart td.actions::after {
    display: none !important;
    content: none !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions .coupon {
    float: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    gap: var(--space-xs) !important;
    margin: 0 !important;
    max-width: none !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions .coupon input.input-text {
    float: none !important;
    width: 190px !important;
    min-width: 0 !important;
    margin: 0 !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions .coupon .button {
    float: none !important;
    margin: 0 !important;
    white-space: nowrap;
  }
  body.stilbruch-production.woocommerce-cart td.actions > button[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > input[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > .button[name="update_cart"] {
    float: none !important;
    clear: none !important;
    margin: 0 0 0 auto !important;
    align-self: stretch !important;
  }
}

@media (max-width: 767px) {
  body.stilbruch-production.woocommerce-cart td.actions {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions .coupon {
    width: 100% !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions .coupon input.input-text,
  body.stilbruch-production.woocommerce-cart td.actions .coupon .button {
    width: min(100%, 220px) !important;
  }
  body.stilbruch-production.woocommerce-cart td.actions > button[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > input[name="update_cart"],
  body.stilbruch-production.woocommerce-cart td.actions > .button[name="update_cart"] {
    margin: 0 !important;
    align-self: flex-start !important;
    width: auto !important;
    min-width: 138px !important;
  }
}

/* ==================================================
   PASS 6G.6 — CART TOTALS HIERARCHY / DELIVERY POLISH
   ================================================== */

/* WooCommerce responsive tables duplicate row labels via td::before.
   Cart Totals already has real <th> labels, so suppress the duplicate label
   and use one consistent row system on every breakpoint. */
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table_responsive tr td::before,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table_responsive tr td::after,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr td::before,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr td::after {
  display: none !important;
  content: none !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total {
  display: grid !important;
  grid-template-columns: minmax(88px, .72fr) minmax(0, 1.55fr);
  column-gap: 1rem;
  align-items: start;
  width: 100%;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > td,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > td,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > td {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  box-sizing: border-box;
  text-align: left !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > td,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > td {
  text-align: right !important;
}

/* Delivery choices: one clean line per option, with price aligned to the edge. */
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-main {
  margin-bottom: .45rem;
}
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-options {
  display: grid;
  gap: .34rem;
  width: 100%;
}
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: baseline;
  color: var(--sb-grey);
  font-size: .76rem;
  line-height: 1.4;
}
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option strong {
  color: var(--sb-black);
  font-size: inherit;
  font-weight: 600;
  white-space: nowrap;
}

/* Old single-line helper is no longer used in 6G.6. */
body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-sub {
  display: none !important;
}

@media (max-width: 767px) {
  /* The Customizer mobile viewport can be extremely narrow. Stack the label
     and value for each totals row so Subtotal/Lieferung/Total never fragment. */
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total {
    grid-template-columns: 1fr !important;
    row-gap: .32rem;
  }
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > td,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > td {
    text-align: left !important;
  }
  body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option {
    grid-template-columns: 1fr !important;
    gap: .08rem;
  }
  body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option strong {
    white-space: normal;
  }
}


/* ==================================================
   PASS 6G.7 — WOO-NATIVE SHIPPING + CART TOTALS CLEANUP
   ================================================== */

/* Cart totals: keep WooCommerce's real subtotal/total amounts, but present the
   review box as three deliberate sections rather than a dense table. */
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table {
  border-collapse: collapse !important;
  border-spacing: 0 !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 1rem !important;
  align-items: baseline !important;
  padding: .9rem 0 !important;
  border: 0 !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal {
  border-bottom: 1px solid rgba(141,137,132,.22) !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total {
  margin-top: .7rem !important;
  border-top: 1px solid rgba(141,137,132,.30) !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > td,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > td {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  line-height: 1.35 !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > th {
  color: var(--sb-grey) !important;
  font-size: .68rem !important;
  font-weight: 600 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > td,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > td {
  color: var(--sb-black) !important;
  font-weight: 600 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

/* Delivery is one full-width section. The method titles and prices come from
   enabled WooCommerce shipping methods (PASS 6G.7 PHP helper). */
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note {
  display: block !important;
  width: 100% !important;
  padding: .95rem 0 .7rem !important;
  border: 0 !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > th,
body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > td {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > th {
  margin-bottom: .42rem !important;
  color: var(--sb-grey) !important;
  font-size: .68rem !important;
  font-weight: 600 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
}

body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-main {
  display: block !important;
  margin: 0 0 .65rem !important;
  color: var(--sb-black) !important;
  font-size: .9rem !important;
  font-weight: 650 !important;
  line-height: 1.35 !important;
}

body.stilbruch-production .stilbruch-delivery-options {
  display: grid !important;
  gap: .42rem !important;
  width: 100% !important;
}

body.stilbruch-production .stilbruch-delivery-option {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: .9rem !important;
  align-items: baseline !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--sb-grey) !important;
  font-size: .77rem !important;
  line-height: 1.42 !important;
}

body.stilbruch-production .stilbruch-delivery-option-title {
  min-width: 0;
}

body.stilbruch-production .stilbruch-delivery-option-price {
  color: var(--sb-black) !important;
  font-size: inherit !important;
  font-weight: 650 !important;
  white-space: nowrap !important;
  text-align: right !important;
}

body.stilbruch-production .stilbruch-delivery-option-price .woocommerce-Price-amount,
body.stilbruch-production .stilbruch-delivery-option-price .woocommerce-Price-currencySymbol {
  color: inherit !important;
  font: inherit !important;
}

body.stilbruch-production .stilbruch-delivery-empty {
  margin: 0 !important;
  color: var(--sb-grey) !important;
  font-size: .78rem !important;
  line-height: 1.5 !important;
}

/* Product detail uses the same Woo-native method list. */
body.stilbruch-production .stilbruch-product-detail .delivery-block .stilbruch-delivery-options {
  gap: 0 !important;
}

body.stilbruch-production .stilbruch-product-detail .delivery-block .stilbruch-delivery-option {
  padding: .58rem 0 !important;
  border-bottom: 1px solid rgba(231,226,218,.78) !important;
  font-size: .82rem !important;
}

body.stilbruch-production .stilbruch-product-detail .delivery-block .stilbruch-delivery-option-title {
  color: var(--sb-grey) !important;
}

body.stilbruch-production .stilbruch-product-detail .delivery-block .stilbruch-delivery-option-price {
  color: var(--sb-black) !important;
}

/* The cart summary needs fewer separators on tablet/mobile, not more. */
@media (max-width: 1023px) {
  body.stilbruch-production.woocommerce-cart .cart_totals {
    padding: var(--space-sm) !important;
  }

  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total {
    grid-template-columns: minmax(0, 1fr) auto !important;
    row-gap: 0 !important;
  }

  body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }
}

@media (max-width: 420px) {
  body.stilbruch-production.woocommerce-cart .cart_totals {
    padding: .8rem !important;
  }

  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.cart-subtotal > th,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.order-total > th,
  body.stilbruch-production.woocommerce-cart .cart_totals table.shop_table tr.stilbruch-cart-delivery-note > th {
    font-size: .64rem !important;
  }

  body.stilbruch-production.woocommerce-cart .cart_totals .stilbruch-delivery-option {
    gap: .55rem !important;
    font-size: .72rem !important;
  }
}

/* ==================================================
   PASS 6H — DEIN MÖBEL / BRING YOUR OWN
   Approved v33 service page translated to WordPress.
   ================================================== */
.byo-page { background:var(--sb-offwhite); }
.byo-page section { position:relative; }

.byo-page .byo-hero { background:var(--sb-black); color:var(--sb-offwhite); padding-top:calc(72px + var(--space-xl)); padding-bottom:var(--space-xl); }
.byo-page .byo-hero-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.byo-page .byo-hero .eyebrow { color:var(--sb-pink); margin-bottom:var(--space-xs); }
.byo-page .byo-hero h1 { margin-bottom:var(--space-sm); }
.byo-page .byo-hero-copy > p { margin-bottom:var(--space-lg); color:rgba(244,241,234,.8); max-width:46ch; }
.byo-page .byo-hero-actions { display:flex; flex-direction:column; gap:var(--space-xs); align-items:flex-start; }
.byo-page .byo-hero-actions .btn { font-size:.82rem; padding:.8em 1.3em; }
.byo-page .kostenlos-statement { max-width:42ch; font-family:var(--font-display); font-size:clamp(1rem,1.3vw,1.2rem); font-weight:700; line-height:1.3; letter-spacing:-.01em; }
.byo-page .byo-hero .kostenlos-statement { margin-bottom:0; color:var(--sb-offwhite); }
.byo-page .byo-hero-visual { aspect-ratio:4/5; overflow:hidden; display:flex; align-items:center; justify-content:center; background:#2a2a2a; }
.byo-page .byo-hero-visual img { width:100%; height:100%; object-fit:contain; object-position:center; }

.byo-page .byo-steps { padding-block:var(--space-xl); }
.byo-page .byo-steps .eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
.byo-page .byo-steps-grid { display:grid; grid-template-columns:1fr; gap:var(--space-md); margin-top:var(--space-lg); }
.byo-page .byo-step-number { display:block; margin-bottom:var(--space-xs); color:#d7d2ca; font-family:var(--font-display); font-size:clamp(2rem,3vw,2.8rem); line-height:1; }
.byo-page .byo-step h4 { margin-bottom:var(--space-xs); }
.byo-page .byo-step p { color:rgba(26,26,26,.75); font-size:.92rem; }

.byo-page .byo-pricing { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.byo-page .byo-pricing .eyebrow { margin-bottom:var(--space-xs); color:var(--sb-pink); }
.byo-page .byo-pricing h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-pricing > .container > p { margin-bottom:var(--space-lg); color:rgba(244,241,234,.8); max-width:46ch; }
.byo-page .price-list { display:grid; grid-template-columns:1fr; margin-bottom:var(--space-lg); }
.byo-page .price-row { display:flex; justify-content:space-between; align-items:baseline; gap:var(--space-md); padding:var(--space-xs) 0; border-bottom:1px solid rgba(244,241,234,.1); }
.byo-page .price-item { font-family:var(--font-display); font-size:clamp(.9rem,1vw,1.05rem); font-weight:700; letter-spacing:-.01em; }
.byo-page .price-value { color:var(--sb-offwhite); font-size:.88rem; white-space:nowrap; }
.byo-page .price-value span { color:var(--sb-grey); font-size:.8rem; }
.byo-page .byo-pricing-note { margin-bottom:var(--space-md); max-width:52ch; color:rgba(244,241,234,.65); font-size:.85rem; }
.byo-page .byo-pricing-cta { display:flex; flex-direction:column; align-items:flex-start; gap:var(--space-xs); margin-top:var(--space-sm); }
.byo-page .byo-pricing-cta .btn { font-size:.82rem; padding:.8em 1.3em; }
.byo-page .byo-pricing-cta .kostenlos-statement { color:var(--sb-offwhite); }

.byo-page .byo-colour { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.byo-page .byo-colour-inner { display:grid; grid-template-columns:1fr; gap:var(--space-md); align-items:center; }
.byo-page .byo-colour h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-colour p { color:rgba(26,26,26,.75); max-width:46ch; }
.byo-page .byo-colour-visual { aspect-ratio:4/5; overflow:hidden; display:flex; align-items:center; justify-content:center; max-height:45vh; background:#2a2a2a; }
.byo-page .byo-colour-visual img { width:100%; height:100%; object-fit:contain; object-position:center; }

.byo-page .byo-inspiration { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.byo-page .byo-inspiration h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-inspiration > .container > p { margin-bottom:var(--space-sm); color:rgba(244,241,234,.8); }
.byo-page .inspiration-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-xs); margin-top:var(--space-lg); }
.byo-page .inspiration-item { position:relative; overflow:hidden; aspect-ratio:3/4; background:var(--sb-grey); }
.byo-page .inspiration-item .asset-placeholder { position:absolute; inset:0; }
.byo-page .inspiration-label { position:absolute; right:0; bottom:0; left:0; padding:var(--space-xs) var(--space-sm); background:rgba(26,26,26,.9); color:var(--sb-offwhite); font-size:.68rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; }
.byo-page .inspiration-placeholder { color:rgba(244,241,234,.45); font-size:.68rem; letter-spacing:.06em; text-align:center; text-transform:uppercase; }
.byo-page .byo-inspiration-note { margin-top:var(--space-lg); max-width:52ch; color:rgba(244,241,234,.45); font-size:.8rem; font-style:italic; }

.byo-page .byo-works { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.byo-page .byo-works h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-works > .container > p { margin-bottom:var(--space-md); color:rgba(26,26,26,.75); max-width:52ch; }
.byo-page .works-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:var(--space-xs); margin-bottom:var(--space-md); }
.byo-page .works-item { padding:var(--space-sm) var(--space-xs); background:var(--sb-canvas); font-family:var(--font-display); font-size:clamp(.8rem,.9vw,.95rem); font-weight:700; letter-spacing:-.01em; text-align:center; }
.byo-page .works-excluded { margin-top:var(--space-lg); padding-top:var(--space-lg); border-top:1px solid var(--sb-canvas); }
.byo-page .works-excluded h3 { margin-bottom:var(--space-sm); color:var(--sb-grey); }
.byo-page .works-excluded h4 { margin-top:var(--space-md); margin-bottom:var(--space-xs); }
.byo-page .works-excluded p { margin-bottom:var(--space-sm); color:rgba(26,26,26,.75); }
.byo-page .works-excluded .btn { margin-top:var(--space-xs); }

.byo-page .byo-transport { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); }
.byo-page .byo-transport h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-transport p { color:rgba(244,241,234,.8); max-width:46ch; }
.byo-page .byo-transport p + p { margin-top:var(--space-xs); }

.byo-page .byo-faq { padding-block:var(--space-xl); background:var(--sb-offwhite); }
.byo-page .byo-faq h2 { margin-bottom:var(--space-lg); }
.byo-page .faq-list { display:flex; flex-direction:column; }
.byo-page .faq-item { border-bottom:1px solid var(--sb-canvas); }
.byo-page .faq-item:first-child { border-top:1px solid var(--sb-canvas); }
.byo-page .faq-question { width:100%; min-height:48px; display:flex; align-items:center; justify-content:space-between; gap:var(--space-md); padding:var(--space-sm) 0; border:0; background:none; color:var(--sb-black); font-family:var(--font-display); font-size:clamp(.9rem,1.1vw,1.05rem); font-weight:700; letter-spacing:-.01em; text-align:left; cursor:pointer; }
.byo-page .faq-question::after { content:'+'; width:24px; flex:0 0 24px; color:var(--sb-pink); font-family:var(--font-body); font-size:1.2rem; font-weight:400; line-height:1; text-align:center; }
.byo-page .faq-question:hover,.byo-page .faq-question:focus-visible { color:var(--sb-pink); }
.byo-page .faq-item.is-open .faq-question::after { content:'−'; }
.byo-page .faq-answer { max-height:0; overflow:hidden; padding:0; transition:max-height .35s ease,padding .35s ease; }
.byo-page .faq-item.is-open .faq-answer { max-height:420px; padding:var(--space-xs) 0 var(--space-md); }
.byo-page .faq-answer p { padding-right:var(--space-md); color:rgba(26,26,26,.7); font-size:.92rem; max-width:52ch; }

.byo-page .byo-final-cta { padding-block:var(--space-xl); background:var(--sb-black); color:var(--sb-offwhite); text-align:center; }
.byo-page .byo-final-cta h2 { margin-bottom:var(--space-sm); }
.byo-page .byo-final-cta p { margin:0 auto var(--space-sm); color:rgba(244,241,234,.8); max-width:46ch; }

@media (min-width:640px) {
  .byo-page .price-list { grid-template-columns:repeat(2,1fr); gap:0 var(--space-lg); margin-bottom:var(--space-xl); }
  .byo-page .inspiration-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-sm); margin-top:var(--space-xl); }
  .byo-page .works-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-sm); margin-bottom:var(--space-lg); }
}
@media (min-width:768px) {
  .byo-page .byo-hero { padding-top:calc(80px + var(--space-xl)); }
  .byo-page .byo-hero-inner,.byo-page .byo-colour-inner { grid-template-columns:1fr 1fr; gap:var(--space-xl); }
  .byo-page .byo-steps,.byo-page .byo-pricing,.byo-page .byo-colour,.byo-page .byo-inspiration,.byo-page .byo-works,.byo-page .byo-transport,.byo-page .byo-faq,.byo-page .byo-final-cta { padding-block:var(--space-2xl); }
  .byo-page .byo-steps-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-lg); margin-top:var(--space-xl); }
  .byo-page .price-row { padding:var(--space-sm) 0; }
  .byo-page .byo-pricing-note { margin-bottom:var(--space-lg); font-size:.88rem; }
  .byo-page .byo-pricing-cta { margin-top:var(--space-md); }
  .byo-page .byo-colour-visual { max-height:none; }
  .byo-page .works-item { padding:var(--space-md) var(--space-sm); }
  .byo-page .works-excluded { margin-top:var(--space-xl); padding-top:var(--space-xl); }
  .byo-page .byo-faq h2 { margin-bottom:var(--space-xl); }
}
@media (min-width:1024px) {
  .byo-page .inspiration-grid { grid-template-columns:repeat(5,1fr); }
  .byo-page .works-grid { grid-template-columns:repeat(4,1fr); }
}

/* ==================================================
   PASS 6I — BUSINESS production page
   ================================================== */
.business-page { background:var(--sb-offwhite); }
.business-page .business-hero { background:var(--sb-black); color:var(--sb-offwhite); padding-top:calc(72px + var(--space-xl)); padding-bottom:var(--space-xl); }
.business-page .business-hero-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.business-page .business-hero .eyebrow,
.business-page .business-process .eyebrow,
.business-page .business-inquiry .eyebrow { color:var(--sb-pink); margin-bottom:var(--space-xs); }
.business-page .business-hero h1 { margin-bottom:var(--space-sm); }
.business-page .business-hero-copy > p { color:rgba(244,241,234,.8); max-width:50ch; line-height:1.65; margin-bottom:var(--space-lg); }
.business-page .business-hero-actions { display:flex; flex-wrap:wrap; gap:var(--space-xs) var(--space-sm); align-items:center; }
.business-page .business-hero-actions .btn { font-size:.82rem; padding:.8em 1.3em; }
.business-page .business-quiet-link { color:var(--sb-offwhite); }
.business-page .business-hero-visual { position:relative; aspect-ratio:4/5; overflow:hidden; display:flex; align-items:center; justify-content:center; background:#2d2b2a; }
.business-page .business-hero-visual img { width:100%; height:100%; object-fit:contain; object-position:center; }
.business-page .business-hero-visual .asset-placeholder { width:100%; height:100%; }
.business-page .concept-badge { position:absolute; left:var(--space-sm); bottom:var(--space-sm); background:rgba(26,26,26,.82); color:var(--sb-offwhite); padding:.45rem .65rem; font-size:.66rem; letter-spacing:.09em; text-transform:uppercase; }

.business-page .business-offers { padding-block:var(--space-2xl); }
.business-page .business-offers h2 { margin-bottom:var(--space-xl); }
.business-page .offers-grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); }
.business-page .offer-media { position:relative; aspect-ratio:4/5; overflow:hidden; background:var(--sb-canvas); display:flex; align-items:center; justify-content:center; margin-bottom:var(--space-sm); }
.business-page .offer-media img { width:100%; height:100%; object-fit:contain; object-position:center; }
.business-page .offer-media .asset-placeholder { width:100%; height:100%; }
.business-page .offer-number { position:absolute; top:var(--space-sm); left:var(--space-sm); font-family:var(--font-display); font-size:clamp(1.8rem,3vw,2.35rem); font-weight:700; color:var(--sb-offwhite); text-shadow:0 2px 8px rgba(0,0,0,.45); }
.business-page .offer-label { font-family:var(--font-display); font-size:clamp(1.05rem,1.5vw,1.2rem); margin:0 0 var(--space-xs); }
.business-page .offer-desc { color:rgba(26,26,26,.68); font-size:.94rem; line-height:1.6; margin:0; }

.business-page .business-start,
.business-page .business-project,
.business-page .business-final { background:var(--sb-black); color:var(--sb-offwhite); }
.business-page .business-start { padding-block:var(--space-2xl); text-align:center; }
.business-page .business-start h2 { margin-bottom:var(--space-sm); }
.business-page .business-start p { max-width:48ch; margin-inline:auto; color:rgba(244,241,234,.8); line-height:1.65; }

.business-page .business-brand { padding-block:var(--space-2xl); }
.business-page .business-brand-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.business-page .business-brand h2 { margin-bottom:var(--space-md); }
.business-page .business-brand p { color:rgba(26,26,26,.75); max-width:48ch; line-height:1.65; }
.business-page .business-brand-visual { aspect-ratio:4/5; overflow:hidden; background:var(--sb-canvas); display:flex; align-items:center; justify-content:center; }
.business-page .business-brand-visual img { width:100%; height:100%; object-fit:contain; object-position:center; }
.business-page .business-brand-visual .asset-placeholder { width:100%; height:100%; }

.business-page .business-process { padding-block:var(--space-2xl); }
.business-page .business-process h2 { margin-bottom:var(--space-xl); }
.business-page .biz-process-grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
.business-page .biz-step-number { display:block; font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3rem); font-weight:700; line-height:1; color:#d6d0c7; margin-bottom:var(--space-xs); }
.business-page .biz-step h3 { margin-bottom:var(--space-xs); }
.business-page .biz-step p { color:rgba(26,26,26,.72); font-size:.95rem; line-height:1.6; margin:0; }

.business-page .business-project { padding-block:var(--space-2xl); }
.business-page .business-project h2 { margin-bottom:var(--space-sm); }
.business-page .business-project p { color:rgba(244,241,234,.8); max-width:50ch; line-height:1.65; }
.business-page .business-project .business-project-accent { color:var(--sb-pink); font-weight:700; letter-spacing:.02em; margin-top:var(--space-md); }

.business-page .business-second { padding-block:var(--space-2xl); }
.business-page .business-second h2 { margin-bottom:var(--space-sm); }
.business-page .business-second p { color:rgba(26,26,26,.75); max-width:50ch; line-height:1.65; }

.business-page .business-inquiry { padding-block:var(--space-2xl); border-top:1px solid var(--sb-canvas); }
.business-page .business-inquiry h2 { margin-bottom:var(--space-xl); }
.business-page .business-inquiry-grid { display:grid; grid-template-columns:1fr; gap:var(--space-xl); align-items:start; }
.business-page .business-inquiry-copy > p { color:rgba(26,26,26,.75); max-width:54ch; line-height:1.65; }
.business-page .business-inquiry-actions { display:flex; flex-direction:column; align-items:stretch; gap:var(--space-xs); margin-block:var(--space-md); max-width:460px; }
.business-page .business-inquiry-actions .btn { text-align:center; }
.business-page .business-inquiry-note { font-size:.82rem; color:var(--sb-grey) !important; max-width:58ch !important; }
.business-page .business-brief { background:var(--sb-canvas); padding:var(--space-lg); }
.business-page .business-brief-title { display:block; color:var(--sb-pink); font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; margin-bottom:var(--space-md); }
.business-page .business-brief ul { margin:0; padding:0; list-style:none; }
.business-page .business-brief li { padding:.75rem 0; border-top:1px solid rgba(26,26,26,.12); font-weight:600; }
.business-page .business-brief li:first-child { border-top:0; padding-top:0; }

.business-page .business-final { padding-block:var(--space-2xl); text-align:center; }
.business-page .business-final h2 { margin-bottom:var(--space-sm); }
.business-page .business-final p { color:rgba(244,241,234,.8); margin-bottom:var(--space-md); }

@media (min-width:640px) {
  .business-page .offers-grid { grid-template-columns:repeat(2,1fr); gap:var(--space-lg); }
  .business-page .biz-process-grid { grid-template-columns:repeat(2,1fr); }
  .business-page .business-inquiry-actions { flex-direction:row; align-items:center; }
}
@media (min-width:768px) {
  .business-page .business-hero { padding-top:calc(80px + var(--space-xl)); }
  .business-page .business-hero-inner,
  .business-page .business-brand-inner { grid-template-columns:1fr 1fr; gap:var(--space-xl); }
  .business-page .business-hero-visual { aspect-ratio:16/10; }
  .business-page .business-inquiry-grid { grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr); }
}
@media (min-width:1024px) {
  .business-page .offers-grid { grid-template-columns:repeat(3,1fr); gap:var(--space-md); }
  .business-page .biz-process-grid { grid-template-columns:repeat(4,1fr); gap:var(--space-lg); }
}

/* ==================================================
   PASS 6I.1 — SERVICE PAGES TYPOGRAPHY / VISIBILITY
   Shared cleanup for DEIN MÖBEL + BUSINESS.
   Purpose: explicitly protect approved foreground colours from
   Astra/global heading rules on light and dark service sections.
   No WooCommerce logic, content architecture or routing changes.
   ================================================== */

/* Light service sections: headings and labels must always be readable. */
body.stilbruch-production .byo-page .byo-steps,
body.stilbruch-production .byo-page .byo-colour,
body.stilbruch-production .byo-page .byo-works,
body.stilbruch-production .byo-page .byo-faq,
body.stilbruch-production .business-page .business-offers,
body.stilbruch-production .business-page .business-brand,
body.stilbruch-production .business-page .business-process,
body.stilbruch-production .business-page .business-second,
body.stilbruch-production .business-page .business-inquiry {
  color: var(--sb-black);
}

body.stilbruch-production .byo-page .byo-steps h1,
body.stilbruch-production .byo-page .byo-steps h2,
body.stilbruch-production .byo-page .byo-steps h3,
body.stilbruch-production .byo-page .byo-steps h4,
body.stilbruch-production .byo-page .byo-colour h1,
body.stilbruch-production .byo-page .byo-colour h2,
body.stilbruch-production .byo-page .byo-colour h3,
body.stilbruch-production .byo-page .byo-colour h4,
body.stilbruch-production .byo-page .byo-works h1,
body.stilbruch-production .byo-page .byo-works h2,
body.stilbruch-production .byo-page .byo-works h3,
body.stilbruch-production .byo-page .byo-works h4,
body.stilbruch-production .byo-page .byo-faq h1,
body.stilbruch-production .byo-page .byo-faq h2,
body.stilbruch-production .byo-page .byo-faq h3,
body.stilbruch-production .byo-page .byo-faq h4,
body.stilbruch-production .business-page .business-offers h1,
body.stilbruch-production .business-page .business-offers h2,
body.stilbruch-production .business-page .business-offers h3,
body.stilbruch-production .business-page .business-offers h4,
body.stilbruch-production .business-page .business-brand h1,
body.stilbruch-production .business-page .business-brand h2,
body.stilbruch-production .business-page .business-brand h3,
body.stilbruch-production .business-page .business-brand h4,
body.stilbruch-production .business-page .business-process h1,
body.stilbruch-production .business-page .business-process h2,
body.stilbruch-production .business-page .business-process h3,
body.stilbruch-production .business-page .business-process h4,
body.stilbruch-production .business-page .business-second h1,
body.stilbruch-production .business-page .business-second h2,
body.stilbruch-production .business-page .business-second h3,
body.stilbruch-production .business-page .business-second h4,
body.stilbruch-production .business-page .business-inquiry h1,
body.stilbruch-production .business-page .business-inquiry h2,
body.stilbruch-production .business-page .business-inquiry h3,
body.stilbruch-production .business-page .business-inquiry h4 {
  color: var(--sb-black) !important;
}

/* Dark service sections: explicitly preserve off-white headings. */
body.stilbruch-production .byo-page .byo-hero h1,
body.stilbruch-production .byo-page .byo-pricing h1,
body.stilbruch-production .byo-page .byo-pricing h2,
body.stilbruch-production .byo-page .byo-pricing h3,
body.stilbruch-production .byo-page .byo-pricing h4,
body.stilbruch-production .byo-page .byo-inspiration h1,
body.stilbruch-production .byo-page .byo-inspiration h2,
body.stilbruch-production .byo-page .byo-inspiration h3,
body.stilbruch-production .byo-page .byo-inspiration h4,
body.stilbruch-production .byo-page .byo-transport h1,
body.stilbruch-production .byo-page .byo-transport h2,
body.stilbruch-production .byo-page .byo-transport h3,
body.stilbruch-production .byo-page .byo-transport h4,
body.stilbruch-production .byo-page .byo-final-cta h1,
body.stilbruch-production .byo-page .byo-final-cta h2,
body.stilbruch-production .byo-page .byo-final-cta h3,
body.stilbruch-production .byo-page .byo-final-cta h4,
body.stilbruch-production .business-page .business-hero h1,
body.stilbruch-production .business-page .business-start h1,
body.stilbruch-production .business-page .business-start h2,
body.stilbruch-production .business-page .business-start h3,
body.stilbruch-production .business-page .business-start h4,
body.stilbruch-production .business-page .business-project h1,
body.stilbruch-production .business-page .business-project h2,
body.stilbruch-production .business-page .business-project h3,
body.stilbruch-production .business-page .business-project h4,
body.stilbruch-production .business-page .business-final h1,
body.stilbruch-production .business-page .business-final h2,
body.stilbruch-production .business-page .business-final h3,
body.stilbruch-production .business-page .business-final h4 {
  color: var(--sb-offwhite) !important;
}

/* Shared step language: bold enough to read, muted enough to remain secondary. */
body.stilbruch-production .byo-page .byo-step-number,
body.stilbruch-production .business-page .biz-step-number {
  color: var(--sb-grey);
  font-weight: 700;
}

/* Keep the step titles strongly readable on light sections. */
body.stilbruch-production .byo-page .byo-step h4,
body.stilbruch-production .business-page .biz-step h3,
body.stilbruch-production .business-page .offer-label {
  color: var(--sb-black) !important;
  font-weight: 700;
}

/* Give the free first-assessment statement a little more breathing room below CTA. */
body.stilbruch-production .byo-page .byo-hero-actions,
body.stilbruch-production .byo-page .byo-pricing-cta {
  gap: clamp(.75rem, 1.1vw, 1rem);
}


/* ==================================================
   PASS 6I.2 — BUSINESS FINAL CTA ALIGNMENT
   Desktop/tablet only: keep the supporting line centered beneath
   the centered final headline. Mobile layout remains unchanged.
   ================================================== */
@media (min-width: 640px) {
  body.stilbruch-production .business-page .business-final p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center !important;
  }
}

/* ==================================================
   PASS 6J — ÜBER UNS
   Approved v33 About architecture translated to WordPress.
   Native WP Media Library images; no page-builder/plugin dependency.
   ================================================== */
.about-page { background:var(--sb-offwhite); }
.about-page section { position:relative; }

.about-page .about-hero { background:var(--sb-black); color:var(--sb-offwhite); padding-top:calc(72px + var(--space-xl)); padding-bottom:var(--space-xl); }
.about-page .about-hero-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.about-page .about-hero h1 { margin-bottom:var(--space-sm); }
.about-page .about-hero p { color:rgba(244,241,234,.8); max-width:46ch; line-height:1.65; }
.about-page .about-hero-visual,
.about-page .about-founder-visual { position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio:3/4; }
.about-page .about-hero-visual { background:#2a2a2a; max-height:50vh; }
.about-page .about-hero-visual img,
.about-page .about-founder-visual img { width:100%; height:100%; object-fit:cover; object-position:center; }
.about-page .about-hero-visual .asset-placeholder,
.about-page .about-founder-visual .asset-placeholder { width:100%; height:100%; }
.about-page .placeholder-label { position:absolute; bottom:var(--space-sm); left:var(--space-sm); z-index:2; padding:4px 8px; background:rgba(26,26,26,.72); color:var(--sb-offwhite); font-size:.68rem; letter-spacing:.06em; pointer-events:none; }
.about-page .about-hero-visual img + .placeholder-label,
.about-page .about-founder-visual img + .placeholder-label { display:none; }

.about-page .about-why { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.about-page .about-why h2 { margin-bottom:var(--space-sm); }
.about-page .about-why p { max-width:52ch; margin-bottom:var(--space-md); color:rgba(26,26,26,.75); line-height:1.65; }
.about-page .about-why .about-accent { margin-bottom:0; }
.about-page .about-why strong { color:var(--sb-pink); }

.about-page .about-upcycled { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.about-page .about-upcycled h2 { margin-bottom:var(--space-sm); }
.about-page .about-upcycled p { max-width:52ch; color:rgba(244,241,234,.8); line-height:1.65; }

.about-page .about-craft { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.about-page .about-craft h2 { margin-bottom:var(--space-xl); }
.about-page .craft-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:var(--space-sm); }
.about-page .craft-item { min-width:0; }
.about-page .craft-media { position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio:3/4; margin-bottom:var(--space-sm); background:var(--sb-canvas); }
.about-page .craft-media img { width:100%; height:100%; object-fit:cover; object-position:center; }
.about-page .craft-media .asset-placeholder { width:100%; height:100%; }
.about-page .craft-label { margin:0 0 var(--space-xs); color:var(--sb-black); font-family:var(--font-display); font-size:clamp(.88rem,1vw,1rem); font-weight:700; letter-spacing:-.01em; }
.about-page .craft-desc { margin:0; color:var(--sb-grey); font-size:.88rem; line-height:1.5; }

.about-page .about-brand { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.about-page .about-brand h2 { margin-bottom:var(--space-xl); padding-left:var(--space-sm); border-left:2px solid var(--sb-pink); text-align:left; }
.about-page .brand-words { display:grid; grid-template-columns:1fr; gap:0; border-top:1px solid rgba(244,241,234,.12); text-align:left; }
.about-page .brand-word { padding:clamp(1.2rem,2.4vw,2rem) var(--space-sm); border-bottom:1px solid rgba(244,241,234,.12); color:var(--sb-offwhite); font-family:var(--font-display); font-size:clamp(1.75rem,3.2vw,2.8rem); font-weight:700; letter-spacing:-.025em; transition:background-color .2s ease; }
.about-page .brand-word:nth-child(2),
.about-page .brand-word:nth-child(6) { color:var(--sb-pink); }
@media (hover:hover) { .about-page .brand-word:hover { background:rgba(244,241,234,.025); } }

.about-page .about-second { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.about-page .about-second h2 { margin-bottom:var(--space-sm); }
.about-page .about-second p { max-width:52ch; color:rgba(26,26,26,.75); line-height:1.65; }

.about-page .about-lab { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.about-page .about-lab h2 { margin-bottom:var(--space-sm); }
.about-page .about-lab p { max-width:52ch; color:rgba(244,241,234,.8); line-height:1.65; }

.about-page .about-founder { padding-block:var(--space-2xl); background:var(--sb-offwhite); }
.about-page .about-founder-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.about-page .about-founder h2 { margin-bottom:var(--space-sm); }
.about-page .about-founder .founder-placeholder { max-width:52ch; color:var(--sb-grey); font-size:.95rem; font-style:italic; line-height:1.6; }
.about-page .about-founder-visual { background:var(--sb-canvas); max-height:50vh; }

.about-page .about-final { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.about-page .about-final h2 { margin-bottom:var(--space-sm); }
.about-page .about-final-actions { display:flex; flex-wrap:wrap; gap:var(--space-xs) var(--space-sm); margin-top:var(--space-md); }
.about-page .about-final-actions .btn { font-size:.82rem; padding:.8em 1.3em; }
.about-page .about-final-actions .btn-outline-light { border:1px solid var(--sb-offwhite); color:var(--sb-offwhite); background:transparent; }
.about-page .about-final-actions .btn-outline-light:hover,
.about-page .about-final-actions .btn-outline-light:focus-visible { border-color:var(--sb-pink); background:var(--sb-pink); color:var(--sb-black); }

@media (min-width:640px) {
  .about-page .craft-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:var(--space-md); }
  .about-page .brand-words { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (min-width:768px) {
  .about-page .about-hero { padding-top:calc(80px + var(--space-xl)); }
  .about-page .about-hero-inner,
  .about-page .about-founder-inner { grid-template-columns:1fr 1fr; gap:var(--space-xl); }
  .about-page .about-hero-visual,
  .about-page .about-founder-visual { max-height:none; }
}

@media (min-width:1024px) {
  .about-page .brand-words { grid-template-columns:repeat(3,minmax(0,1fr)); }
}

/* Astra/global heading protection, matching PASS 6I service-page strategy. */
body.stilbruch-production .about-page .about-why,
body.stilbruch-production .about-page .about-craft,
body.stilbruch-production .about-page .about-second,
body.stilbruch-production .about-page .about-founder { color:var(--sb-black); }

body.stilbruch-production .about-page .about-why h1,
body.stilbruch-production .about-page .about-why h2,
body.stilbruch-production .about-page .about-why h3,
body.stilbruch-production .about-page .about-why h4,
body.stilbruch-production .about-page .about-craft h1,
body.stilbruch-production .about-page .about-craft h2,
body.stilbruch-production .about-page .about-craft h3,
body.stilbruch-production .about-page .about-craft h4,
body.stilbruch-production .about-page .about-second h1,
body.stilbruch-production .about-page .about-second h2,
body.stilbruch-production .about-page .about-second h3,
body.stilbruch-production .about-page .about-second h4,
body.stilbruch-production .about-page .about-founder h1,
body.stilbruch-production .about-page .about-founder h2,
body.stilbruch-production .about-page .about-founder h3,
body.stilbruch-production .about-page .about-founder h4 { color:var(--sb-black) !important; }

body.stilbruch-production .about-page .about-hero h1,
body.stilbruch-production .about-page .about-upcycled h1,
body.stilbruch-production .about-page .about-upcycled h2,
body.stilbruch-production .about-page .about-upcycled h3,
body.stilbruch-production .about-page .about-upcycled h4,
body.stilbruch-production .about-page .about-brand h1,
body.stilbruch-production .about-page .about-brand h2,
body.stilbruch-production .about-page .about-brand h3,
body.stilbruch-production .about-page .about-brand h4,
body.stilbruch-production .about-page .about-lab h1,
body.stilbruch-production .about-page .about-lab h2,
body.stilbruch-production .about-page .about-lab h3,
body.stilbruch-production .about-page .about-lab h4,
body.stilbruch-production .about-page .about-final h1,
body.stilbruch-production .about-page .about-final h2,
body.stilbruch-production .about-page .about-final h3,
body.stilbruch-production .about-page .about-final h4 { color:var(--sb-offwhite) !important; }

@media (max-width:639px) {
  .about-page .about-final-actions { flex-direction:column; align-items:stretch; }
  .about-page .about-final-actions .btn { width:100%; text-align:center; }
}

/* ==================================================
   PASS 6K.1 — BESUCHEN / THE INTERIOR LAB
   Approved foundation: hero + practical store info + what to expect.
   No embedded map or plugin dependency in this pass.
   ================================================== */
.visit-page { background:var(--sb-offwhite); }
.visit-page section { position:relative; }

.visit-page .visit-hero {
  padding-top:calc(72px + var(--space-xl));
  padding-bottom:var(--space-xl);
  background:var(--sb-black);
  color:var(--sb-offwhite);
}
.visit-page .visit-hero-inner { display:grid; grid-template-columns:1fr; gap:var(--space-lg); align-items:center; }
.visit-page .visit-hero-copy .eyebrow { color:var(--sb-pink); margin-bottom:var(--space-xs); }
.visit-page .visit-hero h1 { margin-bottom:var(--space-sm); }
.visit-page .visit-hero-copy > p { max-width:46ch; margin:0; color:rgba(244,241,234,.82); line-height:1.65; }
.visit-page .visit-hero-actions { margin-top:var(--space-md); }
.visit-page .visit-hero-visual { position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; aspect-ratio:4/3; background:#2a2a2a; max-height:48vh; }
.visit-page .visit-hero-visual img { width:100%; height:100%; object-fit:cover; object-position:center; }
.visit-page .visit-hero-visual .asset-placeholder { width:100%; height:100%; }
.visit-page .visit-store-badge { position:absolute; left:var(--space-sm); bottom:var(--space-sm); padding:5px 8px; background:rgba(26,26,26,.82); color:var(--sb-offwhite); font-size:.68rem; font-weight:700; line-height:1.2; letter-spacing:.08em; text-transform:uppercase; }

.visit-page .visit-core { padding-block:var(--space-2xl); background:var(--sb-offwhite); color:var(--sb-black); }
.visit-page .visit-core > .container > .eyebrow { color:var(--sb-pink); margin-bottom:var(--space-xs); }
.visit-page .visit-core > .container > h2 { margin-bottom:var(--space-xl); }
.visit-page .visit-core-grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
.visit-page .visit-info-block { min-width:0; }
.visit-page .visit-info-block h3 { margin:0 0 var(--space-xs); color:var(--sb-black); font-family:var(--font-body); font-size:.72rem; font-weight:700; line-height:1.25; letter-spacing:.1em; text-transform:uppercase; }
.visit-page .visit-info-block p { margin:0; color:var(--sb-black); font-size:.95rem; line-height:1.65; }
.visit-page .visit-info-block a { color:var(--sb-black); transition:color .2s ease, opacity .2s ease; }
.visit-page .visit-info-block > a { display:inline-block; margin-top:var(--space-xs); font-size:.78rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.visit-page .visit-info-block a:hover,
.visit-page .visit-info-block a:focus-visible { color:var(--sb-pink); }
.visit-page .visit-no-appointment { margin-top:var(--space-xl); padding:var(--space-md); background:var(--sb-canvas); color:var(--sb-black); font-family:var(--font-display); font-size:clamp(1rem,1.5vw,1.25rem); font-weight:700; line-height:1.3; letter-spacing:-.01em; }

.visit-page .visit-what { padding-block:var(--space-2xl); background:var(--sb-black); color:var(--sb-offwhite); }
.visit-page .visit-what > .container > .eyebrow { color:var(--sb-pink); margin-bottom:var(--space-xs); }
.visit-page .visit-what > .container > h2 { margin-bottom:var(--space-xl); }
.visit-page .visit-what-grid { display:grid; grid-template-columns:1fr; gap:var(--space-lg); }
.visit-page .visit-what-item { min-width:0; }
.visit-page .visit-step-number { display:block; margin-bottom:var(--space-xs); color:var(--sb-grey); font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3rem); font-weight:700; line-height:1; }
.visit-page .visit-what-item h3 { margin:0 0 var(--space-xs); color:var(--sb-offwhite); font-weight:700; }
.visit-page .visit-what-item p { max-width:38ch; margin:0; color:rgba(244,241,234,.78); font-size:.95rem; line-height:1.6; }

@media (min-width:640px) {
  .visit-page .visit-core-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--space-lg); }
  .visit-page .visit-what-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--space-lg); }
}

@media (min-width:768px) {
  .visit-page .visit-hero { padding-top:calc(80px + var(--space-xl)); }
  .visit-page .visit-hero-inner { grid-template-columns:1fr 1fr; gap:var(--space-xl); }
  .visit-page .visit-hero-visual { max-height:none; }
}

/* Protect approved visit-page heading colours from Astra/global rules. */
body.stilbruch-production .visit-page .visit-core h1,
body.stilbruch-production .visit-page .visit-core h2,
body.stilbruch-production .visit-page .visit-core h3,
body.stilbruch-production .visit-page .visit-core h4 { color:var(--sb-black) !important; }

body.stilbruch-production .visit-page .visit-hero h1,
body.stilbruch-production .visit-page .visit-hero h2,
body.stilbruch-production .visit-page .visit-hero h3,
body.stilbruch-production .visit-page .visit-hero h4,
body.stilbruch-production .visit-page .visit-what h1,
body.stilbruch-production .visit-page .visit-what h2,
body.stilbruch-production .visit-page .visit-what h3,
body.stilbruch-production .visit-page .visit-what h4 { color:var(--sb-offwhite) !important; }

@media (max-width:639px) {
  .visit-page .visit-hero-actions .btn { width:100%; text-align:center; }
  .visit-page .visit-no-appointment { margin-top:var(--space-lg); }
}

/* ==================================================
   PASS 6L — SOLD ARCHIVE / PORTFOLIO FINISH
   Keeps the approved v33 archive language, real Woo SOLD data and
   the already-approved SOLD "DU MAGST DEN LOOK?" continuation.
   ================================================== */
body.stilbruch-production .stilbruch-sold-archive .sold-grid {
  margin-top: 0;
}

/* SOLD is an archive state, not a discounted/legacy sales listing. */
body.stilbruch-production .stilbruch-sold-archive .card-price,
body.stilbruch-production .stilbruch-sold-archive .price {
  display: none !important;
}
body.stilbruch-production .stilbruch-sold-archive .status-sold {
  color: var(--sb-grey);
  border-bottom: 0;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  opacity: .6;
}

body.stilbruch-production .stilbruch-sold-archive .sold-archive-prompt {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--sb-canvas);
}
body.stilbruch-production .stilbruch-sold-archive .sold-archive-prompt h2 {
  max-width: 12ch;
  margin: 0 0 var(--space-sm);
  color: var(--sb-black) !important;
  font-family: var(--font-display);
  font-size: clamp(2rem,4.2vw,4rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
}
body.stilbruch-production .stilbruch-sold-archive .sold-archive-prompt p {
  max-width: 46ch;
  margin: 0;
  color: rgba(26,26,26,.72);
  line-height: 1.65;
}
body.stilbruch-production .stilbruch-sold-archive .sold-archive-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  align-items: center;
}
body.stilbruch-production .stilbruch-sold-archive .sold-archive-actions .btn-quiet {
  color: var(--sb-black) !important;
}

body.stilbruch-production .stilbruch-sold-archive .sold-archive-empty {
  padding-bottom: 0;
}
body.stilbruch-production .stilbruch-sold-archive .sold-archive-empty h2 {
  font-size: clamp(1.5rem,2.5vw,2.2rem);
  line-height: 1;
}

@media (max-width:639px) {
  body.stilbruch-production .stilbruch-sold-archive .sold-archive-actions {
    flex-direction: column;
    align-items: stretch;
  }
  body.stilbruch-production .stilbruch-sold-archive .sold-archive-actions .btn {
    width: 100%;
    text-align: center;
  }
}
