.mk-consent-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    max-width: 880px;
    margin: 0 auto;
    padding: 18px 22px;
    background: #0a0a0a;
    color: #ffffff;
    border: 1px solid #d4af37;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Raleway', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    line-height: 1.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mk-consent-banner.mk-consent-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.mk-consent-text {
    flex: 1 1 320px;
    color: rgba(255, 255, 255, 0.92);
}

.mk-consent-text strong {
    color: #d4af37;
}

.mk-consent-text a {
    color: #d4af37;
    text-decoration: underline;
}

.mk-consent-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.mk-consent-btn {
    padding: 10px 18px;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mk-consent-deny {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.mk-consent-deny:hover,
.mk-consent-deny:focus-visible {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.mk-consent-accept {
    background: #d4af37;
    color: #0a0a0a;
    border: 1px solid #d4af37;
}

.mk-consent-accept:hover,
.mk-consent-accept:focus-visible {
    background: #e2bf4d;
    border-color: #e2bf4d;
}

.mk-consent-btn:focus-visible {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.mk-consent-reopen {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9997;
    padding: 8px 14px;
    background: rgba(10, 10, 10, 0.78);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    font-family: 'Raleway', system-ui, -apple-system, sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mk-consent-reopen:hover,
.mk-consent-reopen:focus-visible {
    background: #0a0a0a;
    color: #ffffff;
    border-color: #d4af37;
}

@media (max-width: 600px) {
    .mk-consent-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .mk-consent-actions {
        justify-content: flex-end;
    }
}
