/* =================================================================
   TYPOTUNE — Main Stylesheet
   Skandinavisch clean · Hell · Minimalistisch · Galerie-Feeling
   ================================================================= */

/* ——— 1. CSS VARIABLES ——— */
:root {
  --bg:            #FAFAF8;
  --bg-alt:        #F5F3EF;
  --surface:       #FFFFFF;
  --border:        #E8E4DB;
  --border-light:  #F0EDE7;

  --text-primary:   #1A1918;
  --text-secondary: #6B6660;
  --text-muted:     #A09B95;
  --text-light:     #C8C3BB;

  --cta-bg:    #1A1918;
  --cta-text:  #FAFAF8;

  --announce-bg:   #1A1918;
  --announce-text: #F5F3EF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-sale:    'Space Grotesk', system-ui, sans-serif;

  --header-h:   60px;
  --announce-h: 32px;
  --max-w:      1300px;
  --sidebar-w:  215px;

  --s1:  .25rem;  --s2:  .5rem;   --s3:  .75rem;  --s4:  1rem;
  --s5:  1.25rem; --s6:  1.5rem;  --s8:  2rem;    --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  --r:    4px;
  --r-md: 8px;
  --r-lg: 12px;

  --shadow-sm: 0 1px 4px rgba(26,25,24,.06);
  --shadow-md: 0 4px 20px rgba(26,25,24,.10);
  --shadow-lg: 0 12px 40px rgba(26,25,24,.14);

  --ease: 180ms ease;
}

[data-theme="dark"] {
  --bg:           #111110;
  --bg-alt:       #1A1918;
  --surface:      #1F1E1D;
  --border:       #2D2B28;
  --border-light: #242220;

  --text-primary:   #F0EDE8;
  --text-secondary: #9A9590;
  --text-muted:     #5A5550;
  --text-light:     #3A3835;

  --cta-bg:    #F0EDE8;
  --cta-text:  #1A1918;

  --announce-bg:   #1F1E1D;
  --announce-text: #C8C3BB;
}

/* ——— 2. RESET & BASE ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* Touch-Optimierungen */
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* ——— 3. TYPOGRAPHY ——— */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.05rem; }

p { color: var(--text-secondary); line-height: 1.72; }

.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ——— 4. LAYOUT UTILITIES ——— */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.section-pad    { padding: var(--s16) 0; }
.section-pad-lg { padding: var(--s24) 0; }
hr.divider { border: none; border-top: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: var(--s12); }
.section-header .eyebrow { margin-bottom: var(--s3); }
.section-header h2 { margin-bottom: var(--s4); }
.section-header > p { max-width: 480px; margin: 0 auto; }

/* ——— 5. ANNOUNCEMENT BAR — Slim Promo Strip ——— */
.announcement-bar {
  background: var(--announce-bg);
  color: var(--announce-text);
  height: var(--announce-h);   /* 32px — bewusst schmal */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.announce-inner {
  display: flex;
  align-items: center;
  gap: var(--s5);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,250,248,.7);
  white-space: nowrap;
}

.announce-text { color: rgba(250,250,248,.7); }

.announce-divider {
  width: 1px;
  height: 10px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}

/* Kopierbarer Promo-Code */
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .18em .6em;
  border: 1px dashed rgba(212,168,32,.65);
  border-radius: var(--r);
  background: rgba(212,168,32,.1);
  color: #D4A820;
  font-family: 'Courier New', monospace;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  cursor: pointer;
  transition: all 150ms ease;
  flex-shrink: 0;
}
.promo-code:hover {
  background: rgba(212,168,32,.2);
  border-color: rgba(212,168,32,.9);
  color: #E8C030;
}
.promo-code.copied {
  color: #6DD67D;
  border-color: rgba(109,214,125,.55);
  background: rgba(109,214,125,.1);
}
.promo-code__icon { font-size: .7rem; opacity: .75; }

