/* ==========================================================================
   v2-test.css — Styles for the v2 test page template (pageTestV2.php)
   Matched to Testat.nu-mockup.jpg
   All classes use v2t- prefix.
   ========================================================================== */

html { scroll-behavior: smooth; }

/* ---------- Design tokens ---------- */
:root {
    --v2t-teal: #1a5c5c;
    --v2t-teal-light: #1e6b6b;
    --v2t-green: #5bae02;
    --v2t-green-dark: #4a9600;
    --v2t-navy: #2a3440;
    --v2t-text: #343434;
    --v2t-text-muted: #666;
    --v2t-border: #e5e5e5;
    --v2t-bg: #efefef;
    --v2t-radius: 8px;
}


/* ---------- Common ---------- */

.v2t-icon {
    flex-shrink: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.v2t-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


.v2t-wide-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.v2t-content-box {
    --v2t-box-pad: 25px;
    background: #fff;
    border-radius: var(--v2t-radius);
    padding: var(--v2t-box-pad);
    margin-bottom: 32px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    overflow-x: hidden;
}

.v2t-section-heading {
    font-size: 1.3em;
    margin-bottom: 20px;
    text-align: center;
}

body.v2-template #right-sidebar { display: none; }
body.v2-template #primary { width: 100%; float: none; }

@media (max-width: 1440px) {
    .v2t-related { padding-left: 20px; padding-right: 20px; }
}


/* ---------- 1. Hero Image (inside first box) ---------- */

.v2t-hero-img {
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: var(--v2t-radius) var(--v2t-radius) 0 0;
    margin: calc(-1 * var(--v2t-box-pad)) calc(-1 * var(--v2t-box-pad)) 0;
    width: calc(100% + var(--v2t-box-pad) * 2);
}

.v2t-hero-img picture,
.v2t-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---------- 2+3. First Box (Author + Intro + Fact Box) ---------- */

.v2t-first-box {
    margin-bottom: 16px;
}

/* Padding ligger på .v2t-first-box-content så knappen kan sitta flush utan hacks */
.v2t-first-box-inner.v2t-content-box {
    padding: 0;
}

.v2t-first-box-content {
    padding: var(--v2t-box-pad);
}

/* Title bar: H1 + ad info on same row (DOM order: ad-info, H1 — row-reverse placerar H1 till vänster på desktop) */
.v2t-title-bar {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
}

.v2t-hero-img + .v2t-title-bar {
    margin-top: 20px;
}

.v2t-title-bar .v2t-h1 {
    margin: 0;
}

/* Byline */
.v2t-byline {
    font-size: .88em;
    color: var(--v2t-text-muted);
    margin-bottom: 14px;
}

.v2t-byline a {
    text-decoration: none;
    font-weight: 600;
}

.v2t-byline a:hover {
    text-decoration: underline;
}


.v2t-title-bar .ad-info {
    font-style: italic;
    font-size: .72em;
    color: #888;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='%23888' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm0 1.5a6.5 6.5 0 1 1 0 13 6.5 6.5 0 0 1 0-13zM7 6.8h2v5.8H7V6.8zm1-3a1.05 1.05 0 1 1 0 2.1 1.05 1.05 0 0 1 0-2.1z'/></svg>") left center/13px no-repeat;
    padding-left: 17px;
    line-height: 1.1;
    min-height: 13px;
    cursor: pointer;
    flex-shrink: 0;
    /* Dra upp mot övre högra hörnet av .v2t-first-box-inner (padding 25px) */
    margin: -12px -12px 0 0;
}

.v2t-title-bar .ad-info:hover {
    text-decoration: underline;
}

/* Intro grid: text left, fact box right */
.v2t-intro-grid {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 40px;
    align-items: start;
}

.v2t-h1 {
    font-size: 1.6em;
    line-height: 1.25;
    margin: 0 0 14px;
}

.v2t-introduction {
    color: #444;
}

.v2t-introduction p:last-child {
    margin-bottom: 0;
}

/* Fact box */
.v2t-fact-box {
    background: #f4f7f9;
    border-radius: var(--v2t-radius);
    padding: 22px 24px;
    box-shadow: none;
}

.v2t-fact-box h3 {
    margin: 0 0 12px;
    font-size: .95em;
    font-weight: 600;
    line-height: 1.4;
}

.v2t-fact-items {
    list-style: disc;
    padding-left: 18px;
    margin: 0 0 14px;
    columns: 2;
    column-gap: 20px;
}

.v2t-fact-items li {
    padding: 2px 0;
    font-size: .88em;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
    break-inside: avoid;
}

.v2t-fact-meta {
    font-size: .7em;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    line-height: 1.5;
}

.v2t-fact-link {
    display: inline-block;
    margin-top: 6px;
    font-size: .85em;
    text-decoration: none;
}

/* "Visa mer"-knapp: döljs på desktop, visas endast på mobil när innehåll är kollapsat */
.v2t-intro-expand { display: none; }


/* ---------- 4. Top 4 Products ---------- */

.v2t-top-products {
    margin-bottom: 32px;
    background: #fff;
    border-radius: var(--v2t-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

.v2t-top-heading-bar {
    text-align: center;
    padding: 18px 20px 0;
}

.v2t-top-heading-bar h2 {
    margin: 0;
    font-size: 1.3em;
}

.v2t-top-cards-box {
    padding: 24px 20px;
}

.v2t-top-grid {
    display: grid;
    grid-template-columns: repeat(var(--top-cols, 4), 1fr);
    gap: 24px;
}

.v2t-top-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
    padding: 0 12px 16px;
}

/* Yellow award bar */
.v2t-top-award-bar {
    width: 100%;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    font-size: .9em;
    padding: 5px 10px;
    border-radius: var(--v2t-radius) var(--v2t-radius) 0 0;
    text-align: center;
}

/* Image wrapper with badge overlay */
.v2t-top-card-image {
    position: relative;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 4px;
    margin-bottom: 16px;
}

.v2t-top-card-image picture {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 100%;
}

.v2t-top-card-image img {
    max-width: 280px;
    max-height: 160px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

.v2t-top-badge-img {
    position: absolute;
    top: -16px;
    right: -15px;
    z-index: 2;
}

.v2t-top-badge-img img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
}

/* Product name */
.v2t-top-card-name {
    font-size: .95em;
    margin: 0 0 8px;
    font-weight: 600;
    padding: 0 10px;
}

.v2t-top-card-name a {
    color: inherit;
    text-decoration: none;
}

.v2t-top-card-name a:hover {
    text-decoration: underline;
}

/* Score circle */
.v2t-top-card-score {
    position: absolute;
    top: 96px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1c4766;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* Editorial + who-its-for text */
.v2t-top-card-text {
    font-size: .8em;
    color: #555;
    padding: 0 12px;
    text-align: left;
    margin-bottom: 18px;
}

.v2t-top-card-text p {
    margin: 0 0 8px;
}

.v2t-top-card-text p:last-child {
    margin-bottom: 0;
}

/* Store + CTA */
.v2t-top-card-store {
    margin-top: auto;
    padding: 0 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.v2t-top-card-store-logo img {
    max-height: 28px;
    max-width: 120px;
    width: auto;
    height: auto;
}

.v2t-top-card-price {
    font-size: 1.1em;
    font-weight: 700;
    color: #197c09;
}

.v2t-top-card-cta {
    display: inline-block;
    background: linear-gradient(#00b000, #0a9e0a);
    color: #fff;
    font-weight: 600;
    font-size: .9em;
    padding: 7px 28px;
    border-radius: 5px;
    text-decoration: none;
}

.v2t-top-card-cta:visited {
    color: #fff;
    text-decoration: none;
}

.v2t-top-card-cta:hover {
    background: linear-gradient(#0abf0a, #0baa0b);
    color: #fff;
}

.v2t-top-card-allprices {
    font-size: .82em;
    color: var(--v2t-text-muted);
    margin-top: 3px;
}

.v2t-top-card-allprices a {
    color: inherit;
    text-decoration: none;
    font-style: italic;
}

.v2t-top-card-allprices a:hover {
    color: var(--v2t-green);
}
.v2t-top-card-no-price {
    font-size: .85em;
    color: var(--v2t-text-muted);
    font-style: italic;
    padding: 8px 0;
}


/* Score circle (reusable) */
.v2t-score-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1c4766;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    flex-shrink: 0;
}

.v2t-score-circle--sm {
    width: 38px;
    height: 38px;
    font-size: .95em;
}

/* Score value in text (non-circle) */
.v2t-score-value {
    color: var(--v2t-green);
    font-weight: 700;
}

.v2t-score-max {
    color: #999;
    font-weight: 400;
    font-size: .85em;
}


/* ---------- Score bar (progress gradient) ---------- */

.v2t-score-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2t-score-bar-label {
    flex: 0 0 160px;
    font-size: .8em;
    line-height: 1em;
    color: var(--v2t-text-muted);
    overflow-wrap: normal;
    word-break: normal;
}

.v2t-score-bar {
    flex: 1;
    height: 14px;
    background: #d5dbe0;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    min-width: 60px;
}

.v2t-score-bar-fill {
    height: 100%;
    border-radius: 7px;
    background: linear-gradient(180deg, #1c4766 0%, #1d3f67 100%);
    transition: width .3s;
}

.v2t-score-bar-num {
    font-size: .85em;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 28px;
    text-align: right;
}


/* ---------- 5. Findings + Issues ---------- */

.v2t-insights {
    margin-bottom: 32px;
}

.v2t-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.v2t-insight-card {
    padding: 0;
    border-radius: var(--v2t-radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

.v2t-insight-header {
    margin: 0;
    padding: 14px 24px;
    font-size: 1.05em;
    font-weight: 600;
    color: #fff;
    background: var(--v2t-navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.v2t-insight-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: .85;
}

.v2t-insight-chevron {
    display: none;
}

.v2t-insight-body {
    padding: 20px 24px 24px;
    font-size: .95em;
}

.v2t-insight-body p:last-child { margin-bottom: 0; }

.v2t-insight-body ul,
.v2t-insight-body ol {
    padding-left: 20px;
}

.v2t-insight-body li {
    margin-bottom: 4px;
}


/* ---------- 6. Comparison Table ---------- */

.v2t-comparison {
    margin-bottom: 32px;
}

.v2t-comp-switch-btn {
    background: #f5f5f5;
    border: 1px solid var(--v2t-border);
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: .82em;
    white-space: nowrap;
    color: var(--v2t-text);
    font-weight: 600;
    line-height: 1.3;
}

.v2t-comp-switch-btn:hover { background: #eee; }

.v2t-comp-wrapper {
    background: #fff;
    border-radius: var(--v2t-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    padding: 20px;
    overflow: hidden;
}

.v2t-comp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.v2t-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92em;
}

.v2t-comp-table,
.v2t-comp-table th,
.v2t-comp-table td {
    border: none;
}
.v2t-comp-table th,
.v2t-comp-table td {
    padding: 8px 14px;
    text-align: center;
    vertical-align: middle;
}

.v2t-comp-label-col {
    text-align: left;
    font-weight: 600;
    font-size: 1em;
    min-width: 140px;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
}

.v2t-comp-table tbody th {
    text-align: left;
    font-weight: 600;
    font-size: 1em;
    min-width: 140px;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
}

.v2t-comp-product-col {
    width: 20%;
    font-weight: 600;
    font-size: .92em;
}

.v2t-comp-row-image td { padding: 12px 14px; }

.v2t-comp-row-image picture,
.v2t-comp-row-image img {
    max-width: 100px;
    width: auto;
    max-height: 150px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.v2t-comp-row-score td {
    padding: 12px 14px;
}
.v2t-comp-row-score th {
    padding: 32px 14px 12px 0;
    font-weight: 800;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Score bar in comparison table */
.v2t-comp-bar {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v2t-comp-bar .v2t-score-bar {
    height: 12px;
    min-width: 60px;
}

.v2t-comp-bar-num {
    font-size: .85em;
    font-weight: 600;
    min-width: 22px;
}

.v2t-comp-divider th {
    padding: 32px 14px 4px 0;
    font-weight: 800;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: .04em;
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 1;
    text-align: left;
    background: #fff;
}

.v2t-comp-stripe:nth-child(odd) td,
.v2t-comp-stripe:nth-child(odd) th {
    background: #f4f7f9;
}
.v2t-comp-stripe:nth-child(even) td,
.v2t-comp-stripe:nth-child(even) th {
    background: #e9eef0;
}

.v2t-spec-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    color: #999;
    cursor: pointer;
    vertical-align: middle;
}
.v2t-spec-info:hover,
.v2t-spec-info:focus-visible {
    color: #1c4766;
}
.v2t-spec-tooltip {
    position: fixed;
    background: #1c4766;
    color: #fff;
    font-size: .85em;
    font-weight: 400;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 6px;
    max-width: min(260px, calc(100vw - 16px));
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    word-wrap: break-word;
}

.v2t-comp-text-cell {
    font-size: .86em;
    text-align: left !important;
    max-width: 200px;
    line-height: 1.4;
}

.v2t-comp-row-price .price-list { font-size: .82em; }

/* Column switcher modal */
.v2t-comp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2t-comp-modal {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0,0,0,.2);
}

.v2t-comp-modal h3 { margin: 0 0 16px; font-size: 1.1em; }

.v2t-comp-modal-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.v2t-comp-modal-list label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: .95em;
}

.v2t-comp-modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

.v2t-comp-modal-ok {
    background: var(--v2t-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
}

.v2t-comp-modal-ok:hover { background: var(--v2t-green-dark); }

.v2t-comp-modal-cancel {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
}

.v2t-comp-modal-cancel:hover { background: #eee; }


/* ---------- 7. Two-Column Layout (content + TOC) ---------- */

.v2t-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    position: relative;
}

.v2t-content-col {
    min-width: 0;
}

.v2t-content-col > .v2t-content-box:last-child {
    margin-bottom: 0;
    order: 1;
}

/* TOC sidebar */
.v2t-toc-sidebar {
    order: 2;
}

.v2t-toc-inner {
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: var(--v2t-radius);
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    padding: 0 0 8px;
    overflow: hidden;
}

.v2t-toc-close { display: none; }

.v2t-toc h3 {
    font-size: .88em;
    margin: 0 0 12px;
    color: var(--v2t-text-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 700;
}

.v2t-toc ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2t-toc ol li { margin-bottom: 0; }

.v2t-toc ol li a {
    display: block;
    padding: 5px 0 5px 14px;
    color: #555;
    text-decoration: none;
    font-size: .88em;
    border-left: 3px solid transparent;
    transition: border-color .2s, color .2s;
}

.v2t-toc ol li a:hover { color: var(--v2t-teal); }

.v2t-toc ol li a.v2t-toc-active {
    border-left-color: var(--v2t-teal);
    color: var(--v2t-teal);
    font-weight: 600;
}

.v2t-toc-note {
    margin-top: 16px;
    padding: 12px;
    background: #fef9e7;
    border-radius: 6px;
    font-size: .82em;
    color: #8a6d3b;
    line-height: 1.45;
}

.v2t-toc-badge {
    text-align: center;
    margin-top: 16px;
}

.v2t-toc-badge img {
    width: 100px;
    height: auto;
}

.v2t-toc-follows {
    text-align: center;
    font-size: .78em;
    color: #aaa;
    margin-top: 12px;
    font-style: italic;
}

/* Floating TOC button (hidden on desktop) */
.v2t-toc-float-btn { display: none; }


/* ---------- 8. Product Boxes ---------- */

.v2t-product-box {
    overflow: hidden;
}

/* Title */
.v2t-pb-name {
    font-size: 1.3em;
    margin: 0 0 16px;
    line-height: 1.25;
}

/* Top section: image | badge | scores | total */
.v2t-pb-top {
    display: grid;
    grid-template-columns: 200px auto 1fr auto;
    grid-template-areas: "image badge scores total";
    gap: 8px 32px;
    align-items: center;
    margin-bottom: 32px;
}

.v2t-pb-image { grid-area: image; }
.v2t-pb-badge { grid-area: badge; }
.v2t-pb-scores { grid-area: scores; }
.v2t-pb-total { grid-area: total; }

.v2t-pb-image {
    position: relative;
}

.v2t-pb-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2t-pb-badge img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
}

.v2t-pb-image picture,
.v2t-pb-image > picture img,
.v2t-pb-image > img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Gallery-enabled image */
.v2t-pb-image--gallery {
    cursor: pointer;
}
.v2t-pb-image--gallery:hover img,
.v2t-pb-image--gallery:hover picture {
    opacity: .85;
    transition: opacity .15s;
}

/* Image count badge */
.v2t-pb-image-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0,0,0,.65);
    color: #fff;
    font-size: .75em;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    pointer-events: none;
}
.v2t-pb-image-badge svg { flex-shrink: 0; }

/* ---------- Gallery overlay ---------- */
.v2t-gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
}
.v2t-gallery-overlay.v2t-gallery-visible { opacity: 1; }

/* Close button */
.v2t-gallery-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}
.v2t-gallery-close:hover { background: rgba(255,255,255,.15); }

/* Main image area */
.v2t-gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 0;
    padding: 60px 60px 0;
}
.v2t-gallery-img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 70vh;
}
.v2t-gallery-img-container picture,
.v2t-gallery-img-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    display: block;
}

/* Navigation arrows */
.v2t-gallery-prev,
.v2t-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    font-size: 1.6em;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.v2t-gallery-prev { left: 10px; }
.v2t-gallery-next { right: 10px; }
.v2t-gallery-prev:hover,
.v2t-gallery-next:hover { background: rgba(255,255,255,.3); }

/* Counter */
.v2t-gallery-counter {
    color: rgba(255,255,255,.7);
    font-size: .9em;
    padding: 8px 0 4px;
    text-align: center;
}

/* Thumbnails */
.v2t-gallery-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding: 8px 16px 16px;
    overflow-x: auto;
    max-width: 100%;
}
.v2t-gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    object-fit: cover;
    cursor: pointer;
    opacity: .5;
    border: 2px solid transparent;
    transition: opacity .15s, border-color .15s;
    flex-shrink: 0;
}
.v2t-gallery-thumb:hover { opacity: .8; }
.v2t-gallery-thumb.v2t-gallery-thumb-active {
    opacity: 1;
    border-color: #fff;
}

/* Score bars column */
.v2t-pb-scores {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 4px;
}

.v2t-pb-scores .v2t-score-bar-wrap {
    margin-bottom: 0;
}

/* Total score column */
.v2t-pb-total {
    text-align: center;
    width: 128px;
    padding-top: 4px;
}

.v2t-pb-total-circle {
    width: 64px;
    height: 64px;
    font-size: 1.3em;
    margin: 0 auto 8px;
}

.v2t-pb-total-label {
    font-size: .85em;
    font-weight: 700;
    color: #343434;
}

.v2t-pb-total-scale {
    font-size: .72em;
    color: var(--v2t-text-muted);
}

/* Product intro */
.v2t-pb-intro {
    color: #555;
    font-size: .95em;
    margin: 0 0 32px;
}

/* Editorial row */
.v2t-pb-editorial {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.v2t-pb-editorial-text {
    flex: 1;
    background: #f4f5f6;
    border-radius: 8px;
    padding: 20px 24px;
    line-height: 1.6;
    font-size: .93em;
    color: #444;
}

.v2t-pb-editorial-assessment {
    margin-bottom: 8px;
}

.v2t-pb-editorial-who {
    font-size: .92em;
    color: #555;
}

.v2t-pb-editorial-badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.v2t-pb-editorial-badge img {
    border-radius: 50%;
    display: block;
}

/* Price section */
.v2t-pb-price {
    margin-bottom: 8px;
}

.v2t-pb-price-heading {
    font-size: .95em;
    font-weight: 700;
    margin: 0 0 8px;
}

/* Accordion trigger */
.v2t-pb-footer {
    text-align: center;
    padding-top: 10px;
    margin-top: 8px;
    padding-bottom: 2px;
}

.v2t-pb-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    margin: -10px -16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .9em;
    color: var(--v2t-navy);
    font-weight: 600;
}

.v2t-pb-toggle:hover { text-decoration: underline; }

.v2t-pb-toggle .v2t-toggle-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s;
}

.v2t-pb-toggle[aria-expanded="true"] .v2t-toggle-icon {
    transform: rotate(-135deg);
}

/* Details panel (accordion content) */
.v2t-pb-details {
    padding-top: 20px;
}

.v2t-pb-details[hidden] { display: none; }

.v2t-pb-review {
    margin-bottom: 20px;
    line-height: 1.65;
}

.v2t-pb-review h3:first-child {
    margin-top: 0;
}

.v2t-read-full-review {
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--v2t-accent);
    text-decoration: none;
}
.v2t-read-full-review:visited {
    color: var(--v2t-accent);
}
.v2t-read-full-review:hover {
    text-decoration: underline;
}

