/* Cookie Banner Styles */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

#cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.cookie-banner-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

.cookie-banner-text a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: none;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 8px;
    background: transparent;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-btn-accept {
    background: white;
    color: #667eea;
}

.cookie-btn-accept:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #5568d3;
}

.cookie-btn-decline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Мобильная версия */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-text {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-banner-text i {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