/* ——— 6. HEADER ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  width: 100%;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text-primary);
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--s8);
}

.header-nav__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text-primary);
  transition: width var(--ease);
}
.header-nav__link:hover,
.header-nav__link.active { color: var(--text-primary); }
.header-nav__link:hover::after,
.header-nav__link.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher { position: relative; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-secondary);
  padding: var(--s2) var(--s3);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: all var(--ease);
}
.lang-btn:hover { color: var(--text-primary); border-color: var(--text-muted); }
.lang-btn svg { width: 9px; height: 9px; transition: transform var(--ease); }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 110px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all var(--ease);
  overflow: hidden;
  z-index: 300;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: auto; transform: none; }

.lang-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: var(--s3) var(--s5);
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--ease);
}
.lang-option:hover { background: var(--bg-alt); color: var(--text-primary); }
.lang-option.active { font-weight: 700; color: var(--text-primary); }

/* Theme Toggle */
.theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r);
  color: var(--text-secondary);
  border: 1.5px solid transparent;
  transition: all var(--ease);
}
.theme-toggle:hover { color: var(--text-primary); background: var(--bg-alt); border-color: var(--border); }
.theme-toggle svg { width: 17px; height: 17px; }
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .28s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--surface);
  padding: calc(var(--announce-h) + var(--header-h) + var(--s8)) var(--s6) calc(var(--s8) + env(safe-area-inset-bottom, 0px));
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: none; }

.mobile-nav__link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 7vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--ease);
}
.mobile-nav__link:active { color: var(--text-muted); }

/* ——— 7. BUTTONS ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding: .8em 1.8em;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-text);
  border-color: var(--cta-bg);
}
.btn--primary:hover {
  opacity: .88;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--outline:hover { border-color: var(--text-primary); background: var(--bg-alt); }

.btn--lg { padding: 1em 2.4em; font-size: .85rem; }
.btn--full { width: 100%; }

/* ——— 8. PRODUCT CARD ——— */
.product-card {
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-card a { display: block; }

.card-img {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  background: var(--bg-alt);
  aspect-ratio: 3 / 4;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-img img { transform: scale(1.05); }

/* ── Mockup-Hover (CSS Cross-Fade via ::after) ── */
.product-card:hover .card-img img[data-hover] { transform: none; }

/* Mockup-Bild als ::after — blendet sanft über das Poster */
.card-img.poster-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hover-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 3;
  pointer-events: none;
}
.card-img.poster-frame.is-hovering::after { opacity: 1; }

/* Badge über allem */
.card-badge { z-index: 4; }

.card-badge {
  position: absolute;
  top: var(--s3); left: var(--s3);
  background: var(--cta-bg);
  color: var(--cta-text);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2em .55em;
  border-radius: var(--r);
}
.card-badge--digital { background: #3B6FE8; }
.card-badge--sale    { background: #C84B31; }

.card-info { padding: var(--s5) var(--s5) var(--s6); }

.card-type {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s2);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s3);
  line-height: 1.3;
}
.card-price {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
}
.price-now  { font-size: .92rem; font-weight: 700; color: var(--text-primary); }
.price-was  { font-size: .8rem; color: var(--text-muted); text-decoration: line-through; }
.price-sale { font-size: .65rem; font-weight: 800; color: #C84B31; letter-spacing: .06em; text-transform: uppercase; }

/* ——— 9. FOOTER ——— */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s16) 0 var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s12);
  margin-bottom: var(--s12);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: var(--s4);
}
.footer-brand > p { font-size: .88rem; max-width: 230px; margin-bottom: var(--s6); }

.footer-social { display: flex; gap: var(--s3); }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all var(--ease);
}
.footer-social a:hover { color: var(--text-primary); border-color: var(--text-muted); background: var(--surface); }

.footer-col__title {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s5);
}
.footer-col__links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-col__links a {
  font-size: .88rem;
  color: var(--text-secondary);
  transition: color var(--ease);
}
.footer-col__links a:hover { color: var(--text-primary); }

