/* =====================================================================
   Blooming Wonders Studio – Skizze / Klick-Prototyp
   Farben und Stimmung sind direkt aus dem Logo abgeleitet:
   Creme-Hintergrund, Rosé der Schreibschrift, Blütentöne, Holzton des Stifts
   ===================================================================== */

:root {
  /* Flächen & Text */
  --paper:      #FDF9F8;   /* exakt der Hintergrund des Logos */
  --surface:    #FFFFFF;
  --surface-2:  #FBF1F2;
  --ink:        #46383A;   /* warmes Dunkelbraun wie „STUDIO" im Logo */
  --ink-2:      #7C686C;
  --ink-3:      #A9959A;
  --line:       #F3E3E6;
  --line-2:     #E9D2D7;

  /* Marke – das Rosé der Schreibschrift */
  --brand:      #CD6273;
  --brand-dark: #A94A5B;
  --brand-soft: #FBE4E8;
  --blossom:    #E7A3AE;   /* mittleres Blütenrosa */
  --blossom-lt: #F7D6DC;   /* helles Blütenrosa */

  /* Akzent – dunkleres Beerenrosé für die Kauf-Buttons */
  --accent:      #A94A5B;
  --accent-dark: #87384A;
  --accent-soft: #F8E2E7;
  --holz:        #B87E42;  /* Holzton des Bleistifts, für kleine Akzente */

  /* Kategoriefarben – gedämpft, damit sie zum Rosé passen */
  --c-mal:      #C2586A;  --c-mal-soft:  #FBE3E7;
  --c-mathe:    #5B72A4;  --c-mathe-soft:#E9EDF7;
  --c-diktat:   #4F8069;  --c-diktat-soft:#E4F0EA;
  --c-lesen:    #7E64AA;  --c-lesen-soft:#EFE9F8;
  --c-sach:     #9C6A34;  --c-sach-soft: #F9EEDD;
  --c-paket:    #7E6A6C;  --c-paket-soft:#F1EAEA;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-pill:999px;
  --maxw:       1120px;

  --shadow-sm: 0 1px 2px rgba(70,56,58,.05), 0 3px 10px rgba(70,56,58,.05);
  --shadow-md: 0 4px 14px rgba(70,56,58,.07), 0 16px 34px rgba(70,56,58,.07);
  --shadow-lg: 0 10px 30px rgba(70,56,58,.10), 0 30px 60px rgba(70,56,58,.08);

  --font: -apple-system, "SF Pro Text", "Segoe UI", system-ui, "Helvetica Neue",
          Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--paper);
  /* weicher Blütenschimmer statt Muster: drei sehr helle, große Farbwolken,
     die beim Scrollen stehen bleiben und nie mit dem Inhalt konkurrieren */
  background-image:
    radial-gradient(1150px 640px at  6% -8%, rgba(244,198,209,.55), transparent 62%),
    radial-gradient( 900px 520px at 98%  2%, rgba(250,225,231,.65), transparent 60%),
    radial-gradient( 820px 700px at 80% 92%, rgba(246,216,224,.45), transparent 66%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1,h2,h3,h4 { line-height: 1.22; margin: 0 0 .5em; letter-spacing: -.012em; }
h1 { font-size: clamp(1.95rem, 4.3vw, 2.85rem); font-weight: 700; }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Skizzen-Hinweisleiste ------------------------------------ */
.demobar {
  background: repeating-linear-gradient(45deg, #FCEBEF, #FCEBEF 12px, #F9DFE5 12px, #F9DFE5 24px);
  border-bottom: 1px solid #F3D2DA;
  color: #9C4257;
  font-size: .8rem;
  font-weight: 600;
  text-align: center;
  padding: 7px 16px;
  letter-spacing: .01em;
}

/* ---------- Kopfzeile ------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 50;
  /* Exakt der Hintergrund des Logo-JPGs – dadurch hat das Logo keinen sichtbaren
     Bildrand. Deshalb hier deckend und nicht transparent. */
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 22px;
  height: 74px;
}
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.logo__mark { width: 54px; height: 54px; flex: none; }
.logo__mark img { width: 100%; height: 100%; }
.logo__text {
  font-size: 1.18rem; font-weight: 600; color: var(--brand-dark);
  letter-spacing: -.005em; line-height: 1.15;
}
.logo__text small {
  display: block; font-size: .58rem; font-weight: 600; color: #A96A78;
  letter-spacing: .17em; text-transform: uppercase; margin-top: 2px;
}

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav a {
  text-decoration: none; font-weight: 600; font-size: .93rem; color: var(--ink-2);
  padding: 8px 12px; border-radius: var(--radius-pill);
}
.nav a:hover { background: var(--surface-2); color: var(--ink); }
.nav a.is-active { background: var(--brand-soft); color: var(--brand-dark); }

.header__spacer { margin-left: auto; }

.cartbtn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .92rem;
  padding: 10px 16px; border-radius: var(--radius-pill);
  box-shadow: 0 3px 0 var(--brand-dark);
  transition: transform .12s ease;
}
.cartbtn:hover { transform: translateY(-1px); }
.cartbtn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--brand-dark); }
.cartbtn__count {
  background: #fff; color: var(--brand-dark);
  min-width: 21px; height: 21px; padding: 0 6px;
  border-radius: var(--radius-pill);
  font-size: .76rem; font-weight: 800;
  display: grid; place-items: center;
}

