﻿/* =====================================================
   BeautyRadar – styles.css
   Premium Beauty Platform · Champagne / Gold Palette
   ===================================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Design Tokens ── */
:root {
  /* Backgrounds */
  --bg:          #FAF9F7;
  --bg-2:        #F4F1EB;
  --bg-3:        #EDEAE2;
  --surface:     #FFFFFF;

  /* Gold / Champagne Accent */
  --gold:        #9A7B4F;
  --gold-mid:    #C0965C;
  --gold-light:  #E8D9BF;
  --gold-pale:   #F5EFE2;
  --champagne:   #F9F4EB;

  /* Text */
  --text-1:      #18171A;
  --text-2:      #4A4852;
  --text-3:      #96939F;

  /* Borders */
  --border:      rgba(0,0,0,0.07);
  --border-mid:  rgba(0,0,0,0.12);

  /* Utility */
  --white:    #FFFFFF;
  --rose-subtle: #F5EAE5;

  /* Radii */
  --r-xs:  6px;
  --r-sm:  10px;
  --r-md:  16px;
  --r-lg:  22px;
  --r-xl:  32px;

  /* Shadows — neutral, very soft */
  --sh-1: 0 1px 4px rgba(0,0,0,0.05), 0 2px 10px rgba(0,0,0,0.04);
  --sh-2: 0 4px 16px rgba(0,0,0,0.07), 0 8px 28px rgba(0,0,0,0.05);
  --sh-3: 0 12px 40px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.05);

  --ease: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  /* Sticky-Header ist 96px hoch → Anker-Ziele 120px tief absetzen, damit sie nicht verdeckt werden */
  scroll-padding-top: 120px;
}

/* Anker-Ziele unter dem Sticky-Header freihalten (Anchor-Jumps + Smooth-Scroll).
   :where() = Spezifität 0, überschreibt also keine bestehenden Abstände. */
:where(.article-body h2,
       .article-body h3,
       .article-header,
       .article-product,
       section[id],
       [id]) {
  scroll-margin-top: 120px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.hidden { display: none !important; }

/* ── Sections ── */
.section { padding: 88px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 10px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-3);
  font-weight: 400;
}
.section-header .label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--text-1);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.btn-primary:hover {
  background: #2c2a32;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-mid);
}
.btn-outline:hover {
  background: var(--bg-2);
  border-color: var(--text-2);
}

.btn-ghost {
  background: var(--bg-2);
  color: var(--text-2);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-3); }

.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* CTA in product card – separate style */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 18px;
  background: var(--text-1);
  color: var(--white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.btn-cta:hover {
  background: #2c2a32;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.btn-cta svg { opacity: 0.7; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-gem {
  width: 30px;
  height: 30px;
  background: var(--text-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.025em;
}
.logo-text strong {
  font-weight: 700;
}

/* Nav */
.main-nav { flex: 1 1 auto; }
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 2px;
}
.main-nav ul li a {
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: background var(--ease), color var(--ease);
}
.main-nav ul li a:hover {
  background: var(--bg-2);
  color: var(--text-1);
}

/* Header right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.search-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.search-wrap:focus-within {
  background: var(--white);
  border-color: var(--border-mid);
  box-shadow: 0 0 0 3px rgba(154,123,79,0.1);
}
.search-input {
  padding: 8px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: var(--text-1);
  width: 172px;
  font-family: inherit;
}
.search-input::placeholder { color: var(--text-3); }
.search-btn {
  padding: 7px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  display: flex;
  align-items: center;
  transition: color var(--ease);
}
.search-btn:hover { color: var(--text-1); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--r-sm);
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 80px 0 104px;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

/* Subtle background blob */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Hero Left ── */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-mid);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero-headline {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-1);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 470px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 36px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-num {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  font-weight: 400;
}

