/* ==================== БАННЕР COOKIE ==================== */

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0b2b3b;
    color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: "Inter", sans-serif;
}

.cookie-notice--visible {
    transform: translateY(0);
}

.cookie-notice--hiding {
    transform: translateY(100%);
}

.cookie-notice-inner {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-notice-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 280px;
}

.cookie-notice-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f3b33d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-notice-text {
    flex: 1;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.cookie-notice-text strong {
    color: #f3b33d;
    font-weight: 600;
}

.cookie-notice-text a {
    color: #f3b33d;
    text-decoration: none;
    border-bottom: 1px dashed rgba(243, 179, 61, 0.5);
    transition: all 0.2s ease;
}

.cookie-notice-text a:hover {
    color: #ffc857;
    border-bottom-color: #ffc857;
}

.cookie-notice-actions {
    flex-shrink: 0;
}

.cookie-accept-btn {
    background: #f3b33d;
    color: #0b2b3b;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-accept-btn:hover {
    background: #ffc857;
    transform: scale(1.03);
}

.cookie-accept-btn:focus {
    outline: 2px solid #f3b33d;
    outline-offset: 2px;
}

.cookie-accept-btn:active {
    transform: scale(0.98);
}

/* ==================== АДАПТИВНОСТЬ COOKIE ==================== */

@media (max-width: 768px) {
    .cookie-notice-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .cookie-notice-content {
        min-width: auto;
    }
    
    .cookie-notice-icon {
        width: 38px;
        height: 38px;
    }
    
    .cookie-notice-text p {
        font-size: 0.9rem;
    }
    
    .cookie-accept-btn {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-notice-inner {
        padding: 14px 16px;
    }
    
    .cookie-notice-text p {
        font-size: 0.85rem;
    }
    
    .cookie-notice-icon {
        display: none; /* На очень маленьких экранах скрываем иконку */
    }
}