/* ---------- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: .95rem;
  padding: 12px 20px; border-radius: var(--radius-pill);
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .15s ease;
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 3px 0 var(--brand-dark); }
.btn--primary:hover { background: #D66E7E; transform: translateY(-1px); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--brand-dark); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 3px 0 var(--accent-dark); }
.btn--accent:hover { background: #BA5567; transform: translateY(-1px); }
.btn--accent:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-dark); }
.btn--ghost { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn--block { width: 100%; }
.btn--lg { padding: 15px 26px; font-size: 1.02rem; }
.btn--sm { padding: 8px 14px; font-size: .85rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; box-shadow: none; }
.btn.is-added { background: #4F8069; box-shadow: 0 3px 0 #3D6653; }

/* ---------- Hero ----------------------------------------------------- */
.hero { padding: 54px 0 40px; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-soft); color: var(--brand-dark);
  font-size: .8rem; font-weight: 600;
  padding: 6px 13px; border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.hero p.lead { font-size: 1.08rem; color: var(--ink-2); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; }
.hero__fact { font-size: .87rem; color: var(--ink-2); display: flex; align-items: center; gap: 7px; font-weight: 600; }
.hero__fact b { color: var(--ink); }

/* gestapelte Beispielhefte im Hero */
.stack { position: relative; height: 330px; }
.stack__card {
  position: absolute; width: 175px; height: 245px;
  border-radius: 16px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.05);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 16px; overflow: hidden;
}
.stack__card span.emo { font-size: 46px; line-height: 1; }
.stack__card b { font-size: .95rem; }
.stack__card small { font-size: .72rem; opacity: .75; display: block; }
/* nach rechts aufgefächert – jede Karte liegt über der linken Nachbarin,
   die Beschriftung sitzt unten links und bleibt dadurch sichtbar */
