/* Bow Advice — single review v2 */
:root {
    --ba-cream: #FBFAF5;
    --ba-sand: #F4F1E8;
    --ba-forest: #1E3A2A;
    --ba-dark: #14251B;
    --ba-orange: #D96F32;
    --ba-rust: #BF5C22;
    --ba-peach: #E8935B;
    --ba-text: #171A16;
    --ba-muted: #6B695F;
    --ba-warm-gray: #8A887E;
    --ba-sage: #55705C;
    --ba-green: #2E5A3C;
    --ba-green-bg: #F0F4EE;
    --ba-orange-bg: #F7EEE7;
    --ba-complaint: #A34E1B;
    --heading-font: 'Barlow Condensed', sans-serif;
    --body-font: 'Barlow', sans-serif;
    --review-max: 1280px;
}

body.single-review,
body.single-review-v2 {
    background: var(--ba-sand);
    color: var(--ba-text);
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
}

body.single-review .site-content,
body.single-review-v2 .site-content {
    padding: 0;
}

body.single-review a,
body.single-review-v2 a {
    color: var(--ba-rust);
    text-decoration: none;
}

body.single-review a:hover,
body.single-review-v2 a:hover {
    color: var(--ba-orange);
}

.review-container {
    max-width: var(--review-max);
    margin: 0 auto;
    padding: 0 32px;
}

.review-main .section-eyebrow {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ba-rust);
}

.review-main .section-eyebrow--light { color: var(--ba-peach); }

.review-main .section-heading {
    margin: 0 0 16px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--ba-forest);
}

.review-main .section-heading--light { color: var(--ba-cream); }

.review-section-lead {
    margin: 0 0 36px;
    max-width: 720px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ba-muted);
}

.review-section-lead--light { color: rgba(251, 250, 245, 0.78); }

.review-section {
    padding: 76px 0 68px;
}

/* Sticky buy bar */
.review-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--ba-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
}

.review-sticky-bar.is-visible { transform: translateY(0); }

.review-sticky-bar-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 32px;
}

.review-sticky-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.review-sticky-thumb img { width: 100%; height: 100%; object-fit: contain; }

.review-sticky-title {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    color: var(--ba-cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-sticky-scoreline {
    margin: 0;
    font-size: 12px;
    color: rgba(251, 250, 245, 0.65);
}

.review-sticky-scoreline .review-stars { color: var(--ba-peach); }

.review-sticky-nav {
    display: none;
    gap: 18px;
    margin-left: 28px;
    font-size: 13.5px;
    font-weight: 600;
}

.review-sticky-nav a { color: rgba(251, 250, 245, 0.75); }
.review-sticky-nav a:hover { color: var(--ba-cream); }

.review-sticky-cta { margin-left: auto; flex-shrink: 0; }

@media (min-width: 1024px) {
    .review-sticky-nav { display: flex; }
}

/* Hero */
.review-hero {
    background: var(--ba-cream);
    border-bottom: 1px solid rgba(23, 26, 22, 0.08);
    padding-bottom: 64px;
}

.review-breadcrumbs {
    padding-top: 24px;
    font-size: 13.5px;
    color: var(--ba-warm-gray);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.review-breadcrumbs a { color: var(--ba-muted); font-weight: 500; }
.review-breadcrumbs span:last-child { color: var(--ba-text); font-weight: 600; }

.review-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 26px;
    align-items: start;
}

@media (min-width: 960px) {
    .review-hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.review-gallery-stage {
    position: relative;
    background: #fff;
    border: 1px solid rgba(23, 26, 22, 0.08);
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3.3;
}

.review-gallery-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 28px);
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.review-gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.review-gallery-slide img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.review-hero-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: var(--ba-forest);
    color: #fff;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 5px;
}

.review-gallery-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.review-gallery-tab {
    background: var(--ba-sand);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 8px;
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 13px;
    color: var(--ba-text);
}

.review-gallery-tab.is-active { border-color: var(--ba-orange); }

.review-trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    font-size: 12.5px;
    color: var(--ba-warm-gray);
}

.review-hero-title {
    margin: 0 0 14px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.875rem);
    line-height: 1;
    text-wrap: balance;
}

.review-hero-score-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.review-score-pill {
    background: var(--ba-forest);
    color: var(--ba-cream);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 26px;
    padding: 6px 14px;
    border-radius: 8px;
}

