/* ============================================
   aktuelle-sales.de | Stylesheet v2
   Design: Editorial Clean - Vertrauen + Sparfreude
   Fonts: Bebas Neue (Display) + DM Sans (Body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Kernfarben */
  --ink:       #0f1923;
  --ink-mid:   #2d3a47;
  --ink-soft:  #5a6a7a;
  --ink-muted: #8fa0b0;
  --line:      #dde4ec;
  --surface:   #f5f7fa;
  --white:     #ffffff;

  /* Akzente */
  --blue:      #1552a0;
  --blue-dark: #0d3d78;
  --blue-soft: #e8f0fb;
  --blue-mid:  #4a7fd4;

  --green:     #1a8c5a;
  --green-soft:#e6f5ee;

  --orange:    #e86c00;
  --orange-soft:#fff3e8;

  --red-soft:  #fff0f0;
  --red:       #c0392b;

  /* Schatten */
  --shadow-xs: 0 1px 2px rgba(15,25,35,.06);
  --shadow-sm: 0 2px 8px rgba(15,25,35,.08);
  --shadow-md: 0 6px 20px rgba(15,25,35,.10);
  --shadow-lg: 0 16px 40px rgba(15,25,35,.12);
  --shadow-focus: 0 0 0 3px rgba(21,82,160,.2);

  /* Radien */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Typografie */
  --font-display: 'Bebas Neue', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-serif:   'Source Serif 4', Georgia, serif;

  --ease: cubic-bezier(.4,0,.2,1);
  --max:  1180px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--ink); background: var(--surface); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.05;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--blue); text-decoration: none; transition: color 180ms var(--ease); }
a:hover { color: var(--blue-dark); }

/* --- Utility --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-xs);
}

.header-inner {
  display: flex; align-items: center; gap: 20px; height: 62px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 400;
  color: var(--ink); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}
.site-logo-text { white-space: nowrap; letter-spacing: 0.04em; }
.site-logo .accent { color: var(--orange); }
.site-logo svg { width: 30px; height: 30px; flex-shrink: 0; }

.main-nav {
  display: flex; align-items: center; gap: 2px; flex: 1;
  overflow-x: auto; scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(90deg, #000 92%, transparent);
}

.main-nav a {
  font-size: .85rem; font-weight: 500; color: var(--ink-mid);
  padding: 6px 4px; border-radius: var(--r-sm); white-space: nowrap;
  transition: background 150ms, color 150ms;
}
.main-nav a:not(:last-child)::after {
  content: '·';
  color: var(--ink-muted);
  font-weight: 400;
  padding: 0 10px;
  pointer-events: none;
}
.main-nav a:hover  { background: var(--blue-soft); color: var(--blue); }
.main-nav a.active { background: var(--blue-soft); color: var(--blue); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: var(--r-sm); color: var(--ink-mid);
  margin-left: auto;
}
.nav-toggle:hover { background: var(--surface); }

/* Mobile Nav */
.mobile-nav {
  display: none; background: var(--white);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 13px 20px;
  font-size: .95rem; font-weight: 500; color: var(--ink-mid);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--blue); background: var(--blue-soft); }

/* ============================================
   DEAL DES TAGES
   ============================================ */
.dotd {
  padding: 40px 0 48px;
  background: linear-gradient(160deg, #0a1628 0%, #123a6b 55%, #1552a0 100%);
  color: var(--white);
}

.dotd-wrap { position: relative; }

.dotd-card {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.dotd-media {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dotd-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 340px;
  object-fit: contain;
  padding: 16px;
}

.dotd-img-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-soft), #fff);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 400;
}

.dotd-img-fallback span {
  font-size: 3rem;
  line-height: 1;
}

