/* cookie-banner.css */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8); /* Белый с 80% прозрачностью */
    color: #333; /* Темно-серый текст */
    padding: 15px;
    min-height: 14.28vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Легкая граница */
    backdrop-filter: blur(2px); /* Размытие фона */
}

.cookie-text {
    flex: 1;
    margin: 0 15px 10px 0;
    font-family: Arial, sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500; /* Увеличенная толщина текста */
}

.cookie-button {
    background: #007BFF; /* Синий цвет кнопки */
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Тень кнопки */
}

.cookie-button:hover {
    background: #0056b3; /* Темно-синий при наведении */
    transform: translateY(-1px); /* Эффект поднятия */
}

@media (max-width: 480px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .cookie-text {
        margin: 0 0 15px 0;
        font-size: 15px;
    }
    
    .cookie-button {
        width: 100%;
        padding: 12px;
    }
}