.review-stars {
    margin: 0;
    color: var(--ba-orange);
    font-size: 15px;
    letter-spacing: 2px;
}

.review-score-caption {
    margin: 0;
    font-size: 12.5px;
    color: var(--ba-warm-gray);
}

.review-hero-price .review-price {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
}

.review-stock {
    margin: 0;
    font-size: 12.5px;
    color: var(--ba-green);
    font-weight: 600;
}

.review-quick-verdict {
    margin: 0 0 20px;
    font-size: 16.5px;
    line-height: 1.6;
    color: var(--ba-muted);
}

.review-fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
}

.review-fit-card {
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.55;
}

.review-fit-card--yes { background: var(--ba-green-bg); color: #37423A; }
.review-fit-card--no { background: var(--ba-orange-bg); color: #4A4038; }

.review-fit-label {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-fit-card--yes .review-fit-label { color: var(--ba-green); }
.review-fit-card--no .review-fit-label { color: var(--ba-complaint); }

.review-fit-card p:last-child { margin: 0; }

.review-hero-ctas { margin-bottom: 18px; }

.review-hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.review-hero-meta {
    margin: 0;
    font-size: 13px;
    color: var(--ba-warm-gray);
}

/* Buttons */
.btn-review-amazon {
    display: inline-block;
    text-align: center;
    background: var(--ba-orange);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 6px;
    border: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-review-amazon:hover {
    background: var(--ba-rust);
    color: #fff !important;
}

.btn-review-amazon--lg {
    display: block;
    font-size: 17.5px;
    padding: 17px 30px;
    border-radius: 8px;
}

.btn-review-amazon--sm { font-size: 13px; padding: 9px 8px; }

.btn-review-outline {
    display: inline-block;
    text-align: center;
    color: var(--ba-forest) !important;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 20px;
    border: 1.5px solid rgba(30, 58, 42, 0.35);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-review-outline:hover {
    border-color: var(--ba-forest);
    background: rgba(30, 58, 42, 0.04);
    color: var(--ba-forest) !important;
}

.btn-review-outline--sm { font-size: 13px; padding: 9px 16px; border-radius: 6px; }

.btn-review-outline--light {
    border-color: rgba(251, 250, 245, 0.35);
    color: var(--ba-cream) !important;
}

.btn-review-outline--light:hover {
    border-color: var(--ba-cream);
    color: var(--ba-cream) !important;
}

/* Should you buy */
.review-decide-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .review-decide-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-decide-card {
    border-radius: 14px;
    padding: 32px;
}

.review-decide-card h3 {
    margin: 0 0 16px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 26px;
}

.review-decide-card--buy {
    background: var(--ba-forest);
    color: rgba(251, 250, 245, 0.85);
}

.review-decide-card--buy h3 { color: var(--ba-cream); }

.review-decide-card--skip,
.review-decide-card--instead {
    background: var(--ba-cream);
    border: 1px solid rgba(23, 26, 22, 0.1);
    color: var(--ba-muted);
}

.review-decide-card--skip h3 { color: var(--ba-complaint); }
.review-decide-card--instead h3 { color: var(--ba-forest); }

.review-decide-card ul,
.review-instead-list { margin: 0; padding-left: 18px; font-size: 15px; line-height: 1.8; }

.review-instead-list p { margin: 0 0 14px; }

/* Verdict */
.review-verdict {
    background: var(--ba-dark);
    padding: 84px 0;
}

.review-verdict-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 960px) {
    .review-verdict-grid { grid-template-columns: 4fr 8fr; gap: 64px; }
}

.review-score-ring {
    width: 220px;
    height: 220px;
    margin: 0 auto;
    border: 3px solid var(--ba-orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(217, 111, 50, 0.08);
}

.review-score-ring-value {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 84px;
    line-height: 1;
    color: var(--ba-cream);
}

.review-score-ring-label {
    margin: 6px 0 0;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ba-peach);
}

.review-sub-scores {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-sub-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-sub-score-label {
    width: 90px;
    font-size: 13px;
    color: rgba(251, 250, 245, 0.7);
}

.review-sub-score-bar {
    flex: 1;
    height: 6px;
    background: rgba(251, 250, 245, 0.15);
    border-radius: 3px;
    overflow: hidden;
}

.review-sub-score-bar span {
    display: block;
    height: 100%;
    background: var(--ba-orange);
    border-radius: 3px;
}

.review-sub-score-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--ba-cream);
}

.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 640px) {
    .review-pros-cons { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Verdict: space body copy above pros/cons (last prose child has margin-bottom: 0) */
.review-verdict-copy > .review-pros-cons {
    margin-top: clamp(28px, 4vw, 40px);
    gap: clamp(18px, 3vw, 24px);
}

@media (min-width: 640px) {
    .review-verdict-copy > .review-pros-cons { gap: clamp(20px, 2.5vw, 28px); }
}

.review-pros-card,
.review-cons-card {
    background: rgba(251, 250, 245, 0.06);
    border: 1px solid rgba(251, 250, 245, 0.12);
    border-radius: 14px;
    padding: 22px 24px;
}

.review-pros-card { border-color: rgba(85, 112, 92, 0.35); }

.review-cons-card {
    border-color: rgba(163, 78, 27, 0.45);
    background: rgba(163, 78, 27, 0.08);
}

.review-pros-card-head,
.review-cons-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-pros-icon,
.review-cons-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.review-pros-icon {
    background: rgba(46, 90, 60, 0.25);
    color: #8fd4a8;
}

.review-cons-icon {
    background: rgba(163, 78, 27, 0.3);
    color: var(--ba-cream);
}

.review-pros-card h3,
.review-cons-card h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ba-cream);
}

.review-pros-list,
.review-cons-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.review-pros-list li,
.review-cons-list li {
    position: relative;
    padding: 10px 0 10px 22px;
    color: rgba(251, 250, 245, 0.88);
    font-size: 15px;
    line-height: 1.55;
    border-bottom: 1px solid rgba(251, 250, 245, 0.08);
}

.review-pros-list li:last-child,
.review-cons-list li:last-child { border-bottom: none; }

.review-pros-list li::before,
.review-cons-list li::before {
    position: absolute;
    left: 0;
    top: 12px;
    font-weight: 700;
    font-size: 13px;
}

.review-pros-list li::before { content: "✓"; color: #8fd4a8; }

.review-cons-card h3 { color: var(--ba-complaint); }

.review-cons-list li::before { content: "✕"; color: var(--ba-complaint); }

.review-editor-quote {
    margin: 0;
    padding: 28px;
    background: rgba(251, 250, 245, 0.05);
    border-left: 3px solid var(--ba-orange);
    border-radius: 0 12px 12px 0;
}

.review-editor-quote p {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.35;
    color: var(--ba-cream);
}

.review-editor-quote cite {
    font-size: 13.5px;
    color: rgba(251, 250, 245, 0.6);
    font-style: normal;
}

.review-editor-quote cite a { color: var(--ba-peach); }

/* Trust bar */
.review-trust-bar {
    background: #EDE8DA;
    border-bottom: 1px solid rgba(23, 26, 22, 0.08);
    padding: 40px 0;
}

.review-trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media (min-width: 900px) {
    .review-trust-bar-grid { grid-template-columns: repeat(4, 1fr); }
}

.review-trust-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-trust-value {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 34px;
    color: var(--ba-forest);
}

.review-trust-stat p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.45;
    color: #4A4A44;
}

/* Specs */
.review-specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .review-specs-grid { grid-template-columns: 1fr 1fr; }
}

.review-spec-card {
    background: var(--ba-cream);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 14px;
    padding: 30px;
}

.review-spec-card--dark {
    background: var(--ba-forest);
    border: none;
    color: var(--ba-cream);
}

.review-spec-card--dark h3 { color: var(--ba-cream); }

.review-spec-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.review-spec-card-head h3,
.review-spec-card > h3 {
    margin: 0 0 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 24px;
    color: var(--ba-text);
}

.review-spec-card-head span { font-size: 13px; color: var(--ba-warm-gray); }

.review-draw-bar {
    position: relative;
    height: 12px;
    background: #EDE8DA;
    border-radius: 6px;
    margin: 30px 0 10px;
}

.review-draw-bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #A8C3AE, var(--ba-forest));
    border-radius: 6px;
}

