  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #444;
    font-family: Arial, sans-serif;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    animation: slideUp 0.3s ease-out;
  }

  .cookie-banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    max-width: 90%;
    text-align: center;
  }

  .cookie-banner p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .cookie-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s;
  }

  .cookie-btn:hover {
    background-color: #0056b3;
  }

  /* Анимация появления */
  @keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  /* Класс для скрытия баннера */
  .cookie-banner.hidden {
    display: none !important;
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
  }