.srt-app,
.srt-review-block {
    --srt-green: #49b552;
    --srt-green-dark: #287c31;
    --srt-ink: #111315;
    --srt-sage: #eef7ef;
    --srt-muted: #697078;
    --srt-card: #f3f5f6;
    --srt-red: #e44842;
    color: var(--srt-ink);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}

.srt-app *,
.srt-review-block * {
    box-sizing: border-box;
}

.srt-app button,
.srt-app select,
.srt-app input {
    font: inherit;
}

.srt-app button:focus-visible,
.srt-app a:focus-visible,
.srt-app select:focus-visible,
.srt-app input:focus-visible,
.srt-review-block a:focus-visible {
    outline: 3px solid #8bd892;
    outline-offset: 3px;
}

.srt-shell {
    padding: 34px 20px;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 10%, #f8fff8 0, var(--srt-sage) 52%, #e4efe6 100%);
}

.srt-panel {
    width: min(1030px, 100%);
    padding: 62px 78px 64px;
    color: #fff;
    background: var(--srt-ink);
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(19, 48, 25, .18);
    text-align: center;
}

.srt-eyebrow,
.srt-review-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 6px 12px 5px;
    border-radius: 4px;
    background: var(--srt-green);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.srt-title,
.srt-results-title,
.srt-product-title {
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.srt-title {
    max-width: 880px;
    margin: 22px auto 9px;
    color: #fff;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.04;
    letter-spacing: .015em;
}

.srt-subtitle {
    margin: 0;
    color: #a7adb1;
    font-size: clamp(14px, 2vw, 18px);
}

.srt-rule {
    width: 54px;
    height: 4px;
    margin: 30px auto 42px;
    background: var(--srt-green);
    box-shadow: 0 0 18px rgba(73, 181, 82, .7);
}

.srt-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.srt-control {
    min-height: 118px;
    padding: 27px 25px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, #eee);
    color: var(--srt-ink);
    text-align: left;
    box-shadow: 0 13px 30px rgba(0, 0, 0, .16);
}

.srt-control-heading {
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.srt-control-heading strong {
    color: var(--srt-green);
    font-size: 20px;
    white-space: nowrap;
}

.srt-range {
    --srt-progress: 50%;
    width: 100%;
    height: 7px;
    margin: 0;
    appearance: none;
    border-radius: 99px;
    outline: none;
    background: linear-gradient(to right, var(--srt-green) 0 var(--srt-progress), #cfd0d1 var(--srt-progress) 100%);
    cursor: pointer;
}

.srt-range::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    appearance: none;
    border: 4px solid var(--srt-green);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
}

.srt-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 4px solid var(--srt-green);
    border-radius: 50%;
    background: #fff;
}

.srt-select-label {
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.srt-select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #d5d8da;
    border-radius: 12px;
    background: #fff;
    color: var(--srt-ink);
    font-weight: 700;
    outline: none;
}

.srt-system {
    margin: 42px 0 0;
    padding: 0;
    border: 0;
}

.srt-system legend {
    width: 100%;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.srt-segments {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 6px;
    display: flex;
    gap: 4px;
    border: 1px solid #34383b;
    border-radius: 16px;
    background: #1c1f21;
}

.srt-segment {
    min-height: 38px;
    padding: 0 20px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #92999e;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: .16s ease;
}

.srt-segment:hover {
    color: #fff;
}

.srt-segment.is-active {
    background: var(--srt-green);
    color: #fff;
    box-shadow: 0 5px 18px rgba(73, 181, 82, .3);
}

.srt-submit {
    min-width: min(320px, 100%);
    min-height: 64px;
    margin-top: 42px;
    padding: 0 32px;
    border: 0;
    border-radius: 18px;
    background: var(--srt-green);
    color: #fff;
    box-shadow: 0 12px 24px rgba(73, 181, 82, .22);
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: .16s ease;
}

.srt-submit:hover {
    transform: translateY(-2px);
    background: #54c15d;
    box-shadow: 0 16px 28px rgba(73, 181, 82, .32);
}

.srt-results {
    display: none;
    scroll-margin-top: 20px;
    padding: 84px 20px 72px;
    background: #fff;
}

.srt-results.is-visible {
    display: block;
}

.srt-results-head {
    width: min(1100px, 100%);
    margin: 0 auto 36px;
    text-align: center;
}

.srt-eyebrow-light {
    background: #e4f7e6;
    color: var(--srt-green-dark);
}

.srt-results-title {
    margin: 17px 0 10px;
    font-size: clamp(29px, 4vw, 44px);
    line-height: 1.05;
}

.srt-results-summary {
    margin: 0;
    color: var(--srt-muted);
}

.srt-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.srt-card {
    min-width: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e3e5e7;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(20, 28, 22, .06);
}

.srt-match-row {
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #687078;
    font-size: 11px;
    font-weight: 700;
}

.srt-match {
    padding: 5px 8px;
    border-radius: 99px;
    font-size: 10px;
    text-transform: uppercase;
}

.srt-match-exact {
    background: #e3f7e5;
    color: #267532;
}

.srt-match-close {
    background: #fff3dc;
    color: #8b5900;
}

.srt-image,
.srt-modal-image {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: radial-gradient(circle, #fff 0, #f4f6f5 72%);
}

.srt-image {
    height: 200px;
    margin: 8px 0 12px;
}

.srt-image img,
.srt-modal-image img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

.srt-fallback,
.srt-image-fallback {
    min-width: 150px;
    min-height: 96px;
    padding: 18px;
    display: grid;
    place-content: center;
    border: 4px solid #25292b;
    border-radius: 38px 18px 30px 16px;
    background: linear-gradient(145deg, #f3f4f5, #cfd4d6);
    color: #25292b;
    box-shadow: 12px 14px 0 -8px #8d9498;
    text-align: center;
}

.srt-fallback span,
.srt-image-fallback span {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .09em;
}

.srt-fallback strong,
.srt-image-fallback strong {
    font-size: 17px;
}

.srt-brand {
    color: var(--srt-green-dark);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.srt-product-title {
    min-height: 52px;
    margin: 9px 0 8px;
    font-size: 23px;
    line-height: 1.08;
}

.srt-card-reason {
    margin: 0 0 14px;
    color: #596168;
    font-size: 13px;
    line-height: 1.45;
}

.srt-price {
    margin-bottom: 18px;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.srt-price > span,
.srt-price small {
    color: #757d82;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.srt-specs {
    display: grid;
    gap: 7px;
}

.srt-spec {
    min-height: 50px;
    padding: 9px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    background: var(--srt-card);
}

.srt-spec span {
    margin-bottom: 4px;
    color: #747b80;
    font-size: 9px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.srt-spec strong {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.srt-actions {
    margin-top: auto;
    padding-top: 18px;
    display: grid;
    gap: 9px;
}

.srt-actions button,
.srt-full-review-button {
    min-height: 52px;
    padding: 12px 18px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    color: #fff !important;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
    cursor: pointer;
    transition: .15s ease;
}

.srt-actions button:hover,
.srt-full-review-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.srt-offer {
    background: var(--srt-green);
}

.srt-test {
    background: var(--srt-ink);
}

.srt-method {
    width: min(900px, 100%);
    margin: 42px auto 0;
    padding: 24px 28px;
    border-left: 5px solid var(--srt-green);
    border-radius: 0 16px 16px 0;
    background: var(--srt-sage);
}

.srt-method strong {
    font-size: 17px;
}

.srt-method p {
    margin: 7px 0 0;
    color: #55605a;
    font-size: 14px;
    line-height: 1.55;
}

body.srt-modal-open {
    overflow: hidden;
}

.srt-modal[hidden] {
    display: none;
}

.srt-modal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .18s ease;
}

.srt-modal.is-visible {
    opacity: 1;
}

.srt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 8, .76);
    backdrop-filter: blur(4px);
}

.srt-modal-dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 40px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .34);
    transform: translateY(14px);
    transition: transform .18s ease;
}

.srt-modal.is-visible .srt-modal-dialog {
    transform: translateY(0);
}

.srt-modal-close {
    position: sticky;
    z-index: 2;
    top: 0;
    float: right;
    width: 42px;
    height: 42px;
    margin: -20px -20px 0 0;
    border: 0;
    border-radius: 50%;
    background: var(--srt-ink);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.srt-modal-header,
.srt-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.srt-modal-header h2,
.srt-review-header h2 {
    margin: 12px 0 6px;
    color: var(--srt-ink);
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.08;
}

.srt-modal-header p,
.srt-review-date,
.srt-review-author {
    margin: 0;
    color: var(--srt-muted);
}

.srt-review-author {
    margin-top: 5px;
    font-size: 13px;
}

.srt-editorial-score {
    width: 86px;
    min-width: 86px;
    height: 86px;
    display: grid;
    place-content: center;
    border: 5px solid #dff3e1;
    border-radius: 50%;
    color: var(--srt-green-dark);
    text-align: center;
}

.srt-editorial-score strong {
    font-size: 27px;
    line-height: 1;
}

.srt-editorial-score span {
    font-size: 11px;
    font-weight: 800;
}

.srt-modal-product {
    margin: 30px 0;
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    gap: 28px;
    align-items: center;
}

.srt-modal-image {
    min-height: 230px;
}

.srt-modal-product h3 {
    margin: 0 0 8px;
}

.srt-modal-product p {
    margin: 0 0 20px;
    color: #50575c;
    line-height: 1.6;
}

.srt-pros-cons {
    margin: 28px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.srt-pros-cons section {
    padding: 24px;
    border-radius: 16px;
    background: #fbfcfb;
}

.srt-pros {
    border-left: 5px solid var(--srt-green);
}

.srt-cons {
    border-left: 5px solid var(--srt-red);
}

.srt-pros-cons h3 {
    margin: 0 0 14px;
}

.srt-pros-cons ul {
    margin: 0;
    padding-left: 20px;
}

.srt-pros li::marker {
    color: var(--srt-green);
}

.srt-cons li::marker {
    color: var(--srt-red);
}

.srt-pros-cons li {
    margin: 8px 0;
    line-height: 1.45;
}

.srt-price-comparison {
    margin: 30px 0;
    scroll-margin-top: 20px;
}

.srt-price-comparison > h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.srt-offer-list {
    overflow: hidden;
    border: 1px solid #dfe4e0;
    border-radius: 16px;
}

.srt-offer-row {
    min-height: 84px;
    padding: 14px 16px;
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 150px 150px;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid #e8ece9;
}

.srt-offer-row:last-child {
    border-bottom: 0;
}

.srt-offer-row.is-best-price {
    background: #f1fbf2;
}

.srt-offer-merchant,
.srt-offer-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.srt-offer-merchant span,
.srt-offer-price span {
    color: var(--srt-muted);
    font-size: 11px;
}

.srt-offer-price strong {
    color: var(--srt-ink);
    font-size: 20px;
}

.srt-offer-button {
    min-height: 46px;
    padding: 10px 14px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--srt-green);
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none !important;
    text-transform: uppercase;
}

.srt-offer-button.is-disabled {
    background: #adb3af;
    cursor: not-allowed;
}

.srt-price-disclaimer,
.srt-affiliate-notice,
.srt-article-pending {
    margin: 12px 0;
    color: #687078;
    font-size: 12px;
    line-height: 1.5;
}

.srt-full-review-button {
    max-width: 560px;
    margin: 26px auto 0;
    background: var(--srt-ink);
}

.srt-article-pending {
    padding: 14px;
    border-radius: 10px;
    background: #f1f3f2;
    text-align: center;
}

.srt-review-block {
    width: min(1000px, 100%);
    margin: 36px auto;
    padding: 32px;
    border: 1px solid #dfe5e0;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(20, 35, 23, .07);
}

.srt-review-intro {
    margin: 30px 0;
    display: grid;
    grid-template-columns: minmax(220px, 34%) 1fr;
    gap: 28px;
    align-items: center;
}

.srt-review-image {
    min-height: 250px;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f7f5;
}

.srt-review-image img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.srt-review-verdict {
    margin: 0 0 22px;
    color: #3c4540;
    font-size: 17px;
    line-height: 1.65;
}

.srt-review-specs {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.srt-review-specs div {
    padding: 12px;
    border-radius: 10px;
    background: var(--srt-card);
}

.srt-review-specs dt {
    color: var(--srt-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.srt-review-specs dd {
    margin: 4px 0 0;
    font-weight: 800;
}

@media (max-width: 850px) {
    .srt-panel {
        padding: 48px 32px;
    }

    .srt-controls,
    .srt-grid {
        grid-template-columns: 1fr;
    }

    .srt-grid {
        width: min(520px, 100%);
    }

    .srt-product-title {
        min-height: auto;
    }

    .srt-modal-product,
    .srt-review-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .srt-shell {
        padding: 0;
    }

    .srt-panel {
        padding: 40px 18px 46px;
        border-radius: 0;
    }

    .srt-controls {
        gap: 15px;
    }

    .srt-control {
        min-height: 108px;
        padding: 23px 18px 19px;
        border-radius: 17px;
    }

    .srt-segments {
        width: 100%;
        flex-direction: column;
    }

    .srt-segment {
        width: 100%;
    }

    .srt-results {
        padding: 62px 14px;
    }

    .srt-card {
        padding: 16px;
    }

    .srt-modal {
        padding: 8px;
    }

    .srt-modal-dialog {
        max-height: calc(100vh - 16px);
        padding: 28px 18px;
        border-radius: 18px;
    }

    .srt-modal-close {
        margin: -14px -6px 0 0;
    }

    .srt-modal-header,
    .srt-review-header {
        flex-direction: column;
    }

    .srt-pros-cons,
    .srt-review-specs {
        grid-template-columns: 1fr;
    }

    .srt-offer-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .srt-review-block {
        padding: 22px 16px;
        border-radius: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .srt-app *,
    .srt-review-block * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
