:root {
  --bg:      #ffffff;
  --ink:     #1d1d1f;
  --ink2:    #6e6e73;
  --ink3:    #a1a1a6;
  --line:    #d2d2d7;
  --surf:    #f5f5f7;
  --surf2:   #fafafa;
  --r:       10px;
  --r-sm:    6px;
  --accent:  #e05c00;
  --font:    -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --mono:    "SF Mono", "Fira Mono", "Consolas", monospace;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--surf);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); }

/* ── Layout ─────────────────────────────────────── */
.wrap        { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.wrap-narrow { max-width: 800px;  margin: 0 auto; padding: 0 16px; }

/* ── Header (single row) ────────────────────────── */
.hdr {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

/* ── Zeile 1: Logo | Suche | Icons ──────────────── */
.hdr-row1 {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 60px;
}

/* ── Logo ────────────────────────────────────────── */
.logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-img { height: 32px; width: auto; display: block; }

/* ── Nav inline (legacy, hidden) ────────────────── */
.nav-inline { display: none; }
.nav-item   { display: none; }
.nav-active {}

/* ── Search (wächst in die Mitte) ───────────────── */
.srch        { position: relative; }
.srch-hdr    { flex: 1; min-width: 0; max-width: 560px; margin: 0 auto; }
.srch input {
  width: 100%;
  padding: 10px 48px 10px 18px;
  font-size: 14px;
  font-family: var(--font);
  border: 1.5px solid #e05a00;
  border-radius: 24px;
  outline: none;
  background: var(--surf);
  color: var(--ink);
  -webkit-appearance: none;
  transition: border-color .12s, box-shadow .12s;
}
.srch input::placeholder { color: var(--ink3); }
.srch input:focus {
  border-color: #e05a00;
  box-shadow: 0 0 0 3px rgba(224,90,0,.10);
  background: var(--bg);
}
.srch-btn {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  background: #e05a00;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity .1s;
}
.srch-btn:hover { opacity: .85; }

/* ── Rechte Icons ────────────────────────────────── */
.hdr-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hdr-icon-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: none;
  border: none;
  color: var(--ink2);
  cursor: pointer;
  transition: color .12s;
  text-decoration: none;
}
.hdr-icon-btn:hover { color: var(--ink); }
.hdr-icon-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  padding: 0 4px;
  line-height: 16px;
  text-align: center;
}
.hdr-user-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 8px 4px 6px;
  border: none;
  background: none;
  color: var(--ink2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  transition: color .12s;
  position: relative;
  outline: none;
}
.hdr-user-btn:hover { color: var(--ink); }
.hdr-user-btn .chevron-down { margin-left: 2px; transition: transform .15s; }
.hdr-user-btn:hover .chevron-down { transform: rotate(180deg); }

.user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  padding: 8px 0;
  z-index: 9999;
}
.hdr-user-btn:hover .user-dropdown { display: block; }

.user-drop-head {
  font-size: 11px; font-weight: 700; color: var(--mute);
  text-transform: uppercase; letter-spacing: .07em;
  padding: 6px 16px 2px;
}
.user-drop-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px; font-size: 14px; color: var(--ink);
  text-decoration: none; transition: background .1s; white-space: nowrap;
  font-weight: 400;
}
.user-drop-link:hover { background: var(--surf); }
.user-drop-link svg { flex-shrink: 0; opacity: .7; }
.user-drop-sep { height: 1px; background: var(--line); margin: 6px 14px; }