.newsletter-form { display: flex; gap: var(--s2); margin-top: var(--s4); }
.newsletter-form input {
  flex: 1;
  padding: var(--s3) var(--s4);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .85rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--ease);
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { border-color: var(--text-muted); }
.newsletter-form button {
  padding: var(--s3) var(--s5);
  background: var(--cta-bg);
  color: var(--cta-text);
  border-radius: var(--r);
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.newsletter-form button:hover { opacity: .82; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-bottom p { font-size: .76rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: var(--s6); }
.footer-bottom-links a { font-size: .76rem; color: var(--text-muted); transition: color var(--ease); }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ——— 10. SUMMERSALE BANNER (kompakt) ——— */
.summersale {
  background: #1A1918;
  padding: var(--s8) 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-sale); /* Space Grotesk für den gesamten Banner */
}

/* Subtile Hintergrundtextur */
.summersale::before {
  content: '☀';
  position: absolute;
  font-size: 22rem;
  line-height: 1;
  right: 22%;
  top: -3.5rem;
  opacity: .03;
  pointer-events: none;
  user-select: none;
}

/* Linker goldener Rand-Akzent */
.summersale::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, #D4A820, transparent);
}

.summersale__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s10);
  flex-wrap: wrap;
}

/* ── Links: Sale-Identität ── */
.summersale__left {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.summersale__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #D4A820;
}

.summersale__badge::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1px;
  background: #D4A820;
  opacity: .5;
}

.summersale__offers {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
}

.sale-offer {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
}

.sale-offer__num {
  font-family: var(--font-sale);
  font-size: 2rem;
  font-weight: 700;
  color: #D4A820;
  letter-spacing: -.02em;
  line-height: 1;
}

.sale-offer__desc {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(250,250,248,.55);
  line-height: 1;
  white-space: nowrap;   /* bleibt auf einer Zeile neben der Zahl */
}

.sale-sep {
  font-size: 1.2rem;
  color: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Promo-Code in der Sale-Sektion */
.summersale .promo-code {
  align-self: flex-start;
  font-size: .7rem;
  padding: .25em .7em;
}

/* ── Rechts: Timer + CTA ── */
.summersale__right {
  display: flex;
  align-items: center;
  gap: var(--s8);
  flex-shrink: 0;
}

.summersale__timer-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.timer-eyebrow {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,250,248,.3);
}

/* Timer-Blöcke */
.sale-timer {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.t-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 50px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  padding: var(--s2) var(--s3);
}

.t-num {
  font-family: var(--font-sale);
  font-size: 1.65rem;
  font-weight: 700;
  color: #D4A820;
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}

.t-lbl {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(250,250,248,.28);
}

.t-sep {
  font-size: 1.3rem;
  color: rgba(212,168,32,.28);
  margin-bottom: 14px;
  flex-shrink: 0;
  line-height: 1;
}

/* CTA */
.summersale__cta {
  font-family: var(--font-sale);
  background: #D4A820;
  color: #1A1918;
  border-color: #D4A820;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.summersale__cta:hover {
  background: #E8C030;
  border-color: #E8C030;
  box-shadow: 0 4px 20px rgba(212,168,32,.32);
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .summersale__inner { gap: var(--s8); }
  .summersale__right { gap: var(--s6); }
}
@media (max-width: 700px) {
  .summersale__inner { flex-direction: column; align-items: flex-start; gap: var(--s6); }
  .summersale__right { width: 100%; justify-content: space-between; }
}
@media (max-width: 480px) {
  .summersale__right { flex-direction: column; align-items: flex-start; gap: var(--s5); }
  .t-unit { min-width: 44px; }
  .t-num  { font-size: 1.4rem; }
}