.dotd-img-fallback small {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.dotd-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.dotd-badge {
  background: linear-gradient(90deg, var(--orange), #ff8c2a);
  color: var(--white) !important;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

.dotd-date {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.dotd-discount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  color: #7ec8f5;
  margin-bottom: 10px;
}

.dotd-discount span {
  font-size: .35em;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin-left: 4px;
}

.dotd-shop {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 6px;
}

.dotd-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.dotd-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 16px;
  max-width: 52ch;
}

.dotd-urgency {
  font-size: .82rem;
  font-weight: 600;
  color: #fcd34d;
  margin-bottom: 18px;
}

.dotd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.dotd a.dotd-btn,
.dotd button.dotd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none !important;
  border: none;
  border-radius: var(--r-md);
  padding: 16px 28px;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.dotd a.dotd-btn-primary,
.dotd button.dotd-btn-primary {
  background: linear-gradient(180deg, #ff8c2a 0%, var(--orange) 100%);
  color: #fff !important;
  box-shadow: 0 8px 24px rgba(232, 108, 0, .45);
  min-width: 260px;
}

.dotd a.dotd-btn-primary:hover,
.dotd button.dotd-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 108, 0, .55);
  color: #fff !important;
}

.dotd a.dotd-btn-ghost {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff !important;
  font-weight: 600;
}

.dotd a.dotd-btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff !important;
}

.dotd-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
}

.dotd-trust li::before {
  content: '✓ ';
  color: #4ade80;
}

@media (max-width: 900px) {
  .dotd-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 24px;
  }
  .dotd-media { order: -1; }
  .dotd a.dotd-btn-primary,
  .dotd button.dotd-btn-primary,
  .dotd a.dotd-btn-ghost { width: 100%; min-width: 0; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative; overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,82,160,.35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400; line-height: 1.12;
  letter-spacing: 0.03em; margin-bottom: 18px;
}

.hero h1 mark {
  background: none;
  color: #7ec8f5;
  position: relative;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 520px; margin-bottom: 36px; line-height: 1.65;
}

.hero-stats {
  display: flex; gap: 36px; flex-wrap: wrap;
}

.hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 400; line-height: 1;
  color: var(--white);
}
.hero-stat span {
  font-size: .8rem; color: rgba(255,255,255,.55); margin-top: 3px;
  display: block;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--green-soft);
  border-bottom: 1px solid rgba(26,140,90,.18);
  padding: 12px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--green);
}
.trust-item svg { width: 16px; height: 16px; }

/* ============================================
   KATEGORIE-LEISTE
   ============================================ */
.cat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow-x: auto; scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-bar-inner { display: flex; }

.cat-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; font-size: .85rem; font-weight: 600;
  color: var(--ink-soft); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.cat-tab:hover  { color: var(--blue); }
.cat-tab.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ============================================
   SECTION
   ============================================ */
.section { padding: 52px 0; }
.section-white { background: var(--white); }

.section-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 400;
  color: var(--ink); letter-spacing: 0.03em;
}
.section-head p { font-size: .875rem; color: var(--ink-soft); margin-top: 3px; }
.link-more { font-size: .85rem; font-weight: 600; color: var(--blue); white-space: nowrap; }

/* ============================================
   GUTSCHEIN-KARTEN
   ============================================ */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}

.coupon-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.coupon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.coupon-card.featured { border-color: var(--orange); }
.coupon-card.featured::before {
  content: 'TOP';
  position: absolute; top: 10px; left: -1px;
  background: var(--orange); color: var(--white);
  font-size: .65rem; font-weight: 400; letter-spacing: .1em;
  padding: 3px 10px 3px 7px; border-radius: 0 4px 4px 0;
}

.coupon-card.is-expired { opacity: .6; }

.coupon-badge {
  position: absolute; top: 10px; right: 10px;
  background: var(--green); color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
}
.coupon-card.featured .coupon-badge { top: 32px; }

.coupon-card-img {
  height: 96px; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); padding: 14px;
  text-decoration: none;
}
.coupon-card-img img { max-height: 56px; object-fit: contain; }
.shop-placeholder {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 400;
  color: var(--blue-dark); letter-spacing: 0.02em;
}

