/* =========================================================================
   FiniFarbfleck · Stylesheet
   Sophie Simon Design · 2026
   ========================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors – distilled from monster illustrations */
  --cream:      #F7EFE0;
  --cream-deep: #F0E4CB;
  --paper:      #FDFAF2;
  --ink:        #181613;
  --ink-soft:   #3a3530;
  --ink-mute:   #6b625a;
  --pink:       #F2477E;
  --pink-soft:  #FFD7E1;
  --lime:       #C7DC3F;
  --lime-deep:  #9DAE2B;
  --petrol:     #1C5D6E;
  --lavender:   #B5A7E8;
  --burgundy:   #4D1623;
  --coral:      #E84A3F;
  --mint:       #9CD2C1;

  /* Type */
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hand:    'Caveat', 'Brush Script MT', cursive;

  /* Spacing & radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Container */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- TYPE ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
  text-wrap: pretty;
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
.eyebrow {
  font-family: var(--font-hand);
  color: var(--pink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.italic { font-style: italic; }

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-pink {
  background: var(--pink);
  color: var(--paper);
  box-shadow: 0 4px 0 var(--burgundy);
}
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--burgundy); }
.btn-pink:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--burgundy); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; }

.sticky-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 22px;
  transform: rotate(-4deg);
  box-shadow: 0 4px 0 rgba(0,0,0,0.08);
}
.sticky-tag.tilt-r { transform: rotate(4deg); }
.sticky-tag.tilt-l { transform: rotate(-8deg); }
.sticky-tag.outline { background: var(--paper); border: 1.5px solid var(--ink); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.scrolled { border-bottom-color: rgba(0,0,0,0.08); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cart {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13px;
}
.nav-cart .badge {
  background: var(--pink);
  color: var(--paper);
  border-radius: var(--r-pill);
  width: 20px; height: 20px;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
}
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}
.nav-burger span:last-child { width: 16px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(20px, 4vw, 40px) 0 clamp(40px, 6vw, 64px);
  overflow: hidden;
}
.hero-bar {
  display: flex; justify-content: center; gap: 16px;
  font-family: var(--font-hand);
  font-size: 20px; color: var(--ink-soft);
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-bar span.dot { color: var(--pink); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: var(--paper); border: 1.5px solid var(--ink);
  font-weight: 600; font-size: 13px;
  margin-bottom: 24px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--coral);
}
.hero h1 {
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.92;
}
.hero h1 .pink { color: var(--pink); }
.hero h1 .scribble {
  position: relative; display: inline-block; font-style: italic;
}
.hero h1 .scribble::after {
  content: '';
  position: absolute; left: -6px; bottom: -10px; height: 12px; width: 100%;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 18'><path d='M3 13 C 30 4, 60 16, 95 9 S 160 14, 197 6' fill='none' stroke='%23C7DC3F' stroke-width='4' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}
.hero-lead {
  font-size: 18px; line-height: 1.5;
  max-width: 480px; margin: 32px 0; color: var(--ink-soft);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stars {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
  font-size: 14px; font-weight: 600;
}

/* hero monster spotlight */
.hero-spot {
  position: relative;
  min-height: 480px;
}
.hero-spot-disc {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--pink-soft), var(--pink) 100%);
}
.hero-spot img.monster {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  height: 92%; max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,0.18));
}
.hero-spot .sticky-tag.t1 { position: absolute; top: 30px; left: 20px; font-size: 24px; }
.hero-spot .sticky-tag.t2 { position: absolute; bottom: 80px; left: 0; font-size: 20px; }
.hero-spot .sticky-tag.t3 { position: absolute; top: 120px; right: 20px; font-size: 18px; }