.review-draw-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--ba-muted);
}

.review-fps-list { display: flex; flex-direction: column; gap: 14px; }

.review-fps-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 13.5px;
}

.review-fps-row--highlight .review-fps-meta { font-weight: 700; color: var(--ba-text); }
.review-fps-row--highlight .review-fps-meta span:last-child { color: var(--ba-rust); }

.review-fps-bar {
    height: 10px;
    background: #EDE8DA;
    border-radius: 5px;
    overflow: hidden;
}

.review-fps-bar span {
    display: block;
    height: 100%;
    background: #A8C3AE;
    border-radius: 5px;
}

.review-fps-row--highlight .review-fps-bar span { background: var(--ba-orange); }

.review-size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.review-size-label {
    margin: 0 0 6px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ba-warm-gray);
}

.review-size-value {
    margin: 0 0 8px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 40px;
    color: var(--ba-forest);
}

.review-size-bar {
    height: 8px;
    background: #EDE8DA;
    border-radius: 4px;
    overflow: hidden;
}

.review-size-bar span {
    display: block;
    height: 100%;
    background: var(--ba-forest);
    border-radius: 4px;
}

.review-spec-note {
    margin: 18px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--ba-muted);
}

.review-spec-note--light { color: rgba(251, 250, 245, 0.6); }
.review-spec-note--light a { color: var(--ba-peach); }

