
    /* ═══════════════════════════════════════════
       OCEAN BLUE & WHITE THEME — VARIABLES
    ═══════════════════════════════════════════ */
    :root {
      --ocean-deep:   #0a5c8a;
      --ocean-mid:    #1487c7;
      --ocean-light:  #4fb3e8;
      --ocean-pale:   #eaf6fc;
      --sand-white:   #ffffff;
      --text-dark:    #0f2a3a;
      --text-muted:   #5b7585;
      --green-on:     #1fae6f;
    }

    /* ═══════════════════════════════════════════
       BASE BANNER WRAPPER
    ═══════════════════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 860px;
      background: var(--sand-white);
      border: 1px solid rgba(10,92,138,0.12);
      border-radius: 14px;
      box-shadow: 0 8px 36px rgba(10,92,138,0.18);
      z-index: 9999;
      font-family: system-ui, sans-serif;
      font-size: 13px;
      line-height: 1.6;
      overflow: hidden;
    }

    .cookie-banner.hidden { display: none; }

    /* ═══════════════════════════════════════════
       SIMPLE BANNER (default view)
    ═══════════════════════════════════════════ */
    .cb-simple {
      padding: 22px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      background: linear-gradient(180deg, var(--ocean-pale) 0%, #ffffff 60%);
    }

    .cb-simple-text { text-align: center; }

    .cb-wave-icon {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .cb-simple-text h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--ocean-deep);
      margin: 0 0 4px;
      letter-spacing: 0.2px;
    }

    .cb-simple-text p {
      font-size: 13px;
      color: var(--text-dark);
      line-height: 1.6;
      margin: 0;
      max-width: 560px;
    }

    .cb-simple-text a {
      color: var(--ocean-mid);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid var(--ocean-light);
    }

    .cb-simple-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* ═══════════════════════════════════════════
       SHARED BUTTON STYLES
    ═══════════════════════════════════════════ */
    .cb-btn {
      padding: 10px 26px;
      border-radius: 24px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.15s;
      letter-spacing: 0.2px;
    }

    .cb-btn:hover { opacity: 0.88; transform: translateY(-1px); }

    .cb-btn-primary {
      background: var(--ocean-mid);
      color: #fff;
      box-shadow: 0 3px 10px rgba(20,135,199,0.3);
    }

    .cb-btn-outline {
      background: #fff;
      color: var(--ocean-mid);
      border: 1.5px solid var(--ocean-mid);
    }

    /* ═══════════════════════════════════════════
       EXPANDED PANEL
    ═══════════════════════════════════════════ */
    .cb-expanded { display: none; }

    .cb-top {
      padding: 20px 24px 14px;
      border-bottom: 1px solid var(--ocean-pale);
      background: linear-gradient(180deg, var(--ocean-pale) 0%, #ffffff 100%);
    }

    .cb-top h3 {
      font-size: 15px;
      font-weight: 600;
      color: var(--ocean-deep);
      margin: 0 0 3px;
    }

    .cb-top p { margin: 0; color: var(--text-dark); }
    .cb-top a { color: var(--ocean-mid); font-weight: 600; text-decoration: none; }

    /* ── Tabs ── */
    .cb-tabs {
      display: flex;
      border-bottom: 1px solid #e3eef4;
      background: #fafdff;
    }

    .cb-tab {
      flex: 1;
      padding: 11px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      cursor: pointer;
      border: none;
      background: transparent;
      border-bottom: 2px solid transparent;
      transition: all 0.15s;
    }

    .cb-tab.active {
      color: var(--ocean-mid);
      border-bottom: 2px solid var(--ocean-mid);
      background: #fff;
    }

    .cb-tab-panel { display: none; }
    .cb-tab-panel.active { display: block; }

    /* ── Cookie rows ── */
    .cb-rows { padding: 0 0 2px; }

    .cb-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 22px;
      border-bottom: 1px solid #f0f6fa;
      cursor: pointer;
    }

    .cb-row:last-child { border-bottom: none; }
    .cb-row:hover { background: var(--ocean-pale); }

    .cb-row-chevron {
      font-size: 16px;
      color: var(--ocean-light);
      margin-top: 2px;
      transition: transform 0.2s;
      flex-shrink: 0;
      display: inline-block;
    }

    .cb-row.open .cb-row-chevron { transform: rotate(180deg); }

    .cb-row-body { flex: 1; }

    .cb-row-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .cb-row-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .cb-row-sub {
      font-weight: 400;
      color: var(--text-muted);
      font-size: 12px;
      margin-left: 4px;
    }

    .cb-row-badge {
      font-size: 11px;
      background: var(--ocean-pale);
      color: var(--ocean-deep);
      padding: 2px 9px;
      border-radius: 20px;
      font-weight: 600;
    }

    .cb-row-count {
      font-size: 11px;
      color: var(--text-muted);
      background: #f0f6fa;
      padding: 2px 7px;
      border-radius: 20px;
    }

    .cb-row-desc {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 5px;
      line-height: 1.5;
      display: none;
    }

    .cb-row.open .cb-row-desc { display: block; }

    /* ── Toggle pill ── */
    input[type="checkbox"] { display: none; }

    .cb-pill {
      width: 38px;
      height: 20px;
      background: #cfe3ee;
      border-radius: 50px;
      position: relative;
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 1px;
    }

    .cb-pill::before {
      content: "";
      position: absolute;
      width: 14px;
      height: 14px;
      background: #fff;
      border-radius: 50%;
      left: 3px;
      transition: transform 0.2s;
      box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }

    .cb-pill.on { background: var(--green-on); }
    .cb-pill.on::before { transform: translateX(18px); }

    .cb-pill.disabled { background: var(--ocean-deep); opacity: 0.6; cursor: not-allowed; }
    .cb-pill.disabled::before { transform: translateX(18px); }

    /* ── Expanded actions ── */
    .cb-exp-actions {
      display: flex;
      gap: 10px;
      padding: 16px 22px;
      background: #fafdff;
      border-top: 1px solid #f0f6fa;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── About panel ── */
    .about-panel {
      padding: 18px 24px;
      font-size: 13px;
      color: var(--text-dark);
      line-height: 1.7;
    }

    .about-panel h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--ocean-deep);
      margin: 12px 0 4px;
    }

    .about-panel a { color: var(--ocean-mid); text-decoration: none; font-weight: 600; }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 480px) {
      .cookie-banner { width: 100%; bottom: 0; border-radius: 14px 14px 0 0; max-width: 100%; }
      .cb-simple { padding: 18px; }
    }

