 /* -------- cookie banner styles -------- */
    #cookie-banner {
      position: fixed;
      bottom: 0; left: 0;
      width: 100%;
      background: rgba(0,0,0,0.85);
      color: #fff;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 15px 20px;
      box-sizing: border-box;
      z-index: 10000;
      font-size: 14px;
    }
    #cookie-banner a {
      color: #4a8fed;
      text-decoration: underline;
    }
    .cookie-actions {
      margin-top: 10px;
    }
    @media(min-width: 480px) {
      .cookie-actions { margin-top: 0; }
    }
    .cookie-btn {
      font-size: 14px;
      padding: 8px 16px;
      margin-left: 10px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    .accept-btn {
      background-color: #4a8fed;
      color: #fff;
    }
    .decline-btn {
      background-color: #ccc;
      color: #333;
    }
    .cookie-message {
      flex: 1 1 auto;
      min-width: 200px;
    }
    .cookie-actions {
      flex: 0 0 auto;
      display: flex;
    }
    /* -------------------------------------- */