/* GDPR Consent Banner Styles */
.consent-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2rem;
    z-index: 100000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.consent-banner.active {
    display: flex;
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.consent-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.consent-header i {
    font-size: 1.5rem;
    color: #111827;
}

.consent-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.consent-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.consent-body a {
    color: #111827;
    text-decoration: underline;
    font-weight: 600;
}

.consent-footer {
    display: flex;
    gap: 1rem;
}

.btn-consent {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-accept {
    background: #111827;
    color: white;
    flex: 2;
}

.btn-accept:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-decline {
    background: #f3f4f6;
    color: #4b5563;
    flex: 1;
}

.btn-decline:hover {
    background: #e5e7eb;
}
