.swp-page {
    --swp-ink: #17212b;
    --swp-muted: #536273;
    --swp-line: #dce4eb;
    --swp-soft: #f5f8fa;
    --swp-blue: #0868b2;
    --swp-blue-dark: #064d84;
    --swp-green: #2f6b31;
    --swp-green-dark: #214d23;
    --swp-green-soft: #edf7ed;
    --swp-amber: #a95f00;
    --swp-red: #a12828;
    --swp-white: #fff;
    width: min(1240px, calc(100% - 32px));
    margin: 24px auto 80px;
    color: var(--swp-ink);
    font: inherit;
    line-height: 1.6;
}

.swp-product-tone--1 {
    --swp-product-color: #166a9a;
    --swp-product-soft: #edf6fb;
}

.swp-product-tone--2 {
    --swp-product-color: #397247;
    --swp-product-soft: #eef7f0;
}

.swp-product-tone--3 {
    --swp-product-color: #68549a;
    --swp-product-soft: #f3f0fa;
}

.swp-product-tone--4 {
    --swp-product-color: #a36017;
    --swp-product-soft: #fff5e9;
}

.swp-page *,
.swp-page *::before,
.swp-page *::after,
.swp-mobile-sticky-cta *,
.swp-mobile-sticky-cta *::before,
.swp-mobile-sticky-cta *::after {
    box-sizing: border-box;
}

.swp-page h1,
.swp-page h2,
.swp-page h3,
.swp-page h4,
.swp-page p {
    margin-top: 0;
}