.review-fit-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14.5px;
}

.review-fit-checklist li {
    display: flex;
    gap: 12px;
    align-items: baseline;
    color: rgba(251, 250, 245, 0.85);
}

.review-fit-checklist span { color: var(--ba-peach); font-weight: 700; }

/* Testing */
.review-testing {
    background: var(--ba-forest);
    padding: 84px 0;
}

.review-testing-intro { max-width: 720px; margin-bottom: 48px; }

.review-testing-phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .review-testing-phases { grid-template-columns: repeat(3, 1fr); }
}

.review-testing-phase {
    background: rgba(251, 250, 245, 0.05);
    border: 1px solid rgba(251, 250, 245, 0.12);
    border-radius: 14px;
    overflow: hidden;
}

.review-testing-phase-media { aspect-ratio: 16 / 10; }

.review-testing-phase-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-testing-phase-body { padding: 24px; }

.review-phase-eyebrow {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.14em;
    color: var(--ba-peach);
}

.review-testing-phase-body h3 {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    color: var(--ba-cream);
}

.review-testing-phase-body p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(251, 250, 245, 0.75);
}

.review-testing-stats {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(251, 250, 245, 0.12);
    padding-top: 28px;
}

.review-testing-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.review-testing-stat-value {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 30px;
    color: var(--ba-cream);
}

.review-testing-stat-label {
    font-size: 13.5px;
    color: rgba(251, 250, 245, 0.6);
}

.review-testing-methodology {
    margin-left: auto;
    color: var(--ba-peach);
    font-weight: 700;
    font-size: 15px;
}

/* Owner consensus */
.review-consensus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 900px) {
    .review-consensus-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-consensus-card {
    background: var(--ba-cream);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 14px;
    padding: 30px;
}

.review-consensus-card--dark {
    background: var(--ba-forest);
    border: none;
    color: rgba(251, 250, 245, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.review-consensus-card--dark h3 { color: var(--ba-cream); font-family: var(--heading-font); font-size: 26px; margin: 0 0 14px; }
.review-consensus-card--dark ul { margin: 0 0 24px; padding-left: 18px; line-height: 1.8; }
.review-consensus-card--dark a { color: var(--ba-peach); }

.review-amazon-score {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 44px;
    color: var(--ba-forest);
}

.review-amazon-score span { font-size: 22px; color: var(--ba-warm-gray); }

.review-amazon-count { margin: 0 0 20px; font-size: 13.5px; color: var(--ba-warm-gray); }

.review-tag-label {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.review-tag-label--praise { color: var(--ba-green); }
.review-tag-label--complaint { color: var(--ba-complaint); }

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.review-tags span {
    font-weight: 600;
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 999px;
}

.review-tags--praise span { background: var(--ba-green-bg); color: var(--ba-green); }
.review-tags--complaint span { background: var(--ba-orange-bg); color: var(--ba-complaint); }

.review-consensus-card blockquote {
    margin: 0 0 18px;
    padding: 16px 20px;
    background: var(--ba-sand);
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ba-muted);
    font-style: italic;
}

/* Alternatives */
.review-alternatives {
    background: var(--ba-cream);
    border-top: 1px solid rgba(23, 26, 22, 0.08);
}

.review-alt-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
}

@media (min-width: 700px) {
    .review-alt-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
    .review-alt-cards { grid-template-columns: repeat(4, 1fr); }
}

.review-alt-card {
    display: flex;
    flex-direction: column;
    background: var(--ba-sand);
    border: 1px solid rgba(23, 26, 22, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-alt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 37, 27, 0.14);
}

.review-alt-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #fff;
}

.review-alt-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.review-alt-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ba-sage);
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 4px;
}