.stack__card:nth-child(1) { left: 0;   top: 40px; transform: rotate(-7deg); background: var(--c-mal-soft);   color: #93394B; }
.stack__card:nth-child(2) { left: 29%; top: 10px; transform: rotate(2deg);  background: var(--c-mathe-soft); color: #3D5482; }
.stack__card:nth-child(3) { left: 58%; top: 46px; transform: rotate(8deg);  background: var(--c-diktat-soft);color: #38624E; }

/* ---------- Abschnitte ----------------------------------------------- */
.section { padding: 40px 0; }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section__head p { color: var(--ink-2); margin: 0; font-size: .95rem; }
.section__head h2 { margin: 0 0 4px; }
.link-more { text-decoration: none; font-weight: 700; color: var(--brand-dark); font-size: .92rem; white-space: nowrap; }
.link-more:hover { text-decoration: underline; }

/* ---------- Kategorie-Kacheln ---------------------------------------- */
.kats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kat {
  text-decoration: none; border-radius: var(--radius);
  padding: 20px 18px; border: 1px solid rgba(0,0,0,.05);
  transition: transform .14s ease, box-shadow .14s ease;
  display: block;
}
.kat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.kat span.emo { font-size: 30px; display: block; margin-bottom: 10px; }
.kat b { display: block; font-size: 1.02rem; }
.kat small { color: rgba(0,0,0,.5); font-size: .82rem; font-weight: 600; }

/* ---------- Produktraster & -karte ------------------------------------ */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }

.cover {
  position: relative; aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.05);
  background-image: radial-gradient(rgba(255,255,255,.75) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
}
.cover__emo { font-size: 54px; filter: drop-shadow(0 3px 4px rgba(0,0,0,.12)); }
.cover__type {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,.9); color: var(--ink-2);
  font-size: .66rem; font-weight: 800; letter-spacing: .08em;
  padding: 4px 9px; border-radius: 7px;
}
.cover__badge {
  position: absolute; right: 12px; top: 12px;
  font-size: .68rem; font-weight: 800; letter-spacing: .03em;
  padding: 5px 10px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
}
.cover__badge--neu   { background: var(--holz); }
.cover__badge--top   { background: var(--brand); }
.cover__badge--spar  { background: var(--c-mal); }

.card__body { padding: 15px 16px 0; flex: 1; }
.card__kat { font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.card__title { font-size: 1rem; font-weight: 700; margin: 6px 0 8px; text-decoration: none; display: block; }
.card__title:hover { color: var(--brand-dark); }
.card__meta { font-size: .8rem; color: var(--ink-3); display: flex; flex-wrap: wrap; gap: 4px 10px; }
.card__foot {
  padding: 12px 16px 16px; margin-top: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.preis { font-weight: 800; font-size: 1.15rem; white-space: nowrap; }
.preis s { font-weight: 600; font-size: .85rem; color: var(--ink-3); margin-right: 6px; }
/* in der Karte steht der Streichpreis über dem Preis, sonst wird der Button umbrochen */
.card__foot .preis s { display: block; margin: 0 0 -2px; }
.card__foot .btn { white-space: nowrap; }
.preis small { font-weight: 600; font-size: .68rem; color: var(--ink-3); display: block; margin-top: -3px; }

.stars { font-size: .78rem; color: var(--ink-3); display: flex; align-items: center; gap: 5px; }
.stars b { color: var(--ink-2); }

/* ---------- Pillen / Chips ------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700;
  padding: 5px 11px; border-radius: var(--radius-pill);
  background: var(--surface-2); color: var(--ink-2);
}
.pill--brand { background: var(--brand-soft); color: var(--brand-dark); }

/* ---------- Filterleiste --------------------------------------------- */
.filters {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.filters__row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.filters__row + .filters__row { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line); }
.chip {
  border: 1.5px solid var(--line-2); background: var(--surface);
  font-family: inherit; font-weight: 700; font-size: .86rem; color: var(--ink-2);
  padding: 7px 14px; border-radius: var(--radius-pill); cursor: pointer;
  transition: all .13s ease;
}
.chip:hover { border-color: var(--ink-3); color: var(--ink); }
.chip.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }

.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: .78rem; font-weight: 700; color: var(--ink-2); }
input[type="text"], input[type="email"], input[type="search"], select, textarea {
  font-family: inherit; font-size: .93rem; color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 10px 13px; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.search { flex: 1; min-width: 200px; }

.count-note { font-size: .87rem; color: var(--ink-2); margin: 0 0 16px; }

/* ---------- Produktdetail -------------------------------------------- */
.crumbs { font-size: .84rem; color: var(--ink-3); padding: 20px 0 0; }
.crumbs a { text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }

.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 24px 0 10px; align-items: start; }
.detail__cover {
  border-radius: var(--radius); aspect-ratio: 4/3;
  display: grid; place-items: center; position: relative;
  border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-md);
  background-image: radial-gradient(rgba(255,255,255,.75) 1.6px, transparent 1.7px);
  background-size: 20px 20px;
}
.detail__cover .cover__emo { font-size: 96px; }
.thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 12px; }
.thumb {
  aspect-ratio: 1; border-radius: 12px; display: grid; place-items: center;
  font-size: 24px; border: 1px solid rgba(0,0,0,.06); cursor: pointer;
  background-image: radial-gradient(rgba(255,255,255,.6) 1.2px, transparent 1.3px);
  background-size: 12px 12px;
}
.thumb:hover { outline: 2px solid var(--brand); }

