.slr-consent-banner {
    position: fixed;
    z-index: 10000;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 22px;
    border: 1px solid #d8e0e8;
    border-radius: 14px;
    background: #fff;
    color: #222831;
    box-shadow: 0 12px 38px rgba(30, 45, 65, .22);
    font-family: 'Inter', Arial, sans-serif;
}

.slr-consent-banner[hidden],
.slr-consent-backdrop[hidden],
.slr-consent-dialog[hidden],
.slr-cookie-manage[hidden] {
    display: none !important;
}

.slr-consent-copy {
    max-width: 650px;
}

.slr-consent-copy strong {
    display: block;
    margin-bottom: 5px;
    color: #334563;
    font-size: 17px;
}

.slr-consent-copy p {
    margin: 0 0 5px;
    color: #505b67;
    font-size: 14px;
    line-height: 1.5;
}

.slr-consent-privacy,
.slr-cookie-manage {
    padding: 0;
    border: 0;
    background: transparent;
    color: #596573;
    font: inherit;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
}

.slr-consent-actions,
.slr-consent-dialog-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.slr-consent-button {
    min-height: 42px;
    padding: 0 17px;
    border: 1px solid #334563;
    border-radius: 8px;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.slr-consent-button-primary {
    background: #334563;
    color: #fff;
}

.slr-consent-button-primary:hover {
    background: #2a3952;
}

.slr-consent-button-secondary {
    background: #fff;
    color: #334563;
}

.slr-consent-button-secondary:hover {
    background: #f3f7fb;
}

.slr-consent-backdrop {
    position: fixed;
    z-index: 10001;
    inset: 0;
    background: rgba(25, 35, 50, .58);
}

.slr-consent-dialog {
    position: fixed;
    z-index: 10002;
    top: 50%;
    left: 50%;
    width: min(560px, calc(100% - 30px));
    max-height: calc(100vh - 30px);
    overflow: auto;
    transform: translate(-50%, -50%);
    padding: 28px;
    border-radius: 14px;
    background: #fff;
    color: #222831;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
    font-family: 'Inter', Arial, sans-serif;
}

.slr-consent-dialog h2 {
    margin: 0 40px 8px 0;
    color: #334563;
    font-size: 25px;
}

.slr-consent-dialog > p {
    margin: 0 0 18px;
    color: #626d79;
    line-height: 1.5;
}

.slr-consent-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #334563;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.slr-consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    padding: 15px;
    border: 1px solid #d9dee5;
    border-radius: 10px;
    background: #fff;
}

.slr-consent-option div {
    display: grid;
    gap: 4px;
}

.slr-consent-option span {
    color: #68737e;
    font-size: 13px;
    line-height: 1.4;
}

.slr-consent-option input {
    width: 22px;
    height: 22px;
    accent-color: #334563;
    flex: 0 0 auto;
}

.slr-consent-option-required {
    background: #f3f7fb;
}

.slr-consent-always {
    white-space: nowrap;
    color: #334563 !important;
    font-weight: 700;
}

.slr-consent-dialog-actions {
    margin-top: 20px;
}

.slr-cookie-manage {
    margin-left: 12px;
}

.slr-consent-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .slr-consent-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 17px;
    }

    .slr-consent-actions,
    .slr-consent-dialog-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .slr-consent-button {
        width: 100%;
    }

    .slr-consent-dialog {
        padding: 22px 18px;
    }
}

@media print {
    .slr-consent-banner,
    .slr-consent-backdrop,
    .slr-consent-dialog,
    .slr-cookie-manage {
        display: none !important;
    }
}
