﻿/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 16px 24px;
    z-index: 10000;
    border-top: 1px solid #e0e0e0;
    display: none; /* по умолчанию скрыт, JS покажет при необходимости */
}

.cookie-banner-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-banner-text {
    margin: 0;
    font-size: 14px;
    color: #333;
    flex: 1;
    min-width: 200px;
}

    .cookie-banner-text a {
        color: #E7317D;
        text-decoration: underline;
    }

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-accept-btn,
.cookie-decline-btn {
    height: 48px;
    padding: 0px 36px;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-accept-btn {
    background: linear-gradient(197deg, #E7317D 0%, #D8242A 100%);
    color: #fff;
}

    .cookie-accept-btn:hover {
        opacity: 0.9;
    }

.cookie-decline-btn {
    background: #f0f0f0;
    color: #333;
}

    .cookie-decline-btn:hover {
        opacity: 0.9;
    }

@media (max-width: 600px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
    }
}