/* ——— 11. INDEX PAGE — HERO ——— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--announce-h) - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.55); }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(250,250,248,.92) 0%,
    rgba(250,250,248,.70) 40%,
    rgba(250,250,248,.15) 70%,
    rgba(250,250,248,.0) 100%
  );
}
[data-theme="dark"] .hero__overlay {
  background: linear-gradient(
    100deg,
    rgba(17,17,16,.96) 0%,
    rgba(17,17,16,.78) 50%,
    rgba(17,17,16,.15) 100%
  );
}
.hero__content { position: relative; z-index: 2; max-width: 580px; }
.hero .eyebrow { margin-bottom: var(--s5); display: block; color: var(--text-secondary); }
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: var(--s6);
}
.hero h1 em { font-style: italic; color: var(--text-secondary); }
.hero > .container > .hero__content > p { font-size: 1.05rem; max-width: 420px; margin-bottom: var(--s8); }
.hero__cta { display: flex; gap: var(--s4); flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: var(--s8); left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s2);
  color: var(--text-muted);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .6; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}
.hero-scroll svg { width: 14px; height: 20px; }

/* Trust Bar */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s10) 0;
}
.trust-items { display: flex; justify-content: center; gap: var(--s12); flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--s2); text-align: center; }
.trust-item svg { width: 26px; height: 26px; color: var(--text-muted); margin-bottom: var(--s2); }
.trust-item strong { font-size: .82rem; font-weight: 700; color: var(--text-primary); }
.trust-item span { font-size: .74rem; color: var(--text-muted); }

/* Masonry */
.inspiration { background: var(--surface); }

.masonry-grid { columns: 3; column-gap: var(--s5); }
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--s5);
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  position: relative;
  cursor: pointer;
}
.masonry-item img { width: 100%; display: block; transition: transform .55s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(26,25,24,0);
  transition: background .3s ease;
  display: flex; align-items: flex-end;
  padding: var(--s5);
}
.masonry-item:hover .masonry-overlay { background: rgba(26,25,24,.28); }
.masonry-label {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.masonry-item:hover .masonry-label { opacity: 1; transform: none; }

/* How it Works */
.how-it-works { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s10);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 27px);
  right: calc(16.67% + 27px);
  height: 1px;
  background: var(--border);
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--s5); }
.step__num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-primary);
  position: relative; z-index: 1; flex-shrink: 0;
}
.step h4 { margin-bottom: var(--s2); }
.step p { font-size: .9rem; }

/* Featured Products (Home) */
.featured-products { background: var(--bg-alt); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s6); }
.view-all { text-align: center; margin-top: var(--s12); }

/* ——— 11. SHOP PAGE ——— */
.shop-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: var(--s12) 0 var(--s10);
  text-align: center;
}
.shop-hero h1 { margin-bottom: var(--s3); }
.shop-hero p { font-size: 1rem; max-width: 380px; margin: 0 auto; }

.shop-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: var(--s10);
  padding: var(--s10) 0 var(--s16);
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + var(--s6));
  height: fit-content;
}

.filter-toggle-mobile {
  display: none;
  width: 100%;
  margin-bottom: var(--s5);
  padding: var(--s3) var(--s5);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-secondary);
  gap: var(--s3);
  align-items: center;
}

.filter-block { margin-bottom: var(--s8); }
.filter-block__title {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding-bottom: var(--s3);
  margin-bottom: var(--s4);
  border-bottom: 1px solid var(--border);
}

.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s2) 0;
  cursor: pointer;
}
.filter-option input[type="checkbox"] { display: none; }

.filter-label {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: .88rem;
  color: var(--text-secondary);
  cursor: pointer;
  flex: 1;
  transition: color var(--ease);
}
.filter-label::before {
  content: '';
  width: 16px; height: 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  flex-shrink: 0;
  background: var(--surface);
  transition: all var(--ease);
}
.filter-option input:checked + .filter-label { color: var(--text-primary); font-weight: 600; }
.filter-option input:checked + .filter-label::before {
  background: var(--cta-bg);
  border-color: var(--cta-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fafaf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
[data-theme="dark"] .filter-option input:checked + .filter-label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%231a1918' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
}
.filter-count { font-size: .75rem; color: var(--text-light); }

.shop-main {}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s5);
  margin-bottom: var(--s6);
  border-bottom: 1px solid var(--border);
}
.shop-count { font-size: .85rem; color: var(--text-secondary); }
.shop-sort select {
  font-size: .82rem;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: var(--s2) var(--s3);
  background: var(--surface);
  cursor: pointer;
  outline: none;
}

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s6); }
.product-card.hidden { display: none; }

