/* Баннер с куками */
.cookie-banner {
    position: fixed;
    bottom: -100%; /* Спрятан внизу экрана */
    left: 0;
    width: 100%;
    background-color: #5E4A3C; /* Твой фирменный коричневый */
    color: #fff;
    padding: 20px 0;
    z-index: 9999; /* Поверх всего, но ниже лайтбокса */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transition: bottom 0.5s ease-in-out; /* Плавный выезд */
    font-family: 'Inter', sans-serif;
}

.cookie-banner.show {
    bottom: 0; /* Выезжает наверх */
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #EEE8E3; /* Светло-бежевый текст */
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--orange); /* Оранжевый при наведении */
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

/* Кнопка "Принять" */
.cookie-btn.accept {
    background-color: #FF931C; /* Оранжевый */
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #e07e10;
}

/* Кнопка "Отклонить" (прозрачная) */
.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.cookie-btn.decline:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.1);
}

/* Адаптив для мобильных */
@media (max-width: 1024px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        width: 100%; /* Кнопки на всю ширину */
        padding: 12px 0;
    }
}