/* Cookie Consent Banner Styling */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 20px 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.cookie-consent-banner.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.cookie-consent-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-consent-icon {
    font-size: 24px;
    color: #f39c12;
}

.cookie-consent-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2746;
    margin: 0;
}

.cookie-consent-body p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 5px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-info {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.cookie-btn-info:hover {
    background: #f8fafc;
    color: #1a2746;
}

.cookie-btn-accept {
    background: #1a2746;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #2c3e50;
    box-shadow: 0 4px 12px rgba(26, 39, 70, 0.2);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        bottom: 20px;
        padding: 15px 20px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