.review-alt-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-alt-card-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.review-alt-card-head h3 {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 24px;
}

.review-alt-score {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 21px;
    color: var(--ba-forest);
}

.review-alt-card-body > p {
    margin: 0 0 14px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--ba-muted);
}

.review-alt-price {
    margin: auto 0 14px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    color: var(--ba-text) !important;
}

.review-alt-actions {
    display: flex;
    gap: 8px;
}

.review-alt-actions a { flex: 1; }

.review-compare-table {
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 14px;
    overflow: hidden;
    background: var(--ba-cream);
}

.review-compare-head,
.review-compare-row {
    display: grid;
    grid-template-columns: 2.4fr 1fr 1fr 1.6fr 1.9fr 1.5fr;
    align-items: center;
    padding: 20px 24px;
    gap: 8px;
}

.review-compare-head {
    background: var(--ba-forest);
    padding: 16px 24px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(251, 250, 245, 0.8);
}

.review-compare-row { border-top: 1px solid rgba(23, 26, 22, 0.08); }

.review-compare-row.is-current {
    background: rgba(217, 111, 50, 0.06);
    border-left: 3px solid var(--ba-orange);
}

.review-compare-title {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}

.review-compare-badge {
    background: var(--ba-orange);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.review-compare-sub { margin: 2px 0 0; font-size: 13px; color: var(--ba-warm-gray); }

.review-compare-score {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 22px;
    color: var(--ba-forest);
}

.review-alt-footer {
    margin: 20px 0 0;
    font-size: 14px;
    color: var(--ba-warm-gray);
}

@media (max-width: 899px) {
    .review-compare-head { display: none; }
    .review-compare-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Bow finder */
.review-bow-finder {
    background: var(--ba-dark);
    padding: 84px 0;
}

.review-bow-finder-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}

.review-persona-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.review-persona-tab {
    background: rgba(251, 250, 245, 0.08);
    color: var(--ba-cream);
    border: 1.5px solid rgba(251, 250, 245, 0.2);
    border-radius: 999px;
    padding: 13px 26px;
    cursor: pointer;
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
}

.review-persona-tab.is-active {
    background: var(--ba-orange);
    border-color: var(--ba-orange);
    color: #fff;
}

.review-persona-panel {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(251, 250, 245, 0.05);
    border: 1px solid rgba(251, 250, 245, 0.14);
    border-radius: 16px;
    padding: 40px;
    display: none;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.review-persona-panel.is-active { display: grid; }

.review-persona-eyebrow {
    margin: 0 0 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ba-peach);
}

.review-persona-copy h3 {
    margin: 0 0 12px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 36px;
    line-height: 1.05;
    color: var(--ba-cream);
}

.review-persona-copy p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(251, 250, 245, 0.78);
}

.review-persona-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.review-persona-score { text-align: center; }

.review-persona-score p {
    margin: 0;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 62px;
    line-height: 1;
    color: var(--ba-cream);
}

.review-persona-score span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ba-peach);
}

@media (max-width: 767px) {
    .review-persona-panel { grid-template-columns: 1fr; }
}

/* Complete setup */
.review-setup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 960px) {
    .review-setup-grid { grid-template-columns: 7fr 5fr; }
}

.review-setup-card {
    background: var(--ba-cream);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 14px;
    padding: 32px;
}

.review-setup-card--dark {
    background: var(--ba-forest);
    border: none;
    color: rgba(251, 250, 245, 0.82);
}

.review-setup-card h3 {
    margin: 0 0 24px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 26px;
}

.review-setup-card--dark h3 { color: var(--ba-cream); }

.review-fbt-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 26, 22, 0.08);
}

.review-fbt-item:last-child { border-bottom: none; }