.coupon-card-body { padding: 14px 16px; flex: 1; }
.coupon-category {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--blue-mid); margin-bottom: 5px;
}
.coupon-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--ink); line-height: 1.1; letter-spacing: 0.03em; margin-bottom: 6px; }
.coupon-title a { color: var(--ink); }
.coupon-title a:hover { color: var(--blue); }
.coupon-desc {
  font-size: .82rem; color: var(--ink-soft); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.coupon-valid {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .73rem; color: var(--ink-muted); margin-top: 8px;
}
.coupon-valid.expired { color: var(--red); }

.coupon-card-action { padding: 10px 16px 14px; }

/* --- Buttons --- */
.btn-reveal {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 7px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  padding: 11px 18px; border: none; border-radius: var(--r-md);
  cursor: pointer;
  transition: background 150ms, transform 150ms;
}
.btn-reveal:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-reveal.revealed { background: var(--green); letter-spacing: .06em; font-size: .95rem; }

.btn-deal {
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--white);
  font-weight: 600; font-size: .875rem;
  padding: 11px 18px; border-radius: var(--r-md);
  transition: background 150ms, transform 150ms;
}
.btn-deal:hover { background: var(--green); filter: brightness(.9); transform: translateY(-1px); color: var(--white); }

/* --- Eingebettete Karte --- */
.coupon-embedded {
  flex-direction: row; align-items: center;
  padding: 18px; gap: 18px;
  border-left: 3px solid var(--blue);
  border-radius: var(--r-md);
  margin: 24px 0;
}
.coupon-embedded .coupon-card-body { padding: 0; }
.coupon-embedded .coupon-card-action { padding: 0; min-width: 150px; }
.coupon-embedded .coupon-badge { position: static; margin-bottom: 6px; }
.coupon-shop-name { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--blue-mid); margin-bottom: 4px; }

/* ============================================
   ARTIKEL-KARTEN
   ============================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.article-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-xs);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 200ms, box-shadow 200ms;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.article-card-img { height: 170px; background: var(--blue-soft); overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.article-card:hover .article-card-img img { transform: scale(1.04); }
.article-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-soft), #ddeeff);
  font-size: 2.5rem;
}

.article-card-body { padding: 18px; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: var(--ink-muted); margin-bottom: 8px; }
.cat-pill { background: var(--blue-soft); color: var(--blue); font-weight: 600; padding: 2px 10px; border-radius: 100px; }
.article-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--ink); line-height: 1.15; letter-spacing: 0.03em; margin-bottom: 7px; }
.article-card h3 a { color: var(--ink); }
.article-card h3 a:hover { color: var(--blue); }
.article-card p { font-size: .84rem; color: var(--ink-soft); line-height: 1.55; }

.article-card-footer { padding: 12px 18px 16px; border-top: 1px solid var(--line); }
.article-card-footer a { font-size: .84rem; font-weight: 600; color: var(--blue); }

/* ============================================
   KATEGORIE-SEITE
   ============================================ */
.cat-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-dark) 100%);
  color: var(--white); padding: 48px 0 56px;
}
.cat-hero h1 { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 400; letter-spacing: 0.03em; margin-bottom: 10px; }
.cat-hero p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 560px; }
.cat-count { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; }

.cat-seo-text {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 32px 40px;
  margin-bottom: 32px;
  font-family: var(--font-serif);
  font-size: 1rem; color: var(--ink-mid); line-height: 1.75;
  box-shadow: var(--shadow-xs);
}
.cat-seo-text h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }

/* ============================================
   STARTSEITE SEO-BLÖCKE
   ============================================ */
.home-seo { background: var(--white); border-top: 1px solid var(--line); }
.home-seo-wrap { max-width: 820px; margin: 0 auto; }
.home-seo-block + .home-seo-block,
.home-seo-block + .home-seo-quote,
.home-seo-quote + .home-seo-block,
.home-seo-figure + .home-seo-block,
.home-seo-block + .home-seo-figure,
.home-seo-html + .home-seo-block,
.home-seo-block + .home-seo-html { margin-top: 36px; padding-top: 36px; border-top: 1px solid var(--line); }
.home-seo-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}
.home-seo-text { font-size: 1.02rem; }
.home-seo-quote {
  margin: 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-mid);
}
.home-seo-figure {
  margin: 0;
  text-align: center;
}
.home-seo-figure img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.home-seo-figure figcaption {
  margin-top: 10px;
  font-size: .85rem;
  color: var(--ink-muted);
}
.home-seo-images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.home-seo-images img {
  max-height: 160px;
  width: auto;
  border-radius: var(--r-sm);
}

/* ============================================
   ARTIKEL-SEITE
   ============================================ */
.article-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 36px; align-items: start; padding: 44px 0 64px;
}

.article-body {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 40px 44px;
  box-shadow: var(--shadow-xs);
}