.swp-page h1 {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.swp-page h2 {
    margin-bottom: 12px;
    font-size: clamp(1.65rem, 2.7vw, 2.5rem);
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.swp-page h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.swp-page a {
    color: var(--swp-blue-dark);
}

.swp-page a:focus-visible,
.swp-page summary:focus-visible,
.swp-mobile-sticky-cta a:focus-visible {
    outline: 3px solid #f5aa23;
    outline-offset: 3px;
}

.swp-eyebrow {
    margin-bottom: 8px;
    color: var(--swp-blue-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.swp-hero,
.swp-section {
    margin-bottom: 34px;
    border: 1px solid var(--swp-line);
    border-radius: 20px;
    background: var(--swp-white);
    box-shadow: 0 10px 30px rgba(23, 33, 43, 0.055);
}

.swp-section {
    padding: clamp(22px, 4vw, 44px);
}

.swp-section-heading {
    max-width: 860px;
    margin-bottom: 26px;
}

.swp-comparison-page > #strengths-tradeoffs,
.swp-comparison-page > #category-results,
.swp-comparison-page > .swp-final-offers,
.swp-product-page > #strengths-tradeoffs {
    padding-inline: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.swp-comparison-page > #strengths-tradeoffs > .swp-section-heading,
.swp-comparison-page > #category-results > .swp-section-heading,
.swp-comparison-page > .swp-final-offers > .swp-section-heading,
.swp-product-page > #strengths-tradeoffs > .swp-section-heading {
    margin-inline: auto;
    text-align: center;
}

.swp-section-heading > :last-child,
.swp-section-intro:last-child {
    margin-bottom: 0;
}

.swp-section-heading p:not(.swp-eyebrow),
.swp-section-intro,
.swp-hero__intro > p:last-child {
    color: var(--swp-muted);
    font-size: 1.03rem;
}

.swp-comparison-hero {
    overflow: hidden;
    padding: clamp(24px, 4vw, 52px);
    background:
        radial-gradient(circle at 10% 0%, rgba(8, 104, 178, 0.12), transparent 34%),
        linear-gradient(145deg, #f8fbfd 0%, #fff 58%);
}

.swp-hero__intro {
    max-width: 940px;
    margin: 0 auto 30px;
    text-align: center;
}

.swp-hero-products {
    display: grid;
    grid-template-columns: repeat(var(--swp-product-count), minmax(0, 1fr));
    gap: 18px;
}

.swp-hero-product {
    position: relative;
    min-width: 0;
    padding: 16px;
    border: 2px solid var(--swp-line);
    border-radius: 16px;
    background: var(--swp-white);
    text-align: center;
    box-shadow: inset 0 5px 0 var(--swp-product-color, var(--swp-blue));
}

.swp-hero-product--winner {
    border-color: #c38a1b;
    box-shadow: inset 0 5px 0 var(--swp-product-color, var(--swp-blue)), 0 9px 24px rgba(128, 86, 11, 0.16);
}

.swp-hero-product__badges {
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    pointer-events: none;
}

.swp-winner-badge,
.swp-best-badge,
.swp-discontinued-badge,
.swp-neutral-badge,
.swp-class-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.swp-best-badge {
    background: var(--swp-green);
    color: #fff;
}

.swp-winner-badge {
    background: #8a5906;
    color: #fff;
}

.swp-winner-badge--tie {
    background: #5d4592;
}

.swp-best-badge--co-leader {
    background: #0b6d70;
}

.swp-best-badge--lowest {
    min-height: 24px;
    padding: 3px 8px;
    background: #982f35;
    color: #fff;
    font-size: 0.66rem;
}

.swp-discontinued-badge {
    background: var(--swp-red);
    color: #fff;
}

.swp-neutral-badge,
.swp-class-label {
    background: #eaf0f5;
    color: #3f5061;
}

.swp-class-label {
    pointer-events: auto;
    text-decoration: none;
    transition: background-color 150ms ease, color 150ms ease;
}

.swp-class-label:hover {
    background: #d8e9f4;
    color: var(--swp-blue-dark);
}

.swp-best-badge--small {
    min-height: 22px;
    margin-left: 5px;
    padding: 3px 7px;
    font-size: 0.64rem;
    vertical-align: middle;
}

.swp-hero-product__image,
.swp-offer-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.swp-hero-product__image {
    min-height: 210px;
    margin-bottom: 14px;
    padding: 12px;
}

.swp-product-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 270px;
    object-fit: contain;
}

.swp-image-placeholder {
    display: grid;
    width: 100%;
    min-height: 180px;
    place-items: center;
    color: var(--swp-muted);
    background: var(--swp-soft);
}

.swp-hero-product h2 {
    min-height: 2.6em;
    margin-bottom: 12px;
    font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.swp-hero-product h2 a {
    color: var(--swp-ink);
    text-decoration: none;
}

.swp-rating-lockup {
    display: inline-grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2px 8px;
    margin-bottom: 10px;
    padding: 9px 13px;
    border-radius: 12px;
    background: #102c46;
    color: #fff;
}

.swp-rating-lockup strong {
    grid-row: 1 / span 2;
    font-size: 2.15rem;
    line-height: 1;
}

.swp-rating-lockup span {
    max-width: 75px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
}

.swp-rating-lockup--large {
    min-width: 142px;
    margin: 0;
    padding: 12px 16px;
}

.swp-rating-lockup--large strong {
    font-size: 3rem;
}

.swp-verdict {
    border: 2px solid #b8d8b9;
    border-left: 8px solid var(--swp-green);
    background: linear-gradient(110deg, var(--swp-green-soft), #fff 60%);
}

.swp-verdict > p:not(.swp-eyebrow) {
    max-width: 900px;
    font-size: 1.08rem;
}

.swp-verdict__ctas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.swp-verdict__ctas > div {
    padding: 16px;
    border: 1px solid #cbe2cc;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
}

.swp-class-note {
    max-width: 960px;
    margin-top: 22px;
    padding: 12px 15px;
    border: 1px solid #d5e0e8;
    border-radius: 10px;
    background: #f8fafb;
    color: #485867;
    font-size: 0.9rem;
}

.swp-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
}

.swp-cta {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: background-color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.swp-cta:hover {
    transform: translateY(-1px);
}

.swp-cta--primary {
    border-color: var(--swp-green);
    background: var(--swp-green);
    color: #fff !important;
}

.swp-cta--primary:hover {
    border-color: var(--swp-green-dark);
    background: var(--swp-green-dark);
}

.swp-cta--secondary {
    border-color: #db8b16;
    background: #fff8ec;
    color: #442800 !important;
}

.swp-cta--secondary:hover {
    background: #ffedcb;
}

.swp-cta-group--compact {
    gap: 6px;
    margin-top: 8px;
}

.swp-cta-group--compact .swp-cta {
    min-height: 38px;
    padding: 7px 11px;
    font-size: 0.78rem;
}

.swp-cta-media {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    padding: 11px;
    border: 1px solid var(--swp-line);
    border-left: 5px solid var(--swp-product-color, var(--swp-green));
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
}

.swp-cta-media__image {
    display: flex;
    width: 88px;
    height: 82px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    border-radius: 9px;
    background: #fff;
}

.swp-cta-media__image .swp-product-image {
    max-height: 72px;
}

.swp-cta-media__image .swp-image-placeholder {
    min-height: 62px;
    font-size: 0.65rem;
    text-align: center;
}

.swp-cta-media__content {
    min-width: 0;
}

.swp-cta-media__content > strong {
    display: block;
    overflow: hidden;
    font-size: 0.9rem;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.swp-cta-media .swp-cta-group {
    margin-top: 7px;
}

.swp-verdict .swp-cta-media {
    grid-template-columns: 108px minmax(0, 1fr);
    max-width: 620px;
}

.swp-verdict .swp-cta-media__image {
    width: 108px;
    height: 94px;
}

.swp-verdict .swp-cta-media__image .swp-product-image {
    max-height: 84px;
}

.swp-category-leader .swp-cta-media {
    grid-template-columns: 92px minmax(0, 1fr);
}

.swp-category-leader .swp-cta-media__image {
    width: 92px;
    height: 82px;
}

.swp-coupon {
    flex-basis: 100%;
    color: #5a4300;
    font-size: 0.78rem;
}

.swp-coupon strong {
    padding: 2px 5px;
    border-radius: 4px;
    background: #ffe9a8;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.swp-table-scroll {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 1px solid var(--swp-line);
    border-radius: 14px;
    -webkit-overflow-scrolling: touch;
}

.swp-comparison-table {
    width: 100%;
    min-width: 720px;
    margin: 0;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

.swp-comparison-table th,
.swp-comparison-table td {
    padding: 13px 15px;
    border: 0;
    border-right: 1px solid var(--swp-line);
    border-bottom: 1px solid var(--swp-line);
    text-align: left;
    vertical-align: top;
}

.swp-comparison-table tr > :last-child {
    border-right: 0;
}

.swp-comparison-table tbody tr:last-child > * {
    border-bottom: 0;
}

.swp-comparison-table thead th {
    position: sticky;
    z-index: 2;
    top: 0;
    background: #102c46;
    color: #fff;
    font-size: 0.86rem;
}

.swp-comparison-table thead th[class*="swp-product-tone--"] {
    box-shadow: inset 0 5px 0 var(--swp-product-color);
}

.swp-comparison-table th:first-child {
    position: sticky;
    z-index: 1;
    left: 0;
    width: 155px;
    min-width: 155px;
    max-width: 155px;
    background: #f7f9fb;
}

.swp-comparison-table thead th:first-child {
    z-index: 3;
    background: #102c46;
}

.swp-comparison-table tbody tr:nth-child(even):not(.swp-rating-row):not(.swp-table-cta-row) td {
    background: #fbfcfd;
}

.swp-rating-row td,
.swp-rating-row th {
    background: #eef5fa;
}

.swp-rating-row td[class*="swp-product-tone--"] {
    box-shadow: inset 4px 0 0 var(--swp-product-color);
}

.swp-table-score {
    display: inline-block;
    color: #102c46;
    font-size: 1.3rem;
}

.swp-table-cta-row th,
.swp-table-cta-row td {
    background: #f5f9f3;
}

.swp-table-cta-row .swp-cta-group {
    min-width: 155px;
}

.swp-table-product-heading {
    display: flex;
    min-width: 135px;
    flex-direction: column;
    gap: 7px;
}

.swp-table-product-heading__image {
    display: flex;
    width: 78px;
    height: 60px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    border-radius: 7px;
    background: #fff;
}

.swp-table-product-heading__image .swp-product-image {
    max-height: 54px;
}

.swp-table-product-heading__image .swp-image-placeholder {
    min-height: 54px;
    font-size: 0;
}

.swp-takeaway-grid,
.swp-offer-grid,
.swp-expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.swp-takeaway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.swp-takeaway-card,
.swp-expert-card,
.swp-offer-card {
    padding: 22px;
    border: 1px solid var(--swp-line);
    border-radius: 14px;
    background: #fff;
}

.swp-takeaway-card,
.swp-offer-card {
    border-top: 5px solid var(--swp-product-color, var(--swp-blue));
}

.swp-takeaway-card--single {
    max-width: 960px;
    margin-inline: auto;
}

.swp-takeaway-card__heading {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.swp-takeaway-card__heading > span {
    display: flex;
    width: 76px;
    height: 62px;
    flex: 0 0 76px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    border: 1px solid var(--swp-line);
    border-radius: 8px;
    background: #fff;
}

.swp-takeaway-card__heading .swp-product-image {
    max-height: 56px;
}

.swp-takeaway-card__heading .swp-image-placeholder {
    min-height: 42px;
    font-size: 0;
}

.swp-takeaway-card__heading h3 {
    margin: 0;
}

.swp-takeaway-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.swp-takeaway-columns > div {
    min-width: 0;
    padding: 14px;
    border: 1px solid var(--swp-line);
    border-radius: 11px;
}

.swp-takeaway-columns .swp-strength-panel {
    border-color: #c5dfc6 !important;
    background: var(--swp-green-soft);
}

.swp-takeaway-columns .swp-tradeoff-panel {
    border-color: #efd9bd !important;
    background: #fff8ef;
}

.swp-takeaway-columns h4,
.swp-takeaway-columns h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.swp-strength-list,
.swp-tradeoff-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.swp-method-list {
    margin: 0;
    padding-left: 1.2em;
}

.swp-strength-list li,
.swp-tradeoff-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 23px;
    line-height: 1.45;
}

.swp-strength-list li::before,
.swp-tradeoff-list li::before {
    position: absolute;
    top: 0.05em;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    place-items: center;
}

.swp-strength-list li::before {
    background: var(--swp-green);
    content: "\2713";
}

.swp-tradeoff-list li::before {
    background: var(--swp-amber);
    content: "!";
}

.swp-method-list li {
    margin-bottom: 8px;
}

.swp-category-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.swp-category-card {
    overflow: hidden;
    border: 1px solid var(--swp-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(23, 33, 43, 0.06);
}

.swp-category-card__header {
    padding: 16px;
    background: #102c46;
    color: #fff;
}

.swp-category-card__header h3 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 1.3rem;
}

.swp-category-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.swp-category-scores span {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    box-shadow: inset 4px 0 0 var(--swp-product-color, transparent);
}

.swp-category-scores span.is-leader {
    border-color: #e5bd60;
    background: rgba(229, 189, 96, 0.19);
}

.swp-category-card__analysis {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.swp-category-card__analysis > div {
    padding: 16px;
}

.swp-category-leader {
    border-left: 6px solid var(--swp-product-color, var(--swp-green));
    background: var(--swp-product-soft, var(--swp-green-soft));
}

.swp-category-leader > .swp-best-badge {
    margin-bottom: 10px;
}

.swp-category-leader p:last-of-type,
.swp-category-trailer p:last-child {
    margin-bottom: 0;
}

.swp-category-trailer {
    border-top: 1px solid var(--swp-line);
    background: #f8fafb;
}

.swp-category-trailer > .swp-best-badge {
    margin-bottom: 12px;
}

.swp-category-trailer__product {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    border-left: 4px solid var(--swp-product-color, var(--swp-amber));
}

.swp-category-trailer__product > span {
    display: flex;
    width: 64px;
    height: 54px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3px;
    border-radius: 8px;
    background: #fff;
}

.swp-category-trailer__product .swp-product-image {
    max-height: 48px;
}

.swp-category-trailer__product p {
    margin: 0;
    font-size: 0.88rem;
}

.swp-spec-section {
    background: #f8fafb;
}

.swp-spec-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.swp-spec-card {
    padding: 20px;
    border: 1px solid var(--swp-line);
    border-radius: 13px;
    background: #fff;
}

.swp-spec-card__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.swp-spec-card__heading h3 {
    margin-bottom: 14px;
}

.swp-spec-values {
    display: grid;
    gap: 7px;
}

.swp-spec-value {
    display: grid;
    grid-template-columns: minmax(110px, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--swp-soft);
    box-shadow: inset 4px 0 0 var(--swp-product-color, transparent);
}

.swp-spec-value__product {
    min-width: 0;
    overflow: hidden;
    color: var(--swp-muted);
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.swp-spec-value strong {
    font-size: 0.95rem;
    white-space: nowrap;
}

.swp-spec-card__description {
    margin: 14px 0 0;
    color: var(--swp-muted);
    font-size: 0.86rem;
}

.swp-expert-section {
    background: linear-gradient(120deg, #eef6fb, #fff);
}

.swp-expert-card {
    border-top: 4px solid var(--swp-blue);
}

.swp-expert-card > :last-child {
    margin-bottom: 0;
}

.swp-details {
    border: 1px solid var(--swp-line);
    border-radius: 14px;
    background: #fff;
}

.swp-details > summary {
    position: relative;
    padding: 20px 56px 20px 22px;
    color: var(--swp-ink);
    cursor: pointer;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 800;
    list-style: none;
}

.swp-details > summary::-webkit-details-marker {
    display: none;
}

.swp-details > summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e9f2f8;
    color: var(--swp-blue-dark);
    content: "+";
    font-size: 1.35rem;
    line-height: 26px;
    text-align: center;
    transform: translateY(-50%);
}

.swp-details[open] > summary::after {
    content: "−";
}

.swp-details__body {
    padding: 0 22px 22px;
}

.swp-full-specs .swp-comparison-table th:first-child {
    min-width: 210px;
}

.swp-comparison-table--full td[class*="swp-product-tone--"] {
    box-shadow: inset 3px 0 0 var(--swp-product-color);
}

.swp-spec-group-row th {
    position: static !important;
    background: #dfeaf2 !important;
    color: #18334a;
    font-size: 0.86rem;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.swp-video-groups,
.swp-video-group,
.swp-video-grid {
    display: grid;
    gap: 18px;
}

.swp-video-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.swp-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    background: #0f1b24;
}

.swp-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.swp-methodology {
    border-top: 6px solid var(--swp-blue);
    background: linear-gradient(145deg, #f5f9fc, #fff 65%);
}

.swp-authority-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.swp-authority-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 18px;
    border: 1px solid #cddce7;
    border-radius: 13px;
    background: #fff;
}

.swp-authority-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f3fa;
    color: var(--swp-blue-dark);
    font-size: 1.25rem;
    font-weight: 900;
    place-items: center;
}

.swp-authority-card h3 {
    margin-bottom: 7px;
}

.swp-authority-card p,
.swp-method-summary > :last-child {
    margin-bottom: 0;
}

.swp-authority-card p {
    color: var(--swp-muted);
    font-size: 0.94rem;
}

.swp-method-summary {
    margin: 18px 0;
    padding: 20px;
    border-left: 5px solid var(--swp-blue);
    border-radius: 0 12px 12px 0;
    background: #eef6fb;
}

.swp-method-summary p {
    color: #405465;
}

.swp-method-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.swp-method-details > summary {
    font-size: 1.05rem;
}

.swp-method-details .swp-details__body {
    color: #405465;
    font-size: 0.96rem;
    line-height: 1.68;
}

.swp-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.swp-method-grid article {
    min-width: 0;
    padding: 18px;
    border: 1px solid #cddce7;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
    overflow-wrap: anywhere;
}

.swp-method-grid strong,
.swp-method-grid span {
    display: block;
}

.swp-peer-class-link {
    color: var(--swp-blue-dark);
    font-weight: 800;
    text-underline-offset: 3px;
}

.swp-method-grid span {
    width: fit-content;
    margin-top: 7px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #eaf4fa;
    color: var(--swp-blue-dark);
    font-size: 0.76rem;
    font-weight: 800;
}

.swp-method-grid p {
    margin: 10px 0 0;
    color: var(--swp-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.swp-team-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.swp-team-expertise-grid article {
    min-width: 0;
    padding: 17px;
    border: 1px solid #cddce7;
    border-radius: 10px;
    background: #fff;
}

.swp-team-expertise-grid h3 {
    margin: 0 0 7px;
    color: var(--swp-ink);
    font-size: 1rem;
}

.swp-team-expertise-grid p {
    margin: 0;
    color: var(--swp-muted);
    font-size: 0.88rem;
    line-height: 1.58;
}

.swp-offer-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    text-align: left;
}

.swp-offer-card__image {
    min-height: 190px;
    margin-bottom: 0;
    padding: 8px;
}

.swp-offer-card__topline {
    position: relative;
}

.swp-offer-card__score {
    position: absolute;
    right: 0;
    bottom: 8px;
    padding: 5px 8px;
    border-radius: 8px 0 0 8px;
    background: #102c46;
    color: #fff;
    font-size: 0.7rem;
}

.swp-offer-card__score strong {
    font-size: 1rem;
}

.swp-offer-card h3 {
    margin-top: 12px;
}

.swp-offer-card h3 a {
    color: var(--swp-ink);
    text-decoration: none;
}

.swp-offer-specs,
.swp-product-final-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 14px;
}

.swp-offer-specs > div,
.swp-product-final-specs > div {
    padding: 8px;
    border-radius: 8px;
    background: var(--swp-product-soft, var(--swp-soft));
}

.swp-offer-specs dt,
.swp-product-final-specs dt {
    color: var(--swp-muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.swp-offer-specs dd,
.swp-product-final-specs dd {
    margin: 2px 0 0;
    font-size: 0.82rem;
    font-weight: 900;
}

.swp-offer-reasons {
    flex: 1;
    padding: 12px;
    border-left: 4px solid var(--swp-product-color, var(--swp-green));
    border-radius: 0 9px 9px 0;
    background: var(--swp-product-soft, var(--swp-green-soft));
}

.swp-offer-reasons > strong {
    display: block;
    margin-bottom: 6px;
}

.swp-offer-reasons .swp-strength-list {
    font-size: 0.86rem;
}

.swp-offer-card .swp-cta-group {
    margin-top: 14px;
    justify-content: stretch;
}

.swp-offer-card .swp-cta {
    flex: 1 1 150px;
}

.swp-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    padding: clamp(24px, 5vw, 58px);
    background:
        radial-gradient(circle at 0 0, rgba(47, 107, 49, 0.1), transparent 38%),
        linear-gradient(140deg, #f8fbfd, #fff);
}

.swp-product-hero__image {
    position: relative;
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border: 1px solid var(--swp-line);
    border-radius: 18px;
    background: #fff;
}

.swp-product-hero__image .swp-discontinued-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
}

.swp-product-hero__image .swp-product-image {
    max-height: 390px;
}

.swp-product-hero__summary {
    color: var(--swp-muted);
    font-size: 1.08rem;
}

.swp-peer-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 18px;
}

.swp-peer-rating p {
    max-width: 470px;
    margin: 4px 0 0;
    color: var(--swp-muted);
    font-size: 0.9rem;
}

.swp-quick-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.swp-quick-spec-grid > div {
    padding: 15px;
    border: 1px solid var(--swp-line);
    border-radius: 11px;
    background: var(--swp-soft);
}

.swp-quick-spec-grid dt {
    color: var(--swp-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.swp-quick-spec-grid dd {
    margin: 4px 0 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.swp-product-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.swp-product-category-grid article {
    padding: 16px;
    border: 1px solid var(--swp-line);
    border-radius: 12px;
    background: #fff;
}

.swp-product-category-grid span,
.swp-product-category-grid strong {
    display: block;
}

.swp-product-decision-cta {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) minmax(230px, 0.55fr);
    align-items: center;
    gap: 18px;
    padding-block: 22px;
    border-left: 7px solid var(--swp-product-color, var(--swp-green));
    background: linear-gradient(110deg, var(--swp-product-soft, #edf7ed), #fff 72%);
}

.swp-product-decision-cta__image {
    display: flex;
    width: 104px;
    height: 88px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 5px;
    border-radius: 10px;
    background: #fff;
}

.swp-product-decision-cta__image .swp-product-image {
    max-height: 78px;
}

.swp-product-decision-cta__content h2,
.swp-product-inline-purchase h2 {
    margin-bottom: 5px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.swp-product-decision-cta__content > :last-child,
.swp-product-inline-purchase > div > :last-child {
    margin-bottom: 0;
    color: var(--swp-muted);
    font-size: 0.9rem;
}

.swp-product-decision-cta > .swp-cta-group {
    display: grid;
    margin: 0;
}

.swp-product-inline-purchase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.85fr);
    align-items: center;
    gap: 24px;
    max-width: 1040px;
    margin: -10px auto 34px;
    padding: 20px 24px;
    border: 1px solid #c8dce8;
    border-radius: 14px;
    background: linear-gradient(120deg, #eef6fb, #fff);
    box-shadow: 0 7px 20px rgba(23, 33, 43, 0.05);
}

.swp-product-inline-purchase .swp-cta-media {
    margin-top: 0;
}

.swp-product-category-grid > article > span {
    min-height: 2.8em;
    color: var(--swp-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.swp-product-category-grid strong {
    margin: 5px 0;
    font-size: 1.55rem;
}

.swp-score-meter {
    overflow: hidden;
    height: 7px;
    border-radius: 99px;
    background: #dce6ed;
}

.swp-score-meter span {
    height: 100%;
    border-radius: inherit;
    background: var(--swp-blue);
}

.swp-product-final-cta {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
    align-items: center;
    gap: 30px;
    border: 2px solid #b8d8b9;
    background: var(--swp-green-soft);
}

.swp-product-final-cta__image {
    display: flex;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
}

.swp-product-final-specs {
    max-width: 650px;
}

.swp-retailer-guidance {
    max-width: 680px;
    color: var(--swp-muted);
    font-size: 0.9rem;
}

.swp-retailer-context {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.swp-retailer-context > div {
    padding: 10px 11px;
    border: 1px solid #d4e0e7;
    border-radius: 8px;
    background: #fff;
}

.swp-retailer-context strong,
.swp-retailer-context span {
    display: block;
}

.swp-retailer-context strong {
    color: var(--swp-ink);
    font-size: 0.82rem;
}

.swp-retailer-context span {
    margin-top: 2px;
    color: var(--swp-muted);
    font-size: 0.73rem;
    line-height: 1.4;
}

.swp-offer-card .swp-retailer-context {
    grid-template-columns: 1fr;
}

.swp-empty-state {
    padding: 50px;
    text-align: center;
}

.swp-mobile-sticky-cta {
    display: none;
}

.swp-desktop-compare-sticky,
.swp-desktop-winner-sticky {
    position: fixed;
    z-index: 9998;
    bottom: 24px;
    box-shadow: 0 12px 30px rgba(18, 35, 49, 0.2);
}

.swp-desktop-compare-sticky {
    left: 20px;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid #9fc3da;
    border-radius: 999px;
    background: rgba(234, 244, 250, 0.98) !important;
    color: var(--swp-blue-dark) !important;
    font-size: 0.82rem;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.swp-desktop-compare-sticky > span {
    font-size: 1.15rem;
    line-height: 1;
}

.swp-desktop-winner-sticky {
    right: 20px;
    display: grid;
    width: min(280px, calc(100vw - 40px));
    gap: 3px;
    padding: 14px;
    border: 1px solid #b7d7b9;
    border-top: 5px solid var(--swp-green);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
}

.swp-desktop-winner-sticky > span {
    color: var(--swp-green-dark);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.swp-desktop-winner-sticky > strong {
    overflow: hidden;
    margin-bottom: 7px;
    color: var(--swp-ink);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.swp-desktop-winner-sticky > a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid #245827 !important;
    border-radius: 8px;
    background: #2f6b31 !important;
    background-color: #2f6b31 !important;
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    opacity: 1 !important;
}

.swp-desktop-winner-sticky > a:hover,
.swp-desktop-winner-sticky > a:focus-visible {
    background: #245827 !important;
    background-color: #245827 !important;
    color: #fff !important;
}

@media (max-width: 1050px) {
    .swp-hero-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swp-method-grid,
    .swp-quick-spec-grid,
    .swp-product-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .swp-category-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .swp-desktop-compare-sticky,
    .swp-desktop-winner-sticky {
        display: none;
    }

    .swp-page {
        width: min(100% - 20px, 1240px);
        margin-top: 10px;
        margin-bottom: 96px;
    }

    .swp-hero,
    .swp-section {
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .swp-section,
    .swp-comparison-hero,
    .swp-product-hero {
        padding: 22px 16px;
    }

    .swp-hero-products {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin: 0;
        padding: 0;
        overflow: visible;
    }

    .swp-hero-product {
        padding: 9px;
        border-radius: 11px;
    }

    .swp-hero-product:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 5px);
        justify-self: center;
    }

    .swp-hero-product__badges {
        position: static;
        min-height: 24px;
        margin-bottom: 4px;
        justify-content: center;
    }

    .swp-hero-product__badges .swp-winner-badge,
    .swp-hero-product__badges .swp-discontinued-badge {
        min-height: 22px;
        padding: 3px 6px;
        font-size: 0.58rem;
    }

    .swp-hero-product__image {
        min-height: 118px;
        margin-bottom: 8px;
        padding: 5px;
    }

    .swp-hero-product__image .swp-product-image {
        max-height: 112px;
    }

    .swp-hero-product h2 {
        min-height: 3.6em;
        margin-bottom: 7px;
        font-size: 0.83rem;
    }

    .swp-hero-product .swp-rating-lockup {
        grid-template-columns: auto auto;
        padding: 6px 8px;
    }

    .swp-hero-product .swp-rating-lockup strong {
        font-size: 1.55rem;
    }

    .swp-hero-product .swp-rating-lockup span {
        max-width: 54px;
        font-size: 0.58rem;
    }

    .swp-hero-product .swp-class-label {
        min-height: 22px;
        padding: 3px 6px;
        font-size: 0.58rem;
    }

    .swp-verdict {
        border-left-width: 5px;
    }

    .swp-cta-group,
    .swp-cta {
        width: 100%;
    }

    .swp-cta-group--compact,
    .swp-cta-group--compact .swp-cta {
        width: auto;
    }

    .swp-takeaway-columns,
    .swp-spec-card-grid,
    .swp-product-hero,
    .swp-product-final-cta,
    .swp-takeaway-grid,
    .swp-authority-grid,
    .swp-method-details-grid {
        grid-template-columns: 1fr;
    }

    .swp-team-expertise-grid {
        grid-template-columns: 1fr;
    }

    .swp-product-decision-cta {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
    }

    .swp-product-decision-cta__image {
        width: 76px;
        height: 68px;
    }

    .swp-product-decision-cta__image .swp-product-image {
        max-height: 60px;
    }

    .swp-product-decision-cta > .swp-cta-group {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .swp-product-decision-cta > .swp-cta-group .swp-cta:only-of-type,
    .swp-product-decision-cta > .swp-cta-group .swp-coupon {
        grid-column: 1 / -1;
    }

    .swp-product-inline-purchase {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 20px;
        padding: 18px 14px;
    }

    .swp-category-trailer {
        border-top: 1px solid var(--swp-line);
        border-left: 0;
    }

    .swp-cta-media {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .swp-cta-media__image {
        width: 76px;
        height: 70px;
    }

    .swp-verdict .swp-cta-media,
    .swp-category-leader .swp-cta-media {
        grid-template-columns: 84px minmax(0, 1fr);
    }

    .swp-verdict .swp-cta-media__image,
    .swp-category-leader .swp-cta-media__image {
        width: 84px;
        height: 76px;
    }

    .swp-cta-media .swp-cta-group--compact {
        display: flex;
        width: 100%;
    }

    .swp-cta-media .swp-cta-group--compact .swp-cta {
        flex: 1 1 130px;
    }

    .swp-spec-card {
        padding: 16px;
    }

    .swp-comparison-table {
        min-width: 610px;
    }

    .swp-comparison-table th:first-child,
    .swp-full-specs .swp-comparison-table th:first-child {
        width: 116px;
        min-width: 116px;
        max-width: 116px;
        padding-inline: 10px;
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .swp-table-product-heading {
        min-width: 120px;
    }

    .swp-table-product-heading__image {
        width: 66px;
        height: 50px;
    }

    .swp-table-product-heading__image .swp-product-image {
        max-height: 44px;
    }

    .swp-details__body {
        padding-inline: 10px;
    }

    .swp-spec-value {
        grid-template-columns: minmax(80px, 1fr) auto;
    }

    .swp-spec-value .swp-best-badge {
        grid-column: 2;
        justify-self: end;
        margin: 0;
    }

    .swp-method-grid,
    .swp-quick-spec-grid,
    .swp-product-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .swp-product-hero__image {
        min-height: 280px;
    }

    .swp-peer-rating {
        align-items: flex-start;
    }

    .swp-mobile-sticky-cta {
        position: fixed;
        z-index: 9999;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: minmax(76px, 0.7fr) minmax(0, 1.3fr);
        align-items: center;
        gap: 10px;
        min-height: 64px;
        padding: 8px max(10px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
        border-top: 1px solid #b9c9d4;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -6px 20px rgba(18, 35, 49, 0.16);
        color: #17212b;
        font-size: 0.72rem;
        line-height: 1.2;
        backdrop-filter: blur(8px);
    }

    .swp-mobile-sticky-cta__identity {
        overflow: hidden;
        min-width: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .swp-mobile-sticky-cta__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .swp-mobile-sticky-cta__actions > :only-child {
        grid-column: 1 / -1;
    }

    .swp-mobile-sticky-cta__buy,
    .swp-mobile-sticky-cta__compare {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
        justify-content: center;
        padding: 7px 10px;
        border-radius: 8px;
        font-size: 0.72rem;
        font-weight: 900;
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
    }

    .swp-mobile-sticky-cta__buy {
        background: var(--swp-green, #2f6b31);
        color: #fff !important;
    }

    .swp-mobile-sticky-cta__compare {
        border: 1px solid #a8c6d9;
        background: #eaf4fa;
        color: var(--swp-blue-dark, #064d84) !important;
    }
}

@media (max-width: 430px) {
    .swp-method-grid,
    .swp-quick-spec-grid,
    .swp-product-category-grid {
        grid-template-columns: 1fr;
    }

    .swp-peer-rating {
        display: grid;
        grid-template-columns: auto 1fr;
    }

    .swp-comparison-table th,
    .swp-comparison-table td {
        padding: 11px 12px;
    }

    .swp-offer-specs,
    .swp-product-final-specs {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 350px) {
    .swp-mobile-sticky-cta {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .swp-mobile-sticky-cta__identity {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swp-cta {
        transition: none;
    }
}

@media print {
    .swp-desktop-compare-sticky,
    .swp-desktop-winner-sticky,
    .swp-mobile-sticky-cta,
    .swp-cta-group {
        display: none !important;
    }

    .swp-page {
        width: 100%;
        margin: 0;
    }

    .swp-hero,
    .swp-section {
        break-inside: avoid;
        box-shadow: none;
    }
}