.v2t-pb-specs,
.v2t-pb-performance {
    margin-bottom: 20px;
}

.v2t-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92em;
}

.v2t-specs-table th,
.v2t-specs-table td {
    padding: 8px 14px;
    border: none;
    text-align: left;
    vertical-align: middle;
}

.v2t-specs-table th {
    width: 35%;
    font-weight: 600;
}

.v2t-specs-table tr:nth-child(odd) th,
.v2t-specs-table tr:nth-child(odd) td {
    background: #f4f7f9;
}

.v2t-specs-table tr:nth-child(even) th,
.v2t-specs-table tr:nth-child(even) td {
    background: #e9eef0;
}

/* Pros & Cons grid */
.v2t-pb-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v2t-pb-pros,
.v2t-pb-cons {
    border-radius: 6px;
    padding: 20px 22px;
}

.v2t-pb-pros {
    background: #f0f9eb;
    border-left: 3px solid var(--v2t-green);
}

.v2t-pb-cons {
    background: #fdf0ef;
    border-left: 3px solid #c0392b;
}

.v2t-pb-pros h3,
.v2t-pb-cons h3 {
    font-size: .88em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 10px;
}

.v2t-pb-pros h3 { color: var(--v2t-green-dark); }
.v2t-pb-cons h3 { color: #a93226; }

.v2t-pb-pros ul,
.v2t-pb-cons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2t-pb-pros li,
.v2t-pb-cons li {
    padding: 5px 0 5px 22px;
    position: relative;
    font-size: .93em;
    line-height: 1.5;
}

.v2t-pb-pros li::before {
    content: "+";
    position: absolute;
    left: 2px;
    font-weight: 700;
    color: var(--v2t-green);
}

.v2t-pb-cons li::before {
    content: "\2212";
    position: absolute;
    left: 2px;
    font-weight: 700;
    color: #c0392b;
}

.v2t-score-reasoning {
    display: block;
    font-weight: 400;
    font-size: .88em;
    color: var(--v2t-text-muted);
    margin-top: 2px;
}


/* ---------- 9. WP Content ---------- */

.v2t-wp-content {

}

.v2t-cover-img {
    margin: calc(-1 * var(--v2t-box-pad)) calc(-1 * var(--v2t-box-pad)) 24px;
    width: calc(100% + var(--v2t-box-pad) * 2);
    aspect-ratio: 8 / 3;
    overflow: hidden;
    border-radius: var(--v2t-radius) var(--v2t-radius) 0 0;
}

.v2t-cover-img picture,
.v2t-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v2t-wp-content h2:first-of-type { margin-top: 0; }


/* ---------- 10. Methodology ---------- */

.v2t-methodology-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.2em 0;
    font-size: .93em;
    border: 1px solid var(--v2t-border, #e2e5e9);
    border-radius: 8px;
    overflow: hidden;
}

.v2t-methodology-table th,
.v2t-methodology-table td {
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--v2t-border, #e2e5e9);
}

.v2t-methodology-table th {
    background: var(--v2t-teal, #1a5c5c);
    color: #fff;
    font-weight: 600;
    font-size: .85em;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom-color: var(--v2t-teal-light, #1e6b6b);
    border-right: 1px solid rgba(255,255,255,.15);
}

.v2t-methodology-table th:last-child {
    border-right: none;
}

.v2t-methodology-table td:first-child {
    font-weight: 600;
}

.v2t-methodology-table tr:last-child td {
    border-bottom: none;
}

.v2t-methodology-table tr:nth-child(even) td {
    background: #fafbfc;
}

.v2t-methodology-table td:last-child {
    text-align: center;
    white-space: nowrap;
    font-weight: 600;
    color: #5a6270;
}


/* ---------- 11. Sources ---------- */

.v2t-sources h2:first-child,
.v2t-methodology h2:first-child { margin-top: 0; }

.v2t-methodology-readmore {
    margin-top: 20px;
}
.v2t-methodology-readmore a {
    display: inline-block;
    padding: 8px 20px;
    background: #014f6f;
    color: #fff;
    font-size: .9em;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background .15s;
}
.v2t-methodology-readmore a:hover {
    background: #0c374a;
}
.v2t-methodology-readmore a:visited {
    color: #fff;
}

.v2t-source-intro {
    margin-bottom: 16px;
    line-height: 1.6;
}

.v2t-source-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.v2t-source-sort-label {
    font-size: .85em;
    color: var(--v2t-text-muted);
}

.v2t-source-sort-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: .82em;
    cursor: pointer;
    color: var(--v2t-text-muted);
    transition: all .15s;
}

.v2t-source-sort-btn:hover {
    border-color: #aaa;
    color: var(--v2t-text);
}

.v2t-source-sort-btn--active {
    background: var(--v2t-green);
    border-color: var(--v2t-green);
    color: #fff;
}

.v2t-source-sort-btn--active:hover {
    color: #fff;
}

.v2t-source-group-heading {
    font-weight: 700;
    font-size: .9em;
    padding: 12px 0 6px;
    border-bottom: 2px solid var(--v2t-green);
    margin-top: 8px;
    list-style: none;
}

.v2t-source-group-heading:first-child {
    margin-top: 0;
}

.v2t-source-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.v2t-source-card {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.v2t-source-card:last-child { border-bottom: none; }

.v2t-source-row1 {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.v2t-source-prefix { color: #555; }
.v2t-source-row1 a { color: #1a6bb5; text-decoration: none; font-weight: 500; }
.v2t-source-row1 a:hover { text-decoration: underline; }
.v2t-source-name-text { font-weight: 500; color: #343434; }
.v2t-source-year { color: #777; margin-left: 2px; }

.v2t-source-row2 {
    font-size: .7em;
    font-style: italic;
    color: #777;
    margin-top: 2px;
}

.v2t-source-desc {
    font-size: .8em;
    font-style: italic;
    color: #666;
    line-height: 1.5;
    margin-top: 2px;
}

.v2t-source-aggregated {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e8ebee;
}

.v2t-agg-label {
    font-size: .85em;
    font-weight: 600;
    color: var(--v2t-text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.v2t-agg-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.v2t-agg-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 64px;
}

.v2t-agg-value {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--v2t-teal);
    line-height: 1.2;
}

.v2t-agg-value small {
    font-size: .6em;
    font-weight: 400;
    color: #999;
}

.v2t-agg-unit {
    font-size: .75em;
    color: #888;
    margin-top: 2px;
}


/* ---------- 12. Author Box — see v2-shared.css ---------- */

/* ---------- 12b. Bottom CTA ---------- */

.v2t-bottom-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
}

.v2t-bottom-cta-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}

.v2t-bottom-cta-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v2t-bottom-cta-winner {
    font-size: .95em;
    color: #343434;
}

.v2t-bottom-cta-link {
    font-size: .88em;
    color: #1a5c5c;
    text-decoration: none;
}

.v2t-bottom-cta-link:visited { color: #1a5c5c; }
.v2t-bottom-cta-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .v2t-bottom-cta { gap: 14px; padding: 16px; }
    .v2t-bottom-cta-img { width: 44px; height: 44px; }
}

/* ---------- 13. Related Content — Two-column layout ---------- */

.v2t-related {
    padding-top: 48px;
    padding-bottom: 56px;
    margin-top: 48px;
}

.v2t-related-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.v2t-related-layout.v2t-related-tests-only {
    grid-template-columns: 1fr;
}

.v2t-related-layout.v2t-related-articles-only {
    grid-template-columns: 1fr;
}

.v2t-related-heading {
    font-size: 1.3em;
    margin: 0 0 16px;
}

/* --- Articles column --- */

.v2t-related-articles {
    background: #fff;
    border-radius: var(--v2t-radius);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
}

.v2t-related-articles .v2t-related-heading {
    margin: 0 0 16px;
}

.v2t-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v2t-article-card,
.v2t-article-card:visited,
.v2t-article-card:hover {
    display: block;
    text-decoration: none;
    color: #fff;
    background: var(--v2t-navy);
    border-radius: 6px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.v2t-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.v2t-article-card img {
    width: 100%;
    aspect-ratio: 5 / 2;
    object-fit: cover;
    display: block;
}

.v2t-article-title {
    display: block;
    padding: 8px 10px;
    font-weight: 600;
    font-size: .82em;
    line-height: 1.25;
}

/* --- Test list column --- */

.v2t-related-tests {
    background: #fff;
    border-radius: var(--v2t-radius);
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    align-self: start;
}

.v2t-related-tests .v2t-related-heading {
    margin: 0 0 12px;
}

.v2t-test-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2t-test-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--v2t-border);
}

.v2t-test-list li:last-child {
    border-bottom: none;
}

.v2t-test-list a {
    color: var(--v2t-text);
    text-decoration: none;
    font-weight: 500;
}

.v2t-test-list a:hover {
    color: var(--v2t-teal);
}


/* ---------- Placeholder Image ---------- */

.v2t-placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 6px;
}

.v2t-placeholder-img svg {
    width: 100%;
    height: auto;
    display: block;
}

.v2t-top-card-image .v2t-placeholder-img { max-width: 200px; max-height: 160px; }
.v2t-comp-row-image .v2t-placeholder-img { max-width: 200px; margin: 0 auto; }
.v2t-pb-image .v2t-placeholder-img { width: 100%; }


/* ---------- Comparison Table Store/Price ---------- */

.v2t-comp-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
}

.v2t-comp-store-logo img {
    max-height: 24px;
    max-width: 100px;
    width: auto;
    height: auto;
}

.v2t-comp-store-price {
    font-size: 1em;
    font-weight: 700;
    color: #197c09;
}

.v2t-comp-store-cta {
    display: inline-block;
    background: linear-gradient(#00b000, #0a9e0a);
    color: #fff;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: .85em;
    font-weight: 600;
    text-decoration: none;
}

.v2t-comp-store-cta:visited {
    color: #fff;
    text-decoration: none;
}

.v2t-comp-store-cta:hover {
    background: linear-gradient(#0abf0a, #0baa0b);
    color: #fff;
}

/* ---------- No Price ---------- */

.v2t-no-price,
.v2t-pb-no-price {
    color: var(--v2t-text-muted);
    font-style: italic;
    font-size: .9em;
}


/* ---------- V2 Price List (Product Box) ---------- */

.v2t-pricelist {
}

/* Promo row: campaign badge + link (left) | discount badge (right) */
.v2t-pricelist-promo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 12px;
}

.v2t-pricelist-promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Campaign name badge */
.v2t-pricelist-promo-badge {
    display: inline-block;
    font-size: .72em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
}

.v2t-pricelist-promo-badge.blackfriday,
.v2t-pricelist-promo-badge.blackweek {
    background: linear-gradient(#363636, #212121);
    color: #fff;
}

.v2t-pricelist-promo-badge.mellandagsrea {
    background: linear-gradient(#bb0101, #9b0000);
    color: #fff;
}

/* Campaign link (no heavy background) */
.v2t-pricelist-promo-link {
    font-size: .8em;
    font-weight: 500;
    color: var(--v2t-navy);
    text-decoration: none;
    white-space: nowrap;
}

.v2t-pricelist-promo-link:hover {
    color: var(--v2t-teal);
    text-decoration: underline;
}

/* Discount badge (right side) */
.v2t-pricelist-promo-discount {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.v2t-pricelist-promo-discount-pct {
    display: inline-block;
    background: linear-gradient(#d60202, #b80000);
    color: #fff;
    font-weight: 700;
    font-size: .82em;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.v2t-pricelist-promo-discount-amt {
    display: flex;
    flex-direction: column;
    font-size: .8em;
    color: #c00;
    font-weight: 600;
    line-height: 1.3;
}

.v2t-pricelist-promo-discount-ref {
    font-weight: 400;
    font-style: italic;
    font-size: .85em;
    color: #888;
}

/* Each price row */
.v2t-pricelist-row {
    border-bottom: 1px solid #eeeeee;
}

.v2t-pricelist-row:nth-child(odd) {
    background: #f4f6f7;
}

.v2t-pricelist-row:nth-child(even) {
    background: #edf0f2;
}

.v2t-pricelist-hidden {
    display: none;
}

/* Expanderad prislista: containerklassen visar de dolda raderna (en sanningskälla, ingen inline-display) */
.v2t-pricelist--expanded .v2t-pricelist-hidden {
    display: block;
}

/* Main row: logo | price | shipping | button */
.v2t-pricelist-main {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
}

.v2t-pricelist-logo {
    flex: 0 0 110px;
}

.v2t-pricelist-logo img {
    max-width: 160px;
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

.v2t-pricelist-logo a {
    text-decoration: none;
}

.v2t-pricelist-price {
    flex: 0 0 auto;
    font-size: 1.05em;
    font-weight: 700;
    color: #197c09;
    white-space: nowrap;
}

/* Info toggle button (shipping + return policy) */
.v2t-pricelist-info-btn {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #f8f8f8;
    color: #888;
    font-size: .75em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.v2t-pricelist-info-btn:hover {
    background: #eee;
    border-color: #aaa;
    color: #555;
}

.v2t-pricelist-info-btn.v2t-active {
    background: var(--v2t-teal);
    border-color: var(--v2t-teal);
    color: #fff;
}

/* Expandable info row */
.v2t-pricelist-info {
    display: none;
    padding: 0 12px 8px;
    gap: 14px;
}

.v2t-pricelist-info.v2t-show {
    display: flex;
}

.v2t-pricelist-info-item {
    font-size: .78em;
    color: #027c02;
    font-weight: 500;
    padding-left: 14px;
    position: relative;
}

.v2t-pricelist-info-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #027c02;
}

/* Campaign-colored info items */
.v2t-pricelist-info-item.v2t-info-campaign {
    color: #333;
    font-weight: 600;
}

.v2t-pricelist-info-item.v2t-info-campaign.blackfriday::before,
.v2t-pricelist-info-item.v2t-info-campaign.blackweek::before {
    background: #212121;
}

.v2t-pricelist-info-item.v2t-info-campaign.mellandagsrea::before {
    background: #bb0101;
}

/* Deal-colored info items */
.v2t-pricelist-info-item.v2t-info-deal {
    color: #444;
}

.v2t-pricelist-info-item.v2t-info-deal.rabattkod::before {
    background: #1e73be;
}

.v2t-pricelist-info-item.v2t-info-deal.erbjudande::before {
    background: #c47600;
}

.v2t-pricelist-info-item.v2t-info-deal.superweek::before {
    background: #7b2d8b;
}

.v2t-pricelist-cta {
    flex: 0 0 auto;
    display: inline-block;
    background: linear-gradient(#00b000, #0a9e0a);
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: .85em;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.v2t-pricelist-cta:visited {
    color: #fff;
    text-decoration: none;
}

.v2t-pricelist-cta:hover {
    background: linear-gradient(#0abf0a, #0baa0b);
    color: #fff;
}

/* Inline campaign/deal tag (on the price row) */
.v2t-pricelist-tag {
    flex: 0 0 auto;
    display: inline-block;
    font-size: .68em;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .03em;
    white-space: nowrap;
    line-height: 1.4;
}

.v2t-pricelist-tag.blackfriday,
.v2t-pricelist-tag.blackweek {
    background: linear-gradient(#363636, #212121);
    color: #fff;
}

.v2t-pricelist-tag.mellandagsrea {
    background: linear-gradient(#bb0101, #9b0000);
    color: #fff;
}

.v2t-pricelist-tag.erbjudande {
    background: linear-gradient(#e08700, #c47600);
    color: #fff;
}

.v2t-pricelist-tag.rabattkod {
    background: linear-gradient(#1e73be, #155fa0);
    color: #fff;
}

.v2t-pricelist-tag.superweek {
    background: linear-gradient(#7b2d8b, #612272);
    color: #fff;
}

/* Spacer pushes price + button to the right */
.v2t-pricelist-spacer {
    flex: 1;
}


/* Show more button */
.v2t-pricelist-more {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: none;
    border: none;
    border-top: 1px solid #eee;
    color: var(--v2t-navy);
    font-size: .82em;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.v2t-pricelist-more:hover {
    color: var(--v2t-teal);
    background: #f8f9fa;
}


/* ---------- TOC Redesign ---------- */

.v2t-toc-header {
    background: var(--v2t-teal);
    color: #fff;
    font-weight: 700;
    font-size: .82em;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.v2t-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2t-toc-list li { margin-bottom: 0; padding-bottom: 0; }

.v2t-toc-list li:nth-child(odd) { background: #f7f8fa; }
.v2t-toc-list li:nth-child(even) { background: #fff; }

.v2t-toc-list li a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 6px 14px;
    color: #444;
    text-decoration: none;
    font-size: .86em;
    border-left: 3px solid transparent;
    transition: border-color .2s, color .2s, background .15s;
}

.v2t-toc-list li a:hover {
    color: var(--v2t-teal);
    background: #e0eded;
}

.v2t-toc-list li a.v2t-toc-active {
    border-left-color: var(--v2t-teal);
    color: var(--v2t-teal);
    font-weight: 600;
    background: #d0e4e4;
}


/* ---------- Scores Column ---------- */


/* ---------- Editorial Split ---------- */

.v2t-pb-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.v2t-pb-editorial-box {
    position: relative;
    background: #f4f5f6;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.v2t-pb-editorial-box-label {
    display: inline-block;
    background: var(--v2t-navy);
    color: #fff;
    font-weight: 600;
    font-size: .68em;
    padding: 3px 10px;
    border-radius: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.v2t-pb-editorial-box-text {
    padding: 8px 14px 10px;
    font-size: .9em;
    color: #444;
}



/* ---------- 4 Accordion Sections ---------- */

.v2t-pb-accordion-section {
    border-top: 1px solid #e8ebee;
}

.v2t-pb-section-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-size: .95em;
    font-weight: 600;
    color: var(--v2t-text);
    padding: 14px 16px;
    text-align: left;
    transition: background .2s, color .2s, padding-left .25s ease;
    border-radius: 6px;
    margin: 0 -16px;
    width: calc(100% + 32px);
}

.v2t-pb-section-toggle .v2t-toggle-icon { margin-left: auto; }

.v2t-pb-section-toggle:hover {
    background: #f4f7f9;
    color: var(--v2t-teal);
}

.v2t-pb-section-toggle[aria-expanded="true"] {
    background: var(--v2t-navy);
    color: #fff;
    padding-left: 22px;
}

.v2t-pb-section-toggle[aria-expanded="true"]:hover {
    background: var(--v2t-teal);
    color: #fff;
}

.v2t-pb-section-toggle .v2t-toggle-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s ease;
    flex-shrink: 0;
}

.v2t-pb-section-toggle[aria-expanded="true"] .v2t-toggle-icon {
    transform: rotate(-135deg);
}

.v2t-pb-section-content {
    padding: 16px 16px 20px;
    margin: 0 -16px;
}

.v2t-pb-section-content[hidden] { display: none; }


/* ---------- Prestationer v2 ---------- */

.v2t-pb-perf-subscores,
.v2t-pb-perf-sources,
.v2t-pb-perf-consumer {
    margin-bottom: 20px;
}

.v2t-pb-perf-subscores h4,
.v2t-pb-perf-sources h4,
.v2t-pb-perf-consumer h4 {
    font-size: .95em;
    margin: 0 0 10px;
    font-weight: 700;
}

.v2t-perf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .92em;
}

.v2t-perf-table th,
.v2t-perf-table td {
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
}

.v2t-perf-table thead th {
    font-weight: 600;
    color: var(--v2t-text-muted);
    font-size: .88em;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.v2t-reliability-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: .82em;
    font-weight: 600;
}

.v2t-reliability-high { background: #e6f4ea; color: #1e7e34; }
.v2t-reliability-medium { background: #fff8e1; color: #8a6d3b; }
.v2t-reliability-low { background: #fdecea; color: #c0392b; }

.v2t-perf-conflict-row td {
    padding-top: 0;
    border-bottom: 1px solid #f0f0f0;
}

.v2t-perf-conflict {
    font-size: .85em;
    color: #c0392b;
    font-style: italic;
}

/* Sources list */
.v2t-perf-source-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v2t-source-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.v2t-source-item:last-child { border-bottom: none; }

.v2t-source-link,
.v2t-source-link:visited {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--v2t-text);
}

.v2t-source-link:hover { color: var(--v2t-green); }

.v2t-source-name {
    font-weight: 600;
    font-size: .9em;
}

.v2t-source-domain {
    font-size: .82em;
    color: var(--v2t-text-muted);
    flex-shrink: 0;
}

.v2t-source-desc {
    margin: 4px 0 0;
    font-size: .82em;
    line-height: 1.45;
    color: var(--v2t-text-muted);
}

/* Stars */
.v2t-star { fill: #d5dbe0; }
.v2t-star--full { fill: #f5a623; }
.v2t-star--half { fill: #f5a623; opacity: .5; }

.v2t-consumer-stars {
    display: inline-flex;
    gap: 1px;
    vertical-align: middle;
}

/* Consumer list */
.v2t-consumer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.v2t-consumer-item {
    border-bottom: 1px solid #f0f0f0;
}

.v2t-consumer-item:last-child { border-bottom: none; }

.v2t-consumer-link,
.v2t-consumer-link:visited {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    text-decoration: none;
    color: var(--v2t-text);
}

.v2t-consumer-link:hover { color: var(--v2t-green); text-decoration: none; }
.v2t-consumer-link:hover .v2t-consumer-name { text-decoration: underline; }

.v2t-consumer-name {
    font-weight: 600;
    font-size: .9em;
}

.v2t-consumer-details {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .85em;
    color: var(--v2t-text-muted);
    flex-shrink: 0;
}

.v2t-consumer-score {
    font-weight: 700;
    font-size: .9em;
    color: var(--v2t-text);
}

.v2t-consumer-count {
    font-size: .85em;
    color: var(--v2t-text-muted);
}


/* ---------- Modal Improvements ---------- */

.v2t-comp-modal-counter {
    font-size: .88em;
    color: var(--v2t-text-muted);
    margin-bottom: 12px;
}

.v2t-comp-modal-list label.v2t-modal-disabled {
    opacity: .5;
    cursor: not-allowed;
}

.v2t-comp-modal-list label.v2t-modal-disabled input {
    cursor: not-allowed;
}

.v2t-comp-modal-list input:checked + span {
    font-weight: 600;
}


/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1300px) {
    .v2t-main-layout { grid-template-columns: 1fr 240px; }
    .v2t-related-layout { grid-template-columns: 1fr; }
    .v2t-top-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .v2t-intro-grid { grid-template-columns: 1fr 420px; }

    /* Top cards: horizontal store row — Logo | Price | CTA+allprices */
    .v2t-top-card-store {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 2px 10px;
    }
    .v2t-top-card-store-logo { grid-column: 1; grid-row: 1 / 3; }
    .v2t-top-card-price { grid-column: 2; grid-row: 1 / 3; }
    .v2t-top-card-cta { grid-column: 3; grid-row: 1; font-size: .85em; padding: 6px 16px; }
    .v2t-top-card-allprices { grid-column: 3; grid-row: 2; text-align: center; font-size: .78em; }
    .v2t-top-card-no-price { text-align: center; }

    /* Product box: Image | Badge | (Total / Scores) */
    .v2t-pb-top {
        grid-template-columns: 200px auto 1fr;
        grid-template-areas:
            "image badge total"
            "image badge scores";
    }
    .v2t-pb-total {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px 12px;
        justify-self: end;
        justify-content: flex-end;
        width: auto;
    }
    .v2t-pb-scores { max-width: 420px; width: 100%; justify-self: end; }
    .v2t-pb-total-circle { margin: 0; }
    .v2t-pb-total-scale {
        width: 100%;
        text-align: right;
    }
}

@media (max-width: 1200px) {
    .v2t-pb-badge img { width: 96px; height: 96px; }
    /* Product box: Image | (Badge+Total / Scores) */
    .v2t-pb-top {
        grid-template-columns: 200px 1fr;
        grid-template-areas:
            "image badgetotal"
            "image scores";
    }
    .v2t-pb-badge {
        grid-area: badgetotal;
        justify-self: start;
    }
    .v2t-pb-total {
        grid-area: badgetotal;
        justify-self: end;
    }
}

@media (max-width: 1000px) {
    .v2t-intro-grid { grid-template-columns: 1fr; }
}

@media (max-width: 950px) {
    /* Top cards: Logo left, price/button/allprices stacked right */
    .v2t-top-card-store {
        grid-template-columns: auto 125px;
    }
    .v2t-top-card-store-logo { grid-column: 1; grid-row: 1 / 4; align-self: center; }
    .v2t-top-card-price { grid-column: 2; grid-row: 1; text-align: center; }
    .v2t-top-card-cta { grid-column: 2; grid-row: 2; justify-self: center; }
    .v2t-top-card-allprices { grid-column: 2; grid-row: 3; text-align: center; }
    .v2t-top-grid { gap: 18px; }
}

@media (max-width: 900px) {
    .v2t-main-layout { grid-template-columns: 1fr; }
    .v2t-articles-grid { grid-template-columns: repeat(2, 1fr); }

    /* Product box: narrower image */
    .v2t-pb-top {
        grid-template-columns: 150px 1fr;
        gap: 8px 20px;
    }

    .v2t-toc-sidebar {
        position: fixed;
        top: 0;
        right: -340px;
        width: min(320px, calc(100vw - 40px));
        height: 100vh;
        background: #fff;
        z-index: 9999;
        box-shadow: -4px 0 20px rgba(0,0,0,.15);
        transition: right .3s ease;
        overflow-y: auto;
        padding: 0;
    }

    .v2t-toc-sidebar.v2t-toc-open { right: 0; }

    .v2t-toc-inner {
        position: static;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 8px;
    }

    .v2t-toc-close {
        display: block;
        background: none;
        border: none;
        font-size: 1.8em;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 14px;
        color: #666;
        line-height: 1;
    }

    .v2t-toc-float-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: var(--v2t-green);
        color: #fff;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,.2);
        z-index: 9998;
    }

    .v2t-toc-float-btn:hover { background: var(--v2t-green-dark); }

    .v2t-toc-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.3);
        z-index: 9998;
    }

    .v2t-first-box-inner { --v2t-box-pad: 20px; }

}

@media (max-width: 768px) {
    .v2t-insights-grid { grid-template-columns: 1fr; gap: 0; }

    .v2t-insight-card { border-radius: 0; box-shadow: none; }
    .v2t-insight-card:first-child { border-radius: var(--v2t-radius) var(--v2t-radius) 0 0; }
    .v2t-insight-card:last-child { border-radius: 0 0 var(--v2t-radius) var(--v2t-radius); }
    .v2t-insight-card:only-child { border-radius: var(--v2t-radius); }

    .v2t-insight-header {
        cursor: pointer;
        padding: 12px 16px;
        font-size: 1em;
        user-select: none;
        -webkit-user-select: none;
    }

    .v2t-insight-chevron {
        display: block;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-left: auto;
        transition: transform .25s ease;
    }

    .v2t-insight-header[aria-expanded="false"] .v2t-insight-chevron {
        transform: rotate(-90deg);
    }

    .v2t-insight-body {
        padding: 16px 16px 20px;
    }

    .v2t-insight-header[aria-expanded="false"] + .v2t-insight-body {
        display: none;
    }

    .v2t-content-box { --v2t-box-pad: 20px; }
    .v2t-related { padding-left: 16px; padding-right: 16px; }
    .v2t-related-articles { padding: 20px; }
    .v2t-hero-img { height: 220px; }
    .v2t-h1 { font-size: 1.5em; }
    .v2t-section-heading { font-size: 1.25em; }

    .v2t-authorbox-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .v2t-score-bar-label { font-size: .85em; }
}

@media (max-width: 750px) {
    .v2t-top-card-store {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}

@media (max-width: 640px) {
    /* Ad-info ovanför H1 i naturligt block-flöde — ingen flex/gap */
    .v2t-title-bar { display: block; margin-bottom: 0; }
    .v2t-title-bar .ad-info { margin: -8px 0 6px; }
    .v2t-title-bar .v2t-h1 { line-height: 1; }
    .v2t-byline { font-size: .8em; font-style: italic; }

    /* Kollapsa inledning + faktabox-detaljer bakom "Visa mer"-knapp på mobil */
    .v2t-introduction > p ~ p { display: none; }

    /* Ingen grid-gap på mobil — faktaboxen har egen separering via border-top */
    .v2t-intro-grid { gap: 0; }

    /* Kompakt version av faktaboxen: bara en rad med kriterierna som trust-signal */
    .v2t-fact-box {
        background: none;
        padding: 10px 0 0;
        border-top: 1px solid var(--v2t-border);
        border-radius: 0;
    }
    .v2t-fact-box h3,
    .v2t-fact-meta,
    .v2t-fact-link { display: none; }
    .v2t-fact-items {
        columns: auto;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 4px 10px;
        font-size: .8em;
        color: #666;
    }
    .v2t-fact-items::before {
        content: "Vi bedömer:";
        font-weight: 600;
        color: #444;
    }
    .v2t-fact-items li {
        padding: 0;
        font-weight: 500;
    }
    .v2t-fact-items li:not(:last-child)::after {
        content: "·";
        margin-left: 10px;
        color: #bbb;
    }
    .v2t-intro-expand {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-sizing: border-box;
        width: 100%;
        padding: 12px 16px;
        background: #f4f7f9;
        border: 0;
        border-top: 1px solid #e0e6ea;
        border-radius: 0 0 var(--v2t-radius) var(--v2t-radius);
        font-size: .88em;
        font-weight: 600;
        color: var(--v2t-teal);
        cursor: pointer;
        transition: background .15s ease;
    }
    .v2t-intro-expand:hover { background: #e9eff3; }
    .v2t-intro-expand-chevron {
        width: 14px;
        height: 14px;
        transition: transform .2s ease;
    }

    /* Expanderat läge: visa resten av inledningen, dölj knappen */
    .v2t-intro-expanded .v2t-introduction > p ~ p { display: block; }
    .v2t-intro-expanded .v2t-intro-expand { display: none; }

    .v2t-top-grid { grid-template-columns: repeat(2, 1fr); }
    .v2t-top-card { padding: 14px 10px; }

    .v2t-score-bar-label { font-size: .78em; }

    .v2t-comp-table { font-size: .85em; }
    .v2t-comp-label-col,
    .v2t-comp-table tbody th { min-width: 100px; }

    /* Product box: stacked, badge + total share a row */
    .v2t-pb-top {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "image image"
            "badge total"
            "scores scores";
        gap: 16px;
    }
    .v2t-pb-image { grid-area: image; max-width: 180px; justify-self: center; }
    .v2t-pb-badge { grid-area: badge; justify-self: start; padding-left: 12px; }
    .v2t-pb-badge img { width: 96px; height: 96px; }
    .v2t-pb-total { grid-area: total; justify-self: end; justify-content: flex-end; padding-right: 12px; }
    .v2t-pb-scores { grid-area: scores; max-width: none; justify-self: stretch; }
    .v2t-pb-total-scale { text-align: right; }

    /* Gallery responsive */
    .v2t-gallery-main { padding: 50px 10px 0; }
    .v2t-gallery-prev,
    .v2t-gallery-next { width: 36px; height: 36px; font-size: 1.2em; }
    .v2t-gallery-prev { left: 4px; }
    .v2t-gallery-next { right: 4px; }
    .v2t-gallery-thumb { width: 48px; height: 48px; }

    /* Editorial: stack vertically */
    .v2t-pb-editorial-row {
        grid-template-columns: 1fr;
    }

    /* Pros/cons: single column */
    .v2t-pb-proscons { grid-template-columns: 1fr; gap: 16px; }

    /* Price list: tighter on mobile */
    .v2t-pricelist-main { gap: 8px; padding: 8px 8px; }
    .v2t-pricelist-logo { flex: 0 0 80px; }
    .v2t-pricelist-logo img { max-width: 100px; }
    .v2t-pricelist-cta { padding: 5px 10px; font-size: .85em; }
    .v2t-pricelist-price { font-size: .95em; font-weight: 400; }
    .v2t-pricelist-info { flex-direction: column; gap: 4px; }
    .v2t-pricelist-promo-row { flex-wrap: wrap; }
    .v2t-pricelist-promo-discount { margin-left: auto; }
}

@media (max-width: 500px) {
    .v2t-fact-items { columns: 1; }
    .v2t-content-box { --v2t-box-pad: 16px; padding: var(--v2t-box-pad); border-radius: 6px; }
    .v2t-intro-expand { border-radius: 0 0 6px 6px; }
    .v2t-related { padding-left: 12px; padding-right: 12px; }
    .v2t-related-articles { padding: 16px; }
    .v2t-top-cards-box { padding: 16px 12px; border-radius: 0 0 6px 6px; }
    .v2t-top-heading-bar { border-radius: 6px 6px 0 0; }
    .v2t-hero-img { height: 180px; border-radius: 6px 6px 0 0; }
    .v2t-cover-img { border-radius: 6px 6px 0 0; }
    .v2t-h1 { font-size: 1.4em; }
    .v2t-section-heading { font-size: 1.2em; }

    .v2t-pb-image { max-width: 160px; }
    .v2t-score-bar-label { font-size: .78em; }

    .v2t-top-grid { grid-template-columns: 1fr; gap: 16px; }
    .v2t-top-card { max-width: none; margin: 0; padding-top: 0; }
    .v2t-top-card-name { font-size: 1.05em; }

    .v2t-top-card-image { margin-bottom: 8px; }
    .v2t-top-card-text { padding: 0; }
    .v2t-top-card-store {
        display: grid;
        padding: 0 0 10px;
        grid-template-columns: auto 1fr auto;
    }
    .v2t-top-card-store-logo {
        grid-column: 1;
        grid-row: 1 / 3;
    }
    .v2t-top-card-store-logo img { max-width: 80px; }
    .v2t-top-card-price {
        grid-column: 2;
        grid-row: 1 / 3;
        justify-self: center;
    }
    .v2t-top-card-cta {
        grid-column: 3;
        grid-row: 1;
        justify-self: auto;
    }
    .v2t-top-card-allprices {
        grid-column: 3;
        grid-row: 2;
    }
    .v2t-comp-store-logo img { max-width: 80px; }
}

/* Shop + tags wrapper */
.v2t-pricelist-shop {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Price + CTA wrapper */
.v2t-pricelist-action {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 480px) {
    .v2t-pricelist-action {
        flex-direction: column;
        gap: 2px;
        align-items: center;
    }
    .v2t-pricelist-main {
        padding: 14px 8px;
    }
    .v2t-pricelist-shop {
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
    .v2t-pricelist-logo {
        flex: 0 0 auto;
    }
    .v2t-pricelist-logo img {
        max-height: 28px;
        width: auto;
    }
    .v2t-pricelist-tag {
        font-size: .6em;
    }
}

@media (max-width: 450px) {
    .v2t-h1 { font-size: 1.35em; }
    .v2t-section-heading { font-size: 1.15em; }
    .v2t-top-heading-bar h2 { font-size: 1.15em; }
    .v2t-score-bar-label { font-size: .78em; }
    .v2t-comp-label-col,
    .v2t-comp-table tbody th { min-width: 70px; font-size: .8em; }

    .v2t-methodology-table th,
    .v2t-methodology-table td { padding: 8px 10px; font-size: .85em; }

    .v2t-toc-float-btn { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

/* --- Sticky CTA footer (ads traffic) --- */
.v2t-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,.15);
    border-top: 2px solid var(--v2t-accent, #2563eb);
    animation: v2t-slide-up .3s ease-out;
}

.v2t-sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

@keyframes v2t-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.v2t-sticky-cta-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.v2t-sticky-cta-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

a.v2t-sticky-cta-name {
    font-weight: 600;
    font-size: .95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #222;
    text-decoration: none;
    display: block;
}
a.v2t-sticky-cta-name:visited { color: #222; }
a.v2t-sticky-cta-name:hover { text-decoration: underline; }

.v2t-sticky-cta-badge {
    font-size: .78rem;
    color: #b8860b;
    font-weight: 500;
}

.v2t-sticky-cta-action {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.v2t-sticky-cta-price {
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.v2t-sticky-cta-btn {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(#00b000, #0a9e0a);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    transition: background .15s;
}

.v2t-sticky-cta-btn:visited {
    color: #fff;
}

.v2t-sticky-cta-btn:hover {
    background: linear-gradient(#0abf0a, #0baa0b);
    color: #fff;
    text-decoration: none;
}

.v2t-sticky-cta-close {
    position: absolute;
    top: -12px;
    right: 8px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v2t-sticky-cta-close:hover {
    background: #f0f0f0;
}

@media (max-width: 600px) {
    /* Comparison table: break out of site-main padding and compact for mobile */
    .v2t-comparison {
        margin-left: -20px;
        margin-right: -20px;
    }
    .v2t-comp-wrapper {
        padding: 5px;
        border-radius: 0;
    }
    .v2t-comp-table { font-size: .82em; }
    .v2t-comp-table th,
    .v2t-comp-table td {
        padding: 6px 7px;
    }
    .v2t-comp-row-image td { padding: 8px 7px; }
    .v2t-comp-row-image picture,
    .v2t-comp-row-image img {
        max-width: 70px;
    }
    .v2t-comp-row-score td { padding: 8px 7px; }
    .v2t-comp-bar { height: 14px; }
    .v2t-comp-bar-num { font-size: .7em; }
    .v2t-comp-label-col,
    .v2t-comp-table tbody th {
        min-width: 80px;
        font-size: .82em;
    }
}

@media (max-width: 500px) {
    /* site-main padding shrinks to 12px at this breakpoint */
    .v2t-comparison {
        margin-left: -12px;
        margin-right: -12px;
    }
}

@media (max-width: 600px) {
    .v2t-pb-toggle {
        display: flex;
        width: calc(100% + 32px);
        margin: -10px -16px;
        padding: 12px 16px;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .v2t-sticky-cta {
        gap: 8px;
        padding: 8px 12px;
    }
    .v2t-sticky-cta-img {
        width: 40px;
        height: 40px;
    }
    .v2t-sticky-cta-action {
        flex-direction: column;
        gap: 4px;
        align-items: flex-end;
    }
    .v2t-sticky-cta-btn {
        padding: 6px 12px;
        font-size: .82rem;
    }
}


/* =============================================
   FAQ section
   ============================================= */

.v2t-faq-section.v2t-content-box {
    padding: 0;
}

/* Compact summary bar */
.v2t-faq-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: var(--v2t-box-pad, 25px);
    cursor: pointer;
    user-select: none;
}
.v2t-faq-summary:hover .v2t-faq-summary-text {
    color: var(--v2t-teal, #1a5c5c);
}

.v2t-faq-icon {
    flex-shrink: 0;
    color: var(--v2t-teal, #1a5c5c);
}

.v2t-faq-summary-text {
    flex: 1;
    font-weight: 700;
    font-size: 1.15em;
    margin: 0;
    color: var(--v2t-text, #343434);
    transition: color .15s;
}

.v2t-faq-expand-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}
.v2t-faq-expand-icon::before,
.v2t-faq-expand-icon::after {
    content: '';
    position: absolute;
    background: var(--v2t-text-muted, #666);
    border-radius: 1px;
    transition: transform .25s ease, opacity .25s ease;
}
.v2t-faq-expand-icon::before {
    width: 14px; height: 2px;
    top: 9px; left: 3px;
}
.v2t-faq-expand-icon::after {
    width: 2px; height: 14px;
    top: 3px; left: 9px;
}
.v2t-faq-open .v2t-faq-expand-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Body: hidden until expanded */
.v2t-faq-body {
    display: none;
    padding: 0 var(--v2t-box-pad, 25px) var(--v2t-box-pad, 25px);
}
.v2t-faq-open .v2t-faq-body {
    display: block;
}
.v2t-faq-open .v2t-faq-summary {
    border-bottom: 1px solid #eee;
}

.v2t-faq-stage-heading {
    font-size: 1.1em;
    font-weight: 600;
    margin: 24px 0 8px;
    padding-left: 12px;
    border-left: 3px solid var(--v2t-teal, #1a5c5c);
    color: var(--v2t-navy, #2a3440);
}
.v2t-faq-stage-heading:first-child {
    margin-top: 4px;
}

/* FAQ list */
.v2t-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-left: 15px;
}

/* Individual FAQ item */
.v2t-faq-item {
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}
.v2t-faq-item:last-child {
    border-bottom: none;
}

.v2t-faq-item summary {
    padding: 14px 0;
    font-weight: 600;
    font-size: .92em;
    color: var(--v2t-text, #343434);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.v2t-faq-item summary::-webkit-details-marker { display: none; }

.v2t-faq-item summary::after {
    content: '+';
    font-size: 1.3em;
    font-weight: 400;
    color: var(--v2t-text-muted, #666);
    flex-shrink: 0;
    transition: transform .2s;
}
.v2t-faq-item[open] summary::after {
    content: '\2212';
}
.v2t-faq-item summary:hover {
    color: var(--v2t-teal, #1a5c5c);
}

.v2t-faq-answer {
    padding: 0 0 14px;
    font-size: .9em;
    line-height: 1.65;
    color: var(--v2t-text-muted, #666);
}

@media (max-width: 600px) {
    .v2t-faq-summary { padding: 18px; }
    .v2t-faq-body { padding: 0 18px 18px; }
    .v2t-faq-item summary { font-size: .88em; }
}

/* ── Own Tests (Våra egna tester) ── */

.v2t-own-tests h2 {
    font-size: 1.3em;
    margin-bottom: 16px;
}

.v2t-own-tests-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v2t-own-test-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background .15s;
}

.v2t-own-test-row:first-child {
    border-top: none;
}

.v2t-own-test-row:hover {
    background: #f8f8f8;
}

.v2t-own-test-row:visited {
    color: inherit;
    text-decoration: none;
}

.v2t-own-test-img {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.v2t-own-test-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2t-own-test-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v2t-own-test-title {
    font-weight: 600;
    font-size: .95em;
    color: var(--v2t-text, #222);
}

.v2t-own-test-date {
    font-size: .82em;
    color: var(--v2t-text-muted, #888);
}

@media (max-width: 600px) {
    .v2t-own-test-img {
        width: 80px;
        height: 56px;
    }

    .v2t-own-test-row {
        gap: 12px;
        padding: 12px 0;
    }
}