.hero-thumb-row {
  position: absolute; bottom: 24px; right: 24px;
  display: flex; gap: 0; align-items: center;
  background: var(--paper); padding: 8px 14px 8px 8px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.hero-thumb-row img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--paper);
  background: var(--cream-deep);
  margin-left: -12px;
}
.hero-thumb-row img:first-child { margin-left: 0; }
.hero-thumb-row span { font-size: 13px; font-weight: 600; margin-left: 10px; }

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(48px, 7vw, 88px) 0;
  position: relative;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.section-head h2 { margin-top: 8px; }

/* ---------- POLAROID GRID (BESTSELLER) ---------- */
.polaroid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: center;
  padding: 24px 0;
}
.polaroid {
  background: var(--paper);
  padding: 14px 14px 18px;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
  position: relative;
  transition: transform .3s;
}
.polaroid:nth-child(odd)  { transform: rotate(-2deg); }
.polaroid:nth-child(even) { transform: rotate(3deg); }
.polaroid:nth-child(3n)   { transform: rotate(-4deg); }
.polaroid:hover { transform: rotate(0deg) translateY(-4px); }
.polaroid .photo {
  width: 100%; aspect-ratio: 1 / 1.15;
  background: var(--cream-deep);
  border-radius: 4px;
  display: grid; place-items: center;
  overflow: hidden;
}
.polaroid .photo img { width: 88%; height: 88%; object-fit: contain; }
.polaroid .name {
  font-family: var(--font-hand);
  font-size: 26px; font-weight: 700; line-height: 1;
  margin-top: 12px;
}
.polaroid .tagline { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.polaroid .meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px;
}
.polaroid .price {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.polaroid .corner-tag {
  position: absolute; top: -14px; right: -14px;
  font-size: 18px; z-index: 2;
}

/* ---------- PRODUCT GRID ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.product-card .photo {
  aspect-ratio: 1 / 1.1;
  display: grid; place-items: center;
  overflow: hidden;
}
.product-card .photo img { width: 85%; height: 85%; object-fit: contain; }
.product-card .body { padding: 16px 18px; }
.product-card .name {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em; line-height: 1.1; margin: 0;
}
.product-card .tagline { font-size: 12px; color: var(--ink-soft); margin: 2px 0 10px; }
.product-card .meta {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card .price { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.product-card .add {
  background: var(--ink); color: var(--paper);
  border: 0; border-radius: var(--r-pill);
  width: 32px; height: 32px;
  font-size: 16px;
  display: grid; place-items: center;
}
.product-card .add:hover { background: var(--pink); }

/* ---------- "LEISE ANLÄSSE" – dark section ---------- */
.section-dark {
  background: var(--burgundy);
  color: var(--paper);
}
.section-dark .eyebrow { color: var(--lime); }
.section-dark h2 .italic { color: var(--coral); }
.section-dark .lead {
  font-size: 16px; line-height: 1.55;
  max-width: 560px;
  color: rgba(253,250,242,0.78);
}
.section-dark .product-card { color: var(--ink); }
.section-dark .callout-bar {
  margin-top: 36px; padding: 20px 28px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1.5px dashed rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.section-dark .callout-bar .ttl { font-family: var(--font-hand); color: var(--lime); font-size: 22px; line-height: 1; }
.section-dark .callout-bar .sub { font-size: 14px; color: rgba(253,250,242,0.78); }
.section-dark .callout-bar .btn-primary { background: var(--lime); color: var(--ink); }

/* ---------- GIFT SETS ---------- */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.set-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.set-card .ribbon {
  position: absolute; top: 18px; right: -32px; transform: rotate(35deg);
  background: var(--lime); color: var(--ink);
  font-weight: 700; font-size: 13px;
  padding: 4px 40px;
  font-family: var(--font-display);
  z-index: 2;
}
.set-card .stage {
  padding: 24px 16px 16px;
  position: relative;
  min-height: 200px;
  display: grid; place-items: end center;
}
.set-card .stage .pile {
  display: flex; justify-content: center; align-items: flex-end;
  height: 200px; position: relative;
}
.set-card .stage .pile img {
  height: 160px; object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
  margin-left: -28px;
}
.set-card .stage .pile img:first-child { margin-left: 0; }
.set-card .stage .pile img:nth-child(odd) { transform: rotate(-6deg); }
.set-card .stage .pile img:nth-child(even) { transform: rotate(6deg); }
.set-card .stage .pile img.feature { height: 200px; transform: translateY(-8px); z-index: 2; }
.set-card .stage .count {
  position: absolute; top: 18px; left: 18px;
  font-size: 18px;
}
.set-card .body { padding: 20px 22px 22px; }
.set-card .body .ttl { font-family: var(--font-hand); font-size: 22px; color: var(--pink); line-height: 1; }
.set-card .body h3 { font-size: 28px; margin: 4px 0 6px; }
.set-card .body p { font-size: 13px; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.45; }
.set-card .body .price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px; }
.set-card .body .price-row .new { font-family: var(--font-display); font-size: 30px; font-weight: 800; }
.set-card .body .price-row .old { font-size: 14px; color: var(--ink-soft); text-decoration: line-through; }

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 40px;
  align-items: flex-start;
}
.reviews-aggregate .stars-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.reviews-bars { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.reviews-bar { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.reviews-bar .label { width: 28px; color: var(--ink-soft); }
.reviews-bar .track { flex: 1; height: 6px; border-radius: var(--r-pill); background: var(--cream); overflow: hidden; }
.reviews-bar .fill { height: 100%; background: var(--pink); }
.reviews-bar .count { width: 24px; text-align: right; color: var(--ink-soft); }

.review-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.review-card {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 22px 22px 20px;
  border: 1.5px solid var(--cream-deep);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 230px;
}
.review-card .top { display: flex; justify-content: space-between; align-items: center; }
.review-card .verified {
  font-size: 11px; font-weight: 600; color: var(--ink-soft);
  padding: 3px 8px; border-radius: var(--r-pill); background: var(--cream-deep);
}
.review-card p { margin: 0; font-size: 14px; line-height: 1.5; flex: 1; }
.review-card .reviewer { display: flex; align-items: center; gap: 10px; padding-top: 8px; border-top: 1px solid var(--cream-deep); }
.review-card .reviewer .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; overflow: hidden; }
.review-card .reviewer .avatar img { width: 90%; height: 90%; object-fit: contain; }
.review-card .reviewer .name { font-weight: 700; font-size: 13px; }
.review-card .reviewer .product { font-size: 11px; color: var(--ink-soft); }

/* ---------- STARS ---------- */
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 16px; height: 16px; fill: var(--ink); }
.stars.lg svg { width: 28px; height: 28px; }

