/* Основной контейнер баннера */
.cookie-banner {
    display: none; /* По умолчанию скрыт, JS покажет при загрузке */
    background-color: #1d222d;
    color: #cbd5e1;
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.5);
    
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Текстовая часть */
.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1 1 350px;
    text-align: left;
}

.cookie-text strong {
    color: #ffffff;
    display: block;
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.cookie-text a {
    color: #ffd966;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.cookie-text a:hover {
    color: #fbbf24;
}

/* Блок кнопок */
.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

/* Настройка кнопок */
.uk-button {
    border-radius: 8px;
    font-weight: 600;
    padding: 0 24px;
    line-height: 44px;
}

.btn-custom-yellow {
    background-color: #f9c74f;
    color: #1e1e2f;
    border: none;
    cursor: pointer;
}
.btn-custom-yellow:hover {
    background-color: #f4b41a;
    color: #000;
}

.btn-custom-outline {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #475569;
    cursor: pointer;
}
.btn-custom-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #64748b;
    color: #fff;
}

/* Адаптация для мобильных устройств */
@media (max-width: 640px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
        padding: 20px;
        width: 100%;
    }
    .cookie-actions {
        justify-content: stretch;
    }
    .cookie-actions .uk-button {
        width: 100%;
        text-align: center;
    }
}