/* ——— 12. PRODUCT PAGE ——— */
.product-page { padding: var(--s10) 0 var(--s16); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s8);
  font-size: .76rem;
  color: var(--text-muted);
}
.breadcrumb a:hover { color: var(--text-primary); }
.bc-sep { color: var(--border); }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s12);
  align-items: start;
}

/* Gallery */
.gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  margin-bottom: var(--s4);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s ease; }

.gallery-thumbs { display: flex; gap: var(--s3); flex-wrap: wrap; }
.gallery-thumb {
  width: 68px; height: 68px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--ease);
  background: var(--bg-alt);
  flex-shrink: 0;
}
.gallery-thumb:hover,
.gallery-thumb.active { border-color: var(--text-primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info {
  position: sticky;
  top: calc(var(--header-h) + var(--s6));
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.product-stars {
  display: flex; align-items: center; gap: var(--s2);
  color: #C4973E; font-size: .85rem;
}
.product-stars span { color: var(--text-muted); font-size: .78rem; }

.product-info h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.25;
}

.offer-banner {
  background: #FFF8E6;
  border: 1.5px solid #EDD266;
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  font-size: .84rem;
  font-weight: 700;
  color: #7A5B00;
  line-height: 1.5;
}
[data-theme="dark"] .offer-banner {
  background: #221B00; border-color: #5A4400; color: #D4B040;
}

.price-row { display: flex; align-items: baseline; gap: var(--s4); flex-wrap: wrap; }
.price-main {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--text-primary);
}
.price-orig { font-size: 1.1rem; color: var(--text-muted); text-decoration: line-through; }
.price-badge {
  font-size: .72rem; font-weight: 800;
  background: #C84B31; color: #fff;
  padding: .2em .55em;
  border-radius: var(--r);
  letter-spacing: .04em;
}

/* Format Selector */
.format-label,
.size-label {
  display: block;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s3);
}
.format-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); }
.format-opt { position: relative; }
.format-opt input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }

.format-card {
  display: flex; flex-direction: column; gap: var(--s1);
  padding: var(--s4) var(--s5);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--surface);
}
.format-card:hover { border-color: var(--text-muted); }
.format-opt input:checked + .format-card { border-color: var(--text-primary); background: var(--bg-alt); }

.format-card__name  { font-size: .88rem; font-weight: 700; color: var(--text-primary); }
.format-card__sub   { font-size: .72rem; color: var(--text-muted); }
.format-card__price { font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-top: var(--s2); }

/* Size Selector */
.size-options { display: flex; flex-wrap: wrap; gap: var(--s2); }
.size-opt {
  padding: var(--s2) var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .82rem; font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--surface);
}
.size-opt:hover  { border-color: var(--text-muted); color: var(--text-primary); }
.size-opt.active { border-color: var(--text-primary); color: var(--text-primary); background: var(--bg-alt); }

/* Format Details (Dynamic) */
.format-details {
  padding: var(--s5);
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
}
.format-details[hidden] { display: none; }
.format-details__title {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s4);
}
.format-details ul { display: flex; flex-direction: column; gap: var(--s3); }
.format-details li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: .88rem; color: var(--text-secondary);
}
.format-details li::before {
  content: '✓';
  color: var(--text-muted); font-size: .78rem;
  flex-shrink: 0; margin-top: 2px;
}

/* Personalization Box */
.personalization-box {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.personalization-box__header {
  display: flex; align-items: flex-start; gap: var(--s4);
  padding: var(--s5) var(--s6);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-light);
}
.personalization-box__header svg { color: var(--text-muted); flex-shrink: 0; margin-top: 2px; }
.pb-title { font-size: .88rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--s1); }
.pb-sub   { font-size: .78rem; color: var(--text-muted); }

.personalization-fields {
  padding: var(--s5) var(--s6);
  display: flex; flex-direction: column; gap: var(--s5);
}
.field-group { display: flex; flex-direction: column; gap: var(--s2); }
.field-group label { font-size: .76rem; font-weight: 600; color: var(--text-secondary); letter-spacing: .04em; }
.field-group input,
.field-group textarea,
.field-group select {
  padding: var(--s3) var(--s4);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-size: .9rem; color: var(--text-primary);
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--text-light); }
.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus { border-color: var(--text-muted); }
.field-group textarea { resize: vertical; min-height: 80px; }

