/* ========================= */
/* Стили для контейнера политики приватности */
/* ========================= */
.privacy-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.privacy-container section {
    margin-bottom: 30px;
}

.privacy-container section h2 {
    color: #4caf50;
    font-size: 1.6rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
}

.privacy-container section p,
.privacy-container section ul {
    font-size: 1rem;
    color: #555;
}

.privacy-container section ul {
    margin-left: 20px;
    list-style-type: disc;
}

.privacy-container section ul li {
    margin-bottom: 8px;
}

.privacy-container a {
    color: #4caf50;
    text-decoration: none;
    transition: 0.3s;
}

.privacy-container a:hover {
    text-decoration: underline;
}

/* ========================= */
/* Баннер cookies */
/* ========================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    z-index: 9999;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    animation: slideUp 0.5s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Кнопки */
.cookie-btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.3s;
}

.cookie-btn:hover {
    background-color: #45a049;
}

.cookie-btn.btn-disable {
    background-color: #e74c3c;
}

.cookie-btn.btn-disable:hover {
    background-color: #c0392b;
}

/* Иконка ⚙️ */
.cookie-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c3e50;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
  }
  
  .cookie-icon:hover {
    transform: rotate(20deg);
  }
  

/* Панель настроек */
.cookie-panel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    color: #333;
    border: 1px solid #2c3e50;
    padding: 20px;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    font-family: 'Roboto', sans-serif;
    animation: fadeIn 0.3s ease;
}

.cookie-panel p {
    margin-bottom: 10px;
    font-weight: bold;
}

/* ========================= */
/* Анимации */
/* ========================= */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-banner { display: none; }
.cookie-banner.show { display: flex; }