:root {
      --yg: #c9da3a;
      --yg-dim: #a8b82e;
      --yg-pale: #f3f7d0;
      --off-white: #fafaf7;
      --cream: #f7f4ed;
      --ink: #0e0e0c;
      --ink-60: rgba(14,14,12,0.6);
      --ink-20: rgba(14,14,12,0.12);
      --ink-08: rgba(14,14,12,0.06);
      --ff: 'Unbounded', sans-serif;
      --fb: 'Inter', sans-serif;
      --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-xl: 40px; --r-pill: 999px;
      --gutter: clamp(20px, 5vw, 72px);
      --section: clamp(72px, 10vw, 120px);
      /* dynamic hero bg — updated by JS */
      --hero-bg: #f3f7d0;
      --hero-accent: #c9da3a;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--fb); background: var(--off-white); color: var(--ink); overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }

    /* GATE */
    #gate {
      position: fixed; inset: 0; z-index: 9999; background: var(--ink);
      display: flex; align-items: center; justify-content: center; padding: 24px;
      transition: opacity 0.5s ease;
    }
    #gate.out { opacity: 0; pointer-events: none; }
    .gate-box { max-width: 400px; width: 100%; text-align: center; }
    .gate-eye { font-family: var(--ff); font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase; color: var(--yg); margin-bottom: 48px; }
    .gate-box h2 { font-family: var(--ff); font-size: clamp(24px, 6vw, 38px); font-weight: 900; color: #fff; line-height: 1.05; letter-spacing: -1px; margin-bottom: 14px; }
    .gate-box p { color: rgba(255,255,255,0.38); font-size: 14px; line-height: 1.65; margin-bottom: 40px; font-weight: 300; }
    .gate-btns { display: flex; gap: 12px; justify-content: center; }
    .gbtn { padding: 14px 32px; border-radius: var(--r-pill); font-family: var(--fb); font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
    .gbtn-yes { background: var(--yg); color: var(--ink); border: none; }
    .gbtn-yes:hover { background: #d8ea50; transform: translateY(-1px); }
    .gbtn-no { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.18); }
    .gbtn-no:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
    #gate-denied { position: fixed; inset: 0; z-index: 9999; background: var(--ink); display: none; align-items: center; justify-content: center; flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
    #gate-denied.on { display: flex; }
    #gate-denied h2 { font-family: var(--ff); color: #fff; font-size: 22px; }
    #gate-denied p { color: rgba(255,255,255,0.4); font-size: 14px; }

    #site { display: none; }
    #site.on { display: block; }

    /* HEADER */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 var(--gutter); height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(250,250,247,0.92); backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--ink-08);
    }
    .nav-logo { font-family: var(--ff); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
    .nav-logo em { color: var(--yg-dim); font-style: normal; }
    .nav-right { display: flex; align-items: center; gap: 24px; }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links li a { font-size: 13px; font-weight: 400; color: var(--ink-60); transition: color 0.2s; }
    .nav-links li a:hover { color: var(--ink); }
    @media (max-width: 640px) { .nav-links { display: none; } }
    .nav-cta { padding: 9px 20px; background: var(--ink); color: #fff; border-radius: var(--r-pill); font-size: 13px; font-weight: 500; transition: all 0.2s; }
    .nav-cta:hover { background: #2a2a28; transform: translateY(-1px); }

    /* Keyboard focus ring */
    *:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 3px;
      border-radius: 4px;
    }
    button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--ink);
      outline-offset: 2px;
    }
    .gbtn-yes:focus-visible { outline-color: var(--ink); outline-offset: 4px; }

        .skip-link {
      position: absolute; top: -40px; left: 8px;
      background: var(--ink); color: #fff;
      padding: 8px 16px; border-radius: var(--r-sm);
      font-size: 13px; z-index: 200;
      transition: top 0.15s;
    }
    .skip-link:focus { top: 8px; }

        /* MODAL */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(14,14,12,0.6);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      display: none; align-items: flex-end; justify-content: center;
      padding: 0; opacity: 0;
      transition: opacity 0.3s ease;
    }
    @media (min-width: 600px) {
      .modal-overlay { align-items: center; padding: 16px; }
    }
    .modal-overlay.on { display: flex; opacity: 1; }
    .modal {
      background: var(--off-white);
      border-radius: 20px 20px 0 0;
      max-width: 720px; width: 100%;
      max-height: 92vh;
      max-height: 92dvh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      position: relative;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(.34,1.4,.64,1);
      box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
    }
    @media (min-width: 600px) {
      .modal {
        border-radius: var(--r-xl);
        max-height: calc(100vh - 32px);
        transform: scale(0.92) translateY(20px);
        box-shadow: 0 32px 80px rgba(0,0,0,0.4);
      }
    }
    .modal-overlay.on .modal { transform: none; }
    .modal-close {
      position: absolute; top: 12px; right: 12px; z-index: 2;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      border: 1px solid var(--ink-08);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    @media (min-width: 600px) {
      .modal-close { top: 16px; right: 16px; width: 40px; height: 40px; }
    }
    .modal-close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
    .modal-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; }
    @media (min-width: 600px) { .modal-close svg { width: 16px; height: 16px; } }
    /* Mobile drag handle hint */
    .modal::before {
      content: '';
      display: block;
      width: 40px; height: 4px;
      border-radius: 2px;
      background: var(--ink-20);
      position: absolute;
      top: 8px; left: 50%; transform: translateX(-50%);
      z-index: 3;
    }
    @media (min-width: 600px) { .modal::before { display: none; } }
    .modal-grid {
      display: grid;
      grid-template-columns: 1fr;
    }
    @media (min-width: 600px) {
      .modal-grid { grid-template-columns: 5fr 7fr; }
    }
    .modal-img-wrap {
      aspect-ratio: auto;
      height: clamp(180px, 32vh, 240px);
      display: flex; align-items: center; justify-content: center;
      padding: 16px 24px 12px;
      transition: background-color 0.4s ease;
    }
    @media (min-width: 600px) {
      .modal-img-wrap {
        aspect-ratio: auto;
        height: auto;
        min-height: 400px;
        padding: 32px;
      }
    }
    .modal-img-wrap img {
      max-width: 70%;
      /* Pevný strop výšky (ne 100% rodiče) — aby se obrázek na mobilu
         správně zmenšil hned při otevření, i když modal byl skrytý.
         Řeší iOS bug, kdy byl obrázek velký do zhasnutí/rozsvícení displeje. */
      max-height: clamp(150px, 28vh, 210px);
      object-fit: contain;
      filter: drop-shadow(0 16px 36px rgba(0,0,0,0.18));
    }
    @media (min-width: 600px) {
      .modal-img-wrap img { max-width: 80%; max-height: 100%; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.2)); }
    }
    .modal-body { padding: 20px 22px 28px; }
    @media (min-width: 600px) { .modal-body { padding: clamp(28px, 4vw, 40px); } }
    .modal-brand {
      font-family: var(--ff); font-size: 10px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--ink-60); margin-bottom: 6px;
    }
    @media (min-width: 600px) { .modal-brand { font-size: 11px; margin-bottom: 8px; } }
    .modal-name {
      font-family: var(--ff); font-size: clamp(22px, 5vw, 38px);
      font-weight: 900; letter-spacing: -1px;
      line-height: 1.05; margin-bottom: 6px;
    }
    @media (min-width: 600px) { .modal-name { letter-spacing: -1.5px; margin-bottom: 8px; } }
    .modal-tagline {
      font-size: 13px; font-weight: 400; line-height: 1.45;
      color: var(--ink-60); margin-bottom: 16px;
    }
    @media (min-width: 600px) { .modal-tagline { font-size: 15px; line-height: 1.5; margin-bottom: 24px; } }
    .modal-meta {
      display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px;
    }
    @media (min-width: 600px) { .modal-meta { gap: 8px; margin-bottom: 24px; } }
    .modal-pill {
      padding: 4px 10px; background: var(--cream);
      border: 1px solid var(--ink-08);
      border-radius: var(--r-pill);
      font-size: 11px; font-weight: 500; color: var(--ink-60);
    }
    @media (min-width: 600px) { .modal-pill { padding: 5px 12px; font-size: 12px; } }
    .modal-section {
      padding-top: 14px; margin-top: 14px;
      border-top: 1px solid var(--ink-08);
    }
    @media (min-width: 600px) {
      .modal-section { padding-top: 20px; margin-top: 20px; }
    }
    .modal-section-label {
      font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--ink-60);
      margin-bottom: 8px;
    }
    @media (min-width: 600px) { .modal-section-label { font-size: 11px; margin-bottom: 10px; } }
    .modal-section p {
      font-size: 13px; font-weight: 300;
      line-height: 1.55; color: var(--ink);
    }
    @media (min-width: 600px) { .modal-section p { font-size: 14px; line-height: 1.65; } }
    .modal-ingredients {
      display: flex; gap: 5px; flex-wrap: wrap;
    }
    @media (min-width: 600px) { .modal-ingredients { gap: 6px; } }
    .ing-pill {
      padding: 4px 10px;
      background: var(--off-white);
      border: 1px solid var(--ink-08);
      border-radius: var(--r-pill);
      font-size: 11px; font-weight: 400; color: var(--ink);
    }
    @media (min-width: 600px) { .ing-pill { padding: 5px 12px; font-size: 12px; } }
    .modal-cta {
      margin-top: 20px;
      display: flex; gap: 8px; flex-wrap: wrap;
    }
    @media (min-width: 600px) { .modal-cta { margin-top: 28px; gap: 10px; } }
    .modal-cta .btn-dark, .modal-cta .btn-outline { font-size: 13px; padding: 12px 22px; }
    @media (min-width: 600px) { .modal-cta .btn-dark, .modal-cta .btn-outline { font-size: 14px; padding: 14px 28px; } }

        /* HERO — mobile-first, full layout */
    .hero {
      padding-top: 64px;
      min-height: auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      /* Pozadí: lze přepsat z administrace přes --hero-bg-image / --hero-bg-image-mobile.
         background-color zůstává jako fallback, pokud by se obrázek nenačetl. */
      background-color: var(--hero-bg);
      background-image: var(--hero-bg-image, url('../img/hero-bg.jpg'));
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      transition: background-color 0.8s ease;
      overflow: hidden;
      align-items: center;
    }
    @media (max-width: 900px) {
      .hero {
        grid-template-columns: 1fr;
      }
    }
    /* Mobile — menší obrázek (109 KB místo 305 KB) kvůli rychlosti načítání */
    @media (max-width: 700px) {
      .hero {
        background-image: var(--hero-bg-image-mobile, url('../img/hero-bg-mobile.jpg'));
      }
    }
    /* text block */
    .hero-top {
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* Více místa nahoře → celý textový blok níž (mimo event banner),
         méně dole, takže výška hero zůstává stejná (banner se nerozšiřuje). */
      padding: clamp(104px, 17vw, 200px) var(--gutter) clamp(20px, 3vw, 36px);
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--ink-60); margin-bottom: 14px;
    }
    .hero-eline { width: 28px; height: 1px; background: var(--ink-60); flex-shrink: 0; }
    .hero h1 {
      font-family: var(--ff);
      /* Lines 1 a 3 ("Míchané drinky." / "V plechovce.") — větší font.
         Max 48px aby se nejdelší 15znaková věta vždy vešla na jeden řádek. */
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900; line-height: 0.78; letter-spacing: -2px;
      color: var(--ink); margin-bottom: 10px;
    }
    .hero h1 span {
      display: block;
      color: var(--ink);
      opacity: 0.55;
      /* Žádné interní zalamování — každý span = jeden pevný řádek */
      white-space: nowrap;
    }
    /* Prostřední řádek ("Jako od barmana.") je 16 znaků — menší font,
       aby se vešel i tehdy, kdy by Lines 1+3 ještě bylo OK. */
    .hero h1 span:nth-of-type(2) {
      font-size: clamp(22px, 3.2vw, 38px);
    }
    .hero-desc {
      font-size: clamp(14px, 2vw, 16px); font-weight: 300; line-height: 1.65;
      color: var(--ink-60); max-width: 440px; margin-bottom: 22px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; background: var(--ink); color: #fff;
      border-radius: var(--r-pill); font-size: 14px; font-weight: 500; transition: all 0.2s;
    }
    .btn-dark:hover { background: #2a2a28; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 28px; background: transparent; color: var(--ink);
      border: 1px solid var(--ink); border-radius: var(--r-pill);
      font-size: 14px; font-weight: 500; transition: all 0.2s;
    }
    .btn-outline:hover { background: var(--ink); color: #fff; }
    .hero-stats {
      display: flex; gap: 24px 40px; flex-wrap: wrap;
      padding-top: 16px; border-top: 1px solid var(--ink-20);
    }
    .stat-num {
      font-family: var(--ff); font-size: clamp(18px, 3vw, 26px);
      font-weight: 900; letter-spacing: -1px; color: var(--ink); display: block;
    }
    .stat-label {
      font-size: 11px; font-weight: 400; color: var(--ink-60);
      text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; display: block;
    }

        /* HERO PODIUM */
    .hero-podium {
      width: 100%;
      padding: clamp(20px, 3vw, 48px) var(--gutter);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    @media (max-width: 900px) {
      .hero-podium {
        padding: 0 var(--gutter) clamp(28px, 4vw, 48px);
      }
    }
    .podium-cans {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: clamp(8px, 1.5vw, 20px);
      width: 100%;
      max-width: 480px;
    }
    .podium-base {
      width: 100%;
      max-width: 480px;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: clamp(8px, 1.5vw, 20px);
      margin-top: 0;
    }
    .podium-step {
      background: var(--ink);
      color: #fff;
      font-family: var(--ff);
      font-weight: 900;
      font-size: clamp(11px, 1.3vw, 14px);
      letter-spacing: 1.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px 4px 0 0;
      position: relative;
      flex-shrink: 0;
    }
    .podium-step::before {
      content: attr(data-pos);
    }
    /* Podium tiers — kompaktní */
    .podium-step.gold   { background: linear-gradient(180deg, #d4b13e 0%, #b08a1f 100%); color: #fff; height: clamp(48px, 6vw, 64px); width: clamp(82px, 10vw, 120px); }
    .podium-step.silver { background: linear-gradient(180deg, #c2c2c2 0%, #8e8e8e 100%); color: #fff; height: clamp(34px, 4.5vw, 48px); width: clamp(82px, 10vw, 120px); }
    .podium-step.bronze { background: linear-gradient(180deg, #c4823d 0%, #8a5824 100%); color: #fff; height: clamp(22px, 3vw, 34px); width: clamp(82px, 10vw, 120px); }

    .pcan {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(.34,1.4,.64,1);
      flex-shrink: 0;
    }
    .pcan:hover { transform: translateY(-8px); }
    .pcan-img-wrap {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pcan-name { display: none; }
    .pcan-flavor { display: none; }
    .pcan-badge {
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      padding: 3px 8px;
      border-radius: var(--r-pill);
      font-family: var(--fb);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      background: var(--ink);
      color: #fff;
      white-space: nowrap;
      z-index: 2;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .pcan-badge.novinka { background: #2a8a3e; }
    .pcan-badge.oblibeny { background: var(--ink); }
    .pcan-img {
      object-fit: contain;
      object-position: center bottom;
      filter: drop-shadow(0 10px 22px rgba(0,0,0,0.16));
      transition: filter 0.3s;
    }
    /* Sized by tier — kompaktnější */
    .pcan.tier-1 .pcan-img { width: clamp(60px, 8vw, 105px); height: clamp(130px, 17vw, 220px); }
    .pcan.tier-2 .pcan-img { width: clamp(54px, 7vw, 90px); height: clamp(115px, 15vw, 195px); }
    .pcan.tier-3 .pcan-img { width: clamp(48px, 6.5vw, 80px); height: clamp(105px, 13.5vw, 175px); }
    .pcan:hover .pcan-img { filter: drop-shadow(0 18px 38px rgba(0,0,0,0.24)); }

    /* Empty state — no featured cans */
    .podium-empty {
      text-align: center;
      padding: 40px 20px;
      color: var(--ink-60);
      font-size: 14px;
      font-style: italic;
    }
    

    /* SPIRIT FILTER (icons row) */
    .spirit-row {
      display: flex; gap: 8px; flex-wrap: wrap;
      margin: 16px 0 32px;
    }
    .spirit-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 8px 16px 8px 8px;
      border-radius: var(--r-pill);
      border: 1px solid var(--ink-20);
      background: transparent;
      font-family: var(--fb); font-size: 13px; font-weight: 500;
      color: var(--ink-60); cursor: pointer; transition: all 0.2s;
    }
    .spirit-btn:hover { border-color: var(--ink); color: var(--ink); }
    .spirit-btn.on { background: var(--ink); color: #fff; border-color: var(--ink); }
    .spirit-btn-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: var(--cream);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff); font-size: 11px; font-weight: 900;
      color: var(--ink); flex-shrink: 0;
    }
    .spirit-btn.on .spirit-btn-icon { background: var(--yg); color: var(--ink); }

    /* DRINK FINDER */
    .finder-section {
      background: var(--yg-pale);
      padding: var(--section) var(--gutter);
      position: relative; overflow: hidden;
    }
    .finder-wrap {
      max-width: 720px; margin: 0 auto;
      text-align: center;
    }
    .finder-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--ink-60);
      margin-bottom: 20px; justify-content: center;
    }
    .finder-eyebrow::before, .finder-eyebrow::after {
      content: ''; display: block; width: 24px; height: 1px; background: var(--ink-60);
    }
    .finder-section h2 {
      font-family: var(--ff); font-size: clamp(28px, 5vw, 48px);
      font-weight: 900; line-height: 1.0; letter-spacing: -1.5px;
      color: var(--ink); margin-bottom: 16px;
    }
    .finder-sub {
      font-size: 16px; font-weight: 300; line-height: 1.65;
      color: var(--ink-60); margin-bottom: 40px;
      max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .finder-card {
      background: var(--off-white);
      border-radius: var(--r-xl);
      padding: clamp(28px, 5vw, 48px);
      border: 1px solid var(--ink-08);
      box-shadow: 0 16px 48px rgba(0,0,0,0.05);
    }
    .finder-progress {
      display: flex; gap: 6px; justify-content: center;
      margin-bottom: 32px;
    }
    .finder-dot {
      width: 28px; height: 4px; border-radius: 2px;
      background: var(--ink-08);
      transition: background 0.3s;
    }
    .finder-dot.on { background: var(--ink); }
    .finder-q {
      font-family: var(--ff); font-size: clamp(20px, 3vw, 26px);
      font-weight: 900; letter-spacing: -0.8px;
      line-height: 1.15; color: var(--ink);
      margin-bottom: 28px; min-height: 60px;
    }
    .finder-options {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    @media (max-width: 480px) { .finder-options { grid-template-columns: 1fr; } }
    .finder-opt {
      padding: 18px 20px;
      background: var(--cream);
      border: 1px solid var(--ink-08);
      border-radius: var(--r-md);
      font-family: var(--fb); font-size: 14px; font-weight: 500;
      color: var(--ink); cursor: pointer; text-align: left;
      transition: all 0.2s;
      display: flex; align-items: center; gap: 12px;
    }
    .finder-opt:hover {
      background: var(--yg-pale);
      border-color: var(--ink);
      transform: translateY(-2px);
    }
    .finder-opt-emoji { font-size: 22px; flex-shrink: 0; }
    .finder-opt-text { flex: 1; }
    .finder-result {
      display: none; flex-direction: column; align-items: center; gap: 24px;
    }
    .finder-result.on { display: flex; }
    .finder-result-eye {
      font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--ink-60);
    }
    .finder-result-img {
      width: clamp(120px, 18vw, 180px);
      height: auto;
      filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18));
    }
    .finder-result h3 {
      font-family: var(--ff); font-size: clamp(24px, 4vw, 32px);
      font-weight: 900; letter-spacing: -1px; line-height: 1.05;
      text-align: center;
    }
    .finder-result-brand {
      font-family: var(--ff); font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--ink-60); margin-bottom: -16px;
    }
    .finder-result-tag {
      font-size: 14px; font-weight: 300; line-height: 1.6;
      color: var(--ink-60); text-align: center; max-width: 380px;
    }
    .finder-result-actions {
      display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    }
    .finder-restart {
      background: transparent; border: 1px solid var(--ink-20);
      color: var(--ink-60); padding: 10px 18px;
      border-radius: var(--r-pill); font-size: 13px; font-weight: 500;
      cursor: pointer; transition: all 0.2s;
    }
    .finder-restart:hover { border-color: var(--ink); color: var(--ink); }

    /* New finder UI */
    .finder-card-top {
      display: flex; align-items: center; gap: 12px;
      margin-bottom: 32px;
    }
    .finder-back {
      width: 32px; height: 32px; border-radius: 50%;
      background: transparent; border: 1px solid var(--ink-20);
      cursor: pointer; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-60); transition: all 0.2s;
    }
    .finder-back:hover { border-color: var(--ink); color: var(--ink); transform: translateX(-2px); }
    .finder-back svg { width: 14px; height: 14px; }
    .finder-card-top .finder-progress {
      flex: 1; margin: 0; justify-content: center;
    }
    .finder-counter {
      font-family: var(--ff); font-size: 11px; font-weight: 700;
      letter-spacing: 1px; color: var(--ink-60);
      flex-shrink: 0;
    }
    .finder-q-sub {
      font-size: 13px; font-weight: 300;
      color: var(--ink-60); line-height: 1.5;
      margin-top: -16px; margin-bottom: 24px;
    }
    .finder-opt {
      padding: 18px 18px;
      background: var(--cream);
      border: 1px solid var(--ink-08);
      border-radius: var(--r-md);
      font-family: var(--fb); font-size: 14px; font-weight: 500;
      color: var(--ink); cursor: pointer; text-align: left;
      transition: all 0.2s;
      display: flex; align-items: center; gap: 14px;
    }
    .finder-opt:hover {
      background: var(--yg-pale);
      border-color: var(--ink);
      transform: translateY(-2px);
    }
    .finder-opt-icon {
      font-size: 24px; flex-shrink: 0;
      width: 40px; height: 40px;
      background: var(--off-white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .finder-opt-content {
      display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0;
    }
    .finder-opt-text {
      font-size: 14px; font-weight: 600; line-height: 1.3;
    }
    .finder-opt-sub {
      font-size: 11px; color: var(--ink-60); font-weight: 400;
    }
    .finder-result {
      transition: background-color 0.5s ease;
      padding: 24px;
      border-radius: var(--r-lg);
      margin: -24px -24px 0;
    }
    .finder-result-reasons {
      display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
      justify-content: center; margin-top: 8px; max-width: 480px;
    }
    .finder-reasons-label {
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--ink-60);
      width: 100%; text-align: center; margin-bottom: 4px;
    }
    .finder-reason-chip {
      padding: 5px 12px;
      background: var(--off-white);
      border: 1px solid var(--ink-08);
      border-radius: var(--r-pill);
      font-size: 12px; font-weight: 500; color: var(--ink);
    }
    .finder-share {
      display: inline-flex; align-items: center; gap: 8px;
      background: transparent; border: 1px solid var(--ink);
      color: var(--ink); padding: 13px 22px;
      border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
      cursor: pointer; transition: all 0.2s;
      font-family: var(--fb);
    }
    .finder-share:hover { background: var(--ink); color: #fff; }
    .finder-share svg { width: 14px; height: 14px; }
    .finder-alternatives {
      display: none; margin-top: 32px; padding-top: 28px;
      border-top: 1px solid var(--ink-08); width: 100%;
    }
    .finder-alt-label {
      font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--ink-60);
      margin-bottom: 14px; text-align: center;
    }
    .finder-alt-row {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    @media (max-width: 480px) {
      .finder-alt-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
    }
    .finder-alt-card {
      padding: 12px 10px;
      border: 1px solid var(--ink-08);
      border-radius: var(--r-md);
      cursor: pointer; transition: all 0.2s;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      font-family: var(--fb);
    }
    .finder-alt-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
      border-color: var(--ink-20);
    }
    .finder-alt-card img {
      width: 50px; height: 90px; object-fit: contain;
      filter: drop-shadow(0 6px 12px rgba(0,0,0,0.12));
    }
    .finder-alt-info { text-align: center; }
    .finder-alt-info span {
      display: block; font-size: 9px; font-weight: 600;
      letter-spacing: 1px; text-transform: uppercase; color: var(--ink-60);
      margin-bottom: 2px;
    }
    .finder-alt-info strong {
      display: block; font-family: var(--ff); font-size: 11px;
      font-weight: 700; letter-spacing: -0.2px; line-height: 1.2;
      color: var(--ink);
    }

        

        /* MARQUEE */
    .marquee { background: var(--ink); padding: 18px 0; overflow: hidden; }
    .mq-track { display: flex; animation: mq 26s linear infinite; will-change: transform; }
    .mq-item { display: inline-flex; align-items: center; gap: 20px; padding: 0 28px; font-family: var(--ff); font-size: clamp(11px, 2vw, 14px); font-weight: 700; letter-spacing: 0.5px; color: rgba(255,255,255,0.8); white-space: nowrap; }
    .mq-dot { width: 5px; height: 5px; background: var(--yg); border-radius: 50%; flex-shrink: 0; }
    @keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* SECTION */
    section { padding: var(--section) var(--gutter); }
    .sec-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-60); margin-bottom: 20px; }
    .sec-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--ink-60); }
    .sec-h2 { font-family: var(--ff); font-size: clamp(26px, 4.5vw, 52px); font-weight: 900; line-height: 1.0; letter-spacing: -1.5px; color: var(--ink); }
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
    .reveal.vis { opacity: 1; transform: none; }
    .rd1 { transition-delay: 0.1s; } .rd2 { transition-delay: 0.2s; }
    .rd3 { transition-delay: 0.3s; } .rd4 { transition-delay: 0.4s; }

    /* ABOUT */
    .about {
      background: var(--off-white);
      display: flex;
      flex-direction: column;
      gap: clamp(32px, 5vw, 56px);
      padding-top: clamp(56px, 7vw, 80px);
      padding-bottom: clamp(56px, 7vw, 80px);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(28px, 4vw, 48px);
      align-items: stretch;
    }
    @media (min-width: 900px) {
      .about-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: clamp(40px, 5vw, 64px);
      }
    }
    .about-text {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .about-text .sec-h2 { margin-bottom: 18px; }
    .about-text p { font-size: clamp(14px, 1.6vw, 16px); font-weight: 300; line-height: 1.65; color: var(--ink-60); }
    .about-text p + p { margin-top: 10px; }
    .feat-list { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; flex: 1; align-content: stretch; }
    .feat { padding: 16px 18px; background: var(--cream); border-radius: var(--r-md); border: 1px solid var(--ink-08); display: flex; flex-direction: column; justify-content: flex-start; }
    .feat-icon { width: 28px; height: 28px; background: var(--yg); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
    .feat-icon svg { width: 14px; height: 14px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; }
    .feat h3 { font-family: var(--ff); font-size: 11px; font-weight: 700; margin-bottom: 3px; }
    .feat p { font-size: 11.5px; color: var(--ink-60); line-height: 1.45; font-weight: 300; }
    .about-vis {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      width: 100%;
      padding-top: clamp(20px, 3vw, 40px);
    }
    .about-vis-cans {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      gap: clamp(20px, 3vw, 48px);
      max-width: 900px;
      flex-wrap: nowrap;
    }
    .about-can { transition: transform 0.4s cubic-bezier(.34,1.4,.64,1); }
    .about-can:hover { transform: translateY(-12px); }
    .about-can:nth-child(2) { transform: translateY(-24px); }
    .about-can:nth-child(2):hover { transform: translateY(-36px); }
    .about-can:nth-child(3) { transform: translateY(-12px); }
    .about-can:nth-child(3):hover { transform: translateY(-24px); }
    .about-can:nth-child(4) { transform: translateY(-18px); }
    .about-can:nth-child(4):hover { transform: translateY(-30px); }
    .about-can img { width: clamp(90px, 12vw, 150px); height: auto; filter: drop-shadow(0 18px 36px rgba(0,0,0,0.18)); }

    /* PRODUCTS */
    .products {
      background: var(--cream);
      transition: background-color 0.5s ease;
    }
    .products-hd { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
    .tab-row { display: flex; gap: 6px; flex-wrap: wrap; }
    .tab { padding: 9px 20px; border-radius: var(--r-pill); border: 1px solid var(--ink-20); background: transparent; font-family: var(--fb); font-size: 13px; font-weight: 500; color: var(--ink-60); cursor: pointer; transition: all 0.2s; }
    .tab:hover { border-color: var(--ink); color: var(--ink); }
    .tab.on { background: var(--ink); color: #fff; border-color: var(--ink); }
    .sub-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px; }
    .stab { padding: 6px 14px; border-radius: var(--r-pill); border: 1px solid var(--ink-20); background: transparent; font-family: var(--fb); font-size: 12px; font-weight: 400; color: var(--ink-60); cursor: pointer; transition: all 0.2s; }
    .stab:hover { border-color: var(--ink-60); color: var(--ink); }
    .stab.on { background: var(--cream); border-color: var(--ink); color: var(--ink); font-weight: 500; }
    .pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%,188px),1fr)); gap: clamp(12px,2.5vw,20px); }

    /* PRODUCT ROWS — horizontální karusely */
    .prow { margin-top: clamp(28px, 4vw, 44px); position: relative; }
    .prow:first-of-type { margin-top: 0; }
    .prow-hd { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
    .prow-title {
      font-family: var(--ff); font-size: clamp(18px, 2.8vw, 26px);
      font-weight: 900; letter-spacing: -0.8px; color: var(--ink);
    }
    .prow-count {
      font-family: var(--fb); font-size: 13px; font-weight: 500;
      color: var(--ink-60); letter-spacing: 0.5px;
    }
    .prow-stage {
      position: relative;
      /* Allow side arrows to overlap outside the gutter on desktop */
    }
    .prow-arr {
      width: clamp(48px, 5vw, 64px); height: clamp(48px, 5vw, 64px);
      border-radius: 50%;
      border: none; background: var(--ink); color: #fff;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, background 0.2s, opacity 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.18);
      position: absolute;
      top: 50%;
      transform: translateY(-60%);
      z-index: 3;
    }
    .prow-arr.left  { left:  clamp(-8px, -1vw, -22px); }
    .prow-arr.right { right: clamp(-8px, -1vw, -22px); }
    .prow-arr:hover { background: var(--yg); color: var(--ink); transform: translateY(-60%) scale(1.08); }
    .prow-arr svg { width: 20px; height: 20px; }
    .prow-arr.disabled { opacity: 0.3; pointer-events: none; }
    @media (max-width: 640px) {
      .prow-arr {
        width: 36px; height: 36px;
        box-shadow: 0 4px 14px rgba(0,0,0,0.25);
      }
      .prow-arr.left { left: 4px; }
      .prow-arr.right { right: 4px; }
      .prow-arr svg { width: 14px; height: 14px; }
    }
    .prow-track {
      display: flex; gap: clamp(14px, 2vw, 22px);
      overflow-x: auto; overflow-y: visible;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      touch-action: pan-x;
      padding: 4px 0 16px;
      scroll-padding: 0 var(--gutter);
      margin: 0 calc(-1 * var(--gutter));
      padding-left: var(--gutter);
      padding-right: var(--gutter);
    }
    .prow-track::-webkit-scrollbar { display: none; }
    .prow-track .pcard {
      flex: 0 0 clamp(180px, 25vw, 320px);
      scroll-snap-align: start;
    }
    /* Na mobilu menší karty + jedna trochu vyčuhuje (peek) jako nápověda že je víc */
    @media (max-width: 640px) {
      .prow-track .pcard {
        flex: 0 0 70%;
      }
    }
    @media (max-width: 480px) {
      .prow-track .pcard {
        flex: 0 0 78%;
      }
    }
    .prow-empty {
      padding: 40px 20px;
      background: var(--off-white);
      border: 1px dashed var(--ink-20);
      border-radius: var(--r-md);
      text-align: center; color: var(--ink-60);
      font-size: 14px; font-style: italic;
    }
    .pcard { background: var(--off-white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--ink-08); cursor: pointer; transition: transform 0.35s cubic-bezier(.34,1.4,.64,1), box-shadow 0.3s ease, border-color 0.2s; }
    .pcard:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); border-color: var(--ink-20); }
    .pcard-detail {
      position: absolute; bottom: 14px; left: 14px;
      width: 30px; height: 30px;
      border-radius: 50%;
      background: var(--ink); color: #fff;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: scale(0.7);
      transition: all 0.3s cubic-bezier(.34,1.4,.64,1);
      pointer-events: none;
    }
    .pcard:hover .pcard-detail { opacity: 1; transform: scale(1); }
    .pcard-detail svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.5; fill: none; }
    .pcard-img {
      aspect-ratio: 3/4; position: relative; overflow: hidden;
      display: flex; align-items: flex-end; justify-content: center;
      padding-bottom: 12px; background: #fff;
      transition: background-color 0.4s ease;
    }
    .pcard-img img { width: 52%; height: 80%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15)); transition: transform 0.4s cubic-bezier(.34,1.4,.64,1); }
    .pcard:hover .pcard-img img { transform: translateY(-6px) scale(1.04); }
    .pbadge { position: absolute; top: 12px; padding: 4px 10px; border-radius: var(--r-pill); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
    .pb-brand { left: 12px; background: rgba(14,14,12,0.07); color: var(--ink); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
    .pb-new { right: 12px; }
    .pcard-body { padding: 14px 16px 18px; }
    .pcard-body h3 { font-family: var(--ff); font-size: clamp(12px, 2vw, 14px); font-weight: 700; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 3px; }
    .pcard-flavor { font-size: 11px; color: var(--ink-60); font-weight: 300; margin-bottom: 10px; line-height: 1.4; }
    .pmeta { display: flex; gap: 5px; flex-wrap: wrap; }
    .pmeta-pill { padding: 3px 8px; background: var(--cream); border-radius: var(--r-pill); font-size: 11px; font-weight: 500; color: var(--ink-60); border: 1px solid var(--ink-08); }

    /* OCCASIONS (pravý sloupec v about — vertikální) */
    .about-occasions {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: clamp(24px, 3vw, 32px);
      background: var(--cream);
      border-radius: var(--r-lg);
      border: 1px solid var(--ink-08);
      height: 100%;
      justify-content: space-between;
    }
    .occasion-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-60);
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid var(--ink-08);
      flex-shrink: 0;
    }
    .about-occasions .occasions-list {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      flex: 1;
    }
    .occasion {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--ink-08);
    }
    .occasion:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    .occasion:first-of-type {
      padding-top: 0;
    }
    .occasion .oc-text {
      flex: 1;
      font-size: 13px;
      color: var(--ink-60);
      font-weight: 300;
      line-height: 1.5;
    }
    .occasion strong {
      display: block;
      font-family: var(--ff);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .oc-num {
      font-family: var(--ff);
      font-size: clamp(22px, 2.5vw, 28px);
      font-weight: 900;
      color: var(--yg);
      flex-shrink: 0;
      line-height: 1;
      letter-spacing: -1px;
      width: 36px;
    }

    /* WHERE TO BUY */
    .wtb { background: var(--cream); }
    .wtb-layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 64px;
      align-items: stretch;
    }
    @media (min-width: 900px) {
      .wtb-layout { grid-template-columns: 1fr 1fr; }
    }
    .wtb-text {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .wtb-text .sec-h2 { margin-bottom: 20px; }
    .wtb-text p { font-size: 16px; font-weight: 300; color: var(--ink-60); line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
    .stores-grid {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 10px;
      flex: 1;
      align-content: stretch;
    }
    @media (max-width: 500px) { .stores-grid { grid-template-columns: repeat(3,1fr); } }
    .store-chip { background: var(--off-white); border: 1px solid var(--ink-08); border-radius: var(--r-md); padding: 18px 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; transition: border-color 0.2s, transform 0.2s; min-height: 80px; }
    .store-chip:hover { border-color: var(--ink-20); transform: translateY(-2px); }
    .store-letter { width: 36px; height: 36px; border-radius: var(--r-sm); background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff); font-size: 13px; font-weight: 900; }
    .store-name { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px; color: var(--ink-60); text-align: center; }
    .wtb-cta {
      background: var(--ink);
      border-radius: var(--r-xl);
      padding: clamp(36px,6vw,60px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      position: relative;
      overflow: hidden;
      height: 100%;
      min-height: 100%;
    }
    .wtb-cta::before { content: ''; position: absolute; width: 320px; height: 320px; background: radial-gradient(circle,rgba(201,218,58,0.18) 0%,transparent 70%); bottom: -80px; right: -60px; pointer-events: none; }
    .wtb-cta .sec-tag { color: rgba(255,255,255,0.3); }
    .wtb-cta .sec-tag::before { background: rgba(255,255,255,0.18); }
    .wtb-cta h3 { font-family: var(--ff); font-size: clamp(20px,3.5vw,30px); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.1; }
    .wtb-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.65; }
    .btn-yg { display: inline-flex; align-items: center; gap: 8px; padding: 16px 30px; background: var(--yg); color: var(--ink); border-radius: var(--r-pill); font-size: 14px; font-weight: 600; align-self: flex-start; transition: all 0.2s; }
    .btn-yg:hover { background: #d8ea50; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,218,58,0.35); }

    /* FOOTER */
    footer { background: var(--ink); color: #fff; padding: clamp(56px,10vw,96px) var(--gutter) 36px; }
    .footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
    @media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
    .fbrand-logo { font-family: var(--ff); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }
    .fbrand-logo em { color: var(--yg); font-style: normal; }
    .fbrand p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 300px; margin-top: 14px; }
    .fcol h4 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
    .fcol ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .fcol ul li a { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55); transition: color 0.2s; }
    .fcol ul li a:hover { color: #fff; }
    .footer-btm { padding-top: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
    .flegal { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.26); line-height: 1.6; max-width: 540px; }
    .age-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid rgba(201,218,58,0.3); border-radius: var(--r-pill); font-size: 12px; font-weight: 600; color: var(--yg); letter-spacing: 0.5px; }
    .age-badge-link { transition: all 0.2s; }
    .age-badge-link:hover { border-color: var(--yg); background: rgba(201,218,58,0.1); }
    .age-badge-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--yg); color: var(--ink);
      font-family: var(--ff); font-size: 11px; font-weight: 900;
      letter-spacing: 0; flex-shrink: 0;
    }
    .age-badge-text { white-space: nowrap; }

    /* NEW CAN NOTIFICATION */
    .new-toast {
      position: fixed; bottom: 24px; right: 24px; z-index: 200;
      background: var(--ink); color: #fff;
      padding: 14px 20px; border-radius: var(--r-lg);
      font-size: 13px; font-weight: 500;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
      transform: translateY(100px); opacity: 0;
      transition: all 0.4s cubic-bezier(.34,1.4,.64,1);
      cursor: pointer; max-width: 320px;
    }
    .new-toast.show { transform: translateY(0); opacity: 1; }
    .new-toast-dot { width: 8px; height: 8px; background: var(--yg); border-radius: 50%; flex-shrink: 0; animation: pulse 2s ease infinite; }
    @keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.4); opacity:0.7; } }
    /* COOKIES LIŠTA */
    .cookie-bar {
      position: fixed;
      left: 16px; right: 16px; bottom: 16px;
      z-index: 9998;
      max-width: 980px;
      margin: 0 auto;
      background: var(--ink);
      color: #fff;
      border-radius: var(--r-md);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cookie-bar[hidden] { display: none; }
    .cookie-text {
      flex: 1; min-width: 220px;
      font-size: 13px; font-weight: 300;
      line-height: 1.6; color: rgba(255,255,255,0.72);
    }
    .cookie-actions { flex-shrink: 0; }
    .cookie-btn {
      padding: 11px 24px;
      background: var(--yg); color: var(--ink);
      border: none; border-radius: var(--r-pill);
      font-family: var(--fb); font-size: 13px; font-weight: 600;
      cursor: pointer; transition: all 0.2s;
    }
    .cookie-btn:hover { background: #d8ea50; transform: translateY(-1px); }
    @media (max-width: 600px) {
      .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
      .cookie-btn { width: 100%; }
    }

  @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .marquee .mq-track { animation: none; }
    }

    /* ════════════════════════════════════════════════════════════════
     * EVENT BANNER — V1 (top banner pod hlavičkou) + V2 (plovoucí kartička)
     * ════════════════════════════════════════════════════════════════ */
    .event-banner-v1 {
      position: fixed;
      top: 64px;
      left: 0; right: 0;
      width: 100%;
      padding: 10px 16px;
      display: flex; align-items: center; justify-content: center;
      gap: 12px; flex-wrap: wrap;
      font-family: var(--ff);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: -0.1px;
      z-index: 99;
      animation: eventSlideDown 0.5s ease-out;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .event-banner-v1 .eb-emoji { font-size: 18px; }
    .event-banner-v1 .eb-text { font-weight: 700; }
    .event-banner-v1 .eb-subtitle { opacity: 0.8; font-weight: 400; }
    .event-banner-v1 .eb-countdown {
      padding: 2px 10px;
      background: rgba(0,0,0,0.12);
      border-radius: var(--r-pill);
      font-family: var(--fb);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    .event-banner-v1 .eb-countdown.urgent {
      background: var(--ink);
      color: var(--yg);
      animation: eventPulse 1.5s ease-in-out infinite;
    }
    .event-banner-v1 .eb-cta {
      padding: 4px 12px;
      background: rgba(0,0,0,0.85);
      color: #fff;
      border-radius: var(--r-pill);
      font-size: 11px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.15s;
    }
    .event-banner-v1 .eb-cta:hover { transform: scale(1.05); }
    .event-banner-v1 .eb-close {
      position: absolute;
      right: 12px; top: 50%; transform: translateY(-50%);
      width: 24px; height: 24px;
      display: flex; align-items: center; justify-content: center;
      background: transparent; border: none; cursor: pointer;
      opacity: 0.5; transition: opacity 0.2s;
      font-size: 18px; line-height: 1;
    }
    .event-banner-v1 .eb-close:hover { opacity: 1; }

    .event-banner-v2 {
      position: fixed;
      bottom: 20px; right: 20px;
      max-width: 320px;
      padding: 14px 16px;
      border-radius: var(--r-md);
      box-shadow: 0 16px 40px rgba(0,0,0,0.18);
      font-family: var(--ff);
      font-size: 13px;
      z-index: 50;
      animation: eventSlideInRight 0.5s cubic-bezier(.34, 1.4, .64, 1);
    }
    .event-banner-v2 .eb-emoji { font-size: 24px; margin-bottom: 4px; display: block; }
    .event-banner-v2 .eb-text {
      font-family: var(--ff); font-weight: 700; font-size: 14px;
      letter-spacing: -0.2px; margin-bottom: 2px;
    }
    .event-banner-v2 .eb-subtitle { font-size: 12px; opacity: 0.75; margin-bottom: 8px; }
    .event-banner-v2 .eb-countdown {
      display: inline-block;
      padding: 3px 10px;
      background: rgba(0,0,0,0.12);
      border-radius: var(--r-pill);
      font-family: var(--fb);
      font-weight: 600;
      font-size: 11px;
      margin-bottom: 8px;
    }
    .event-banner-v2 .eb-countdown.urgent {
      background: var(--ink);
      color: var(--yg);
      animation: eventPulse 1.5s ease-in-out infinite;
    }
    .event-banner-v2 .eb-cta {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(0,0,0,0.85);
      color: #fff;
      border-radius: var(--r-pill);
      font-size: 11px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.15s;
    }
    .event-banner-v2 .eb-cta:hover { transform: scale(1.05); }
    .event-banner-v2 .eb-close {
      position: absolute;
      top: 6px; right: 8px;
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      background: transparent; border: none; cursor: pointer;
      opacity: 0.4; transition: opacity 0.2s;
      font-size: 16px; line-height: 1;
    }
    .event-banner-v2 .eb-close:hover { opacity: 1; }
    @media (max-width: 700px) {
      .event-banner-v2 {
        bottom: 12px; right: 12px; left: 12px;
        max-width: none;
      }
    }
    @keyframes eventSlideDown {
      from { transform: translateY(-100%); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes eventSlideInRight {
      from { transform: translateX(120%); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
    @keyframes eventPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.08); }
    }
    /* ═══════════════════════════════════════════════════════════════
       HERO VARIANTA 2 — centered text + rozházené plechovky
       Aktivuje se přidáním třídy .hero-v2 na element .hero
       ═══════════════════════════════════════════════════════════════ */
    .hero.hero-v2 {
      grid-template-columns: 1fr;
      min-height: clamp(600px, 85vh, 820px);
      padding-top: 64px;
      position: relative;
      align-items: stretch;
      transition: background-color 0.8s ease;
      overflow: hidden;
    }
    .hero.hero-v2 .hero-top {
      grid-column: 1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      max-width: 560px;
      margin: 0 auto;
      padding-top: clamp(32px, 5vh, 56px);
      padding-bottom: clamp(40px, 6vh, 70px);
      gap: clamp(12px, 1.4vh, 18px);
      position: relative;
      z-index: 3;
    }
    .hero.hero-v2 .hero-eyebrow { justify-content: center; margin: 0; }
    .hero.hero-v2 .hero-stats { justify-content: center; margin: 0; }
    .hero.hero-v2 .hero-actions { justify-content: center; margin: 0; }
    .hero.hero-v2 .hero-desc { margin: 0; max-width: 420px; font-size: clamp(13px, 1.3vw, 15px); }
    .hero.hero-v2 h1 {
      font-size: clamp(28px, 4vw, 48px);
      line-height: 0.95;
      letter-spacing: -2px;
      text-align: center;
      margin: 0;
    }
    /* Force 3 pevné řádky — zobrazit <br>, spany jako block, žádný interní wrap */
    .hero.hero-v2 h1 br { display: inline; }
    .hero.hero-v2 h1 > span {
      display: block;
      margin-right: 0;
      white-space: nowrap;
    }
    .hero.hero-v2 h1 > span:last-child {
      margin-top: 0;
      color: var(--ink);
    }
    /* Prostřední řádek menší */
    .hero.hero-v2 h1 > span:nth-of-type(2) {
      font-size: clamp(22px, 3.2vw, 38px);
    }
    .hero.hero-v2 .hero-podium {
      grid-column: 1;
      grid-row: 1;
      width: 100%;
      height: 100%;
      padding: 0;
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }
    .hero.hero-v2 .podium-cans, .hero.hero-v2 .podium-base {
      display: none;
    }
    .hero.hero-v2 .floating-cans {
      position: absolute;
      top: 0; bottom: 0; left: 0; right: 0;
      width: 100%;
      pointer-events: none;
      z-index: 1;
    }
    .floating-can {
      position: absolute;
      pointer-events: auto;
      cursor: pointer;
      transition: filter 0.3s;
      filter: drop-shadow(0 22px 40px rgba(0,0,0,0.22));
      animation: floatBob 6s ease-in-out infinite;
    }
    .floating-can:hover {
      filter: drop-shadow(0 32px 56px rgba(0,0,0,0.32));
      animation-play-state: paused;
      transform: scale(1.08) rotate(var(--rot, 0deg)) !important;
    }
    .floating-can img { width: 100%; height: auto; display: block; }
    @keyframes floatBob {
      0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
      50% { transform: translateY(-10px) rotate(var(--rot, 0deg)); }
    }
    .floating-can:nth-child(1) { animation-delay: 0s; }
    .floating-can:nth-child(2) { animation-delay: 0.5s; }
    .floating-can:nth-child(3) { animation-delay: 1s; }
    .floating-can:nth-child(4) { animation-delay: 1.5s; }
    .floating-can:nth-child(5) { animation-delay: 2s; }
    .floating-can:nth-child(6) { animation-delay: 2.5s; }
    .hero.hero-v2::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -1px;
      height: clamp(50px, 7vw, 100px);
      background: var(--cream);
      -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'><path d='M0,8 C20,16 40,0 50,6 C60,12 80,2 100,8 L100,20 L0,20 Z' fill='black'/></svg>");
      mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'><path d='M0,8 C20,16 40,0 50,6 C60,12 80,2 100,8 L100,20 L0,20 Z' fill='black'/></svg>");
      -webkit-mask-size: 100% 100%;
      mask-size: 100% 100%;
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      z-index: 2;
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .floating-can { opacity: 0.85; }
    }
    @media (max-width: 700px) {
      .hero.hero-v2 { min-height: clamp(540px, 90vh, 720px); }
      .hero.hero-v2 .hero-top {
        padding-top: 40px;
        padding-bottom: 60px;
        padding-left: clamp(16px, 4vw, 24px);
        padding-right: clamp(16px, 4vw, 24px);
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
      }
      .hero.hero-v2 h1 {
        font-size: clamp(24px, 6vw, 36px);
        letter-spacing: -1px;
        line-height: 1;
      }
      /* Mobil — zachovat 3 pevné řádky (přepsat výchozí inline z V2) */
      .hero.hero-v2 h1 > span { display: block; white-space: nowrap; }
      .hero.hero-v2 h1 > span:last-child { display: block; margin-top: 4px; }
      .hero.hero-v2 h1 > span:nth-of-type(2) { font-size: clamp(20px, 4.8vw, 30px); }
      .hero.hero-v2 .hero-desc { font-size: 12px; padding: 0 8px; }
      .floating-can { opacity: 0.5; }
    }
    @media (max-width: 480px) {
      .hero.hero-v2 h1 { font-size: clamp(22px, 5.5vw, 30px); }
      .hero.hero-v2 h1 > span:nth-of-type(2) { font-size: clamp(18px, 4.4vw, 26px); }
      .floating-can { opacity: 0.35; }
    }