/* ── Suggestions ─────────────────────────────────── */
.suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  z-index: 200;
  overflow: hidden;
  display: none;
  min-width: 320px;
}
.suggest.open { display: block; }
.sug-label {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 10px 14px 4px;
}
.sug-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background .1s;
}
.sug-item:hover { background: var(--surf); }
.sug-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--surf);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--ink2);
  flex-shrink: 0;
}
.sug-text  { flex: 1; min-width: 0; }
.sug-name  { font-size: 13px; font-weight: 500; color: var(--ink); }
.sug-desc  { font-size: 11px; color: var(--ink3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sug-badge {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  color: var(--ink);
  background: var(--surf);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Category Filter Pills ───────────────────────── */
.cats {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}
.cats::-webkit-scrollbar { display: none; }
.cats-inner {
  display: inline-flex;
  gap: 6px;
  padding: 10px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.cat-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  background: var(--surf);
  border: 1px solid var(--line);
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s, color .12s, border-color .12s;
  text-decoration: none;
}
.cat-pill:hover  { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cat-pill-icon {
  display: inline-flex; align-items: center; vertical-align: middle;
  margin-right: 5px; opacity: .75;
}
.cat-pill:hover .cat-pill-icon,
.cat-pill.active .cat-pill-icon { opacity: 1; }
.cat-pill-count {
  display: inline-block;
  background: rgba(0,0,0,.07);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: middle;
  color: var(--ink3);
}
.cat-pill.active .cat-pill-count,
.cat-pill:hover .cat-pill-count { background: rgba(255,255,255,.25); color: #fff; }

/* ── Hero Banner (Groupon-style, full-width) ─────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
  background: linear-gradient(135deg, #0d2b4e 0%, #1a4a80 60%, #2463a8 100%);
  overflow: hidden;
  position: relative;
}
.hero-split-left {
  padding: 44px 48px 44px 0;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
  z-index: 1;
  margin-left: max(24px, calc((100vw - 1200px) / 2));
}
.hero-split-eyebrow {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
  margin: 0;
}
.hero-split-h1 {
  font-size: 44px; font-weight: 900; color: #fff;
  line-height: 1.05; margin: 0;
}
.hero-split-sub {
  font-size: 15px; color: rgba(255,255,255,.82); margin: 0;
  max-width: 380px;
}
.hero-split-code-wrap { display: flex; flex-direction: column; gap: 6px; }
.hero-split-code-box {
  display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.3);
  width: fit-content;
}
.hero-split-code-lbl {
  padding: 0 14px; font-size: 10px; font-weight: 700;
  color: #999; text-transform: uppercase; letter-spacing: .6px;
  border-right: 1px solid #eee; white-space: nowrap; min-width: 52px;
  display: flex; align-items: center; height: 52px;
}
.hero-split-code-val {
  padding: 0 18px; font-size: 22px; font-weight: 900;
  color: var(--ink); letter-spacing: 2.5px;
  font-family: monospace;
}
.hero-split-code-btn {
  padding: 0 22px; background: var(--accent); color: #fff;
  border: none; font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font); height: 52px; white-space: nowrap;
  display: flex; align-items: center;
  transition: opacity .12s;
}
.hero-split-code-btn:hover { opacity: .88; }
.hero-split-code-link {
  text-decoration: none; display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.3); width: fit-content;
}
.hero-split-code-link:hover { opacity: .95; }
.hero-split-code-sub {
  font-size: 12px; color: rgba(255,255,255,.65); margin: 0;
}
.hero-split-cta {
  display: inline-block; padding: 15px 32px;
  background: var(--accent); color: #fff;
  border-radius: 30px; font-size: 15px; font-weight: 800;
  text-decoration: none; box-shadow: 0 4px 20px rgba(224,90,0,.4);
  transition: opacity .12s; width: fit-content;
}
.hero-split-cta:hover { opacity: .9; color: #fff; }
.hero-split-stats {
  display: flex; gap: 20px; margin-top: 4px;
}
.hero-split-stats span {
  font-size: 12px; color: rgba(255,255,255,.6);
}
.hero-split-stats strong { color: #fff; }
.hero-split-right {
  position: relative; overflow: hidden;
}
.hero-split-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.hero-split-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, #1a4a80 0%, transparent 35%);
  z-index: 1; pointer-events: none;
}
.hero-split-badge-wrap {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; flex-direction: column; gap: 8px; z-index: 2;
}
.hero-split-badge {
  background: var(--accent); color: #fff;
  font-size: 15px; font-weight: 900;
  padding: 8px 16px; border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  text-align: center;
}
.hero-split-badge-2 {
  background: #fff; color: var(--ink);
  font-size: 12px; font-weight: 700;
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-left { padding: 32px 20px; margin-left: 0; }
  .hero-split-h1 { font-size: 30px; }
  .hero-split-right { height: 200px; }
  .hero-split-right-overlay { background: linear-gradient(180deg, #1a4a80 0%, transparent 50%); }
  .hero-split-stats { flex-wrap: wrap; gap: 12px; }
}

/* ── Category Icon Bar ───────────────────────────── */
.cat-icon-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.cat-icon-inner {
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.cat-icon-inner::-webkit-scrollbar { display: none; }
.cat-icon-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; padding: 12px 16px;
  text-decoration: none; color: var(--ink2);
  border-bottom: 2px solid transparent;
  transition: color .12s, border-color .12s;
  white-space: nowrap; flex-shrink: 0;
}
.cat-icon-item:hover { color: var(--accent); border-color: var(--accent); }
.cat-icon-item.active { color: var(--accent); border-color: var(--accent); }
.cat-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}
.cat-icon svg { width: 22px; height: 22px; display: block; }
.cat-icon-label { font-size: 11px; font-weight: 600; }

@media (max-width: 700px) {
  .hero-banner-h1 { font-size: 28px; }
  .hero-banner-inner { padding-top: 24px; padding-bottom: 24px; }
  .hero-banner-code { font-size: 16px; letter-spacing: 1px; }
  .cat-icon-item { padding: 10px 12px; }
  .cat-icon { width: 20px; height: 20px; }
  .cat-icon svg { width: 20px; height: 20px; }

  .grid > .card:first-child { grid-column: 1; }}

/* ── Hero Section ────────────────────────────────── */
.hero-section {
  background: #fff;
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 14px;
}
.hero-card:first-child {
  grid-row: 1 / 3;
}
.hero-card:nth-child(n+6) { display: none; }
.hero-card {
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
  transition: box-shadow .18s, transform .18s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.hero-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.hero-card-bg {
  width: 100%;
  flex: 1;
  min-height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  pointer-events: none;
}
.hero-card-init {
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,.2);
  letter-spacing: -6px;
  user-select: none;
}
.hero-card-body {
  padding: 13px 16px 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-card-shop {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--ink3);
}
.hero-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-card-price {
  font-size: 17px;
  font-weight: 900;
  color: #e53935;
  margin-top: 3px;
  letter-spacing: -.3px;
}

/* ── Section Label ───────────────────────────────── */
.section-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── Load More ───────────────────────────────────── */
.load-more-wrap { text-align: center; padding: 20px 0 8px; }
.load-more-btn {
  padding: 13px 36px;
  background: var(--ink); color: #fff;
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .15s;
}
.load-more-btn:hover:not(:disabled) { background: #333; }
.load-more-btn:disabled { opacity: .5; cursor: default; }

/* ── Search Empty ────────────────────────────────── */
.search-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink2);
}
.search-empty h2 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.search-empty p  { font-size: 14px; margin-bottom: 24px; }
.search-empty a  { display: inline-block; padding: 10px 24px; background: #1d1d1f; color: #fff; border-radius: 8px; font-weight: 600; font-size: 14px; }

/* ── Deal Grid ───────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grid > .card:first-child { grid-column: span 2; }
.grid > .card:first-child .card-img { aspect-ratio: 21/9; }
.grid > .card:first-child .card-title { font-size: 16px; -webkit-line-clamp: 3; }
.grid > .card:first-child .card-price { font-size: 18px; }

/* ── Deal Card ───────────────────────────────────── */
.card {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .18s, transform .18s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  aspect-ratio: 3/2;
  background: var(--surf);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.card-feat-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.card-feat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, rgba(0,0,0,.05) 60%, transparent 100%);
  pointer-events: none;
}

.card-img-owl {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.card-owl-img {
  width: 52px; height: 52px; object-fit: contain; opacity: .55;
}

.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; font-weight: 900;
  color: rgba(255,255,255,.45);
  letter-spacing: -2px;
  user-select: none;
}
.card-img-logo {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  position: relative;
}
.card-logo-bg {
  position: absolute; inset: 0;
  opacity: .12;
}
.card-logo-frame {
  width: 72px; height: 72px;
  background: rgba(255,255,255,.9);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  position: relative; z-index: 1;
}
.card-logo-img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.card-badge {
  position: absolute;
  top: 8px; right: 8px;
  background: #e53935;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 20px;
  letter-spacing: -.2px;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  white-space: nowrap;
}
.card-badge-green { background: #22a55a; }
.card-body { padding: 14px 14px 12px; flex: 1; display: flex; flex-direction: column; }
.card-shop {
  font-size: 10px; font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase; letter-spacing: .6px;
  display: block; margin-bottom: 4px;
}
.card-title {
  font-size: 14px; font-weight: 600;
  color: var(--ink); line-height: 1.4;
  margin-bottom: 12px; flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-foot {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  margin-top: auto;
}
.card-price {
  font-size: 15px; font-weight: 900;
  color: #1a7340; letter-spacing: -.3px;
}
.card-cta {
  font-size: 12px; font-weight: 700;
  color: var(--ink2);
  white-space: nowrap;
  transition: color .1s;
}
.card:hover .card-cta { color: var(--ink); }
.card-uses { font-size: 11px; color: var(--ink3); }
.card-code-chip {
  position: absolute;
  bottom: 8px; right: 8px;
  font-size: 9px; font-weight: 800;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.35);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: .5px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.card-hot {
  font-size: 11px; font-weight: 800;
  color: #ff6b00;
  background: #fff4ec;
  border: 1px solid #ffd4b0;
  padding: 3px 8px; border-radius: 4px;
  white-space: nowrap;
  letter-spacing: .2px;
}
.card-uses-row {
  font-size: 11px; color: var(--ink3);
  margin-top: 5px;
  font-weight: 600;
}
.card-cat-label {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 4px;
}
.card-verified {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 600;
  color: #22a55a;
  margin-top: 5px;
}

/* ── Star Rating (Groupon-style) ─────────────────── */
.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.card-stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}
.card-rating-count {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 400;
}
.card-top-badge {
  position: absolute; top: 8px; left: 8px;
  font-size: 10px; font-weight: 900;
  color: #fff;
  background: #e63b3b;
  padding: 2px 7px; border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Deal of the Day ─────────────────────────────── */
.dotd-wrap {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 12px 0;
}
.dotd-inner {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.dotd-label-col { flex-shrink: 0; text-align: center; min-width: 110px; }
.dotd-label {
  display: block; font-size: 10px; font-weight: 900; letter-spacing: 1px;
  text-transform: uppercase; color: #ffd700; margin-bottom: 4px;
}
.dotd-timer {
  font-size: 16px; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums; letter-spacing: 1px;
}
.dotd-card {
  flex: 1; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.07); border-radius: 10px;
  padding: 10px 16px; text-decoration: none;
  transition: background .12s;
}
.dotd-card:hover { background: rgba(255,255,255,.12); }
.dotd-shop-img {
  width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: rgba(255,255,255,.5);
}
.dotd-shop-logo {
  width: 52px; height: 52px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dotd-shop-logo img { width: 40px; height: 40px; object-fit: contain; }
.dotd-info { flex: 1; }
.dotd-shop  { font-size: 11px; color: rgba(255,255,255,.6); display: block; margin-bottom: 3px; }
.dotd-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.3; }
.dotd-exp   { font-size: 11px; color: rgba(255,255,255,.45); }
.dotd-val {
  font-size: 22px; font-weight: 900; color: #ffd700;
  white-space: nowrap; flex-shrink: 0;
}
.dotd-cta {
  font-size: 13px; font-weight: 700; color: #fff;
  background: #22a55a; padding: 8px 16px; border-radius: 6px;
  white-space: nowrap; flex-shrink: 0;
}
@media (max-width: 680px) {
  .dotd-inner { gap: 10px; }
  .dotd-label-col { display: none; }
  .dotd-val { font-size: 18px; }
  .dotd-cta { display: none; }
}

/* ── Trending Strip ──────────────────────────────── */
.trending-wrap {
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.trending-head {
  display: flex; align-items: center; gap: 12px; overflow: hidden;
}
.trending-label {
  font-size: 11px; font-weight: 800; letter-spacing: .8px;
  text-transform: uppercase; color: #e63b3b;
  white-space: nowrap; flex-shrink: 0;
}
.trending-strip {
  display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.trending-strip::-webkit-scrollbar { display: none; }
.trend-chip {
  display: inline-flex; flex-direction: column;
  background: var(--surf); border: 1px solid var(--line);
  border-radius: 20px; padding: 4px 12px;
  white-space: nowrap; text-decoration: none;
  transition: background .12s;
  flex-shrink: 0;
}
.trend-chip:hover { background: #e8f5ee; border-color: #22a55a; }
.trend-chip-shop { font-size: 11px; font-weight: 700; color: var(--ink); }
.trend-chip-val  { font-size: 10px; color: var(--ink3); }

/* ── Sort Tabs ────────────────────────────────────── */
.sort-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.sort-tab {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  border: 1.5px solid var(--line);
  background: #fff;
  transition: all .15s;
  white-space: nowrap;
}
.sort-tab:hover { border-color: #1d1d1f; color: var(--ink); }
.sort-tab.active { background: #1d1d1f; color: #fff; border-color: #1d1d1f; }
.sort-tab-sm { padding: 5px 11px; font-size: 12px; }
.sort-sep { color: var(--line); font-size: 18px; margin: 0 4px; }
.sort-count {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink3);
  white-space: nowrap;
}

/* ── Code Buttons ─────────────────────────────────── */
.code-m {
  background: var(--surf);
  color: var(--ink3);
  font-family: var(--mono);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: 1px dashed var(--line);
  cursor: pointer;
  letter-spacing: 1.5px;
  transition: background .12s, border-color .12s;
  user-select: none;
  text-decoration: none;
  display: inline-block;
}
.code-m:hover { background: var(--line); border-color: var(--ink3); }
.code-r {
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  letter-spacing: .5px;
  display: none;
  transition: opacity .1s;
}
.code-r:hover { opacity: .85; }
.go-l {
  font-size: 12px;
  color: var(--ink3);
  display: none;
  white-space: nowrap;
}
.go-l:hover { color: var(--ink); }
.no-code {
  font-size: 12px;
  color: var(--ink2);
  font-weight: 500;
  background: var(--surf);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background .12s;
  border: 1px solid var(--line);
}
.no-code:hover { background: var(--line); }

/* ── Unlock Button ───────────────────────────────── */
.unlock-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .12s;
}
.unlock-btn:hover { opacity: .82; }
.unlock-arrow { margin-left: 3px; }

/* ── Shop-Seite ──────────────────────────────────── */
.shop-og {
  width: 100%;
  border-radius: var(--r);
  margin-bottom: 20px;
  display: block;
}
.shop-h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.shop-meta { font-size: 13px; color: var(--ink3); }
.shop-section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}

/* ── Coupon Row (shop page) ──────────────────────── */
.crow {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  transition: box-shadow .12s, border-color .12s;
}
.crow:hover { box-shadow: 0 3px 16px rgba(0,0,0,.08); border-color: var(--ink3); }
.ctext { flex: 1; min-width: 160px; }
.ctext strong { font-size: 14px; color: var(--ink); display: block; font-weight: 600; margin-bottom: 2px; }
.ctext small   { font-size: 12px; color: var(--ink3); }
.cbadge {
  font-size: 15px; font-weight: 800;
  color: #e53935;
  background: #fff5f5;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap; flex-shrink: 0;
  border: 1.5px solid #fce4e4;
}
.cbadge-fire {
  background: linear-gradient(135deg,#ff4500,#ff8c00);
  color: #fff;
  border-color: #ff4500;
}
.ctext-meta { display: flex; align-items: center; gap: 10px; margin-top: 3px; flex-wrap: wrap; }
.crow-uses { font-size: 11px; color: var(--accent); font-weight: 600; background: #f0fdf4; border-radius: 10px; padding: 1px 8px; }
.code-wrap { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── How-to-use Steps ───────────────────────────── */
.how-to-use { border-top: 1px solid var(--line); padding-top: 20px; }
.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 20px;
  text-align: left;
}
.how-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-step-text { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.how-step-text strong { font-size: 14px; font-weight: 700; color: var(--ink); }
.how-step-text span { font-size: 13px; color: var(--ink2); line-height: 1.5; }

/* ── Shop Header (shop page) ──────────────────────── */
.shop-hero {
  border-radius: var(--r);
  overflow: hidden;
  margin: 16px 0 20px;
  display: flex; align-items: center;
  padding: 28px 32px; gap: 24px;
  color: rgba(255,255,255,.9);
}
.shop-hero-init {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900;
  color: #fff; flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.3);
}
.shop-hero-owl { width: 44px; height: 44px; object-fit: contain; opacity: .7; }
.shop-hero-logo {
  width: 72px; height: 72px;
  border-radius: 14px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.shop-hero-logo img { width: 56px; height: 56px; object-fit: contain; }
.shop-hero-info { flex: 1; }
.shop-hero-info h1 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.shop-hero-info p  { font-size: 13px; color: rgba(255,255,255,.75); }
.shop-hero-count {
  background: rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  padding: 8px 16px; text-align: center;
  flex-shrink: 0; border: 1px solid rgba(255,255,255,.2);
}
.shop-hero-count strong { font-size: 24px; font-weight: 900; color: #fff; display: block; }
.shop-hero-count span   { font-size: 11px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .5px; }

/* ── Share Buttons ────────────────────────────────── */
.shop-share-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 10px 0; border-bottom: 1px solid var(--line);
}
.shop-share-label { font-size: 12px; font-weight: 600; color: var(--ink3); }
.share-btn {
  display: inline-block; padding: 5px 12px; font-size: 12px; font-weight: 600;
  border-radius: 5px; text-decoration: none; cursor: pointer;
  border: none; font-family: var(--font); transition: opacity .12s;
}
.share-btn:hover { opacity: .85; }
.share-fb  { background: #1877f2; color: #fff; }
.share-tw  { background: #000; color: #fff; }
.share-wa  { background: #25d366; color: #fff; }
.share-copy { background: var(--surf); color: var(--ink); border: 1px solid var(--line); }

/* ── Shop CTA Row ─────────────────────────────────── */
.shop-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.shop-alert-btn {
  display: inline-block; padding: 13px 24px; font-size: 14px; font-weight: 600;
  background: #f0f8f4; color: #1a8a47; border: 1.5px solid #22a55a;
  border-radius: 8px; text-decoration: none; transition: background .12s;
}
.shop-alert-btn:hover { background: #d4f0e0; }

/* ── Shop-Directory Tiles ─────────────────────────── */
.shop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.shop-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 0; overflow: hidden; transition: box-shadow .15s, transform .15s;
  text-decoration: none; display: flex; flex-direction: column;
}
.shop-tile:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); transform: translateY(-2px); }
.shop-tile-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.45) 100%);
  border-radius: inherit;
}
.shop-tile-img {
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.shop-tile-new-badge {
  position: absolute; top: 7px; right: 7px;
  background: #22a55a; color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 7px; border-radius: 20px;
  letter-spacing: .5px; text-transform: uppercase;
}
.shop-tile-owl {
  width: 44px; height: 44px; object-fit: contain; opacity: .45;
}
.shop-tile-init {
  font-size: 32px; font-weight: 900; color: rgba(255,255,255,.55); letter-spacing: -1px;
}
/* Logo frame for shop tiles */
.shop-tile-logo-frame {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.shop-tile-logo-img-inner {
  width: 40px; height: 40px; object-fit: contain;
}
.shop-tile-logo-frame.on-feat {
  position: absolute; bottom: 8px; left: 8px;
  width: 40px; height: 40px; border-radius: 8px;
}
.shop-tile-logo-frame.on-feat .shop-tile-logo-img-inner {
  width: 28px; height: 28px;
}

.shop-tile-body { padding: 12px; }
.shop-tile-name { font-size: 13px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 3px; }
.shop-tile-cnt  { font-size: 11px; color: var(--ink3); }
.shop-tile-logo-wrap {
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 16px;
}
.shop-tile-logo-img {
  max-width: 80%; max-height: 100%; object-fit: contain;
  border-radius: 4px;
}
.shop-tile-cnt-dim { color: var(--ink4, #bbb); }

/* ── Featured Brands Row (homepage) ──────────────── */
.feat-row-wrap {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.feat-row-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.feat-row-title {
  font-size: 13px; font-weight: 800;
  color: var(--ink); text-transform: uppercase; letter-spacing: .4px;
}
.feat-row-all {
  font-size: 12px; font-weight: 600; color: var(--ink3);
  text-decoration: none; transition: color .1s;
}
.feat-row-all:hover { color: var(--ink); }
.feat-row-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.feat-row-scroll::-webkit-scrollbar { display: none; }
.feat-brand-tile {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; flex-shrink: 0;
  width: 88px;
  transition: transform .15s;
}
.feat-brand-tile:hover { transform: translateY(-2px); }
.feat-brand-img {
  width: 72px; height: 72px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 6px;
}
.feat-brand-img img {
  width: 54px; height: 54px; object-fit: contain;
}
.feat-brand-img span {
  font-size: 22px; font-weight: 900;
  color: rgba(255,255,255,.6); letter-spacing: -1px;
}
.feat-brand-name {
  font-size: 11px; font-weight: 600; color: var(--ink);
  text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  max-width: 80px; display: block;
}
.feat-brand-cnt {
  font-size: 10px; color: var(--ink3); text-align: center;
}

/* ── Expiring Soon Tiles ─────────────────────────── */
.exp-tile {
  display: flex; flex-direction: column; flex-shrink: 0;
  width: 160px; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: #fff;
  text-decoration: none; transition: box-shadow .15s, transform .15s;
}
.exp-tile:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }
.exp-tile-img {
  width: 100%; height: 90px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.exp-tile-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.45) 100%); pointer-events:none; }
.exp-tile-badge {
  position: absolute; bottom: 7px; left: 7px;
  background: #fff; color: var(--ink); font-size: 12px;
  font-weight: 800; padding: 2px 7px; border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.exp-tile-body {
  padding: 8px 10px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.exp-tile-shop {
  font-size: 10px; font-weight: 700; color: var(--ink3);
  text-transform: uppercase; letter-spacing: .4px;
}
.exp-tile-title {
  font-size: 12px; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin-top: 1px;
}
.exp-tile-timer {
  font-size: 11px; font-weight: 700; margin-top: 4px;
  display: flex; align-items: center; gap: 3px;
}

/* ── Featured Shops Row ───────────────────────────── */
.featured-shops {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 12px;
}
.feat-shop-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; text-decoration: none; display: flex; flex-direction: column;
  transition: box-shadow .15s, transform .15s;
}
.feat-shop-tile:hover { box-shadow: 0 4px 18px rgba(0,0,0,.10); transform: translateY(-2px); }
.feat-shop-img {
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}
.feat-shop-init {
  font-size: 28px; font-weight: 900; color: rgba(255,255,255,.55); letter-spacing: -1px;
}
.feat-shop-body { padding: 10px; text-align: center; }
.feat-shop-name { font-size: 12px; font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; }
.feat-shop-cnt  { font-size: 11px; color: var(--ink3); }

/* ── A–Z Navigation Bar ───────────────────────────── */
.az-bar {
  display: flex; flex-wrap: wrap; gap: 4px;
  padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.az-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  background: var(--bg2, #f5f5f7); color: var(--ink); transition: background .12s;
}
.az-letter:hover { background: var(--accent); color: #fff; }
.az-letter-dim { color: var(--ink4, #ccc); cursor: default; background: transparent; }
.az-section { margin-bottom: 8px; }
.az-section-head {
  font-size: 22px; font-weight: 800; color: var(--ink);
  padding: 16px 0 8px; border-bottom: 2px solid var(--accent);
  display: inline-block; min-width: 36px; margin-bottom: 12px;
}

/* ── Marken Intro ─────────────────────────────────── */
.marken-intro {
  font-size: 15px; color: var(--ink2); max-width: 640px; line-height: 1.6;
}
.marken-cat { }

/* ── Breadcrumb ─────────────────────────────────── */
.breadc { font-size: 12px; color: var(--ink3); padding: 12px 0 0; }
.breadc a { color: var(--ink3); }
.breadc a:hover { color: var(--ink); }

/* ── Count ───────────────────────────────────────── */
.count { font-size: 13px; color: var(--ink3); }

/* ── Promo Bar ───────────────────────────────────── */
.promo-bar {
  background: #e05a00;
  color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  line-height: 1.4;
  position: relative;
}
.promo-bar a:not(.promo-cta) { color: #fff; text-decoration: underline; }
.promo-bar a:hover { opacity: .85; }
.promo-cta {
  display: inline-block;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 3px 12px;
  font-size: 11px; font-weight: 700;
  color: #e05a00;
  text-decoration: none;
  transition: opacity .12s;
}
.promo-cta:hover { opacity: .85; }
.promo-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer; line-height: 1; padding: 0;
}
.promo-close:hover { color: #fff; }

/* ── Cat-Nav Zeile 2 ─────────────────────────────── */
.cat-nav {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.cat-nav-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }
.cat-nav-item {
  position: relative;
  flex-shrink: 0;
}
.cat-nav-link {
  display: flex; flex-direction: row; align-items: center; justify-content: center;
  gap: 6px;
  padding: 0 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink2);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .12s, border-color .12s;
  height: 48px;
}
.cat-nav-link svg { flex-shrink: 0; }
.cat-nav-link:hover { color: var(--ink); border-bottom-color: var(--line); }
.cat-nav-active .cat-nav-link { color: var(--accent); border-bottom-color: var(--accent); }
.cat-nav-hot .cat-nav-link { color: #e05a00; }
.cat-nav-hot .cat-nav-link:hover { color: #c04800; }

/* ── Cat-Nav Submenu ─────────────────────────────── */
.cat-submenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  min-width: 460px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 200;
}
.cat-nav-item.sub-open .cat-submenu {
  display: block;
}
/* rechts am Rand: klappt nach links auf */
.cat-submenu.flip-left {
  left: auto;
  right: 0;
}
.cat-submenu-wrap { padding: 20px 20px 16px; }
.cat-submenu-title { display: none; }
.cat-submenu-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  margin-bottom: 14px;
}
.cat-submenu-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
.cat-submenu-col {}
.cat-submenu-col-head {
  font-size: 11px; font-weight: 700;
  color: var(--ink3);
  text-transform: uppercase; letter-spacing: .04em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.cat-submenu-item {
  display: block;
  font-size: 13px; color: var(--ink2);
  padding: 5px 0;
  transition: color .1s;
}
.cat-submenu-item:hover { color: var(--accent); }
.cat-submenu-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none;
  font-size: 18px; color: var(--ink3); cursor: pointer; line-height: 1;
}
.cat-submenu-close:hover { color: var(--ink); }

/* ── Category Header ─────────────────────────────── */
.cat-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 20px 0 18px;
}
.cat-header-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
}
.cat-header-count {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 4px;
}
.cat-header-sub {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink3);
}

/* ── Kategorie Hero ──────────────────────────────── */
.kat-hero { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.kat-hero-title {
  font-size: 28px; font-weight: 800; color: var(--ink);
  letter-spacing: -.4px; margin-bottom: 8px;
}
.kat-hero-desc {
  font-size: 15px; color: var(--ink2); max-width: 560px; line-height: 1.6;
  margin-bottom: 12px;
}
.kat-hero-stats {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; font-weight: 600; color: var(--accent);
}

/* ── NEU Badge ────────────────────────────────────── */
.card-new-badge {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 10px; font-weight: 900;
  color: #fff;
  background: #22a55a;
  padding: 2px 7px; border-radius: 3px;
  letter-spacing: .8px;
  text-transform: uppercase;
  z-index: 2;
}
.code-cta { color: var(--accent); }

/* ── External Links ──────────────────────────────── */
.ext-links { border-top: 1px solid var(--line); padding-top: 20px; }
.ext-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.ext-link-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: border-color .15s, box-shadow .15s;
  text-decoration: none;
}
.ext-link-item:hover { border-color: var(--ink); box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.ext-link-type {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  background: var(--ink);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.ext-link-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ext-link-arrow { font-size: 13px; color: var(--ink3); flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: #1d1d1f;
  color: rgba(255,255,255,.6);
  margin-top: 40px;
}

/* Newsletter bar */
.footer-nl-bar {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nl-brand {
  display: flex; flex-direction: column; gap: 4px;
}
.footer-nl-logo {
  font-size: 18px; font-weight: 900; color: #fff;
  text-decoration: none; letter-spacing: -.4px;
}
.footer-nl-tagline {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5;
}
.footer-nl-form {
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}
.footer-nl-input {
  padding: 11px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 13px; color: #fff; width: 260px;
  font-family: var(--font);
  outline: none;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,.35); }
.footer-nl-input:focus { border-color: var(--accent); }
.footer-nl-btn {
  padding: 11px 20px;
  background: var(--accent); color: #fff; border: none;
  border-radius: 0 8px 8px 0;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font); white-space: nowrap;
  transition: opacity .12s;
}
.footer-nl-btn:hover { opacity: .88; }
.footer-nl-ok { font-size: 13px; color: #4ade80; font-weight: 600; display: none; }

/* 4 equal columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .12s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0 16px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .12s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.75); }
.footer-bottom-spacer { flex: 1; }

/* ── Spacers ─────────────────────────────────────── */
.mt-sm  { margin-top: 8px; }
.mt-md  { margin-top: 16px; }
.mt-lg  { margin-top: 24px; }
.mb-sm  { margin-bottom: 8px; }
.mb-md  { margin-bottom: 16px; }
.mb-lg  { margin-bottom: 24px; }
.mb-xl  { margin-bottom: 40px; }
.mt-xl  { margin-top: 40px; }
.pb-lg  { padding-bottom: 48px; }

/* ── Deal Alert ──────────────────────────────────── */
.deal-alert-hero { border-bottom: 1px solid var(--line); padding-bottom: 20px; }
.deal-alert-title { font-size: 28px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.deal-alert-sub { font-size: 15px; color: var(--ink2); max-width: 480px; line-height: 1.6; }
.deal-alert-form { max-width: 560px; }
.deal-alert-label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.deal-alert-input {
  width: 100%; padding: 12px 16px; font-size: 15px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  outline: none; font-family: var(--font);
  transition: border-color .15s;
}
.deal-alert-input:focus { border-color: #22a55a; }
.deal-alert-error { color: #e63b3b; font-size: 13px; margin-bottom: 12px; }
.alert-shop-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 10px;
}
.alert-shop-tile {
  cursor: pointer; display: block;
}
.alert-shop-tile input { display: none; }
.alert-shop-inner {
  border: 1.5px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: border-color .12s, box-shadow .12s;
  display: flex; flex-direction: column;
}
.alert-shop-tile input:checked + .alert-shop-inner {
  border-color: #22a55a;
  box-shadow: 0 0 0 2px rgba(34,165,90,.2);
}
.alert-shop-img {
  aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; color: rgba(255,255,255,.5);
}
.alert-shop-name { font-size: 12px; font-weight: 700; padding: 8px 10px 2px; color: var(--ink); }
.alert-shop-cnt  { font-size: 11px; color: var(--ink3); padding: 0 10px 8px; }
.deal-alert-submit {
  width: 100%; padding: 14px; background: #22a55a; color: #fff;
  border: none; border-radius: var(--r); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .15s;
}
.deal-alert-submit:hover { background: #1a8a47; }
.deal-alert-legal { font-size: 12px; color: var(--ink3); line-height: 1.5; }
.deal-alert-legal a { color: var(--ink3); text-decoration: underline; }
.deal-alert-success { text-align: center; padding: 60px 20px; }
.deal-alert-success-icon {
  width: 56px; height: 56px; background: #22a55a; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
}
.deal-alert-success h2 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.deal-alert-success p  { font-size: 14px; color: var(--ink2); margin-bottom: 20px; }
.deal-alert-back { display: inline-block; color: var(--ink2); font-size: 14px; text-decoration: underline; }

/* ── Wheel ───────────────────────────────────────── */
.wheel-section { text-align: center; }
.wheel-wrap { position: relative; display: inline-block; }
.wheel-pointer-wrap {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.wheel-ptr { font-size: 22px; color: var(--ink); line-height: 1; }
#wheelCanvas { border-radius: 50%; box-shadow: 0 4px 32px rgba(0,0,0,.12); display: block; }
.spin-btn {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 13px 36px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity .12s, transform .1s;
}
.spin-btn:hover  { opacity: .85; }
.spin-btn:active { transform: scale(.97); }
.spin-btn:disabled { opacity: .4; cursor: default; }
.prize-card {
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
}
.prize-shop  { font-size: 12px; font-weight: 700; color: var(--ink3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.prize-title { font-size: 15px; color: var(--ink); font-weight: 500; }
.shop-card-link { display: block; }

/* ── Bell Button ─────────────────────────────────── */
.bell-btn {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-left: 4px;
  transition: color .12s;
  outline: none;
}
.bell-btn:hover { background: transparent; color: var(--accent); }
.bell-dot {
  position: absolute;
  top: 7px; right: 7px;
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
  border: 1.5px solid var(--bg);
}

/* ── Hamburger + Mobile Nav ──────────────────────── */
.hamburger-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px;
}
.hamburger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
}
.mob-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.4); z-index: 10002;
}
.mob-nav-overlay.open { display: block; }
.mob-nav {
  position: fixed;
  top: 0; left: -280px;
  width: 270px; height: 100%;
  background: #fff;
  z-index: 10003;
  display: flex; flex-direction: column;
  transition: left .25s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-nav.open { left: 0; }
.mob-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.mob-nav-brand { font-size: 16px; font-weight: 800; color: var(--ink); }
.mob-nav-close {
  background: none; border: none; font-size: 22px; cursor: pointer;
  color: var(--ink3); line-height: 1;
}
.mob-nav-links { display: flex; flex-direction: column; padding: 8px 0; }
.mob-nav-link {
  padding: 13px 20px; font-size: 14px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--surf);
  text-decoration: none;
}
.mob-nav-link:hover { background: var(--surf); }
.mob-nav-cats-head {
  padding: 12px 20px 6px; font-size: 11px; font-weight: 700;
  color: var(--ink3); text-transform: uppercase; letter-spacing: .6px;
  border-top: 2px solid var(--surf);
}
@media (max-width: 768px) {
  .hamburger-btn { display: flex; }
  .nav-inline { display: none; }
  .hdr-row1 { gap: 8px; height: 54px; }
  .logo { font-size: 17px; }
  .hdr-user-btn { display: none; }
  .cat-nav { display: none; }
  .srch-hdr { max-width: none; }
}

/* ── Notification Panel ──────────────────────────── */
.notif-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 10000;
}
.notif-overlay.open { display: block; }
.notif-panel {
  position: fixed;
  top: 0; right: -360px;
  width: 340px; max-width: 100vw;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  z-index: 10001;
  display: flex; flex-direction: column;
  transition: right .25s cubic-bezier(.4,0,.2,1);
}
.notif-panel.open { right: 0; }
.notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}
.notif-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: #1a7340;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.notif-list { flex: 1; overflow-y: auto; padding: 8px 0; }
.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  align-items: flex-start;
  transition: background .1s;
  cursor: pointer;
}
.notif-item:hover { background: var(--surf); }
.notif-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--surf);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  color: var(--ink2);
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.notif-text { flex: 1; min-width: 0; }
.notif-text strong { font-size: 13px; font-weight: 600; display: block; color: var(--ink); }
.notif-text span   { font-size: 12px; color: var(--ink2); display: block; margin: 2px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.notif-text em     { font-size: 11px; color: var(--ink3); font-style: normal; }
.notif-empty       { padding: 24px 20px; font-size: 13px; color: var(--ink3); }

/* ── Newsletter Modal ────────────────────────────── */
.nl-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400;
}
.nl-overlay.open { display: block; }
.nl-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(.95);
  width: 420px; max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px 28px;
  text-align: center;
  z-index: 401;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  transition: transform .2s, opacity .2s;
  opacity: 0;
}
.nl-modal.open {
  display: block;
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
}
.nl-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink3);
  cursor: pointer;
  line-height: 1;
}
.nl-close:hover { color: var(--ink); }
.nl-owl      { width: 72px; height: 72px; object-fit: contain; margin-bottom: 12px; display: block; margin-left: auto; margin-right: auto; }
.nl-headline { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.25; margin-bottom: 8px; }
.nl-sub      { font-size: 13px; color: var(--ink2); margin-bottom: 20px; line-height: 1.6; }
.nl-form input {
  width: 100%;
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  outline: none;
  margin-bottom: 10px;
  transition: border-color .12s;
}
.nl-form input:focus { border-color: var(--ink); }
.nl-form button {
  width: 100%;
  padding: 14px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity .12s;
}
.nl-form button:hover { opacity: .85; }
.nl-thanks { font-size: 15px; font-weight: 600; color: var(--ink); padding: 12px 0; }
.nl-legal  { font-size: 11px; color: var(--ink3); margin-top: 12px; line-height: 1.5; }
.nl-legal a { color: var(--ink3); text-decoration: underline; }

/* ── Wish Button (card) ──────────────────────────────── */
.wish-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.88);
  color: var(--ink2);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s, color .12s, transform .12s;
  z-index: 2;
  box-shadow: 0 1px 4px rgba(0,0,0,.10);
}
.wish-btn:hover  { background: #fff; color: #e53935; transform: scale(1.12); }
.wish-btn.active { color: #e53935; background: #fff; }

/* ── Wish Header Button ───────────────────────────────── */
.wish-hdr-btn {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surf);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .12s;
  margin-left: 4px;
  text-decoration: none;
}
.wish-hdr-btn:hover          { background: var(--line); }
.wish-hdr-btn.wish-hdr-active svg { fill: #e53935; stroke: #e53935; }
.wish-badge {
  position: absolute;
  top: 4px; right: 3px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 1.5px solid var(--bg);
  line-height: 1;
}

/* ── Submenu ─────────────────────────────────────────── */
.cats-wrap    { position: relative; }
.cat-pill-wrap { display: inline-block; }
.submenu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  z-index: 150;
  padding: 16px 20px;
}
.submenu-panel.open { display: block; }
.sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 12px;
  max-width: 560px;
}
.sub-item {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  border-radius: var(--r-sm);
  transition: background .1s, color .1s;
  white-space: nowrap;
  text-decoration: none;
}
.sub-item:hover { background: var(--surf); color: var(--ink); }

/* ── Suggest enhancements ────────────────────────────── */
.suggest { max-height: 420px; display: none; flex-direction: column; }
.suggest.open { display: flex; }
.sug-disc {
  margin-left: auto;
  font-size: 11px; font-weight: 700;
  color: #fff;
  background: #22a55a;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.sug-all {
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink2);
  text-align: center;
  border-top: 1px solid var(--line);
  cursor: pointer;
  background: var(--surf2);
  position: sticky; bottom: 0;
  flex-shrink: 0;
  transition: background .1s, color .1s;
}
.sug-all:hover { background: var(--surf); color: var(--ink); }

/* ── Wunschliste page ────────────────────────────────── */
.wish-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink3);
}
.wish-empty-icon { font-size: 56px; margin-bottom: 16px; }
.wish-empty h2   { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.wish-empty p    { font-size: 14px; margin-bottom: 24px; }
.wish-empty a {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 11px 28px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .12s;
}
.wish-empty a:hover { opacity: .82; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .shop-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 1200px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .grid > .card:first-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .hero-card:first-child { grid-row: auto; }
  .hero-card:nth-child(n+6) { display: flex; }
  .hero-card:nth-child(n+5) { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .shop-hero { padding: 20px 24px; }
  .featured-shops { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 680px) {
  .hero-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hero-card:first-child { grid-row: auto; grid-column: 1 / 3; }
  .hero-card:nth-child(n+4) { display: none; }
  .hero-card-bg { flex: none; height: 120px; }
  .hero-card-init { font-size: 36px; }
  .grid     { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-img { aspect-ratio: 3/2; }  /* keep 3:2 on tablet */
  .card-badge { font-size: 13px; padding: 4px 9px; top: auto; right: auto; bottom: 7px; left: 7px; }
  .card-body { padding: 10px 12px; }
  .card-title { font-size: 13px; -webkit-line-clamp: 2; margin-bottom: 8px; }
  .card-price { font-size: 12px; }
  .srch-hdr { width: 140px; }
  .nav-item { padding: 0 8px; font-size: 12px; }
  .logo     { font-size: 14px; }
  .shop-grid { grid-template-columns: repeat(2,1fr); }
  .shop-hero { flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px; }
  .featured-shops { grid-template-columns: repeat(3,1fr); }
  .az-letter { width: 28px; height: 28px; font-size: 12px; }
}
@media (max-width: 420px) {
  .grid { grid-template-columns: 1fr; }
  .card-img { aspect-ratio: 4/3; }  /* slightly taller on mobile */
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-nl-bar { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-nl-input { width: 220px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-nl-input { width: 180px; }
  .footer-nl-form { flex-direction: column; gap: 8px; }
  .footer-nl-input { border-radius: 8px; border-right: 1px solid rgba(255,255,255,.15); }
  .footer-nl-btn { border-radius: 8px; }
  .footer-bottom { font-size: 11px; gap: 10px; }
}
@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { display: none; }
  .ext-link-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .srch-hdr       { width: 100px; }
  .srch-hdr .srch-btn { display: none; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Hero card logo ──────────────────────────────── */
.hero-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: .3px;
  z-index: 2;
  line-height: 1.3;
}
.hero-card-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}
.hero-card-logo-wrap {
  position: absolute;
  bottom: 10px; left: 10px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.93);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 2;
}
.hero-card-logo-img { width: 34px; height: 34px; object-fit: contain; }

/* ── Home headline ───────────────────────────────── */
.home-headline { padding: 28px 0 8px; }
.home-h1 { font-size: 28px; font-weight: 900; color: var(--ink); line-height: 1.2; margin-bottom: 6px; }
.home-sub { font-size: 14px; color: var(--ink2); }
@media (max-width: 680px) {
  .home-h1 { font-size: 22px; }
  .home-headline { padding: 20px 0 4px; }
}

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 24px; gap: 1px;
}
.trust-num {
  font-size: 18px; font-weight: 800; color: var(--ink);
  letter-spacing: -.5px; line-height: 1.1;
}
.trust-label {
  font-size: 11px; color: var(--ink3); font-weight: 500;
  text-align: center; white-space: nowrap;
}
.trust-div {
  width: 1px; height: 32px; background: var(--line); flex-shrink: 0;
}
@media (max-width: 580px) {
  .trust-div { display: none; }
  .trust-bar-inner { justify-content: space-around; gap: 0; }
  .trust-item { padding: 6px 10px; }
  .trust-num { font-size: 15px; }
}

/* ── Legal Body ───────────────────────────────────── */
.legal-body h2 {
  font-size: 16px; font-weight: 700; color: var(--ink);
  margin: 28px 0 8px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  font-size: 14px; line-height: 1.7; color: var(--ink2);
  margin-bottom: 4px;
}

/* ── How it works ────────────────────────────────── */
.how-section {
  background: var(--surf);
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.how-title {
  text-align: center;
  font-size: 22px; font-weight: 800;
  color: var(--ink);
  margin-bottom: 32px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-grid .how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
}
.how-num {
  width: 48px; height: 48px;
  min-width: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.how-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.how-step p  { font-size: 13px; color: var(--ink2); line-height: 1.6; }
@media (max-width: 680px) {
  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-section { padding: 32px 0; }
}

/* ── Newsletter Inline CTA ──────────────────────── */
.nl-cta-section {
  background: linear-gradient(135deg, #1d1d1f, #2d2d2f);
  padding: 48px 0;
}
.nl-cta-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.nl-cta-text { flex: 1; min-width: 240px; }
.nl-cta-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.nl-cta-sub   { font-size: 13px; color: #c7c7cc; line-height: 1.6; }
.nl-cta-form {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  flex: 1; min-width: 280px;
  position: relative;
}
.nl-cta-form input {
  flex: 1; min-width: 200px;
  padding: 13px 16px;
  border: none; border-radius: var(--r);
  font-size: 14px; font-family: var(--font);
  outline: none;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.nl-cta-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-cta-form input:focus { background: rgba(255,255,255,.18); }
.nl-cta-form button {
  background: #22a55a; color: #fff;
  border: none; border-radius: var(--r);
  padding: 13px 24px; font-size: 14px; font-weight: 700;
  font-family: var(--font); cursor: pointer;
  white-space: nowrap;
  transition: opacity .12s;
}
.nl-cta-form button:hover { opacity: .85; }
.nl-cta-done { color: #22a55a; font-weight: 600; font-size: 14px; }
@media (max-width: 680px) {
  .nl-cta-inner { flex-direction: column; gap: 20px; }
  .nl-cta-section { padding: 32px 0; }
  .nl-cta-form { flex-direction: column; }
  .nl-cta-form input, .nl-cta-form button { width: 100%; }
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font);
  text-align: left;
  transition: background .1s;
}
.faq-q:hover { background: var(--surf); }
.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink3);
  flex-shrink: 0;
  line-height: 1;
}
.faq-a {
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}
.faq-a p { font-size: 14px; color: var(--ink2); line-height: 1.7; padding-top: 14px; }
@media (max-width: 680px) {
  .faq-q { font-size: 14px; padding: 14px 16px; }
  .faq-a  { padding: 0 16px 14px; }
}

/* ── Footer affiliate ───────────────────────────── */
.footer-affiliate {
  font-size: 11px; color: #6e6e73;
  text-align: center;
  padding: 10px 0 4px;
  border-top: 1px solid #3a3a3c;
  margin-top: 12px;
}

/* ── Cookie Banner ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1d1d1f;
  color: #f5f5f7;
  padding: 16px 20px;
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.cookie-banner p { flex: 1; min-width: 220px; margin: 0; color: #c7c7cc; }
.cookie-banner p a { color: #f5f5f7; text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: #22a55a; color: #fff;
  border: none; border-radius: 8px;
  padding: 9px 20px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: opacity .12s;
}
.cookie-accept:hover { opacity: .85; }
.cookie-decline {
  background: transparent; color: #c7c7cc;
  border: 1px solid #3a3a3c; border-radius: 8px;
  padding: 9px 16px; font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: var(--font);
  transition: border-color .12s;
}
.cookie-decline:hover { border-color: #86868b; color: #f5f5f7; }

/* ── Back to Top ──────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 24px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  font-size: 18px;
  font-family: var(--font);
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-3px); }
@media (max-width: 680px) {
  .cookie-banner { padding: 14px 16px; font-size: 12px; }
  .back-top { bottom: 72px; right: 14px; width: 40px; height: 40px; font-size: 16px; }
}

/* ── Card Fire Badge ─────────────────────────────── */
.card-badge-fire {
  background: linear-gradient(135deg, #ff4500, #ff8c00);
  color: #fff;
}

/* ── Shop Page Hot Section ───────────────────────── */
.hot-deals-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #e53e3e;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ── Marken Anchor Jump ──────────────────────────── */
.marken-cat { scroll-margin-top: 80px; }

/* ── Category nav on shops/marken sticky at top ─── */
.cats-sticky {
  position: sticky;
  top: 56px;
  z-index: 50;
  background: #fff;
}

/* ── Newsletter Page ─────────────────────────────── */
.nl-page-success {
  text-align: center;
  padding: 60px 20px;
}
.nl-page-check {
  width: 64px; height: 64px;
  background: #22a55a; color: #fff;
  border-radius: 50%;
  font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.nl-page-success h1 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.nl-page-success p { font-size: 15px; color: var(--ink2); margin-bottom: 24px; }
.nl-page-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  transition: opacity .12s;
}
.nl-page-btn:hover { opacity: .85; }
.nl-page-features { display: flex; flex-direction: column; gap: 14px; }
.nl-page-feat { display: flex; align-items: flex-start; gap: 14px; }
.nl-page-feat-icon { font-size: 20px; flex-shrink: 0; padding-top: 2px; }
.nl-page-feat strong { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.nl-page-feat span { font-size: 13px; color: var(--ink2); }
.nl-page-form {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 440px;
}
.nl-page-form input[type="email"] {
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color .12s;
  background: #fff;
}
.nl-page-form input:focus { border-color: var(--accent); }
.nl-page-form button {
  padding: 13px 24px;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: var(--font);
  transition: opacity .12s;
}
.nl-page-form button:hover { opacity: .88; }
.nl-page-form small { font-size: 12px; color: var(--ink3); line-height: 1.5; }
.nl-page-form small a { color: var(--ink3); }
.nl-page-error { color: #e53e3e; font-size: 13px; padding: 0; margin: 0; }
.nl-page-stats { background: var(--surf); border-radius: var(--r); padding: 20px; }

/* ── Individual Deal Page ────────────────────────── */
.deal-hero {
  display: flex; align-items: flex-start; gap: 20px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px; margin-top: 16px;
}
.deal-hero-shop {
  width: 90px; height: 90px; flex-shrink: 0;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.deal-hero-logo-frame {
  width: 66px; height: 66px;
  background: rgba(255,255,255,.9);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.deal-hero-logo-img {
  width: 50px; height: 50px; object-fit: contain;
}
.deal-hero-init {
  font-size: 26px; font-weight: 900;
  color: rgba(255,255,255,.9); letter-spacing: -1px;
}
.deal-hero-body { flex: 1; min-width: 0; }
.deal-hero-brand {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--ink3); display: block; margin-bottom: 6px;
}
.deal-hero-brand a { color: var(--accent); text-decoration: none; }
.deal-hero-title {
  font-size: 20px; font-weight: 800; color: var(--ink);
  line-height: 1.3; margin: 0 0 8px;
}
.deal-hero-badge {
  display: inline-block;
  background: #e53935; color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 4px 12px; border-radius: 5px;
  margin-right: 8px;
}
.deal-expiry {
  display: inline-block;
  font-size: 12px; color: var(--ink3);
  background: #f7f8fa; border-radius: 4px;
  padding: 3px 8px;
}
.deal-expiry-urgent { color: #e53e3e; background: #fff5f5; }
.deal-code-wrap {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 22px;
}
.deal-code-box {
  background: #f7f8fa; border: 2px dashed #d0d4de;
  border-radius: 10px; padding: 16px 18px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.deal-code-text {
  font-size: 22px; font-weight: 900; color: var(--ink);
  letter-spacing: 3px; font-variant-numeric: tabular-nums;
}
.deal-code-copy-btn {
  flex-shrink: 0;
  background: var(--ink); color: #fff; border: none;
  border-radius: 8px; padding: 10px 18px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font); transition: background .12s;
  white-space: nowrap;
}
.deal-code-copy-btn:hover { opacity: .84; }
.deal-goto-btn {
  display: block; text-align: center;
  background: var(--accent); color: #fff;
  padding: 14px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 800;
  text-decoration: none; transition: opacity .12s;
  margin-bottom: 10px;
}
.deal-goto-btn:hover { opacity: .9; color: #fff; }
.deal-hint {
  font-size: 12px; color: var(--ink3); text-align: center; margin: 0;
}
.deal-uses-note {
  font-size: 12px; color: var(--ink3);
  text-align: center; margin: 8px 0 0;
}
.deal-desc h2 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.deal-desc p { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; }
.deal-back-shop {
  font-size: 14px; font-weight: 600; color: var(--ink2);
  text-decoration: none;
}
.deal-back-shop:hover { color: var(--accent); }
.related-coupons-list {
  display: flex; flex-direction: column; gap: 8px;
}
.rc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); text-decoration: none;
  transition: border-color .12s;
}
.rc-item:hover { border-color: var(--accent); }
.rc-badge {
  flex-shrink: 0;
  font-size: 11px; font-weight: 800; color: #e53935;
  background: #fff5f5; padding: 3px 8px; border-radius: 4px;
  min-width: 56px; text-align: center;
}
.rc-title {
  flex: 1; font-size: 13px; font-weight: 500; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rc-code-chip {
  font-size: 9px; font-weight: 800; color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.3); padding: 2px 5px; border-radius: 3px;
  letter-spacing: .5px; text-transform: uppercase;
}
.rc-cta {
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--accent);
}
.crow-title-link {
  color: var(--ink); text-decoration: none; font-weight: 700;
  transition: color .12s;
}
.crow-title-link:hover { color: var(--accent); }
@media (max-width: 600px) {
  .deal-hero { flex-direction: column; gap: 14px; }
  .deal-hero-shop { width: 72px; height: 72px; }
  .deal-hero-title { font-size: 16px; }
  .deal-code-text { font-size: 18px; letter-spacing: 2px; }
}

/* ── Pagination ──────────────────────────────────── */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.pag-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; background: #fff;
  transition: border-color .12s, background .12s;
}
.pag-btn:hover { border-color: var(--accent); color: var(--accent); }
.pag-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.pag-btn-dim { color: var(--ink3); pointer-events: none; }

/* ── Deal Reveal Modal ───────────────────────────── */
.deal-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1200;
  opacity: 0; pointer-events: none;
  transition: opacity .22s;
}
.deal-modal-overlay.open { opacity: 1; pointer-events: auto; }
.deal-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(.95);
  width: min(460px, 94vw);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.26);
  z-index: 1201;
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  overflow: hidden;
}
.deal-modal.open {
  opacity: 1; pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.deal-modal-head {
  padding: 28px 20px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; min-height: 110px;
}
.deal-modal-close {
  position: absolute; top: 12px; right: 14px;
  background: rgba(255,255,255,.25); border: none;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 16px; line-height: 1; cursor: pointer;
  color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .12s;
}
.deal-modal-close:hover { background: rgba(255,255,255,.4); }
.deal-modal-logo-frame {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.22); overflow: hidden;
}
.deal-modal-logo-frame img {
  width: 42px; height: 42px; object-fit: contain;
}
.deal-modal-init {
  font-size: 20px; font-weight: 900;
  color: rgba(255,255,255,.9); letter-spacing: -1px;
}
.deal-modal-shop-name {
  font-size: 15px; font-weight: 800; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.deal-modal-body { padding: 18px 22px 22px; }
.deal-modal-title {
  font-size: 14px; font-weight: 600; color: var(--ink);
  line-height: 1.45; text-align: center; margin: 0 0 6px;
}
.deal-modal-discount {
  font-size: 13px; font-weight: 800; color: #e53935;
  text-align: center; margin: 0 0 14px; letter-spacing: -.1px;
}
.deal-modal-code-box {
  background: #f7f8fa; border: 2px dashed #d0d4de;
  border-radius: 10px; padding: 13px 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 12px;
}
.deal-modal-code-text {
  font-size: 18px; font-weight: 900; color: var(--ink);
  letter-spacing: 2px; word-break: break-all; line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.deal-modal-copy-btn {
  flex-shrink: 0;
  background: var(--ink); color: #fff; border: none;
  border-radius: 8px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; cursor: pointer;
  font-family: var(--font); transition: opacity .12s; white-space: nowrap;
}
.deal-modal-copy-btn:hover { opacity: .84; }
.deal-modal-copy-btn.copied { background: #22a55a; }
.deal-modal-cta {
  display: block; width: 100%; background: var(--accent); color: #fff;
  text-align: center; padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 800; text-decoration: none;
  transition: opacity .12s; margin-bottom: 8px;
}
.deal-modal-cta:hover { opacity: .9; color: #fff; }
.deal-modal-hint {
  font-size: 11px; color: var(--ink3); text-align: center; margin: 0;
}
@media (max-width: 600px) {
  .deal-modal {
    top: auto; bottom: 0; left: 0;
    transform: translateY(30px);
    width: 100%; border-radius: 18px 18px 0 0;
  }
  .deal-modal.open { transform: translateY(0); top: auto; left: 0; }
}

/* ── Deal of the Day ─────────────────────────────── */
.dotd-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.dotd-countdown {
  background: #fff8f0; border: 1.5px solid #fde8c2;
  border-radius: var(--r); padding: 14px 20px;
  text-align: center; min-width: 160px;
}
.dotd-cdown-label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--ink3); text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 6px;
}
.dotd-cdown-timer {
  font-size: 30px; font-weight: 900; color: var(--ink);
  letter-spacing: 3px; font-variant-numeric: tabular-nums;
}
.dotd-main {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden;
}
.dotd-main-img {
  min-height: 280px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px; padding: 28px; position: relative;
}
.dotd-main-logo-frame {
  width: 120px; height: 120px; background: #fff;
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  padding: 10px;
}
.dotd-main-logo-img { max-width: 100%; max-height: 100%; object-fit: contain; }
.dotd-main-init {
  font-size: 52px; font-weight: 900; color: rgba(255,255,255,.9);
}
.dotd-badge {
  background: #fff; color: #e53935;
  font-size: 14px; font-weight: 900;
  padding: 6px 14px; border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.dotd-main-body {
  padding: 28px 32px; display: flex; flex-direction: column; gap: 10px;
}
.dotd-shop-name { font-size: 12px; font-weight: 600; color: var(--ink3); }
.dotd-shop-name a { color: var(--ink3); text-decoration: none; }
.dotd-shop-name a:hover { color: var(--accent); }
.dotd-main-body .dotd-title { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.3; margin: 0; }
.dotd-desc { font-size: 13px; color: var(--ink2); line-height: 1.5; margin: 0; }
.dotd-code-row {
  display: flex; gap: 10px; align-items: center;
  background: #f7f8fa; border: 2px dashed #d0d4de;
  border-radius: 10px; padding: 12px 14px;
}
.dotd-code-box {
  flex: 1; font-size: 20px; font-weight: 900; color: var(--ink);
  letter-spacing: 3px; font-variant-numeric: tabular-nums;
}
.dotd-copy-btn {
  flex-shrink: 0; background: var(--ink); color: #fff;
  border: none; border-radius: 8px; padding: 10px 16px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  font-family: var(--font); transition: background .15s;
}
.dotd-copy-btn:hover { opacity: .84; }
.dotd-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.dotd-goto-btn {
  background: var(--accent); color: #fff;
  text-decoration: none; padding: 14px 28px;
  border-radius: 10px; font-size: 15px; font-weight: 800;
  transition: opacity .12s;
}
.dotd-goto-btn:hover { opacity: .9; color: #fff; }
.dotd-details-link { font-size: 13px; font-weight: 600; color: var(--accent); }
.dotd-uses { font-size: 12px; color: var(--ink3); margin: 0; }
@media (max-width: 780px) {
  .dotd-main { grid-template-columns: 1fr; }
  .dotd-main-img { min-height: 180px; }
  .dotd-main-body { padding: 20px; }
  .dotd-title { font-size: 17px; }
  .dotd-code-box { font-size: 16px; }
  .dotd-countdown { width: 100%; }
}

/* ── About Page Stats ────────────────────────────── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  background: #fff;
}
.about-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px; text-align: center;
}
.about-stat-num {
  font-size: 28px; font-weight: 900; color: var(--ink); letter-spacing: -1px;
}
.about-stat-label {
  font-size: 12px; color: var(--ink3); font-weight: 500;
}
@media (max-width: 680px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat-num { font-size: 22px; }
}

/* ── Blog ────────────────────────────────────────── */
.blog-list-head { display: flex; flex-direction: column; gap: 4px; }

.blog-featured-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: #fff; text-decoration: none;
  transition: box-shadow .15s;
}
.blog-featured-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.10); }
.blog-feat-img {
  min-height: 300px; background-size: cover; background-position: center;
}
.blog-feat-body {
  padding: 32px 28px; display: flex; flex-direction: column; gap: 10px;
}
.blog-cat-chip {
  display: inline-block; padding: 3px 10px;
  background: var(--accent); color: #fff;
  border-radius: 100px; font-size: 11px; font-weight: 700;
  text-decoration: none; width: fit-content;
}
.blog-cat-chip-sm { font-size: 10px; padding: 2px 8px; }
.blog-feat-title { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1.3; margin: 0; }
.blog-feat-excerpt { font-size: 14px; color: var(--ink2); line-height: 1.6; margin: 0; flex: 1; }
.blog-curator { font-size: 12px; color: var(--ink2); margin-top: 10px; display: flex; align-items: center; gap: 7px; font-weight: 500; }
.blog-curator-img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--accent); margin-top: auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; background: #fff; text-decoration: none;
  display: flex; flex-direction: column;
  transition: box-shadow .15s;
}
.blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background-size: cover; background-position: center;
}
.blog-card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.blog-card-title { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.35; margin: 0; }
.blog-card-excerpt { font-size: 13px; color: var(--ink2); line-height: 1.5; margin: 0; flex: 1; }
.blog-card-cta { font-size: 12px; font-weight: 700; color: var(--accent); margin-top: auto; }

/* Blog Post Single */
.bp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.bp-main { min-width: 0; }
.bp-hero-img { width: 100%; border-radius: var(--r); overflow: hidden; }
.bp-hero-photo { width: 100%; max-height: 440px; object-fit: cover; display: block; }
.bp-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bp-date { font-size: 12px; color: var(--ink3); }
.bp-readtime { font-size: 12px; color: var(--ink3); }
.bp-title { font-size: 28px; font-weight: 900; color: var(--ink); line-height: 1.25; margin: 0; }
.bp-excerpt { font-size: 16px; color: var(--ink2); line-height: 1.6; margin: 0; border-left: 3px solid var(--accent); padding-left: 14px; }

/* Content formatting */
.bp-content h2 { font-size: 20px; font-weight: 800; color: var(--ink); margin: 28px 0 12px; }
.bp-content h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 20px 0 8px; }
.bp-content p  { font-size: 15px; color: var(--ink2); line-height: 1.7; margin: 0 0 14px; }
.bp-content ul { padding-left: 20px; margin: 0 0 14px; }
.bp-content ul li { font-size: 15px; color: var(--ink2); line-height: 1.6; margin-bottom: 6px; }
.bp-content ol { padding-left: 20px; margin: 0 0 14px; }
.bp-content ol li { font-size: 15px; color: var(--ink2); line-height: 1.6; margin-bottom: 6px; }
.bp-content strong { color: var(--ink); }
.bp-inline-img { width: 100%; border-radius: var(--r-sm); margin: 16px 0; object-fit: cover; max-height: 280px; }
.bp-related-images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }

.bp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.bp-tag {
  padding: 4px 10px; border: 1px solid var(--line);
  border-radius: 100px; font-size: 11px; color: var(--ink2);
  text-decoration: none; transition: border-color .12s;
}
.bp-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Sidebar */
.bp-sidebar { position: sticky; top: 80px; }
.bp-sidebar-box {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px;
}
.bp-sidebar-head { font-size: 13px; font-weight: 800; color: var(--ink); margin: 0 0 12px; text-transform: uppercase; letter-spacing: .5px; }
.bp-deal-list { display: flex; flex-direction: column; gap: 8px; }
.bp-deal-row {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 8px;
  border-radius: var(--r-sm); transition: background .1s;
}
.bp-deal-row:hover { background: var(--bg); }
.bp-deal-logo {
  width: 40px; height: 40px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: rgba(255,255,255,.9);
  overflow: hidden; padding: 4px;
}
.bp-deal-info { display: flex; flex-direction: column; gap: 2px; }
.bp-deal-shop { font-size: 12px; font-weight: 600; color: var(--ink); }
.bp-deal-badge { font-size: 11px; font-weight: 800; color: #e53935; }
.bp-all-deals-link { display: block; font-size: 12px; font-weight: 600; color: var(--accent); text-decoration: none; }
.bp-related-row {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.bp-related-row:last-child { border-bottom: none; }
.bp-rel-thumb {
  width: 56px; height: 42px; flex-shrink: 0;
  background-size: cover; background-position: center;
  border-radius: 6px;
}
.bp-rel-title { font-size: 12px; font-weight: 600; color: var(--ink); line-height: 1.4; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-feat-img { min-height: 200px; }
  .bp-layout { grid-template-columns: 1fr; }
  .bp-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .bp-title { font-size: 22px; }
}

/* ── Direct-Codes Section ─────────────────────────── */
.direct-codes-section { padding: 32px 0 20px; border-top: 1px solid var(--line); }
.direct-codes-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.direct-codes-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  background: #e8f5e9; color: #2e7d32; border-radius: 20px; padding: 3px 10px;
}
.direct-codes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.direct-code-card {
  background: var(--card); border-radius: 14px;
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.direct-code-card { text-decoration: none; color: inherit; display: block; }
.direct-code-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,.13); transform: translateY(-1px); transition: all .15s; }
.direct-code-img {
  height: 100px; position: relative; overflow: hidden; background: #e8eaed;
}
.direct-img-tag { width: 100%; height: 100%; object-fit: cover; display: block; }
.direct-code-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 20px;
}
.direct-code-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.direct-code-shop { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.direct-code-title { font-size: 12px; color: var(--ink); margin: 0; line-height: 1.4; }
.direct-code-row { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.direct-code-val {
  font-family: monospace; font-size: 12px; font-weight: 900; letter-spacing: 1px;
  background: #f0f4f8; border-radius: 6px; padding: 5px 8px;
  color: var(--ink); flex: 1; text-align: center; min-width: 0; overflow: hidden;
}
.direct-code-cta {
  background: var(--accent); color: #fff;
  border-radius: 8px; padding: 6px 10px;
  font-size: 11px; font-weight: 700;
  font-family: var(--font); white-space: nowrap;
  flex-shrink: 0; min-width: 0;
}
@media (max-width: 900px) { .direct-codes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .direct-codes-grid { grid-template-columns: 1fr 1fr; } }

/* ── Kategorie-Sektionen (Groupon-Style) ─────────── */
.cat-section {
  padding: 28px 0 4px;
  border-top: 1px solid var(--line);
}
.cat-section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cat-section-title {
  font-size: 17px; font-weight: 800;
  color: var(--ink); letter-spacing: -.3px;
}
.cat-section-all {
  font-size: 12px; font-weight: 700;
  color: var(--ink3); text-decoration: none;
}
.cat-section-all:hover { color: var(--ink); }
.cat-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 900px) { .cat-section-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .cat-section-grid { grid-template-columns: 1fr 1fr; gap: 10px; } }

/* ── Kategorie Hero Banner ───────────────────────── */
.kat-hero-banner {
  background-size: cover; background-position: center;
  position: relative; min-height: 220px;
  display: flex; align-items: flex-end;
}
.kat-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.72) 100%);
}
.kat-hero-inner { position: relative; z-index: 1; padding: 24px 0 32px; width: 100%; }
.kat-hero-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}
.kat-hero-pill {
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,.18); color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,.3); transition: background .15s;
}
.kat-hero-pill:hover { background: rgba(255,255,255,.32); }
.kat-hero-pill.active { background: #fff; color: var(--ink); border-color: #fff; }
.kat-hero-h1 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 8px; line-height: 1.15; }
.kat-hero-p { font-size: 14px; color: rgba(255,255,255,.85); max-width: 560px; margin-bottom: 16px; line-height: 1.5; }
.kat-hero-stats { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.kat-stat { font-size: 13px; color: rgba(255,255,255,.9); }
.kat-stat strong { color: #fff; }
.kat-stat-sep { color: rgba(255,255,255,.5); }
.kat-top-badge {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 800; padding: 3px 8px;
  border-radius: 20px; letter-spacing: .5px;
}
@media (max-width: 600px) {
  .kat-hero-h1 { font-size: 24px; }
  .kat-hero-banner { min-height: 180px; }
}

/* ── Auth / Login ───────────────────────────────── */
.auth-box { background:#fff; border:1px solid var(--line); border-radius:16px; padding:36px 32px; margin:0 auto; }
.auth-title { font-size:24px; font-weight:900; color:var(--ink); margin-bottom:8px; }
.auth-sub { font-size:14px; color:var(--ink2); margin-bottom:24px; line-height:1.5; }
.auth-tabs { display:flex; border-bottom:1px solid var(--line); margin-bottom:24px; }
.auth-tab { flex:1; text-align:center; padding:10px; font-size:14px; font-weight:600; color:var(--ink3); text-decoration:none; border-bottom:2px solid transparent; margin-bottom:-1px; }
.auth-tab.active { color:var(--accent); border-bottom-color:var(--accent); }
.auth-field { margin-bottom:16px; }
.auth-field label { display:block; font-size:12px; font-weight:600; color:var(--ink2); margin-bottom:6px; }
.auth-field input { width:100%; padding:11px 14px; border:1px solid var(--line); border-radius:8px; font-size:14px; outline:none; transition:border .15s; }
.auth-field input:focus { border-color:var(--accent); }
.auth-btn { width:100%; padding:13px; background:var(--accent); color:#fff; border:none; border-radius:8px; font-size:15px; font-weight:700; cursor:pointer; margin-top:4px; }
.auth-divider { text-align:center; margin:20px 0; position:relative; }
.auth-divider::before { content:''; position:absolute; top:50%; left:0; right:0; height:1px; background:var(--line); }
.auth-divider span { background:#fff; padding:0 12px; font-size:12px; color:var(--ink3); position:relative; }
.auth-social-btn { width:100%; padding:11px; border:1px solid var(--line); border-radius:8px; font-size:14px; font-weight:600; cursor:pointer; display:flex; align-items:center; justify-content:center; gap:10px; background:#fff; color:var(--ink); }
.auth-switch { text-align:center; font-size:13px; color:var(--ink2); margin-top:20px; }
.auth-switch a { color:var(--accent); font-weight:600; }
.auth-note { text-align:center; font-size:11px; color:var(--ink3); margin-top:16px; line-height:1.5; }
.wish-login-prompt { max-width:440px; margin:60px auto; padding:0 16px; }

/* ── Direct Codes ───────────────────────────────── */
.direct-codes-list { display: flex; flex-direction: column; gap: 10px; }
.direct-code-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 12px 16px; }
.direct-code-meta { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.dc-badge-manual { background: #e8f5e9; color: #2e7d32; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.dc-badge-scraped { background: #e3f2fd; color: #1565c0; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; white-space: nowrap; }
.dc-title { font-size: 13px; color: var(--ink2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-copy-btn { padding: 8px 16px; background: var(--surf); border: 2px dashed var(--line); border-radius: 8px; font-size: 13px; font-weight: 700; font-family: var(--mono); cursor: pointer; white-space: nowrap; color: var(--ink); transition: all .15s; }
.dc-copy-btn:hover { border-color: var(--accent); color: var(--accent); background: #fff8f4; }
.dc-copy-btn.dc-masked { border-style: solid; color: var(--muted); letter-spacing: 1px; }
.dc-copy-btn.dc-masked:hover { border-color: var(--accent); color: var(--accent); background: #fff8f4; }

/* ── PWA Install Banner ──────────────────────────────── */
.pwa-banner {
  position: fixed; bottom: 12px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 24px); max-width: 420px;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.14); padding: 10px 12px;
  display: flex; align-items: center; gap: 10px; z-index: 9999;
  animation: pwaSlideUp .3s ease;
}
@keyframes pwaSlideUp { from { transform: translateX(-50%) translateY(100px); opacity:0; } to { transform: translateX(-50%) translateY(0); opacity:1; } }
.pwa-banner-icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.pwa-banner-text { flex: 1; min-width: 0; }
.pwa-banner-text strong { display: block; font-size: 13px; font-weight: 700; color: #1d1d1f; line-height: 1.3; }
.pwa-banner-text span { font-size: 11px; color: #6e6e73; line-height: 1.3; }
.pwa-banner-btn { background: #e05c00; color: #fff; border: none; border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; }
.pwa-banner-close { background: none; border: none; font-size: 20px; color: #999; cursor: pointer; padding: 4px 8px; line-height: 1; }

/* ── App Landing Page ────────────────────────────────── */
.app-hero { text-align: center; padding: 48px 16px 32px; max-width: 560px; margin: 0 auto; }
.app-hero-icon img { border-radius: 22px; box-shadow: 0 8px 32px rgba(224,92,0,.25); }
.app-hero-h1 { font-size: clamp(24px,4vw,36px); font-weight: 800; margin: 20px 0 10px; color: #1d1d1f; }
.app-hero-sub { font-size: 16px; color: #6e6e73; margin: 0 0 28px; line-height: 1.5; }
.app-install-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e05c00; color: #fff; border: none; border-radius: 12px;
  padding: 14px 32px; font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 4px 16px rgba(224,92,0,.3); transition: transform .15s, box-shadow .15s;
}
.app-install-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,92,0,.4); }
.app-install-btn:disabled { background: #999; box-shadow: none; cursor: default; transform: none; }
.app-install-note { font-size: 13px; color: #6e6e73; margin-top: 12px; }
.app-features-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; max-width: 640px; margin: 0 auto; padding: 0 16px; }
.app-feature-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 16px; padding: 24px 20px; text-align: center; }
.app-feature-icon { font-size: 32px; margin-bottom: 12px; }
.app-feature-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; color: #1d1d1f; }
.app-feature-card p { font-size: 13px; color: #6e6e73; margin: 0; line-height: 1.5; }
.app-how { max-width: 560px; margin: 0 auto; padding: 0 16px; }
.app-how h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.app-how-steps { display: flex; flex-direction: column; gap: 16px; }
.app-how-step { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #e0e0e0; border-radius: 12px; padding: 18px; }
.app-how-num { width: 32px; height: 32px; border-radius: 50%; background: #e05c00; color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-how-step strong { font-size: 14px; display: block; margin-bottom: 4px; color: #1d1d1f; }
.app-how-step p { margin: 0; font-size: 13px; color: #6e6e73; line-height: 1.5; }
@media (max-width: 480px) { .app-features-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }


/* ── Autor-Attribution (Gefunden von) ───────────────── */
.card-curator {
  display: flex; align-items: center; gap: 6px;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--ink3);
}
.card-curator-img {
  width: 22px; height: 22px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--line);
}
.card-curator strong { color: var(--ink2); font-weight: 600; }

/* ── Theme-Sektionen (Groupon-Style) ────────────────── */
.theme-section { padding: 32px 0 0; }
.theme-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.theme-section-title {
  font-size: 18px; font-weight: 800; color: var(--ink);
  margin: 0; display: flex; align-items: center; gap: 10px;
}
.theme-label-chip {
  background: #fff3ec; color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  border: 1px solid #f9d5c0;
}
.theme-section-all {
  font-size: 13px; font-weight: 600; color: var(--accent);
  text-decoration: none; white-space: nowrap;
}
.theme-section-all:hover { text-decoration: underline; }
.theme-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .theme-section-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 479px) {
  .theme-section-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .theme-section-title { font-size: 15px; }
}

/* ── Mobile Header (Groupon-Style) ──────────────── */
.hdr-row2-search {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 8px 0;
}
.srch-mobile {
  display: flex; align-items: center; gap: 0;
  background: #fff; border-radius: 8px;
  border: 1.5px solid var(--line);
  overflow: hidden;
  height: 40px;
}
.srch-mobile input {
  flex: 1; border: none; outline: none;
  padding: 0 12px; font-size: 14px; background: transparent;
}
.srch-mobile .srch-btn {
  background: var(--accent); color: #fff; border: none;
  width: 38px; height: 38px; border-radius: 50%;
  padding: 0; flex-shrink: 0; margin: 1px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 768px) {
  /* Header Zeile 1: Accent-Farbe, Hamburger links, Logo mitte, Icons rechts */
  .hdr { background: var(--accent); }
  .hdr-row1 {
    display: grid;
    grid-template-columns: 44px 44px 1fr auto;
    align-items: center;
    height: 52px; gap: 0; padding: 0 4px 0 0;
  }
  .hamburger-btn {
    display: flex !important;
    padding: 10px; margin: 0;
    color: #fff; min-width: 44px; min-height: 44px;
    justify-content: center; align-items: center;
  }
  .hamburger-btn span { background: #fff; width: 20px; }
  .logo {
    grid-column: 3;
    display: flex; align-items: center; justify-content: center;
    color: #fff !important; font-size: 17px; font-weight: 900;
    text-decoration: none; gap: 6px;
    white-space: nowrap;
  }
  .logo-img { height: 26px; filter: none; }
  .hdr-right {
    grid-column: 4;
    display: flex; align-items: center;
    justify-content: flex-end; gap: 2px;
    padding-right: 4px;
  }
  .hdr-icon-btn { color: #fff !important; width: 38px; height: 38px; }
  .hdr-icon-btn svg { stroke: #fff; }
  .bell-dot { background: #fff; border: 1px solid var(--accent); }
  /* Search verstecken in Row1, zeigen in Row2 */
  .srch-hdr { display: none !important; }
  .hdr-row2-search { display: block; }
  /* Cat-Nav sichtbar auf Mobile (Groupon-Style) */
  .cat-nav { display: block !important; }
  .cat-nav-inner { scrollbar-width: none; }
}

/* ── Notif-Thumbnail (Groupon-Style) ─────────────── */
.notif-thumb {
  width: 72px; height: 56px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  background: var(--surf);
  display: flex; align-items: center; justify-content: center;
}
.notif-thumb-img {
  width: 100%; height: 100%; object-fit: cover;
}
.notif-thumb-logo {
  width: 44px; height: 44px; object-fit: contain; border-radius: 4px;
}
.notif-thumb-init {
  font-size: 15px; font-weight: 800; color: var(--ink2);
}
.notif-code {
  display: inline-block; margin-top: 2px;
  font-size: 11px; font-weight: 700; color: #1a7340;
  background: #e8f5e9; padding: 1px 6px; border-radius: 4px;
}
.hero-split-badge-link {
  text-decoration: none; color: #fff;
}

/* ── Mobile-Only User-Icon ───────────────────────── */
.hdr-mob-user { display: none; }
@media (max-width: 768px) {
  .hdr-mob-user { display: flex !important; }
}