/* ── Hero Right ── */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-trust-pill {
  position: absolute;
  top: -20px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-mid);
  color: var(--text-2);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  box-shadow: var(--sh-1);
  animation: floatPill 3.5s ease-in-out infinite;
  white-space: nowrap;
  z-index: 2;
}
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hero-card {
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--sh-1);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.hero-card:hover {
  transform: translateX(5px);
  box-shadow: var(--sh-2);
}
/* Subtle left accent line */
.hero-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2.5px;
  border-radius: 2px;
  background: var(--gold-light);
}
.hero-card--1::before { background: var(--gold-mid); }
.hero-card--2::before { background: #C4B8D4; }
.hero-card--3::before { background: #A8C4A0; }

.hero-card-thumb {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: 'DM Serif Display', serif;
  color: var(--text-1);
  flex-shrink: 0;
}
.hero-card--1 .hero-card-thumb { background: var(--gold-pale); color: var(--gold); }
.hero-card--2 .hero-card-thumb { background: #F0EAF8; color: #7A5EA8; }
.hero-card--3 .hero-card-thumb { background: #EAF3E8; color: #4A8044; }
.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.hero-card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.hero-card-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-card-price {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-card-badge {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
}

.hero-bottom-pill {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-3);
  background: var(--champagne);
  border: 1px solid var(--gold-light);
  padding: 10px 20px;
  border-radius: 100px;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* ── Badges (universal) ── */
.badge-deal       { background: #FDF5E8; color: #8A6020; border: 1px solid #E8D4A0; }
.badge-bestseller { background: #EFF5EE; color: #3A6B36; border: 1px solid #B8D8B4; }
.badge-neu        { background: #F0EBF8; color: #6040A0; border: 1px solid #C8B8E4; }

/* ══════════════════════════════════════════
   KATEGORIEN
══════════════════════════════════════════ */
.kategorien { background: var(--bg-2); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  color: inherit;
}
.category-card.anim-card       { opacity: 0; transform: translateY(18px); }
.category-card.anim-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--gold-light);
}

.cat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 16px;
  transition: background var(--ease);
}
.category-card:hover .cat-icon-wrap { background: var(--gold-light); }
.cat-icon-wrap--img {
  width: 100%;
  height: 120px;
  border-radius: var(--r-md);
  background: transparent;
  padding: 0;
  overflow: hidden;
  margin-bottom: 14px;
}
.cat-icon-wrap--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.category-card:hover .cat-icon-wrap--img { background: transparent; }

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 6px;
}
.category-card p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
  margin-bottom: 16px;
}
.cat-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
  transition: opacity var(--ease);
}
.cat-link:hover { opacity: 0.7; }

/* ══════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════ */
.deals-section { background: var(--bg); }

.filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  margin-bottom: 40px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
}
.filter-group label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.filter-group select {
  padding: 9px 34px 9px 12px;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.855rem;
  color: var(--text-1);
  cursor: pointer;
  outline: none;
  appearance: none;
  transition: border-color var(--ease), background var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%2396939F' stroke-width='1.8' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.filter-group select:focus {
  border-color: var(--gold-mid);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(154,123,79,0.1);
}

/* ══════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Scroll-in animation */
.anim-card {
  opacity: 0;
  transform: translateY(18px);
}
.anim-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--gold-light);
}