.article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400; line-height: 1.2; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 14px;
}

.article-meta-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: .82rem; color: var(--ink-muted);
  margin-bottom: 24px; padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.prose {
  font-family: var(--font-serif);
  font-size: 1.05rem; line-height: 1.78; color: var(--ink-mid);
}
.prose h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 32px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 24px 0 8px; }
.prose p  { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 5px; }
.prose a  { color: var(--blue); }

/* ============================================
   GUTSCHEIN-SEITE (eigene URL)
   ============================================ */
.deal-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-dark) 100%);
  color: var(--white); padding: 44px 0;
}
.deal-hero-inner { display: flex; align-items: center; gap: 32px; }
.deal-logo-wrap {
  width: 110px; height: 110px; background: var(--white);
  border-radius: var(--r-lg); padding: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.deal-logo-wrap img { max-height: 70px; object-fit: contain; }
.deal-logo-placeholder { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--blue-dark); }
.deal-hero-info h1 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; letter-spacing: 0.02em; margin-bottom: 6px; }
.deal-hero-info p  { color: rgba(255,255,255,.65); font-size: .95rem; }

.deal-reveal-box {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin: -28px 0 36px;
  position: relative;
}
.deal-discount {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 400;
  color: var(--green); line-height: 1; margin-bottom: 6px;
}
.deal-reveal-box h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin-bottom: 22px; font-weight: 400; letter-spacing: 0.03em; }

.btn-reveal-lg {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  padding: 15px 44px; border: none; border-radius: var(--r-lg);
  cursor: pointer; min-width: 280px;
  transition: background 150ms, transform 150ms, box-shadow 150ms;
}
.btn-reveal-lg:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-reveal-lg.revealed { background: var(--green); letter-spacing: .08em; font-size: 1.2rem; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { position: sticky; top: 76px; }
.sidebar-box {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line); padding: 22px;
  box-shadow: var(--shadow-xs); margin-bottom: 20px;
}
.sidebar-box h3 {
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
  color: var(--ink); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue-soft);
}

.toc-list { list-style: none; counter-reset: toc; }
.toc-list li { counter-increment: toc; margin-bottom: 7px; }
.toc-list a { display: flex; align-items: flex-start; gap: 9px; font-size: .84rem; color: var(--ink-soft); }
.toc-list a::before {
  content: counter(toc);
  background: var(--blue-soft); color: var(--blue);
  font-size: .68rem; font-weight: 700;
  min-width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.toc-list a:hover { color: var(--blue); }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.breadcrumb {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 12px 0; font-size: .8rem; color: var(--ink-muted);
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--line); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .site-logo { color: var(--white); }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); margin-top: 10px; line-height: 1.65; max-width: 260px; }
.footer-col h4 { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 12px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================
   BUTTONS ALLGEMEIN
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .875rem; font-weight: 600;
  padding: 10px 20px; border-radius: var(--r-md);
  border: 1.5px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: background 150ms, color 150ms, border-color 150ms, transform 150ms;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); }
.btn-outline  { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-ghost    { background: var(--surface); color: var(--ink-mid); border-color: var(--line); }
.btn-ghost:hover { background: var(--line); }

/* ============================================
   ADMIN
   ============================================ */
.admin-body { background: var(--surface); display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 230px; background: var(--ink);
  min-height: 100vh; position: fixed; left: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; z-index: 300;
}
.admin-sidebar-logo {
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--white);
}
.admin-sidebar-logo .accent { color: var(--orange); }
.admin-sidebar-logo small { display: block; font-family: var(--font-body); font-size: .7rem; color: rgba(255,255,255,.35); font-weight: 400; margin-top: 2px; }

.admin-nav { padding: 12px 0; flex: 1; overflow-y: auto; }
.admin-nav-label { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: 10px 18px 4px; }
.admin-nav-item { display: flex; align-items: center; gap: 9px; padding: 9px 18px; font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.6); transition: background 150ms, color 150ms; }
.admin-nav-item svg { width: 17px; height: 17px; flex-shrink: 0; }
.admin-nav-item:hover  { background: rgba(255,255,255,.07); color: var(--white); }
.admin-nav-item.active { background: var(--blue); color: var(--white); }

