/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER STYLES
   ═══════════════════════════════════════════════════════════ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.cookie-box {
    background: white;
    padding: 30px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 15px 15px 0 0;
}

.cookie-content h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 22px;
}

.cookie-content p {
    margin: 0 0 15px 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.cookie-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.cookie-links a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-reject {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-reject:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    to { 
        opacity: 0; 
        transform: translateY(100%);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-box {
        padding: 20px;
        margin: 0;
        border-radius: 15px 15px 0 0;
    }
    
    .cookie-content h3 {
        font-size: 18px;
    }
    
    .cookie-content p {
        font-size: 14px;
    }
    
    .cookie-actions {
        flex-direction: column;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 8px;
    }
}
