/* Стили для виджета */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #FF6701; /* Новый цвет фона виджета */
      color: #fff; /* Белый текст для контраста */
      padding: 15px;
      text-align: center;
      font-family: Arial, sans-serif;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cookie-banner.hidden {
      display: none;
    }

    .cookie-banner p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .cookie-banner button {
      background-color: #FFA500; /* Ярко-оранжевый для кнопки */
      border: none;
      color: #fff;
      padding: 10px 20px;
      font-size: 14px;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s ease;
    }

    .cookie-banner button:hover {
      background-color: #FF8C00; /* Темнее при наведении */
    }

    @media (max-width: 768px) {
      .cookie-banner {
        flex-direction: column;
        gap: 10px;
      }
    }