  :root {
    --bg: #ffffff;
    --bg-soft: #fafafa;
    --bg-card: #ffffff;
    --text: #15151a;
    --text-muted: #5b5b65;
    --border: #ececef;
    --accent: #ff5b1f;
    --accent-dark: #e64a10;
    --accent-text: #a13209;   /* AA-konform auf weiß (5.5:1) — für Text auf hellem Hintergrund */
    --accent-soft: #fff1ea;
    --radius: 16px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(20,20,30,.04), 0 2px 8px rgba(20,20,30,.04);
    --shadow-md: 0 6px 24px rgba(20,20,30,.08);
    --max: 1100px;
  }

  * { box-sizing: border-box; }

  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;          /* verhindert seitliches Scrollen, ohne Sticky zu brechen */
  }
  body { overflow-x: hidden; } /* Fallback für ältere Browser */

  a { color: var(--accent); text-decoration: none; }
  a:hover { text-decoration: underline; }

  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- NAV ---------- */
  header.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .brand:hover { text-decoration: none; }
  .brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 17px;
    flex-shrink: 0;
  }
  .brand-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
  }
  footer .brand-logo-img {
    background: #fff;
    border-radius: 6px;
    padding: 2px;
  }
  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .brand-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
  }
  .brand-by {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
  }
  .brand-by img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    vertical-align: middle;
  }
  /* Footer brand variant */
  footer .brand-name { color: #fff; }
  footer .brand-by { color: rgba(255,255,255,.55); }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links a:hover { color: var(--text); text-decoration: none; }
  @media (max-width: 720px) { .nav-links { display: none; } }

  /* ---------- HERO ---------- */
  .hero {
    padding: 48px 0 20px;
    text-align: center;
    background:
      radial-gradient(1100px 500px at 50% -10%, var(--accent-soft) 0%, transparent 60%),
      var(--bg);
  }
  @media (max-width: 720px) {
    .hero { padding: 28px 0 24px; }
  }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-text);   /* AA-Kontrast auf hellem Hintergrund */
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 22px;
  }
  .badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(255,91,31,.18);
    animation: pulse 1.8s infinite ease-in-out;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,91,31,.4); }
    50% { box-shadow: 0 0 0 8px rgba(255,91,31,0); }
  }

  h1 {
    font-size: clamp(34px, 6vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    font-weight: 800;
  }
  h1 .accent { color: var(--accent); }

  .lede {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--text-muted);
  }
  @media (max-width: 720px) {
    .lede { margin: 0 auto 20px; }
  }

  .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .18s ease, color .18s ease, border-color .18s ease;
  }
  .btn-primary {
    background: var(--accent);
    color: #fff;
  }
  .btn-primary:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
  .btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: var(--border);
  }
  .btn-secondary:hover { background: var(--bg-soft); text-decoration: none; }

  /* ---------- COUNTDOWN (kompakt) ---------- */
  .countdown-section {
    padding: 24px 0 32px;
  }
  .countdown-card {
    background: linear-gradient(135deg, #15151a 0%, #2a2a35 100%);
    color: #fff;
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .countdown-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    background: radial-gradient(500px 140px at 50% -20%, rgba(255,91,31,.25), transparent 60%);
    pointer-events: none;
  }
  .countdown-info { position: relative; z-index: 1; }
  .countdown-label {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10.5px;
    color: rgba(255,255,255,.6);
    font-weight: 600;
    margin-bottom: 2px;
  }
  .countdown-title {
    font-size: clamp(15px, 2vw, 18px);
    margin: 0;
    font-weight: 700;
  }
  .countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(54px, auto));
    gap: 6px;
    position: relative;
    z-index: 1;
  }
  .cd-cell {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    min-width: 54px;
  }
  .cd-num {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }
  .cd-label {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.55);
    margin-top: 4px;
  }
  .cd-link {
    position: relative;
    z-index: 1;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
  }
  .cd-link:hover { color: #fff; text-decoration: none; }
  .cd-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }
  .cd-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    transition: background .15s, transform .1s;
  }
  .cd-share:hover { background: rgba(255,255,255,0.12); }
  .cd-share:active { transform: scale(0.97); }
  .cd-share-wa {
    background: rgba(37, 211, 102, 0.10);
    border-color: rgba(37, 211, 102, 0.35);
    color: rgba(255,255,255,0.92);
  }
  .cd-share-wa svg { color: #25D366; }
  .cd-share-wa:hover {
    background: rgba(37, 211, 102, 0.18);
    border-color: rgba(37, 211, 102, 0.55);
  }
  .cd-share svg { flex-shrink: 0; }
  @media (max-width: 720px) {
    .countdown-card { justify-content: center; text-align: center; }
    .countdown-info, .cd-link { width: 100%; text-align: center; }
    .cd-actions { width: 100%; justify-content: center; }
  }
  .cd-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    margin-top: 10px;
  }

  /* ---------- EINZELLINKS / PRODUCTS ---------- */
  .deals {
    background: #fff;
    padding-top: 30px;
  }
  /* ---------- AKTION AUF EINEN BLICK ---------- */
  .aktion-panel {
    max-width: 980px;
    margin: 0 auto 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 32px -20px rgba(0, 0, 0, .35);
  }
  .aktion-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 20px 26px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff3239 100%);
    color: #fff;
  }
  .aktion-hero-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 3px;
  }
  .aktion-hero-title {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
  }
  .aktion-hero-badge {
    background: #fff;
    color: var(--accent-text);
    padding: 9px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
  }
  .aktion-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 22px 24px;
  }
  .aktion-fact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 16px;
  }
  .aktion-fact-ico { font-size: 22px; line-height: 1; }
  .aktion-fact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .aktion-fact-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
  }
  .aktion-fact-plus {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-dark);
  }
  .aktion-fact-hint { font-size: 12px; color: var(--text-muted); }
  .aktion-fact code {
    display: inline-block;
    background: #fff;
    border: 1px solid var(--border);
    padding: 3px 11px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-dark);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .03em;
  }
  .aktion-photos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
  }
  .aktion-photos-label { font-size: 13px; font-weight: 700; color: var(--text); }
  .aktion-photos-strip { display: flex; gap: 8px; flex-wrap: wrap; }
  .aktion-photos-strip img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 4px;
  }
  .aktion-photos-count { font-size: 13px; color: var(--text-muted); font-weight: 600; }
  @media (max-width: 880px) {
    .aktion-facts { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .aktion-hero { padding: 18px; }
    .aktion-hero-title { font-size: 21px; }
    .aktion-facts { grid-template-columns: 1fr; padding: 16px; }
    .aktion-photos { padding: 14px 16px; }
  }

  /* Sticky Wrapper für Filter + Live-Suche */
  .filter-sticky {
    position: sticky;
    top: 64px;               /* unter der sticky Nav */
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
    margin: 0 -24px 24px;
    padding: 14px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    max-width: 100vw;
    min-width: 0;
  }
  @media (max-width: 720px) {
    .filter-sticky {
      top: 64px;
      padding: 12px 0;
      margin: 0 0 16px;            /* keine negativen Margins, kein 100vw */
      gap: 8px;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }

  .filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1 1 auto;
    margin-bottom: 0;
  }
  /* Mobile: Filter-Pills horizontal scrollbar statt umbrechen */
  @media (max-width: 720px) {
    .filter-bar {
      flex-wrap: nowrap;
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
      padding: 2px 0 6px;
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
    }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-bar { scrollbar-width: none; -ms-overflow-style: none; }
    .filter-pill {
      flex-shrink: 0;
      scroll-snap-align: start;
      padding: 9px 16px;
      font-size: 14px;
    }
    /* erstes/letztes Pill bekommt Aussenabstand statt Container-Padding */
    .filter-bar > .filter-pill:first-child { margin-left: 0; }
    .filter-bar > .filter-pill:last-child  { margin-right: 0; }
  }
  .filter-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 220px;
    box-sizing: border-box;
  }
  @media (max-width: 720px) {
    .filter-search {
      display: block;
      width: 100%;                /* füllt komplett, MARGIN-FREI */
      margin: 0;
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }
    .filter-search input[type="search"] {
      width: 100%;
      box-sizing: border-box;
      min-width: 0;
      max-width: 100%;
    }
  }
  .filter-search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    opacity: 0.65;
  }
  .filter-search input[type="search"] {
    width: 100%;
    padding: 10px 36px 10px 36px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 14.5px;
    font-family: inherit;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    -webkit-appearance: none;
    appearance: none;
  }
  .filter-search input[type="search"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 91, 31, 0.15);
  }
  .filter-search input[type="search"]::-webkit-search-cancel-button { display: none; }
  .filter-search-clear {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-soft);
    border: none;
    width: 36px;          /* Touch-Target ≥ 24px innen, 44x44 inkl. padding */
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0;
  }
  .filter-search-clear:hover { background: var(--accent-soft); color: var(--accent); }

  /* "Keine Treffer"-Zustand */
  .no-search-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 36px 18px;
    color: var(--text-muted);
    font-size: 14.5px;
  }
  .no-search-results strong { color: var(--text); }

  .filter-pill {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
    user-select: none;
  }
  .filter-pill:hover { background: var(--bg-soft); }
  .filter-pill.active {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
  }
  .filter-pill .count {
    margin-left: 6px;
    color: var(--text-muted);
    font-weight: 500;
  }
  .filter-pill.active .count { color: rgba(255,255,255,.6); }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  @media (max-width: 720px) {
    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }
    .product-body { padding: 12px 12px 14px; }
    .product-name { font-size: 14px; }
    .product-meta { font-size: 12px; margin-bottom: 8px; }
    .pp-sale { font-size: 18px; }
    .pp-uvp { font-size: 11.5px; }
    .pp-discount { font-size: 10px; padding: 2px 6px; }
    .pp-portion { font-size: 10.5px; margin-bottom: 6px; }
    .pp-code { font-size: 9.5px; padding: 3px 8px; }
    .product-cta { font-size: 12.5px; padding: 8px 10px; }
    .product-tag { font-size: 9.5px; padding: 3px 7px; }
    .product-rating { font-size: 11px; padding: 1px 6px; }
  }
  .product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    position: relative;
  }
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
    text-decoration: none;
  }
  .product-card.disabled {
    opacity: .55;
    cursor: not-allowed;
    pointer-events: none;
  }
  .product-card.hidden { display: none; }

  .product-visual {
    position: relative;
    aspect-ratio: 16 / 11;
    display: grid;
    place-items: center;
    overflow: hidden;
  }
  .product-visual .icon-fallback {
    font-size: 56px;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.12));
  }
  .product-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 28px 8px 8px;        /* 20px mehr oben damit Tags klar abgesetzt sind */
  }

  /* Theme gradients */
  .theme-zerup        { background: linear-gradient(135deg, #ff7a9c 0%, #ff5b1f 100%); }
  .theme-zerup-barista{ background: linear-gradient(135deg, #6b4226 0%, #2a1a10 100%); color: #fff; }
  .theme-zerup-infused{ background: linear-gradient(135deg, #5fd3a8 0%, #1e8e6e 100%); color: #fff; }
  .theme-chunky       { background: linear-gradient(135deg, #ffd47a 0%, #ff9a3c 100%); }
  .theme-protein      { background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%); color: #fff; }
  .theme-coffee       { background: linear-gradient(135deg, #4a3325 0%, #1a1208 100%); color: #fff; }
  .theme-vegan        { background: linear-gradient(135deg, #86efac 0%, #16a34a 100%); color: #fff; }
  .theme-matcha       { background: linear-gradient(135deg, #bef264 0%, #65a30d 100%); color: #fff; }
  .theme-milkyccino   { background: linear-gradient(135deg, #fde68a 0%, #d97706 100%); }
  .theme-bar          { background: linear-gradient(135deg, #fdba74 0%, #ea580c 100%); color: #fff; }
  .theme-fruit        { background: linear-gradient(135deg, #fda4af 0%, #f43f5e 100%); color: #fff; }

  .product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    z-index: 2;
  }
  .product-tag {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 999px;
    background: #fff;
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
  }
  .tag-neu      { background: rgba(255, 91, 31, 0.65); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .tag-restock  { background: rgba(30, 41, 59, 0.65);  color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .tag-relaunch { background: rgba(124, 58, 237, 0.65); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .tag-limited  { background: rgba(15, 23, 42, 0.65);  color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .tag-soldout  { background: #6b7280; color: #fff; }

  .product-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-name {
    margin: 0 0 4px;
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.3;
  }
  .product-meta {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  /* Preis (fett) und SUPPLIGATOR-Code im gleichen Brand-Orange */
  .product-meta strong,
  .product-meta code {
    color: var(--accent);          /* #ff5b1f — gleicher Ton wie SUPPLIGATOR-Code */
    font-weight: 800;
  }
  .product-meta code {
    font-family: inherit;
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  /* Neues Card-Body-Layout: Info-Row (Rating + Code-Label),
     dann grosser Preis, dann durchgestrichene UVP, dann optionale Note */
  .product-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .product-code-label {
    font-size: 13px;
    color: var(--text-muted);
  }
  .product-code-label strong {
    color: var(--accent-text);
    font-weight: 800;
    letter-spacing: 0.02em;
  }
  .product-price-row {
    margin-bottom: 4px;
    line-height: 1.1;
  }
  .product-price-sale {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.01em;
  }
  .product-price-uvp {
    display: block;
    font-size: 13px;
    color: #6b6b75;          /* dunkler für AA-Kontrast auf weiß (4.7:1) */
    text-decoration: line-through;
    margin-top: 2px;
  }
  .product-note-row {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  @media (max-width: 720px) {
    .product-price-sale { font-size: 20px; }
    .product-info-row { gap: 8px; }
  }
  .product-price {
    margin: 8px 0 12px;
  }
  .pp-uvp {
    color: var(--text-muted);
    font-size: 12.5px;
    text-decoration: line-through;
    line-height: 1.2;
  }
  .pp-main {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 6px;
    flex-wrap: wrap;
  }
  .pp-sale {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .pp-discount {
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: .02em;
  }
  .pp-portion {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .pp-code {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent-text);
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: .04em;
    white-space: nowrap;
  }
  /* Backward-compat for any leftover .old strikethroughs */
  .product-price .old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
    margin-left: 6px;
  }
  .product-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-soft);
    color: var(--accent-text);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
  }
  .product-rating img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
  }
  .product-meta .product-rating:first-child { margin-left: 0; }
  .product-cta {
    margin-top: auto;
    background: var(--bg-soft);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
  }
  .product-card:hover .product-cta {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
  }
  .product-card.disabled .product-cta {
    background: #f3f3f5;
    color: #9ca3af;
  }

  /* ---------- ALL-IN-ONE CARD ---------- */
  .all-in-one {
    grid-column: 1 / -1;
    flex-direction: row !important;
    background: linear-gradient(135deg, #fff 0%, var(--accent-soft) 100%);
    border: 2px solid var(--accent) !important;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
  }
  .all-in-one:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,91,31,.18);
    border-color: var(--accent-dark) !important;
  }
  .all-in-one .product-visual {
    flex: 0 0 42%;
    aspect-ratio: auto;
    min-height: 180px;
    background: linear-gradient(135deg, #fff 0%, #fff5ef 100%);
    overflow: hidden;
    padding: 0;
  }
  .visual-mix {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .visual-mix .mix-img {
    position: absolute;
    width: 96px;
    height: 122px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
    transition: transform .35s ease;
    background-color: transparent;
  }
  .visual-mix .mix-img:nth-child(1) { transform: translateX(-150px) rotate(-12deg); z-index: 1; }
  .visual-mix .mix-img:nth-child(2) { transform: translateX(-75px)  rotate(-6deg);  z-index: 2; }
  .visual-mix .mix-img:nth-child(3) { transform: translateX(0)      rotate(0deg);   z-index: 3; }
  .visual-mix .mix-img:nth-child(4) { transform: translateX(75px)   rotate(6deg);   z-index: 2; }
  .visual-mix .mix-img:nth-child(5) { transform: translateX(150px)  rotate(12deg);  z-index: 1; }
  .all-in-one:hover .visual-mix .mix-img:nth-child(1) { transform: translateX(-170px) rotate(-15deg); }
  .all-in-one:hover .visual-mix .mix-img:nth-child(2) { transform: translateX(-85px)  rotate(-8deg); }
  .all-in-one:hover .visual-mix .mix-img:nth-child(4) { transform: translateX(85px)   rotate(8deg); }
  .all-in-one:hover .visual-mix .mix-img:nth-child(5) { transform: translateX(170px)  rotate(15deg); }

  .all-in-one .product-body {
    flex: 1;
    justify-content: center;
    padding: 24px 28px;
  }
  .all-in-one .product-name {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .all-in-one .product-meta {
    font-size: 14.5px;
    margin-bottom: 16px;
    color: var(--text-muted);
  }
  .all-in-one .product-cta {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    font-size: 15px;
    padding: 12px 18px;
    font-weight: 700;
  }
  .all-in-one:hover .product-cta {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
  }
  .tag-all {
    background: var(--accent);
    color: #fff;
  }

  @media (max-width: 720px) {
    .all-in-one { flex-direction: column !important; }
    .all-in-one .product-visual {
      flex: 0 0 auto;
      aspect-ratio: 16 / 9;
      min-height: 0;
    }
    .visual-mix .mix-img { width: 70px; height: 88px; }
    .visual-mix .mix-img:nth-child(1) { transform: translateX(-110px) rotate(-12deg); }
    .visual-mix .mix-img:nth-child(2) { transform: translateX(-55px)  rotate(-6deg); }
    .visual-mix .mix-img:nth-child(3) { transform: translateX(0)      rotate(0deg); }
    .visual-mix .mix-img:nth-child(4) { transform: translateX(55px)   rotate(6deg); }
    .visual-mix .mix-img:nth-child(5) { transform: translateX(110px)  rotate(12deg); }
    .all-in-one .product-body { padding: 14px 14px 16px; }
    .all-in-one .product-name { font-size: 16px; }
    .all-in-one .product-meta { font-size: 13px; margin-bottom: 12px; }
    .all-in-one .product-cta { font-size: 13.5px; padding: 10px 12px; }
  }

  /* ---------- CLEAR-CART CARD ---------- */
  .clear-cart {
    border-color: #fde2d9 !important;
    background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
  }
  .clear-cart:hover {
    border-color: #ef4444 !important;
    box-shadow: 0 8px 24px rgba(239,68,68,.18);
  }
  .clear-cart .product-visual.visual-clear {
    background: #fef2f2;
    color: #ef4444;
  }
  .clear-cart .icon-fallback { font-size: 56px; }
  .clear-cart .product-cta {
    background: #fef2f2;
    color: #ef4444;
    border-color: #fecaca;
  }
  .clear-cart:hover .product-cta {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
  }
  .tag-clear { background: #ef4444; color: #fff; }

  /* ---------- FLOATING GIVEAWAY BUTTON ---------- */
  .giveaway-fab {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translate(110%, -50%);
    z-index: 90;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--accent);
    color: #fff;
    padding: 12px 14px 14px;
    border-radius: 18px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255,91,31,.35), 0 2px 6px rgba(0,0,0,.1);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    width: 76px;
  }
  .giveaway-fab.visible {
    transform: translate(0, -50%);
    opacity: 1;
    pointer-events: auto;
  }
  .giveaway-fab:hover {
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    transform: translate(0, -50%) scale(1.05);
  }
  .giveaway-fab .gf-icon {
    font-size: 30px;
    line-height: 1;
    animation: gf-bounce 2.4s ease-in-out infinite;
  }
  .giveaway-fab .gf-text {
    color: #fff;
    line-height: 1.1;
    text-align: center;
  }
  @keyframes gf-bounce {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-4px) rotate(6deg); }
  }
  @media (max-width: 720px) {
    .giveaway-fab {
      right: 12px;
      width: 64px;
      padding: 10px 10px 12px;
    }
    .giveaway-fab .gf-icon { font-size: 24px; }
    .giveaway-fab .gf-text { font-size: 10px; }
  }

  .deals-warning {
    max-width: 900px;
    margin: 30px auto 0;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: var(--radius);
    padding: 14px 18px;
    color: #9a3412;
    font-size: 14px;
    line-height: 1.55;
  }
  .deals-source {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
  }

  /* ---------- GIVEAWAY ---------- */
  .giveaway {
    background:
      radial-gradient(900px 400px at 80% 0%, rgba(255,91,31,.18) 0%, transparent 60%),
      radial-gradient(700px 350px at 10% 100%, rgba(255,91,31,.10) 0%, transparent 60%),
      #15151a;
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .giveaway .section-head h2 { color: #fff; }
  .giveaway .section-head p { color: rgba(255,255,255,.7); }
  .giveaway .eyebrow { color: var(--accent); }

  .giveaway-image {
    max-width: 900px;
    margin: 0 auto 36px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.08);
  }
  .giveaway-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .giveaway-image figcaption {
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    padding: 10px 16px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .giveaway-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 48px;
  }
  @media (max-width: 720px) { .giveaway-stats { grid-template-columns: 1fr; } }
  .giveaway-stat {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 28px 22px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: transform .2s ease, background .2s ease;
  }
  .giveaway-stat:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.08);
  }
  .giveaway-stat.highlight {
    background: var(--accent);
    border-color: var(--accent);
  }
  .giveaway-stat-icon {
    font-size: 38px;
    line-height: 1;
    margin-bottom: 14px;
  }
  .giveaway-stat-num {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #fff;
  }
  .giveaway-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    line-height: 1.45;
  }
  .giveaway-stat.highlight .giveaway-stat-label { color: rgba(255,255,255,.9); }

  .giveaway-steps {
    max-width: 760px;
    margin: 0 auto 32px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 24px 18px;
  }
  .giveaway-steps h3 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    text-align: center;
  }
  .giveaway-steps ol {
    margin: 0;
    padding-left: 22px;
    counter-reset: step;
    list-style: none;
  }
  .giveaway-steps ol li {
    counter-increment: step;
    margin-bottom: 12px;
    color: rgba(255,255,255,.85);
    line-height: 1.55;
    position: relative;
    padding-left: 36px;
  }
  .giveaway-steps ol li:last-child { margin-bottom: 0; }
  .giveaway-steps ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 13px;
  }

  .giveaway-code {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: .04em;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  }

  .giveaway-form {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 12px;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .fillout-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    color: #94a3b8;
    font-size: 14px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
    background-size: 200% 100%;
    animation: fillout-shimmer 1.6s ease-in-out infinite;
    border-radius: 8px;
  }
  @keyframes fillout-shimmer {
    0%   { background-position: -100% 0; }
    100% { background-position:  100% 0; }
  }

  .giveaway-meta {
    text-align: center;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    margin-top: 8px;
  }
  .giveaway-meta a {
    color: var(--accent);
    font-weight: 600;
  }
  .giveaway-meta a:hover { color: #fff; text-decoration: underline; }

  /* ---------- SECTION GENERIC ---------- */
  section { padding: 80px 0; }
  @media (max-width: 720px) {
    section { padding: 40px 0; }
    .countdown-section { padding: 12px 0 18px; }
  }
  .section-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
  }
  @media (max-width: 720px) {
    .section-head { margin: 0 auto 28px; }
    .section-head p { font-size: 15px; }
  }
  .eyebrow {
    color: var(--accent-text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 12px;
  }
  h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 800;
  }
  .section-head p {
    color: var(--text-muted);
    font-size: 18px;
    margin: 0;
  }

  /* ---------- WHAT IS IT ---------- */
  .what {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .what-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 820px) { .what-grid { grid-template-columns: 1fr; } }
  .feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
  }
  .feature-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid; place-items: center;
    margin-bottom: 18px;
    font-size: 22px;
  }
  .feature h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .feature p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15.5px;
  }

  /* ---------- STEPS ---------- */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  @media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 520px) { .steps-grid { grid-template-columns: 1fr; } }

  .step {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
    background: var(--bg-card);
    transition: transform .15s ease, box-shadow .15s ease;
  }
  .step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .step-num {
    display: inline-grid;
    place-items: center;
    width: 34px; height: 34px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 14px;
  }
  .step h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
  }
  .step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
  }

  /* ---------- TIPS ---------- */
  .tips {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tips-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (max-width: 720px) { .tips-list { grid-template-columns: 1fr; } }
  .tip {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
  }
  .tip-mark {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid; place-items: center;
    font-weight: 800;
    font-size: 14px;
  }
  .tip strong { display: block; margin-bottom: 2px; }
  .tip span { color: var(--text-muted); font-size: 15px; }

  /* ---------- FAQ ---------- */
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
  }
  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 600;
    font-size: 16.5px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    transition: transform .2s ease;
  }
  .faq-item[open] summary::after { content: "–"; }
  .faq-item .faq-body {
    padding: 0 22px 20px;
    color: var(--text-muted);
    font-size: 15.5px;
  }

  /* ---------- CTA BANNER ---------- */
  .cta-banner {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 64px 24px;
    margin-top: 0;
  }
  .cta-banner h2 { color: #fff; margin-bottom: 10px; }
  .cta-banner p {
    color: rgba(255,255,255,.92);
    margin: 0 auto 26px;
    max-width: 620px;
    font-size: 17px;
  }
  .cta-banner .btn-secondary {
    background: #fff;
    color: var(--text);
    border-color: transparent;
  }
  .cta-banner .btn-secondary:hover { background: #f3f3f5; }

  /* ---------- FOOTER ---------- */
  footer {
    background: #0f0f14;
    color: rgba(255,255,255,.65);
    padding: 50px 0 30px;
    font-size: 14.5px;
  }
  footer .footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
  @media (max-width: 720px) { footer .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
  footer h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: 0 0 14px;
  }
  footer a { color: rgba(255,255,255,.65); }
  footer a:hover { color: #fff; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer ul li { margin-bottom: 8px; }
  .footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
  }
  .disclaimer {
    margin-top: 14px;
    font-size: 13px;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
  }

/* ==========================================================================
   APP-BANNER: Promotion-Section für die iOS-App auf more-vorpacklink.de
   ========================================================================== */
.app-banner {
  padding: 64px 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(255, 122, 31, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 50, 57, 0.14), transparent 70%),
    linear-gradient(180deg, #1a1a1f 0%, #0e0e14 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) {
  .app-banner { padding: 48px 0; }
}

.app-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Mobile: einspaltig und Bild komplett ausgeblendet (Platz sparen) */
@media (max-width: 900px) {
  .app-banner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .app-banner-visual { display: none !important; }
  .app-banner-lead { margin-left: auto; margin-right: auto; }
  .app-banner-features { max-width: 420px; margin-left: auto; margin-right: auto; }
  .app-banner-buttons { justify-content: center; }
}

.app-banner-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a1f, #ff3239);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px -8px rgba(255, 50, 57, 0.55);
}
.app-banner-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.05;
  color: #fff;
}
.app-banner-lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
  max-width: 540px;
}

.app-banner-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.app-banner-features li {
  padding: 8px 0;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.app-banner-features li:last-child { border-bottom: none; }

/* Accordion-Wrapper: Desktop unsichtbar (UL immer sichtbar, Summary versteckt) */
.app-banner-features-acc {
  margin: 0 0 28px;
}
.app-banner-features-acc > summary {
  display: none;            /* Desktop: nur die UL drunter zeigen */
}
.app-banner-features-acc[open] > summary,
.app-banner-features-acc:not([open]) > summary {
  /* placeholder fuer override unten */
}
.app-banner-features-acc > .app-banner-features {
  margin: 0;                /* Desktop: UL sieht aus wie vorher */
}

/* Mobile: Accordion aktivieren */
@media (max-width: 720px) {
  .app-banner-features-acc {
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
  }
  .app-banner-features-acc > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 15px;
    list-style: none;       /* Standard-Marker weg */
    user-select: none;
  }
  .app-banner-features-acc > summary::-webkit-details-marker { display: none; }
  .app-banner-features-acc > summary::marker { content: ''; }
  .app-banner-features-acc .acc-arrow {
    display: inline-block;
    transition: transform .2s ease;
    font-size: 16px;
    line-height: 1;
    color: rgba(255,255,255,0.7);
  }
  .app-banner-features-acc[open] .acc-arrow {
    transform: rotate(-180deg);
  }
  .app-banner-features-acc[open] > summary {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .app-banner-features-acc > .app-banner-features {
    padding: 4px 18px 8px;
  }
  .app-banner-features-acc > .app-banner-features li {
    border-bottom-color: rgba(255,255,255,0.06);
  }
}

.app-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}


.app-store-btn,
.app-store-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #fff;
  color: #1a1a1f !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.5);
  min-width: 180px;
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6);
}
.app-store-soon {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: not-allowed;
  box-shadow: none;
}
.app-store-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}
.app-store-btn-inner {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.app-store-btn-pre {
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.78;
}
.app-store-btn-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 2px;
}

.app-banner-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 0;
}

/* ===== App-Vorschaubild ===== */
.app-banner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-preview-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* (Legacy: iPhone-Mockup, nicht mehr genutzt — Klassen bleiben für eventuelle Wiederverwendung erhalten) */
.app-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1a1a1f;
  border-radius: 44px;
  padding: 12px;
  border: 2px solid #2a2a32;
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
@media (max-width: 480px) {
  .app-mockup { width: 240px; height: 500px; border-radius: 38px; padding: 10px; }
}
.app-mockup-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 28px;
  background: #000;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.app-mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff5ef 0%, #fff 60%);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.app-mockup-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px 6px;
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1f;
}
.app-mockup-hero {
  padding: 24px 22px 8px;
  text-align: center;
}
.app-mockup-eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a1f, #ff3239);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.app-mockup-title {
  font-size: 19px;
  font-weight: 800;
  color: #1a1a1f;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.app-mockup-cd {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.app-mockup-cd-box {
  background: #fff;
  border: 1px solid rgba(20, 16, 14, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 48px;
  box-shadow: 0 4px 12px -6px rgba(0, 0, 0, 0.08);
}
.app-mockup-cd-box span {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: #ff3239;
  line-height: 1;
}
.app-mockup-cd-box small {
  font-size: 9px;
  color: #8e8e96;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.app-mockup-cta {
  margin: 18px 22px 0;
  background: #1a1a1f;
  color: #fff;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}
.app-mockup-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding: 12px 14px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(20, 16, 14, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.app-mockup-tab {
  font-size: 9px;
  font-weight: 600;
  color: #8e8e96;
  padding: 4px 2px;
  text-align: center;
  flex: 1 1 0;
  line-height: 1.1;
}
.app-mockup-tab.active {
  color: #ff3239;
  font-weight: 800;
}

/* "Zuletzt aktualisiert"-Pill oben im Einzellinks-Bereich */
.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(20, 16, 14, 0.08);
  border-radius: 999px;
  padding: 9px 18px 9px 14px;
  font-size: 13.5px;
  color: #5b5b65;
  margin: 0 0 28px;
  box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.12);
}
.last-updated strong {
  color: #1a1a1f;
  font-weight: 700;
  margin-left: 2px;
}
.last-updated-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: pulse-live 2.4s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.05); }
}
@media (max-width: 540px) {
  .last-updated { font-size: 12.5px; padding: 8px 14px 8px 12px; gap: 8px; }
}


/* ---------- Dual-Button (1×/5× & 1× Tray/Bar) ---------- */
.product-card-multi { display: flex; flex-direction: column; }
.product-card-multi:hover .product-cta-link { /* keine card-wide CTA-Faerbung */ }
.product-cta-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.product-cta-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 9px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  line-height: 1.2;
}
.product-cta-link:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  text-decoration: none;
}
.product-cta-secondary {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: var(--accent-soft);
}
.product-cta-secondary:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.product-meta-secondary {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -4px;
  margin-bottom: 10px;
}
.product-meta-secondary strong { color: var(--accent-text); font-weight: 800; }
.product-meta-secondary s     { color: #b5b5bd; }

@media (max-width: 720px) {
  .product-cta-row { gap: 6px; }
  .product-cta-link { padding: 8px 8px; font-size: 12.5px; }
}

/* ---------- Snippet-Variante ---------- */
.suppli-card-multi { display: flex; flex-direction: column; }
.suppli-cta-row {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.suppli-cta-dual {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 8px;
  font-size: 12.5px;
  border-radius: 10px;
  border: 1px solid var(--suppli-accent-border);
  background: var(--suppli-accent-soft);
  color: var(--suppli-accent);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.suppli-cta-dual.suppli-cta-secondary {
  background: #fff;
  color: var(--suppli-accent-dark, #d24816);
}
.suppli-cta-dual:hover {
  background: var(--suppli-accent);
  color: #fff;
  border-color: var(--suppli-accent);
  text-decoration: none;
}
.suppli-secondary {
  font-size: 12px;
  color: var(--suppli-text-muted);
}
.suppli-secondary strong { color: var(--suppli-accent); font-weight: 800; }
.suppli-secondary s      { color: #b5b5bd; }

/* ---------- Review-Cards (App Bewertungen) ---------- */
.review-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.review-cta-secondary {
  background: var(--accent-soft, #fff1ea);
  color: var(--accent-dark, #e64a10);
}
.review-meta-secondary {
  font-size: 12px;
  color: var(--text-muted);
}
.review-meta-secondary strong { color: var(--accent-dark, #e64a10); font-weight: 800; }
.review-meta-secondary s      { color: #b5b5bd; }


/* ---------- 1× Bar / secondary-CTA in solid orange ---------- */
.product-cta-secondary,
.review-cta-secondary {
  background: var(--accent, #ff5b1f) !important;
  color: #fff !important;
  border-color: var(--accent, #ff5b1f) !important;
}
.product-cta-secondary:hover,
.review-cta-secondary:hover {
  background: var(--accent-dark, #e64a10) !important;
  border-color: var(--accent-dark, #e64a10) !important;
  color: #fff !important;
}

/* Snippet: 1× Bar solid orange */
.suppli-cta-dual.suppli-cta-secondary {
  background: var(--suppli-accent, #ff5b1f) !important;
  color: #fff !important;
  border-color: var(--suppli-accent, #ff5b1f) !important;
}

/* ---------- "Bewertung folgt" Pill: orange Text bleibt orange ---------- */
.review-rating-pending {
  color: #ff7a1f !important;
  font-weight: 800 !important;
}


/* ---------- 📭 Folgt zeitnah - disabled CTA ---------- */
.product-cta-disabled,
.review-cta-disabled,
.suppli-cta-disabled {
  background: #f5f5f7 !important;
  color: #888 !important;
  border-color: #e5e5e9 !important;
  cursor: not-allowed !important;
  pointer-events: none;
}
.product-card-disabled .product-cta:hover,
.product-card-disabled:hover .product-cta-disabled {
  background: #f5f5f7 !important;
  color: #888 !important;
  border-color: #e5e5e9 !important;
}

/* ---------- Birthday Favorites Note ---------- */
.birthday-favorites-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff5f9;
  border: 1px solid #ffd5e5;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text, #15151a);
}
.birthday-favorites-note strong {
  color: var(--accent-dark, #e64a10);
}
