.marketing-consent-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.15rem;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
    font-size: .95rem;
    line-height: 1.45;
}

.marketing-consent-text {
    flex: 1 1 auto;
}

.marketing-consent-actions {
    display: flex;
    flex: 0 0 auto;
    gap: .6rem;
}

.marketing-consent-button {
    border: 0;
    border-radius: 8px;
    padding: .7rem 1rem;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.marketing-consent-button.primary {
    background: #1b3a57;
    color: #ffffff;
}

.marketing-consent-button.secondary {
    background: #eef2f6;
    color: #1f2937;
}

@media (max-width: 720px) {
    .marketing-consent-banner,
    .marketing-consent-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .marketing-consent-button {
        width: 100%;
    }
}