/* ── Product Image Area ── */
.product-img-wrap {
  height: 188px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Category-specific gradient backgrounds */
.img-bg-geraete  { background: linear-gradient(155deg, #F5F2EC 0%, #EAE2D2 100%); }
.img-bg-skincare { background: linear-gradient(155deg, #EFF4EE 0%, #D8E8D4 100%); }
.img-bg-makeup   { background: linear-gradient(155deg, #F6EDE8 0%, #EED8CE 100%); }
.img-bg-parfum   { background: linear-gradient(155deg, #F0EBF8 0%, #DED0EE 100%); }
.img-bg-haare    { background: linear-gradient(155deg, #F5F0E0 0%, #EAE0C4 100%); }
.img-bg-koerper  { background: linear-gradient(155deg, #EEF5F3 0%, #D4E8E4 100%); }
.img-bg-naegel   { background: linear-gradient(155deg, #F8EEF4 0%, #EED4E8 100%); }
.img-bg-geschenke{ background: linear-gradient(155deg, #F5F0E4 0%, #E8D8BC 100%); }

.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-photo { transform: scale(1.04); }

/* Brand monogram fallback */
.product-monogram {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: 5.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  mix-blend-mode: overlay;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ── Product Body ── */
.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-brand {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.product-cat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 2px 8px;
  border-radius: 100px;
}

.product-name {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
  flex: 1;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.product-stars {
  color: var(--gold-mid);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.product-rating-score {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-1);
}
.product-reviews {
  font-size: 0.75rem;
  color: var(--text-3);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.product-old-price {
  font-size: 0.8rem;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 400;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
  color: var(--text-3);
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   EMPFEHLUNGEN
══════════════════════════════════════════ */
.recommendations { background: var(--bg-2); }

.reco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.reco-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 22px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.reco-card.anim-card       { opacity: 0; transform: translateY(18px); }
.reco-card.anim-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.reco-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-2);
  border-color: var(--gold-light);
}

/* Top accent line */
.reco-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.reco-top::before     { background: linear-gradient(90deg, var(--gold-mid), var(--gold-light)); }
.reco-value::before   { background: linear-gradient(90deg, #5C9A58, #98CA94); }
.reco-premium::before { background: linear-gradient(90deg, #8A68B8, #C4A8E8); }
.reco-deal::before    { background: linear-gradient(90deg, #C07840, #E4B080); }

.reco-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.reco-top    .reco-icon { background: var(--gold-pale); }
.reco-value  .reco-icon { background: #EFF5EE; }
.reco-premium .reco-icon { background: #F0EBF8; }
.reco-deal   .reco-icon { background: #FDF4EC; }

.reco-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}
.reco-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.reco-card p {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.6;
  flex: 1;
}
.reco-stars {
  color: var(--gold-mid);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.reco-card .btn-cta { margin-top: 4px; }

/* ══════════════════════════════════════════
   TRUST
══════════════════════════════════════════ */
.trust-section {
  background: var(--champagne);
  border-top: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-light);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.trust-card {
  background: var(--champagne);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--ease);
}
.trust-card.anim-card       { opacity: 0; transform: translateY(12px); }
.trust-card.anim-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease, transform 0.4s ease; }
.trust-card:hover { background: var(--white); }

.trust-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 18px;
}
.trust-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.trust-card p {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--text-1);
  color: rgba(255,255,255,0.85);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 56px;
}

/* Footer logo */
.footer .logo-gem {
  background: var(--gold-pale);
  color: var(--gold);
}
.footer .logo-text {
  color: rgba(255,255,255,0.9);
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 310px;
}

.footer-nav h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 11px; }
.footer-nav ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease);
}
.footer-nav ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 28px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-affiliate {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  flex: 1;
  min-width: 280px;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid,
  .reco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Header */
  .main-nav     { display: none; }
  .header-actions { display: none; }
  .burger       { display: flex; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px 22px;
    box-shadow: var(--sh-2);
    z-index: 199;
  }
  .main-nav.open ul { flex-direction: column; gap: 2px; }
  .main-nav.open ul li a { display: block; padding: 11px 14px; border-radius: var(--r-sm); }

  /* Hero */
  .hero { padding: 52px 0 68px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hero::before { display: none; }
  .hero-stats { gap: 24px; }

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

  /* Grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reco-grid    { grid-template-columns: repeat(2, 1fr); }
  .trust-grid   { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  /* Filter */
  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }
}

/* ══════════════════════════════════════════
   KATEGORIE-SEITEN HERO
══════════════════════════════════════════ */
.page-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 40px;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 22px;
}
.breadcrumb a {
  color: var(--text-3);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--text-1); }
.breadcrumb-sep { color: var(--border-mid); }
.breadcrumb-current { color: var(--text-2); font-weight: 500; }

.cat-hero-body {
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cat-hero-text h1 {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.cat-hero-text p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 540px;
}
.cat-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cat-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  padding: 4px 12px;
  border-radius: 100px;
}
.cat-back-link {
  font-size: 0.8rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--ease);
}
.cat-back-link:hover { color: var(--text-1); }

/* ══════════════════════════════════════════
   KATEGORIE-SEITEN WRAPPER
══════════════════════════════════════════ */
.cat-page-section {
  padding: 56px 0 88px;
  background: var(--bg);
}

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 40px;
}
.legal-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal-hero h1 {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-top: 22px;
}
.legal-hero-sub {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-top: 8px;
}

.legal-body {
  padding: 60px 0 100px;
}
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}
.legal-section {
  margin-bottom: 44px;
}
.legal-section:last-child { margin-bottom: 0; }

.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  margin-top: 20px;
}
.legal-section p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover { color: var(--gold-mid); }
.legal-section ul {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 10px;
}
.legal-section ul li {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 4px;
}

.legal-contact-box {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.legal-contact-box p {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}
.legal-contact-box strong {
  color: var(--text-1);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-3);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 4px;
}

/* ══════════════════════════════════════════
   ACTIVE NAV ITEM
══════════════════════════════════════════ */
.main-nav ul li a.active {
  background: var(--bg-2);
  color: var(--text-1);
  font-weight: 600;
}

@media (max-width: 768px) {
  .cat-hero-body { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cat-hero-icon { width: 52px; height: 52px; font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section   { padding: 64px 0; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid  { grid-template-columns: 1fr; }
  .reco-grid     { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .hero-actions  { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats    { gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ══════════════════════════════════════════
   COOKIE CONSENT BANNER + MODAL
══════════════════════════════════════════ */

/* ── Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--bg);
  border-top: 2px solid var(--gold-mid);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.09);
  padding: 18px 28px;
  transform: translateY(105%);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
}

.cookie-banner-text p {
  font-size: 0.84rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}

/* ── Cookie Buttons ── */
.btn-cookie {
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-cookie--accept {
  background: var(--gold-mid);
  color: #fff;
  border-color: var(--gold-mid);
}
.btn-cookie--accept:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-cookie--necessary {
  background: var(--bg-2);
  color: var(--text-2);
  border-color: var(--border-mid);
}
.btn-cookie--necessary:hover {
  background: var(--bg-3);
  color: var(--text-1);
}

.btn-cookie--settings {
  background: transparent;
  color: var(--text-3);
  border-color: var(--border);
}
.btn-cookie--settings:hover {
  color: var(--text-1);
  border-color: var(--border-mid);
}

.btn-cookie--save {
  background: var(--gold-mid);
  color: #fff;
  border-color: var(--gold-mid);
}
.btn-cookie--save:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn-cookie--reject {
  background: transparent;
  color: var(--text-3);
  border-color: var(--border);
}
.btn-cookie--reject:hover {
  color: var(--text-1);
  border-color: var(--border-mid);
}

/* ── Modal Overlay ── */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(24,23,26,0.42);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.cookie-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3), 0 0 0 1px var(--border);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.22s ease;
}

.cookie-modal-overlay.is-visible .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text-1);
  font-weight: 400;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  padding: 5px;
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  transition: color var(--ease), background var(--ease);
}
.cookie-modal-close:hover {
  color: var(--text-1);
  background: var(--bg-2);
}

.cookie-modal-body {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-category {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
}

.cookie-category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 4px;
}

.cookie-category-info p {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
}

/* ── Toggle Switch ── */
.cookie-toggle {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.cookie-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cookie-toggle-track {
  display: block;
  width: 42px;
  height: 23px;
  border-radius: 100px;
  background: var(--bg-3);
  border: 1.5px solid var(--border-mid);
  position: relative;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.22);
  transition: left 0.18s ease;
}

.cookie-toggle-input:checked + .cookie-toggle-track {
  background: var(--gold-mid);
  border-color: var(--gold-mid);
}

.cookie-toggle-input:checked + .cookie-toggle-track::after {
  left: calc(100% - 18px);
}

/* Always-on toggle (Notwendig) */
.cookie-toggle--disabled {
  cursor: default;
}

.cookie-toggle--disabled .cookie-toggle-track {
  background: var(--gold-pale);
  border-color: var(--gold-light);
}

.cookie-toggle-track--on {
  background: var(--gold-mid) !important;
  border-color: var(--gold-mid) !important;
}

.cookie-toggle-track--on::after {
  left: calc(100% - 18px) !important;
}

.cookie-modal-footer {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px 28px 24px;
  border-top: 1px solid var(--border);
}

/* ── Footer Cookie Link ── */
.footer-cookie-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--text-3);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--ease);
}
.footer-cookie-link:hover {
  color: var(--gold-mid);
}

/* ── Mobile Cookie ── */
@media (max-width: 768px) {
  .cookie-banner { padding: 16px 20px; }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-banner-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-banner-actions .btn-cookie--accept {
    grid-column: 1 / -1;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-modal-footer .btn-cookie {
    width: 100%;
    text-align: center;
  }
}


/* =====================================================
   BLOG
   ===================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--ease), box-shadow var(--ease);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.09);
}

.blog-card-img {
  height: 200px;
  background: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-img--contain img {
  object-fit: contain;
  padding: 20px;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px 26px;
  flex: 1;
}

.blog-card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 100px;
}

.blog-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
}

.blog-card-body p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0,0,0,0.55);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.45);
}

.blog-card-meta .cat-link {
  margin-left: auto;
}

/* ── Artikel ── */

.article-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.article-header {
  margin-bottom: 36px;
}

.article-header h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 14px 0 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(0,0,0,0.5);
}

.article-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.65);
  margin-bottom: 28px;
}

.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  font-weight: 400;
  margin: 44px 0 14px;
}

.article-body h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin: 28px 0 10px;
}

.article-body p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.68);
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px 22px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.68);
}

.article-body li {
  margin-bottom: 6px;
}

.article-affiliate-note {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.45);
  background: var(--bg-2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  margin-bottom: 32px;
}

/* Produktbox im Artikel */
.article-product {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 22px 0;
}

.article-product-thumb {
  flex: 0 0 110px;
  height: 110px;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.article-product-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.article-product-info {
  flex: 1;
  min-width: 0;
}

.article-product-info .brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-product-info .name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin: 3px 0 4px;
}

.article-product-info .price {
  font-size: 0.95rem;
  font-weight: 700;
}

.article-product-info .price .old {
  font-weight: 400;
  color: rgba(0,0,0,0.4);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 0.85rem;
}

.article-product .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 44px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.article-back:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .article-product {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-product .btn {
    width: 100%;
    text-align: center;
  }
}


/* ── Goldener Button (Header-Blog-CTA) – Farbtoene aus dem Logo-A ── */
.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #F8DB87 0%, #EAC672 35%, #DAAF5D 70%, #CC9E4E 100%);
  color: #3A2D14;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 2px 14px rgba(204, 158, 78, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -2px 6px rgba(140, 100, 35, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnGoldShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btnGoldShine {
  0%   { left: -80%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

.btn-gold:hover {
  background: linear-gradient(160deg, #FCE49C 0%, #F0CF7E 35%, #E3BA68 70%, #D6A858 100%);
  box-shadow:
    0 6px 22px rgba(204, 158, 78, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -2px 6px rgba(140, 100, 35, 0.25);
  transform: translateY(-1px);
  color: #3A2D14;
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold::after { animation: none; }
}


/* ── Hero-Karte: Blog-CTA (Goldverlauf aus dem Logo-A) ── */
.hero-card--blog {
  background: linear-gradient(160deg, #F8DB87 0%, #EAC672 35%, #DAAF5D 70%, #CC9E4E 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 2px 14px rgba(204, 158, 78, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.hero-card--blog::before { background: #3A2D14; }

.hero-card--blog .hero-card-thumb {
  background: #FFFFFF;
  padding: 5px;
}

.hero-card--blog .hero-card-thumb img {
  object-fit: contain;
}

.hero-card--blog .hero-card-brand { color: #6B5320; }
.hero-card--blog .hero-card-name  { color: #3A2D14; }

.hero-card--blog .hero-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: #3A2D14;
  margin-top: 2px;
}

.badge-blog {
  background: #FFFFFF;
  color: #8A6020;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-card--blog:hover {
  box-shadow:
    0 8px 26px rgba(204, 158, 78, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}


/* ════════════════════════════════════════════════════════
   RATGEBER-ARTIKEL MIT SIDEBAR  (Scope: .article-wrap--with-sidebar)
   Rein additiv – schmale Artikel ohne diesen Modifier bleiben unberührt.
════════════════════════════════════════════════════════ */

/* 2-Spalten-Layout: Artikel links (~720 px), Sidebar rechts (300 px) */
.article-wrap--with-sidebar { max-width: 1120px; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-main { min-width: 0; }

/* ── Typografie-Polish: magazinartiger, luftiger (nur dieser Artikel) ── */
.article-wrap--with-sidebar .article-body p,
.article-wrap--with-sidebar .article-body ul,
.article-wrap--with-sidebar .article-body ol {
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.72);
}
.article-wrap--with-sidebar .article-body p  { margin-bottom: 20px; }
.article-wrap--with-sidebar .article-body li { margin-bottom: 9px; }
.article-wrap--with-sidebar .article-body h2 { margin: 56px 0 16px; }
.article-wrap--with-sidebar .article-lead {
  font-size: 1.18rem;
  line-height: 1.7;
}

/* ── „Kurz gesagt"-Box (2×2 auf Desktop) ── */
.article-summary {
  background: linear-gradient(180deg, #FFFDF8 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: 22px 24px 24px;
  margin: 4px 0 36px;
  box-shadow: 0 6px 24px rgba(154, 123, 79, 0.08);
}
.article-summary-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 16px;
}
.article-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.article-summary-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text-1);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.article-summary-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(154, 123, 79, 0.14);
}
.article-summary-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.article-summary-text {
  display: block;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}
.article-summary-text strong { color: var(--text-1); }

/* ── Produktkarten-Badges/Pills ── */
.article-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.article-pill {
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--bg-2);
  color: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.article-pill--rating {
  background: rgba(154, 123, 79, 0.10);
  border-color: rgba(154, 123, 79, 0.30);
  color: #7A5E32;
  font-weight: 600;
}

/* ── Produktkarten-Button: edler, weicher Schatten, goldene Hover-Kante, Lift ── */
.article-product .btn {
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.article-product .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.20);
  border-color: var(--gold);
}

/* ── Sidebar ── */
.article-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-toc { list-style: none; margin: 0; padding: 0; }
.sidebar-toc a {
  display: block;
  padding: 7px 0 7px 12px;
  margin-left: -12px;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.68);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.sidebar-toc a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
}
.sidebar-picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-picks a {
  display: flex;
  flex-direction: column;
  gap: 1px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.sidebar-picks a:hover {
  border-color: var(--gold);
  transform: translateX(2px);
}
.sidebar-pick-use  { font-size: 0.72rem; color: rgba(0, 0, 0, 0.5); }
.sidebar-pick-name { font-size: 0.92rem; font-weight: 600; color: var(--text-1); }
.sidebar-note {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  padding: 0 4px;
}

/* ── Mobile: Sidebar unter den Artikel, Spalten stapeln ── */
@media (max-width: 980px) {
  .article-wrap--with-sidebar { max-width: 760px; }
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
  .article-sidebar { position: static; top: auto; }
}
@media (max-width: 560px) {
  .article-summary-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════
   NEWSLETTER-ANMELDUNG
════════════════════════════════════════════════════════ */
.nl-cta {
  background: linear-gradient(160deg, #FFFDF8 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
}
.nl-cta-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.nl-cta-inner h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(1.5rem, 3.5vw, 1.95rem); margin: 0 0 10px;
}
.nl-cta-sub { color: rgba(0,0,0,.6); font-size: 1.02rem; line-height: 1.6; margin: 0 0 24px; }
.nl-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.nl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.nl-form input[type="email"] {
  flex: 1; min-width: 240px; max-width: 340px; font-family: inherit; font-size: 1rem;
  padding: 13px 18px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text-1);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.nl-form input[type="email"]:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(154,123,79,.12); }
.nl-btn { padding: 13px 28px; white-space: nowrap; }
.nl-consent { margin-top: 14px; font-size: .78rem; color: rgba(0,0,0,.45); }
.nl-consent a { color: var(--gold); }
@media (max-width: 520px) {
  .nl-form input[type="email"] { width: 100%; max-width: none; }
  .nl-btn { width: 100%; }
}

/* ── Hero-Newsletter (links, prominent statt der CTA-Buttons) ──── */
.hero-nl {
  max-width: 470px;
  margin-bottom: 44px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, #FCF8F0 0%, #F6EEDD 55%, #F0E4CC 100%);
  border: 1px solid var(--gold-light);
  box-shadow:
    0 4px 20px rgba(154, 123, 79, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  animation: nlRise .7s var(--ease) both, nlGlow 4.5s ease-in-out 1s infinite;
}
.hero-nl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.hero-nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-nl-spark { display: inline-block; animation: nlSpark 2.4s ease-in-out infinite; }
.hero-nl-free {
  flex-shrink: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--gold);
  padding: 3px 11px;
  border-radius: 100px;
}
.hero-nl-text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-2);
  margin-bottom: 16px;
}
.hero-nl-text strong { color: var(--text-1); font-weight: 700; }
.hero-nl-form { justify-content: flex-start; gap: 10px; }
.hero-nl-form input[type="email"] { min-width: 0; max-width: none; }
.hero-nl-hint { margin-top: 12px; font-size: 0.76rem; color: var(--text-3); }

@keyframes nlRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes nlGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(154,123,79,.16), inset 0 1px 0 rgba(255,255,255,.65); }
  50%      { box-shadow: 0 7px 28px rgba(192,150,92,.36), inset 0 1px 0 rgba(255,255,255,.72); }
}
@keyframes nlSpark {
  0%, 100% { opacity: .55; transform: scale(.9) rotate(0deg); }
  50%      { opacity: 1;  transform: scale(1.15) rotate(15deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-nl { animation: nlRise .4s ease both; }
  .hero-nl-spark { animation: none; }
}