/* ---------- INSTAGRAM CALLOUT ---------- */
.insta-section {
  background: var(--ink);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.insta-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center;
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 36px);
}
.insta-grid h2 { color: var(--paper); }
.insta-grid h2 .italic { color: var(--pink); }
.insta-grid p { font-size: 16px; color: rgba(253,250,242,0.72); max-width: 480px; }
.insta-grid .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.insta-grid .ctas .btn-primary { background: var(--paper); color: var(--ink); }
.insta-grid .ctas .btn-outline {
  border: 1.5px solid rgba(253,250,242,0.25);
  color: var(--paper);
  background: transparent;
  padding: 12px 18px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.insta-grid .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(253,250,242,0.08);
  border: 1.5px solid rgba(253,250,242,0.18);
  font-size: 13px; font-weight: 600; margin-bottom: 18px;
}
.insta-grid .badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

.insta-feed { position: relative; }
.insta-feed-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.insta-tile {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 1; display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}
.insta-tile img { width: 82%; height: 82%; object-fit: contain; }
.insta-tile:nth-child(1) { background: #F7E8E2; transform: rotate(-1.5deg); }
.insta-tile:nth-child(2) { background: #E8E2D5; transform: rotate(0.8deg); }
.insta-tile:nth-child(3) { background: #F4D5D3; transform: rotate(-0.5deg); }
.insta-tile:nth-child(4) { background: #D8E0DA; transform: rotate(1.2deg); }
.insta-tile:nth-child(5) { background: #DDE0E5; transform: rotate(-1deg); }
.insta-tile:nth-child(6) { background: #EBE5C9; transform: rotate(0.6deg); }
.insta-handle {
  position: absolute; top: -18px; left: -18px;
  background: var(--lime); color: var(--ink);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-family: var(--font-hand); font-weight: 700; font-size: 20px;
  transform: rotate(-6deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(253,250,242,0.65);
  font-size: 13px;
}
.footer-divider { height: 1px; background: rgba(253,250,242,0.10); margin: 0 var(--gutter); }
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 36px 0 28px;
}
.footer-cols .brand { color: var(--paper); }
.footer-cols .brand .top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-cols .brand .top img { width: 36px; height: 36px; filter: invert(1); }
.footer-cols .brand .top span { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.footer-cols h4 { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--paper); margin-bottom: 14px; letter-spacing: -0.01em; }
.footer-cols a { display: block; margin-bottom: 10px; }
.footer-cols a:hover { color: var(--paper); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(253,250,242,0.10);
  font-size: 12px; color: rgba(253,250,242,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .pay { display: flex; gap: 14px; }

/* ---------- CART DRAWER ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  z-index: 50;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 440px;
  background: var(--paper);
  z-index: 51;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  box-shadow: -12px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--cream-deep);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-head .ttl { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.cart-head .sub { font-size: 13px; color: var(--ink-soft); }
.cart-close {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--ink); background: transparent;
  font-size: 16px;
}
.cart-body { flex: 1; padding: 0 24px; overflow: auto; }
.cart-line {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.cart-line .thumb { width: 72px; height: 72px; background: var(--cream); border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto; overflow: hidden; }
.cart-line .thumb img { width: 85%; height: 85%; object-fit: contain; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info .nm { font-family: var(--font-display); font-weight: 700; font-size: 15px; line-height: 1.1; }
.cart-line .info .var { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.cart-line .info .row { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--ink); border-radius: var(--r-pill); padding: 2px;
}
.qty button { width: 24px; height: 24px; border: 0; background: transparent; border-radius: 50%; }
.qty .n { width: 24px; text-align: center; font-weight: 700; font-size: 13px; }
.cart-line .info .remove { background: transparent; border: 0; font-size: 12px; color: var(--ink-soft); text-decoration: underline; }
.cart-line .sub { font-family: var(--font-display); font-weight: 700; font-size: 15px; white-space: nowrap; }

.cart-nudge { margin-top: 18px; padding: 14px 16px; background: var(--cream); border-radius: var(--r-md); }
.cart-nudge .bar { height: 6px; border-radius: var(--r-pill); background: var(--cream-deep); overflow: hidden; margin-top: 8px; }
.cart-nudge .bar .fill { height: 100%; background: var(--pink); width: 75%; }

.cart-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--cream-deep);
  background: var(--cream);
}
.cart-line-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.cart-total {
  display: flex; justify-content: space-between;
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  margin-bottom: 14px;
}
.cart-payment { display: flex; gap: 10px; justify-content: center; margin-top: 14px; font-size: 11px; color: var(--ink-soft); flex-wrap: wrap; }

/* ---------- INK SPLATTER backdrop blobs ---------- */
.ink-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* ---------- LEGAL / CONTENT PAGES ---------- */
.page-head {
  padding: 32px 0 24px;
}
.page-head .crumbs { font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.page-head h1 { font-size: clamp(40px, 5vw, 60px); }

.legal-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 48px;
  padding-bottom: 64px;
  align-items: flex-start;
}
.legal-nav {
  background: var(--paper);
  padding: 8px; border-radius: var(--r-md);
  position: sticky; top: 90px;
}
.legal-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-radius: 10px;
  font-weight: 500; font-size: 14px;
}
.legal-nav a:hover { background: var(--cream); }
.legal-nav a.active { background: var(--ink); color: var(--paper); font-weight: 700; }
.legal-nav .badge { font-size: 11px; padding: 2px 8px; border-radius: var(--r-pill); background: var(--cream-deep); color: var(--ink-soft); }
.legal-nav a.active .badge { background: var(--paper); color: var(--ink); }

.legal-content { max-width: 720px; }
.legal-content h2 { font-size: 28px; margin: 28px 0 12px; }
.legal-content h3 { font-size: 18px; font-weight: 700; margin: 20px 0 8px; letter-spacing: -0.01em; }
.legal-content p, .legal-content li { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.legal-content p { margin: 0 0 14px; }
.legal-content ul { padding-left: 20px; margin: 0 0 14px; list-style: disc; }
.legal-content a { color: var(--ink); text-decoration: underline; }
.legal-note {
  margin-top: 24px; padding: 14px 18px;
  background: var(--cream); border-left: 4px solid var(--coral);
  border-radius: 12px; font-size: 13px; line-height: 1.5; color: var(--ink-soft);
}
.legal-note strong { color: var(--ink); }

/* ---------- CONTACT ---------- */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding-bottom: 64px;
  align-items: start;
}
.channel-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--cream-deep);
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.channel-card:hover {
  border-color: var(--pink);
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.channel-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.channel-body { flex: 1; min-width: 0; }
.channel-label { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 2px; }
.channel-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.channel-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.channel-arrow { font-size: 20px; color: var(--cream-deep); flex-shrink: 0; align-self: center; transition: color .2s; }
.channel-card:hover .channel-arrow { color: var(--pink); }
.channel-insta:hover { border-color: #E1306C; }
.channel-insta:hover .channel-arrow { color: #E1306C; }
.contact-note {
  padding: 22px 20px;
  background: var(--cream);
  border-radius: var(--r-lg);
  grid-column: 1 / -1;
}

/* ---------- ABOUT PAGE ---------- */
.about-hero {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; padding: 32px 0 64px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  background: repeating-linear-gradient(135deg, var(--cream-deep) 0 12px, var(--cream) 12px 24px);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; color: var(--ink-soft); text-align: center;
}
.about-story {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; padding: 48px 0; align-items: center;
}
.about-story .logo-block { display: grid; place-items: center; position: relative; }
.about-story .logo-block img { width: 280px; height: 280px; object-fit: contain; }
.about-process {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px; padding: 24px 0 32px;
}
.about-step { background: var(--paper); border-radius: var(--r-md); padding: 20px 18px; }
.about-step .num { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--pink); line-height: 1; }
.about-step .t { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 4px 0 6px; }
.about-step .d { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.values-bar {
  display: flex; gap: 0; justify-content: space-between; align-items: center;
  padding: 20px 28px; background: var(--ink); color: var(--paper);
  border-radius: var(--r-pill);
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.values-bar span { font-size: 14px; font-weight: 600; }
.values-bar .dot { opacity: 0.4; }

/* ---------- SHOP / FILTERS ---------- */
.shop-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; padding: 16px 0 32px;
}
.filter-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.chip {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink); border-radius: var(--r-pill);
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  cursor: pointer;
}
.chip.active, .chip:hover { background: var(--ink); color: var(--paper); }

/* ---------- PRODUCT DETAIL ---------- */
.pd {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; padding-bottom: 64px; align-items: flex-start;
}
.pd-gallery .stage {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--mint) 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 1 / 1.05;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.pd-gallery .stage img { width: 78%; height: 85%; object-fit: contain; }
.pd-gallery .stage .sticky-tag { position: absolute; top: 24px; left: 24px; }
.pd-gallery .thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pd-gallery .thumb {
  width: 76px; height: 76px; border-radius: var(--r-md);
  background: var(--cream-deep);
  border: 2px solid transparent;
  display: grid; place-items: center;
  overflow: hidden; cursor: pointer;
}
.pd-gallery .thumb.active { border-color: var(--ink); }
.pd-gallery .thumb img { width: 80%; height: 80%; object-fit: contain; }
.pd-info .top-meta { font-family: var(--font-hand); font-size: 24px; color: var(--pink); }
.pd-info h1 { font-size: clamp(36px, 4vw, 54px); margin-top: 4px; }
.pd-info .rating { display: flex; align-items: center; gap: 10px; margin: 12px 0 20px; }
.pd-info .price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 24px; }
.pd-info .price .new { font-family: var(--font-display); font-size: 44px; font-weight: 800; }
.pd-info .price .vat { font-size: 13px; color: var(--ink-soft); }
.pd-info .desc { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 24px; }
.variant-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.variant {
  padding: 10px 14px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--ink); background: transparent;
}
.variant.active { background: var(--ink); color: var(--paper); }
.cart-row { display: flex; gap: 12px; align-items: stretch; margin-bottom: 18px; }
.cart-row .qty { padding: 2px; }
.cart-row .qty button { width: 36px; height: 36px; font-size: 18px; }
.cart-row .qty .n { width: 32px; }
.cart-row .btn-pink { flex: 1; padding: 14px 22px; font-size: 16px; }
.gift-row { margin-bottom: 24px; }
.gift-btn { width: 100%; padding: 12px; border-radius: var(--r-pill); border: 1.5px solid var(--ink); background: transparent; font-weight: 600; font-size: 14px; }
.gift-btn:hover { background: var(--ink); color: var(--paper); }
.pd-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--r-md); overflow: hidden;
}
.pd-meta .cell { padding: 12px 14px; font-size: 13px; }
.pd-meta .cell:nth-child(odd) { border-right: 1.5px solid var(--cream-deep); }
.pd-meta .cell:nth-child(1), .pd-meta .cell:nth-child(2) { border-bottom: 1.5px solid var(--cream-deep); }
.pd-meta .k { color: var(--ink-soft); margin-bottom: 2px; }
.pd-meta .v { font-weight: 600; }

/* ---------- IMAGE PROTECTION ---------- */
img.protected {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}
.photo, .stage, .pd-gallery .stage {
  position: relative;
}
.watermark-overlay {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.watermark-overlay::after {
  content: '© FiniFarbfleck';
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 28px;
  color: rgba(20,15,15,0.18);
  transform: rotate(-18deg);
}

/* ---------- 404 ---------- */
.fourofour {
  text-align: center; padding: 80px 0;
}
.fourofour h1 { font-size: clamp(80px, 14vw, 180px); margin-bottom: 16px; }
.fourofour p { font-size: 18px; color: var(--ink-soft); margin: 0 0 32px; }
.fourofour img { max-width: 320px; margin: 0 auto 24px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; right: var(--gutter);
    background: var(--paper);
    padding: 18px 24px; border-radius: var(--r-md);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    gap: 12px;
  }
  .nav-cart .label { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-spot { min-height: 360px; }
  .hero-spot-disc { width: 360px; height: 360px; right: -20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .about-hero, .about-story, .pd { grid-template-columns: 1fr; }
  .pd-meta { grid-template-columns: 1fr; }
  .pd-meta .cell:nth-child(odd) { border-right: 0; }
  .pd-meta .cell { border-bottom: 1.5px solid var(--cream-deep); }
  .pd-meta .cell:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .hero-bar { font-size: 16px; gap: 10px; }
  .polaroid-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .values-bar { padding: 16px 20px; gap: 8px; }
  .values-bar .dot { display: none; }
  .pd-info h1 { font-size: 36px; }
  .cart-row { flex-direction: column; }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .site-footer, .cart-drawer, .cart-overlay { display: none; }
  body { background: white; }
}