.admin-sidebar-foot { padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-foot a { font-size: .8rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.admin-sidebar-foot a:hover { color: var(--white); }

.admin-main { margin-left: 230px; flex: 1; display: flex; flex-direction: column; }

.admin-topbar {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 0 24px; height: 54px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.admin-topbar-title { font-size: .95rem; font-weight: 700; color: var(--ink); }
.admin-topbar-user { display: flex; align-items: center; gap: 10px; font-size: .83rem; color: var(--ink-soft); }
.admin-topbar-user a { color: var(--ink-muted); }
.admin-topbar-user a:hover { color: var(--blue); }

.admin-content { padding: 24px; flex: 1; }
.admin-page-header { margin-bottom: 24px; }
.admin-page-header h1 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--ink); letter-spacing: 0.02em; }
.admin-page-header p { color: var(--ink-soft); font-size: .875rem; margin-top: 3px; }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 22px; }
.stat-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--line); padding: 18px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-xs); }
.stat-icon { width: 44px; height: 44px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 20px; height: 20px; }
.stat-icon.blue   { background: var(--blue-soft);   color: var(--blue); }
.stat-icon.green  { background: var(--green-soft);  color: var(--green); }
.stat-icon.orange { background: var(--orange-soft); color: var(--orange); }
.stat-icon.purple { background: #f3e8ff; color: #7c3aed; }
.stat-number { font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; color: var(--ink); line-height: 1; }
.stat-label  { font-size: .78rem; color: var(--ink-muted); margin-top: 3px; }

.admin-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-xs); overflow: hidden; }
.admin-card-header { padding: 14px 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h2 { font-size: .95rem; font-weight: 700; color: var(--ink); }
.admin-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.admin-table th { text-align: left; padding: 9px 14px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); background: var(--surface); border-bottom: 1px solid var(--line); }
.admin-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--ink-mid); vertical-align: middle; }
.admin-table tr:hover td { background: var(--surface); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table code { background: var(--surface); padding: 2px 7px; border-radius: 4px; font-size: .78rem; color: var(--blue-dark); font-family: monospace; }

.badge { display: inline-flex; padding: 2px 9px; border-radius: 100px; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.badge-blue   { background: var(--blue-soft);   color: var(--blue); }
.badge-green  { background: var(--green-soft);  color: var(--green); }
.badge-gray   { background: var(--surface);     color: var(--ink-soft); }
.badge-red    { background: var(--red-soft);    color: var(--red); }
.badge-orange { background: var(--orange-soft); color: var(--orange); }

.admin-action-link { font-size: .78rem; font-weight: 600; color: var(--blue); padding: 3px 9px; border-radius: var(--r-sm); border: 1px solid var(--blue-soft); background: var(--blue-soft); transition: background 150ms; }
.admin-action-link:hover { background: #d0e4f8; }
.admin-action-link.danger { color: var(--red); border-color: #ffd0d0; background: var(--red-soft); }
.admin-action-link.danger:hover { background: #ffd0d0; }

/* Admin Formular */
.admin-form { max-width: 820px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-mid); margin-bottom: 5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  font-family: var(--font-body); font-size: .875rem; color: var(--ink);
  background: var(--white); outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: var(--shadow-focus); }
.form-hint { font-size: .76rem; color: var(--ink-muted); margin-top: 4px; }

.form-error   { background: var(--red-soft); border: 1px solid #fca5a5; color: var(--red); padding: 11px 14px; border-radius: var(--r-md); font-size: .84rem; margin-bottom: 18px; }
.form-success { background: var(--green-soft); border: 1px solid rgba(26,140,90,.3); color: var(--green); padding: 11px 14px; border-radius: var(--r-md); font-size: .84rem; margin-bottom: 18px; }

/* Admin Login */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--surface); }
.admin-login-box { background: var(--white); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 44px; width: 100%; max-width: 400px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .admin-2col { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  .hero { padding: 44px 0 52px; }
  .hero-stats { gap: 20px; }
  .section { padding: 36px 0; }
  .article-body { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .coupon-embedded { flex-direction: column; }
  .coupons-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .deal-hero-inner { flex-direction: column; text-align: center; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-main { margin-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .deal-reveal-box { padding: 24px 16px; }
  .btn-reveal-lg { min-width: 100%; }
  .deal-discount { font-size: 2.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