.review-fbt-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.review-fbt-thumb img { width: 100%; height: 100%; object-fit: contain; }

.review-fbt-copy { flex: 1; }
.review-fbt-copy p { margin: 0; font-weight: 700; font-size: 15px; }
.review-fbt-sub { font-size: 13px !important; font-weight: 400 !important; color: var(--ba-warm-gray) !important; }
.review-fbt-current { font-size: 12px; color: var(--ba-warm-gray); font-weight: 600; }
.review-fbt-price { font-weight: 700; font-size: 15px; }

.review-fbt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 2px solid rgba(23, 26, 22, 0.12);
    flex-wrap: wrap;
}

.review-upgrade-intro {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(251, 250, 245, 0.65);
}

.review-upgrade-step {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
}

.review-upgrade-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ba-orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-upgrade-step:not(:first-child) .review-upgrade-num {
    background: rgba(251, 250, 245, 0.15);
    color: var(--ba-cream);
}

.review-upgrade-title {
    margin: 0 0 3px;
    font-weight: 700;
    font-size: 15.5px;
    color: var(--ba-cream);
}

.review-upgrade-step p:last-child {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(251, 250, 245, 0.65);
}

.review-upgrade-step a { color: var(--ba-peach); }

/* FAQ */
.review-faq {
    background: var(--ba-sand);
    border-top: 1px solid rgba(23, 26, 22, 0.08);
}

.review-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 960px) {
    .review-faq-grid { grid-template-columns: 5fr 7fr; gap: 64px; }
    .review-faq-intro { position: sticky; top: 104px; }
}

.review-faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.review-faq-item {
    background: var(--ba-cream);
    border: 1px solid rgba(23, 26, 22, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.review-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: transparent;
    border: none;
    padding: 22px 26px;
    cursor: pointer;
    text-align: left;
    font-family: var(--body-font);
}

.review-faq-question span:first-child {
    font-weight: 700;
    font-size: 17px;
    color: var(--ba-text);
}

.review-faq-marker {
    font-family: var(--heading-font);
    font-size: 26px;
    line-height: 1;
    color: var(--ba-rust);
    flex-shrink: 0;
}

.review-faq-answer {
    padding: 0 26px 24px;
}

.review-faq-answer p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ba-muted);
}

/* Final CTA */
.review-final-cta {
    background: transparent;
    padding: 68px 0 76px;
}

.review-final-cta-inner {
    background: var(--ba-orange);
    border-radius: 18px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .review-final-cta {
        padding: 48px 0 56px;
    }

    .review-final-cta-inner {
        padding: 36px 28px;
        gap: 28px;
    }
}

.review-final-cta h2 {
    margin: 0 0 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: #fff;
}

.review-final-cta p {
    margin: 0;
    font-size: 17.5px;
    color: rgba(255, 255, 255, 0.88);
}

.review-final-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-review-final-primary {
    background: var(--ba-text);
    color: var(--ba-cream) !important;
    font-weight: 700;
    font-size: 17px;
    padding: 17px 34px;
    border-radius: 8px;
}

.btn-review-final-primary:hover {
    background: var(--ba-dark);
    color: var(--ba-cream) !important;
}

.btn-review-final-secondary {
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
    font-weight: 700;
    font-size: 17px;
    padding: 17px 28px;
    border-radius: 8px;
}

.btn-review-final-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

/* Header tweaks on review pages */
body.single-review .site-chrome-header,
body.single-review-v2 .site-chrome-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(251, 250, 245, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(23, 26, 22, 0.1);
}

body.single-review .site-chrome-header .header-inner,
body.single-review-v2 .site-chrome-header .header-inner {
    max-width: var(--review-max);
    margin: 0 auto;
    padding: 0 32px;
    height: 74px;
}

body.single-review .main-navigation,
body.single-review-v2 .main-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

body.single-review .nav-menu,
body.single-review-v2 .nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

body.single-review .nav-menu a,
body.single-review-v2 .nav-menu a {
    color: var(--ba-text);
    font-size: 15px;
    font-weight: 600;
}

body.single-review .nav-cta-compare,
body.single-review-v2 .nav-cta-compare {
    background: var(--ba-orange);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 20px;
    border-radius: 6px;
}

