
/* ========= СТИЛИ КУКИ-БАННЕРА ========= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 198, 255, 0.25);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 1.25rem 2rem;
    font-family: inherit;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cookie-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 3;
    min-width: 240px;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cfddee;
    margin: 0;
}

.cookie-text a {
    color: rgba(255, 106, 0, 1);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 106, 0, 1);
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: rgba(255, 140, 0, 1);;
    border-bottom-color: rgba(255, 140, 0, 1);;
}

.cookie-buttons {
    flex: 1;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}
/* Адаптив для мобильных */
@media (max-width: 680px) {
    .cookie-banner {
        padding: 1rem 1.5rem;
    }
    .cookie-container {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-buttons {
        justify-content: center;
    }
    .btn-cookie {
        text-align: center;
        flex: 1;
    }
}