/* Cookie Alert Styles */
#cookie_notif {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
}

.cookie-alert {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
    margin: 0 auto;
    max-width: 600px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.cookie-alert.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    position: relative;
}

.cookie-alert-text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-align: center;
}

.cookie-alert-text a {
    color: #8A8178;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.cookie-alert-text a:hover {
    border-bottom-color: #8A8178;
}


.cookie-alert-progress {
    height: 3px;
    background: rgba(122, 89, 70, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.cookie-alert-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8A8178, #1a1a1c);
    width: 0%;
    transition: width 0.05s linear;
    border-radius: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .cookie-alert {
        margin: 0 10px;
        border-radius: 8px 8px 0 0;
    }
    
    .cookie-alert-content {
        padding: 12px 16px;
    }
    
    .cookie-alert-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cookie-alert {
        margin: 0 8px;
    }
    
    .cookie-alert-content {
        padding: 10px 12px;
    }
    
    .cookie-alert-text {
        font-size: 12px;
    }
}