/* Delivery info */
.delivery-info {
  display: flex; align-items: center; gap: var(--s3);
  font-size: .85rem; color: var(--text-secondary);
  padding: var(--s4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.delivery-info svg { color: var(--text-muted); flex-shrink: 0; }

/* CTA */
.product-cta .btn { font-size: .9rem; padding: 1.05em 2em; border-radius: var(--r-md); }

/* Product Tabs */
.product-tabs { margin-top: var(--s12); }
.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--s8);
}
.tab-btn {
  padding: var(--s4) var(--s6);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--ease);
  cursor: pointer;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--text-primary); border-bottom-color: var(--text-primary); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p  { font-size: .95rem; margin-bottom: var(--s5); }
.tab-panel ul { list-style: disc; padding-left: var(--s6); display: flex; flex-direction: column; gap: var(--s3); }
.tab-panel li { font-size: .9rem; color: var(--text-secondary); }

/* ——— 13. COLOR / STYLE SELECTOR ——— */
.style-selector { margin-bottom: var(--s6); }

.style-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--s3);
}

.style-options {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

.style-opt {
  position: relative;
  cursor: pointer;
}

.style-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.style-card {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) var(--s5);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--surface);
  min-width: 110px;
}
.style-card:hover { border-color: var(--text-muted); }
.style-opt input:checked + .style-card {
  border-color: var(--text-primary);
  background: var(--bg-alt);
}

.style-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,0,0,.1);
}
.swatch--dark  { background: #1A1918; }          /* Schwarz */
.swatch--light { background: #2B5BE8; border-color: transparent; } /* Blau  */
.swatch--warm  { background: #2E7D52; border-color: transparent; } /* Grün  */

.style-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Style-Badge auf Karten im Shop */
.card-styles {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s3);
}
.card-style-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.1);
  flex-shrink: 0;
}

/* ——— 14. REVIEWS SECTION ——— */
.reviews-section {
  margin-top: var(--s12);
  padding-top: var(--s10);
  border-top: 1px solid var(--border);
}

.reviews-section__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s8);
}

/* Summary */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s10);
  align-items: center;
  margin-bottom: var(--s10);
  padding-bottom: var(--s10);
  border-bottom: 1px solid var(--border);
}

.review-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  min-width: 100px;
}
.review-score__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.review-score__stars {
  color: #C4973E;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-score__count {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.rating-row {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.rating-row__label {
  font-size: .76rem;
  color: var(--text-muted);
  min-width: 58px;
  white-space: nowrap;
}
.rating-row__bar {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
.rating-row__fill {
  height: 100%;
  background: #C4973E;
  border-radius: 100px;
  transition: width .6s ease;
}
.rating-row__pct {
  font-size: .74rem;
  color: var(--text-muted);
  min-width: 32px;
  text-align: right;
}

/* Review Cards */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.review-card {
  padding: var(--s6) 0;
  border-bottom: 1px solid var(--border-light);
}
.review-card:last-child { border-bottom: none; }

.review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s3);
  flex-wrap: wrap;
  gap: var(--s3);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.avatar--blue  { background: #3B6FE8; }
.avatar--green { background: #3BA87E; }

.reviewer-info__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.reviewer-info__date {
  font-size: .75rem;
  color: var(--text-muted);
}

.review-card__stars {
  color: #C4973E;
  font-size: .9rem;
  letter-spacing: 1px;
}

.review-card__recommend {
  font-size: .72rem;
  font-weight: 600;
  color: #3BA87E;
  letter-spacing: .04em;
}

.review-card__product {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}

.review-card__text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.review-card__translation {
  margin-top: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--border-light);
}
.review-card__translation-label {
  font-size: .7rem;
  color: var(--text-light);
  margin-bottom: var(--s1);
  font-style: italic;
}
.review-card__translation-text {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ——— 15. HOME REVIEWS ——— */
.home-reviews {
  background: var(--bg-alt);
  padding: var(--s16) 0;
}

.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  margin-top: var(--s10);
}

.home-review-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--s8);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  transition: transform var(--ease), box-shadow var(--ease);
}

