    /* ── Cookies page layout ── */
    .cookies-page {
      padding-top: 120px;
      padding-bottom: var(--section-py);
      min-height: 100vh;
    }

    .cookies-hero {
      margin-bottom: clamp(52px, 6vw, 80px);
      padding-bottom: clamp(36px, 4vw, 52px);
      border-bottom: 1px solid var(--border);
    }

    .cookies-hero .section-label { margin-bottom: 16px; }

    .cookies-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .cookies-hero h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cookies-meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-3);
      letter-spacing: 0.06em;
    }

    .cookies-meta span::before {
      content: '— ';
      color: var(--accent);
    }

    /* ── Content ── */
    .cookies-content {
      display: grid;
      grid-template-columns: 220px 1fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: start;
    }

    /* Sticky sidebar TOC */
    .cookies-toc {
      position: sticky;
      top: 90px;
    }

    .toc-label {
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-3);
      margin-bottom: 14px;
    }

    .toc-list {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .toc-list a {
      font-size: 13px;
      color: var(--text-3);
      padding: 6px 10px;
      border-radius: 7px;
      transition: color 0.2s, background 0.2s;
      display: block;
      line-height: 1.4;
    }

    .toc-list a:hover,
    .toc-list a.is-active {
      color: var(--text-1);
      background: rgba(255,255,255,0.04);
    }

    .toc-list a.is-active {
      color: var(--accent);
    }

    /* ── Article sections ── */
    .cookies-article { max-width: 720px; }

    .cookies-section {
      margin-bottom: clamp(44px, 5vw, 68px);
      scroll-margin-top: 90px;
    }

    .cookies-section h2 {
      font-family: var(--font-display);
      font-size: clamp(20px, 2.2vw, 26px);
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--text-1);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .cookies-section h2 .sec-num {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.2);
      border-radius: 6px;
      padding: 2px 8px;
      letter-spacing: 0.04em;
      flex-shrink: 0;
    }

    .cookies-section p,
    .cookies-section li {
      font-size: clamp(14px, 1.3vw, 16px);
      line-height: 1.75;
      color: var(--text-3);
      margin-bottom: 12px;
    }

    .cookies-section ul {
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .cookies-section li {
      padding-left: 18px;
      position: relative;
      margin-bottom: 0;
    }

    .cookies-section li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-size: 12px;
    }

    .cookies-section a {
      color: var(--accent);
      border-bottom: 1px solid rgba(99,102,241,0.3);
      transition: border-color 0.2s;
    }

    .cookies-section a:hover { border-color: var(--accent); }

    .cookies-section strong { color: var(--text-2); font-weight: 600; }

    /* ── Tabulka cookies ── */
    .cookie-table-wrap {
      overflow-x: auto;
      border-radius: 12px;
      border: 1px solid var(--border);
      margin: 24px 0;
    }

    .cookie-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px;
    }

    .cookie-table th {
      padding: 12px 16px;
      background: var(--surface);
      color: var(--text-3);
      font-family: var(--font-mono);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
      text-align: left;
      white-space: nowrap;
      border-bottom: 1px solid var(--border);
    }

    .cookie-table td {
      padding: 12px 16px;
      color: var(--text-3);
      border-bottom: 1px solid var(--border);
      vertical-align: top;
      line-height: 1.55;
    }

    .cookie-table tr:last-child td { border-bottom: none; }

    .cookie-table tr:hover td { background: rgba(255,255,255,0.015); }

    .cookie-table .ct-name {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--accent);
      white-space: nowrap;
    }

    .cookie-table .ct-duration {
      white-space: nowrap;
      color: var(--text-3);
    }

    /* Category badges */
    .badge {
      display: inline-block;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      padding: 2px 8px;
      border-radius: 5px;
      white-space: nowrap;
    }

    .badge-necessary {
      background: rgba(16,185,129,0.1);
      border: 1px solid rgba(16,185,129,0.2);
      color: #10b981;
    }

    .badge-analytics {
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.2);
      color: var(--accent);
    }

    /* ── Consent management box ── */
    .consent-box {
      padding: clamp(24px, 3vw, 36px);
      background: var(--surface);
      border: 1px solid var(--border-2);
      border-radius: 16px;
      margin-top: 24px;
    }

    .consent-box h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--text-1);
      margin-bottom: 10px;
    }

    .consent-box p {
      margin-bottom: 20px;
    }

    #consent-status {
      font-size: 13px;
      margin-bottom: 20px;
      padding: 12px 16px;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--font-mono);
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .cs-none  { color: var(--text-3); }
    .cs-active { color: var(--green); }
    .cs-date  { color: var(--text-3); font-size: 11px; }

    .consent-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    /* ── Highlight box (kontaktní info, adresa) ── */
    .cookies-highlight {
      padding: 18px 22px;
      background: rgba(255,255,255,0.025);
      border: 1px solid var(--border-2);
      border-radius: 12px;
      font-size: clamp(14px, 1.3vw, 15px);
      color: var(--text-3);
      line-height: 1.8;
      margin: 20px 0;
    }

    .cookies-highlight strong { color: var(--text-1); }
    .cookies-highlight em { font-style: normal; color: var(--text-3); }

    /* ── Info callout ── */
    .callout {
      display: flex;
      gap: 14px;
      padding: 18px 20px;
      background: rgba(99,102,241,0.06);
      border: 1px solid rgba(99,102,241,0.15);
      border-radius: 12px;
      margin: 20px 0;
    }

    .callout-icon {
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .callout p { margin-bottom: 0; color: var(--text-3); font-size: 13px; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .cookies-content { grid-template-columns: 1fr; }
      .cookies-toc { display: none; }
    }