.sx-cookie-consent {
    position: fixed;
    inset: auto 18px 18px auto;
    z-index: 99998;
    font-family: "Manrope", "Trebuchet MS", sans-serif;
}

.sx-cookie-consent [hidden] {
    display: none !important;
}

.sx-cookie-consent__manage {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(17, 17, 20, 0.14);
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.96);
    color: #111114;
    box-shadow: 0 14px 34px rgba(19, 21, 30, 0.16);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.sx-cookie-consent__manage::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffb34a;
    box-shadow: 0 0 0 4px rgba(255, 179, 74, 0.18);
}

.sx-cookie-consent__manage[data-sx-cookie-state="accepted"]::before {
    background: #30b566;
    box-shadow: 0 0 0 4px rgba(48, 181, 102, 0.16);
}

.sx-cookie-consent__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 22, 33, 0.42);
}

.sx-cookie-consent__panel {
    position: fixed;
    right: 18px;
    bottom: 72px;
    width: min(480px, calc(100vw - 28px));
    padding: 22px;
    border: 1px solid rgba(17, 17, 20, 0.1);
    border-radius: 24px;
    background: #fffdf9;
    color: #111114;
    box-shadow: 0 28px 70px rgba(19, 21, 30, 0.24);
}

.sx-cookie-consent__eyebrow {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #f2ede6;
    color: #5d5d63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sx-cookie-consent__panel h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
}

.sx-cookie-consent__panel p {
    margin: 0;
    color: #4a4d57;
}

.sx-cookie-consent__panel a {
    color: #d7351a;
    font-weight: 700;
}

.sx-cookie-consent__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 20, 0.06);
    color: #111114;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.sx-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.sx-cookie-consent__button {
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.sx-cookie-consent__button--primary {
    background: linear-gradient(135deg, #ffd84b 0%, #ff7b3f 66%, #ff4338 100%);
    color: #111114;
}

.sx-cookie-consent__button--soft {
    background: rgba(17, 17, 20, 0.08);
    color: #111114;
}

.sx-cookie-consent__button--ghost {
    background: transparent;
    color: #111114;
    border: 1px solid rgba(17, 17, 20, 0.14);
}

.sx-cookie-consent__option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(17, 17, 20, 0.08);
}

.sx-cookie-consent__option strong {
    display: block;
    margin-bottom: 4px;
}

.sx-cookie-consent__option p {
    font-size: 14px;
}

.sx-cookie-consent__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111114;
}

.sx-cookie-consent__toggle input {
    width: 18px;
    height: 18px;
}

@media (max-width: 680px) {
    .sx-cookie-consent {
        inset: auto 12px 12px 12px;
    }

    .sx-cookie-consent__manage {
        width: 100%;
        justify-content: center;
    }

    .sx-cookie-consent__panel {
        right: 12px;
        left: 12px;
        bottom: 66px;
        width: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .sx-cookie-consent__panel h2 {
        font-size: 24px;
        padding-right: 32px;
    }

    .sx-cookie-consent__option {
        grid-template-columns: 1fr;
    }

    .sx-cookie-consent__actions {
        flex-direction: column;
    }

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