    /* Стили баннера cookie #179bd7 */
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: #000;
      color: #fff;
      padding: 16px;
      max-width: 320px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      font-size: 14px;
      line-height: 1.4;
      display: none; /* Скрыт по умолчанию — покажем через JS */
      flex-direction: column;
      gap: 12px;
    }

    .cookie-banner p {
      margin: 0;
    }

    .cookie-banner a {
      color: #fff;
      text-decoration: underline;
    }

    .cookie-banner button {
      background: #007bff;
      color: white;
      border: none;
      padding: 8px 16px;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      font-size: 14px;
      width: fit-content;
    }

    .cookie-banner button:hover {
      background: #0069d9;
    }
