/* Consent Popup Styles - Premium Design */
.consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.consent-popup.hidden {
    display: none;
}

.consent-popup.visible {
    display: flex;
}

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

.consent-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e3c72;
    font-weight: 700;
}

.consent-icon {
    width: 24px;
    height: 24px;
    background: #1e3c72;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z'/%3E%3C/svg%3E") no-repeat center;
}

.consent-body {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #444;
}

.consent-body p {
    margin: 0;
}

.consent-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-consent {
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.btn-accept {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.btn-reject {
    background: transparent;
    color: #1e3c72;
    border: 1px solid #1e3c72;
}

.btn-reject:hover {
    background: rgba(30, 60, 114, 0.05);
}

.consent-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 0.8rem;
}

.consent-links a {
    color: #666;
    text-decoration: underline;
    transition: color 0.2s;
}

.consent-links a:hover {
    color: #1e3c72;
}

@media (max-width: 480px) {
    .consent-popup {
        left: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        padding: 20px;
    }
}