.home-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.08);
}

.home-review-card__quote {
  font-family: var(--font-display);
  font-size: 3.8rem;
  line-height: .75;
  color: #C4973E;
  opacity: .5;
}

.home-review-card__text {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.home-review-card__footer {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding-top: var(--s5);
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.home-review-card__name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.home-review-card__stars {
  color: #C4973E;
  font-size: .75rem;
  letter-spacing: 1px;
  margin-top: 1px;
}

.home-review-card__source {
  margin-left: auto;
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 100px;
}

/* ——— 16. RESPONSIVE ——— */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  /* Navigation */
  .header-nav { display: none; }
  .hamburger  { display: flex; }

  /* Hero */
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero__overlay {
    background: linear-gradient(
      160deg,
      rgba(250,250,248,.96) 0%,
      rgba(250,250,248,.88) 55%,
      rgba(250,250,248,.55) 100%
    );
  }
  [data-theme="dark"] .hero__overlay {
    background: linear-gradient(
      160deg,
      rgba(17,17,16,.97) 0%,
      rgba(17,17,16,.88) 55%,
      rgba(17,17,16,.40) 100%
    );
  }

  /* Masonry */
  .masonry-grid { columns: 2; }

  /* Shop */
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .filter-block { display: none; }
  .filter-block.expanded { display: block; }
  .filter-toggle-mobile { display: flex; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }

  /* Product Page */
  .product-layout { grid-template-columns: 1fr; }
  .product-info { position: static; }

  /* Steps */
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--s8); }

  /* Grids */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Summersale */
  .summersale__inner { gap: var(--s8); }
  .summersale__right { gap: var(--s6); }
}

/* ── Touch: Cursor & Scroll-Indikator ausblenden ── */
@media (pointer: coarse) {
  html { cursor: none; }
  .hero-scroll { display: none; }
  .product-card:hover        { transform: none; box-shadow: none; }
  .masonry-item:hover img    { transform: none; }
  .masonry-item:hover .masonry-overlay { background: rgba(26,25,24,0); }
  .masonry-item:hover .masonry-label  { opacity: 0; }
}

@media (max-width: 640px) {
  /* Layout */
  .container { padding: 0 var(--s4); }

  /* Announcement Bar: letzte Gruppe ausblenden */
  .announce-inner { gap: var(--s3); font-size: .6rem; letter-spacing: .07em; }
  .announce-divider:last-of-type { display: none; }
  .announce-text:last-child { display: none; }

  /* Hero */
  .hero { min-height: calc(88svh - var(--announce-h) - var(--header-h)); }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .hero > .container > .hero__content > p { font-size: .9rem; max-width: 100%; }
  .hero__cta { flex-direction: column; gap: var(--s3); }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__overlay { background: rgba(250,250,248,.92); }
  [data-theme="dark"] .hero__overlay { background: rgba(17,17,16,.94); }

  /* Trust Bar: 2×2 Grid */
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s6) var(--s4);
    justify-items: center;
  }

  /* Masonry */
  .masonry-grid { columns: 2; column-gap: var(--s3); }
  .masonry-item { margin-bottom: var(--s3); }

  /* Grids */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .shop-grid     { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }

  /* Product Page */
  .gallery-thumbs { gap: var(--s2); }
  .gallery-thumb  { width: 58px; height: 58px; }
  .tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tabs-nav::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; padding: var(--s3) var(--s4); font-size: .78rem; }
  .format-options { grid-template-columns: 1fr; }
  .personalization-box__header { padding: var(--s4) var(--s5); }
  .personalization-fields { padding: var(--s4) var(--s5); }
  .product-cta .btn { font-size: .85rem; }

  /* Bewertungen */
  .reviews-cards-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .reviews-summary { grid-template-columns: 1fr; text-align: center; }
  .review-score { min-width: auto; }
  .rating-bars { max-width: 320px; margin: 0 auto; }
  .review-card__header { flex-direction: column; align-items: flex-start; gap: var(--s2); }

  /* Summersale */
  .summersale { padding: var(--s10) 0; }
  .summersale__inner { flex-direction: column; align-items: flex-start; gap: var(--s6); }
  .summersale__right { width: 100%; justify-content: space-between; }
  .summersale__cta { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: var(--s4); }

  /* FAQ */
  .faq-wrap { padding: var(--s8) var(--s4) var(--s16); }
  .faq-question { font-size: .88rem; }
  .faq-contact-box { padding: var(--s6) var(--s5); }

  /* Legal */
  .legal-wrap { padding: var(--s8) var(--s4) var(--s16); }
}