@media (max-width: 1199px) {
    body.single-review .site-chrome-header .header-inner,
    body.single-review-v2 .site-chrome-header .header-inner {
        justify-content: space-between;
        gap: 16px;
    }

    body.single-review .main-navigation,
    body.single-review-v2 .main-navigation {
        margin-left: 0;
    }
}

/* Publisher CMS prose (WYSIWYG HTML inside cards) */
.review-cms-prose {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ba-text);
}

.review-cms-prose > *:first-child { margin-top: 0; }
.review-cms-prose > *:last-child { margin-bottom: 0; }

.review-cms-prose p {
    margin: 0 0 14px;
}

.review-cms-prose ul,
.review-cms-prose ol {
    margin: 0 0 16px;
    padding-left: 1.35em;
}

.review-cms-prose li {
    margin-bottom: 8px;
}

.review-cms-prose li:last-child {
    margin-bottom: 0;
}

.review-cms-prose h2,
.review-cms-prose h3,
.review-cms-prose h4 {
    margin: 20px 0 10px;
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--ba-forest);
}

.review-cms-prose h2 { font-size: 1.5rem; }
.review-cms-prose h3 { font-size: 1.25rem; }
.review-cms-prose h4 { font-size: 1.1rem; }

.review-cms-prose blockquote {
    margin: 16px 0;
    padding: 14px 18px;
    border-left: 3px solid var(--ba-orange);
    background: var(--ba-orange-bg);
    font-style: italic;
}

.review-cms-prose a {
    color: var(--ba-rust);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.review-cms-prose--light,
.review-cms-prose--light p,
.review-cms-prose--light li,
.review-cms-prose--light h2,
.review-cms-prose--light h3,
.review-cms-prose--light h4 {
    color: var(--ba-cream);
}

.review-cms-prose--light a {
    color: var(--ba-peach);
}

.review-cms-prose--cta,
.review-cms-prose--cta p,
.review-cms-prose--cta li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}

.review-cms-prose--cta a {
    color: var(--ba-peach);
}

.review-decide-card .review-cms-prose ul,
.review-decide-card .review-cms-prose ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.review-decide-card--buy .review-cms-prose li::before {
    content: "✓ ";
    color: var(--ba-peach);
    font-weight: 700;
}

.review-decide-card--skip .review-cms-prose li::before {
    content: "✕ ";
    color: var(--ba-complaint);
    font-weight: 700;
}

.review-overview {
    background: var(--ba-cream);
}

.review-overview-body {
    max-width: 820px;
}

.review-faq-html {
    background: #fff;
    border: 1px solid rgba(23, 26, 22, 0.08);
    border-radius: 12px;
    padding: 28px 32px;
}

.review-editor-quote .review-cms-prose {
    margin-bottom: 12px;
}

.review-editor-quote .review-cms-prose p {
    font-size: 18px;
    font-style: italic;
    margin: 0;
}

.review-consensus-card .review-cms-prose {
    margin-bottom: 16px;
}

.review-consensus-card .review-cms-prose:last-child {
    margin-bottom: 0;
}

/* Buy card: light prose on dark forest background (must follow .review-cms-prose base) */
.review-decide-card--buy .review-cms-prose,
.review-decide-card--buy .review-cms-prose p,
.review-decide-card--buy .review-cms-prose li,
.review-decide-card--buy .review-cms-prose h2,
.review-decide-card--buy .review-cms-prose h3,
.review-decide-card--buy .review-cms-prose h4 {
    color: rgba(251, 250, 245, 0.92);
}

.review-decide-card--buy .review-cms-prose a {
    color: var(--ba-peach);
}

/* Scroll reveals */
.review-main [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.review-main [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.review-main [data-reveal][data-reveal-delay="1"] { transition-delay: 0.08s; }
.review-main [data-reveal][data-reveal-delay="2"] { transition-delay: 0.16s; }
.review-main [data-reveal][data-reveal-delay="3"] { transition-delay: 0.24s; }

.review-consensus-card--take {
    background: var(--ba-forest);
    border: none;
    color: rgba(251, 250, 245, 0.88);
}

.review-consensus-card--take h3 {
    margin: 0 0 14px;
    font-family: var(--heading-font);
    font-size: 26px;
    color: var(--ba-cream);
}

.review-consensus-take-label {
    margin: 16px 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ba-peach);
}

.review-consensus-take-label:first-of-type { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
    .review-main [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