.detail h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.detail .lead { color: var(--ink-2); }

.pricebox {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; margin: 20px 0;
  box-shadow: var(--shadow-sm);
}
.pricebox .preis { font-size: 1.9rem; }

.lizenz { display: grid; gap: 8px; margin: 14px 0 16px; }
.lizenz__opt {
  display: flex; align-items: center; gap: 11px; cursor: pointer;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 11px 13px; background: var(--surface);
}
.lizenz__opt:hover { border-color: var(--ink-3); }
.lizenz__opt.is-on { border-color: var(--brand); background: var(--brand-soft); }
.lizenz__opt input { accent-color: var(--brand); width: 17px; height: 17px; }
.lizenz__opt b { font-size: .92rem; }
.lizenz__opt small { display: block; color: var(--ink-2); font-size: .78rem; }
.lizenz__opt .pr { margin-left: auto; font-weight: 800; white-space: nowrap; }

.speclist { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.speclist li { display: flex; gap: 10px; font-size: .92rem; align-items: flex-start; }
.speclist li span { color: var(--brand); font-weight: 800; }

.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line); margin: 34px 0 20px; }
.tab {
  background: none; border: 0; border-bottom: 3px solid transparent;
  font-family: inherit; font-weight: 700; font-size: .95rem; color: var(--ink-3);
  padding: 10px 14px; cursor: pointer; margin-bottom: -1px;
}
.tab.is-on { color: var(--ink); border-bottom-color: var(--brand); }

/* ---------- Warenkorb ------------------------------------------------ */
.cartlayout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 28px; align-items: start; padding: 10px 0 40px; }

.cartline {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 15px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; align-items: center;
}
.cartline + .cartline { margin-top: 12px; }
.cartline__cover {
  width: 84px; aspect-ratio: 1; border-radius: 12px;
  display: grid; place-items: center; font-size: 32px;
  border: 1px solid rgba(0,0,0,.06);
}
.cartline b { font-size: .98rem; display: block; }
.cartline small { color: var(--ink-2); font-size: .82rem; }
.cartline__right { text-align: right; }
.linkbtn {
  background: none; border: 0; font-family: inherit; font-size: .8rem; font-weight: 700;
  color: var(--ink-3); cursor: pointer; padding: 4px 0; text-decoration: underline;
}
.linkbtn:hover { color: var(--c-mal); }

.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm);
}
.panel h3 { margin-bottom: 14px; }
.sumline { display: flex; justify-content: space-between; font-size: .93rem; padding: 6px 0; color: var(--ink-2); }
.sumline b { color: var(--ink); }
.sumline--total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; font-size: 1.15rem; }
.sumline--total b { font-size: 1.35rem; font-weight: 800; }
.sumline--rabatt { color: var(--c-diktat); }
.sumline--rabatt b { color: var(--c-diktat); }

.empty { text-align: center; padding: 60px 20px; }
.empty span { font-size: 60px; display: block; margin-bottom: 12px; }
.empty h2 { margin-bottom: 8px; }
.empty p { color: var(--ink-2); }

/* ---------- Kasse ---------------------------------------------------- */
.steps { display: flex; align-items: center; gap: 10px; margin: 22px 0 26px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; font-size: .89rem; font-weight: 700; color: var(--ink-3); }
.step i {
  width: 26px; height: 26px; border-radius: 50%; font-style: normal;
  background: var(--surface-2); color: var(--ink-3);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
}
.step.is-done { color: var(--brand-dark); }
.step.is-done i { background: var(--brand-soft); color: var(--brand-dark); }
.step.is-on { color: var(--ink); }
.step.is-on i { background: var(--brand); color: #fff; }
.step__sep { flex: 0 0 26px; height: 2px; background: var(--line); border-radius: 2px; }

.pay { display: grid; gap: 9px; }
.pay__opt {
  display: flex; align-items: center; gap: 11px; cursor: pointer;
  border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 13px; background: var(--surface);
}
.pay__opt:hover { border-color: var(--ink-3); }
.pay__opt.is-on { border-color: var(--brand); background: var(--brand-soft); }
.pay__opt input { accent-color: var(--brand); width: 17px; height: 17px; flex: none; }
.pay__opt b { font-size: .92rem; }
.pay__opt small { display: block; color: var(--ink-2); font-size: .78rem; }
.pay__logo {
  width: 42px; height: 28px; border-radius: 6px; display: grid; place-items: center;
  font-size: .58rem; font-weight: 800; letter-spacing: .02em;
  background: var(--surface-2); color: var(--ink-2); border: 1px solid var(--line);
  margin-left: auto; flex: none;
}
.formgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.formgrid .full { grid-column: 1 / -1; }

.check { display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-2); cursor: pointer; }
.check input { accent-color: var(--brand); width: 17px; height: 17px; margin-top: 2px; flex: none; }