/* ── 480px: Kleine Smartphones ── */
@media (max-width: 480px) {
  /* Header */
  .header-logo { font-size: 1.25rem; }

  /* Hero */
  .hero h1 { font-size: clamp(1.7rem, 10vw, 2.1rem); }
  .hero .eyebrow { font-size: .6rem; }
  .hero > .container > .hero__content > p { font-size: .85rem; }

  /* Karten: eine Spalte auf sehr kleinen Geräten */
  .products-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .card-info { padding: var(--s4); }

  /* Summersale */
  .summersale__right { flex-direction: column; align-items: flex-start; gap: var(--s5); }
  .t-unit { min-width: 44px; }
  .t-num  { font-size: 1.4rem; }

  /* Steps */
  .step { gap: var(--s3); }
  .step p { font-size: .85rem; }

  /* Section Padding reduzieren */
  .section-pad    { padding: var(--s10) 0; }
  .section-pad-lg { padding: var(--s12) 0; }
}

/* ═══════════════════════════════════════════
   FAQ PAGE
   ═══════════════════════════════════════════ */
.faq-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: var(--s12) 0 var(--s10);
  text-align: center;
}
.faq-hero h1 { margin-bottom: var(--s3); }
.faq-hero p  { max-width: 420px; margin: 0 auto; font-size: 1rem; }

.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--s12) var(--s6) var(--s20);
}

.faq-category {
  margin-bottom: var(--s10);
}

.faq-category__title {
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: var(--s4);
  margin-bottom: var(--s2);
  border-bottom: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s5);
  padding: var(--s5) 0;
  width: 100%;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--text-secondary); }

.faq-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: .8rem;
  transition: all .22s ease;
  font-style: normal;
}

.faq-item.open .faq-icon {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--surface);
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease, padding .22s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--s6);
}

.faq-answer p {
  font-size: .92rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.faq-answer ul {
  list-style: disc;
  padding-left: var(--s6);
  margin-top: var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.faq-answer li { font-size: .9rem; color: var(--text-secondary); }

.faq-contact-box {
  margin-top: var(--s12);
  padding: var(--s8) var(--s10);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.faq-contact-box h3 { margin-bottom: var(--s3); font-size: 1.3rem; }
.faq-contact-box p  { margin-bottom: var(--s6); max-width: 380px; margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════
   LEGAL PAGES  (Impressum, Datenschutz)
   ════════════════════════════════════════════════════════════ */
.legal-hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: var(--s12) 0 var(--s10);
  text-align: center;
}
.legal-hero h1 { margin-bottom: var(--s3); }
.legal-hero p  { max-width: 480px; margin: 0 auto; font-size: 1rem; color: var(--text-secondary); }

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--s12) var(--s6) var(--s20);
}

.legal-section {
  margin-bottom: var(--s10);
}

.legal-section__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s4);
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--border);
}

.legal-section h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--s5) 0 var(--s2);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.legal-section p {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--s3);
}

.legal-section ul {
  list-style: disc;
  padding-left: var(--s6);
  margin: var(--s2) 0 var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.legal-section li {
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.legal-section a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-placeholder {
  background: rgba(255, 200, 0, .15);
  border: 1px dashed #C4973E;
  border-radius: var(--r);
  padding: .15em .4em;
  font-weight: 600;
  color: #9A6E10;
  font-size: .85em;
}

.legal-address {
  font-style: normal;
  font-size: .9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--s4);
}

