.mkr-cookie-consent {
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 56px);
    padding: 20px clamp(22px, 5vw, 72px);
    border-top: 1px solid rgba(30, 54, 64, .14);
    background: #fff;
    color: #1e3640;
    box-shadow: 0 -8px 30px rgba(30, 54, 64, .12);
    font-family: var(--mkr-font-ui, "Sora", system-ui, sans-serif);
}

.mkr-cookie-consent[hidden] {
    display: none;
}

.mkr-cookie-consent__content {
    width: min(920px, 100%);
}

.mkr-cookie-consent__content strong {
    display: block;
    margin-bottom: 5px;
    color: #1e3640;
    font-size: 16px;
    line-height: 1.35;
}

.mkr-cookie-consent__content p {
    margin: 0;
    color: #52666f;
    font-size: 13px;
    line-height: 1.6;
}

.mkr-cookie-consent__content a {
    color: #0f47af;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mkr-cookie-consent__button {
    flex: 0 0 auto;
    min-width: 116px;
    min-height: 44px;
    padding: 10px 24px;
    border: 0;
    border-radius: 999px;
    background: #e65100;
    color: #fff;
    font: 700 14px/1 var(--mkr-font-ui, "Sora", system-ui, sans-serif);
    cursor: pointer;
    transition: background-color .18s ease, transform .18s ease;
}

.mkr-cookie-consent__button:hover {
    background: #bf4300;
    transform: translateY(-1px);
}

.mkr-cookie-consent__button:focus-visible,
.mkr-cookie-consent__content a:focus-visible {
    outline: 3px solid rgba(0, 158, 255, .35);
    outline-offset: 3px;
}

@media (max-width: 680px) {
    .mkr-cookie-consent {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
    }

    .mkr-cookie-consent__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mkr-cookie-consent__button {
        transition: none;
    }
}
