.cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    padding: 1rem 1.25rem;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cookie-consent-banner--visible {
    display: block;
}

.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #374151;
}

.cookie-consent-policy-link {
    color: #315978;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-policy-link:hover {
    color: #1e3a52;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent-btn-essential {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cookie-consent-btn-essential:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

body.cookie-consent-active .site-footer {
    margin-bottom: 5.5rem;
}

body.cookie-consent-active .login-legal-footer {
    bottom: 5.5rem;
}

@media (max-width: 640px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-actions button {
        flex: 1 1 auto;
    }
}