.notice {
  border: 1.5px dashed #EFC2CC; background: #FFF7F8; color: #8E4E5D;
  border-radius: var(--radius-sm); padding: 14px 16px; font-size: .89rem;
  display: flex; gap: 11px; align-items: flex-start; margin-top: 14px;
}
.notice b { display: block; margin-bottom: 2px; color: #7A3A4A; }
.notice span.emo { font-size: 20px; line-height: 1.2; }

/* ---------- "So funktioniert's" -------------------------------------- */
.howto { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.howto__item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.howto__num {
  width: 32px; height: 32px; border-radius: 10px; background: var(--brand-soft);
  color: var(--brand-dark); font-weight: 800; display: grid; place-items: center;
  margin-bottom: 12px;
}
.howto__item p { margin: 0; color: var(--ink-2); font-size: .92rem; }

/* ---------- Markenband auf der Startseite ---------------------------- */
.brandband {
  /* Creme wie der Logohintergrund, damit das JPG randlos wirkt */
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 38px 26px;
  display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center;
}
.brandband__logo { width: 190px; height: 190px; }
.brandband h2 { margin-bottom: 10px; }
.brandband p { color: var(--ink-2); max-width: 54ch; }
.brandband__sig {
  font-size: .72rem; font-weight: 600; letter-spacing: .19em;
  text-transform: uppercase; color: #A96A78; margin-top: 4px;
}

.trust {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.trust__item { display: flex; gap: 11px; align-items: center; font-size: .87rem; font-weight: 600; color: var(--ink-2); }
.trust__item span { font-size: 24px; }

/* ---------- Fußzeile ------------------------------------------------- */
.footer { margin-top: 50px; border-top: 1px solid var(--line); background: var(--paper); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 36px 0 26px; }
.footer .logo__mark { width: 62px; height: 62px; }
.footer h4 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer a { text-decoration: none; font-size: .9rem; color: var(--ink-2); }
.footer a:hover { color: var(--brand-dark); text-decoration: underline; }
.footer__bottom { border-top: 1px solid var(--line); padding: 14px 0 26px; font-size: .8rem; color: var(--ink-3); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* ---------- Toast ---------------------------------------------------- */
.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 15px 17px; max-width: 330px;
  display: flex; gap: 12px; align-items: flex-start;
  transform: translateY(140%); opacity: 0;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.2), opacity .25s ease;
}
.toast.is-on { transform: translateY(0); opacity: 1; }
.toast span.emo { font-size: 22px; }
.toast b { display: block; font-size: .93rem; }
.toast small { color: var(--ink-2); font-size: .82rem; display: block; margin-bottom: 9px; }

/* ---------- Hilfsklassen --------------------------------------------- */
.muted { color: var(--ink-2); }
.tiny { font-size: .78rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-sm > * + * { margin-top: 10px; }

/* ---------- Responsiv ------------------------------------------------ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .stack { height: 280px; }
  .grid, .kats { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .detail { grid-template-columns: 1fr; gap: 26px; }
  .cartlayout { grid-template-columns: 1fr; }
  .howto, .trust { grid-template-columns: 1fr; }
  .brandband { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .brandband p { margin-left: auto; margin-right: auto; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  .grid, .grid--3, .kats { grid-template-columns: 1fr; }
  .formgrid { grid-template-columns: 1fr; }
  .cartline { grid-template-columns: 60px 1fr; }
  .cartline__cover { width: 60px; font-size: 24px; }
  .cartline__right { grid-column: 1 / -1; text-align: left; display: flex; justify-content: space-between; align-items: center; }
  .toast { right: 12px; left: 12px; max-width: none; }
  .stack__card { width: 155px; height: 210px; }
}
