/* ==========================================================
   walkingpadreviews.co.uk - Review Page Styles
   Product review pages for individual walking pad reviews.
   Depends on shared.css for variables and base styles.
   ========================================================== */

/* ========== 1. READING PROGRESS BAR ========== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--purple));
    z-index: 200;
    transition: width 0.1s linear;
}

/* ========== 2. STICKY BUY BAR ========== */
.sticky-buy-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(15, 27, 45, 0.1);
    z-index: 150;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-buy-bar.sticky-visible {
    transform: translateY(0);
}
.sticky-buy-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.sticky-buy-bar-img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--grey-50);
    flex-shrink: 0;
}
.sticky-buy-bar-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}
.sticky-buy-bar-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}
.sticky-buy-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.sticky-buy-bar-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.sticky-buy-bar-cta:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

/* ========== 3. REVIEW HERO ========== */
.review-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-80) 100%);
    padding: 2rem 2rem 3rem;
}
.review-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb */
.review-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin-bottom: 2rem;
    font-size: 0.8125rem;
}
.review-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-breadcrumb a {
    color: var(--grey-400);
    text-decoration: none;
    transition: var(--transition);
}
.review-breadcrumb a:hover {
    color: var(--white);
}
.review-breadcrumb .breadcrumb-sep {
    color: var(--grey-500);
    font-size: 0.75rem;
}
.review-breadcrumb .breadcrumb-current {
    color: var(--grey-300);
}

/* Hero layout */
.review-hero-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Hero image */
.review-hero-image {
    max-width: 400px;
    width: 100%;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.review-hero-image img.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Product thumbnails */
.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}
.product-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 4px;
    background: var(--white);
    transition: var(--transition);
}
.product-thumb:hover {
    border-color: var(--green);
}
.product-thumb.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px var(--green-light);
}

/* Hero content */
.review-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Badges */
.review-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--green-50);
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

/* Brand */
.review-brand {
    color: var(--grey-400);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Reading time */
.hero-reading-time {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--grey-400);
    font-size: 0.8125rem;
    font-weight: 500;
}
.hero-reading-time svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Title */
.review-hero-title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Rating */
.review-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-stars {
    display: flex;
    gap: 0.125rem;
    color: var(--gold);
    font-size: 1.125rem;
}
.review-rating-count {
    color: var(--grey-400);
    font-size: 0.875rem;
}

/* Price */
.review-hero-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

/* CTAs */
.review-hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.review-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.review-hero-cta-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.review-hero-cta-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.review-hero-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.review-hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust row */
.review-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 0.5rem;
}
.review-trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--grey-400);
    font-size: 0.8125rem;
    font-weight: 500;
}
.review-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

/* ========== 4. AT A GLANCE STRIP ========== */
.review-glance {
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
    padding: 1.5rem 2rem;
}
.review-glance-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.review-glance-item {
    text-align: center;
}
.review-glance-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey-400);
    margin-bottom: 0.25rem;
}
.review-glance-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

/* ========== 5. SCORE SECTION ========== */
.review-scores {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Overall score ring */
.review-score-ring {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.review-score-ring-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
}
.review-score-ring-svg {
    width: 180px;
    height: 180px;
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}
.review-score-ring-bg {
    fill: none;
    stroke: var(--grey-100);
    stroke-width: 10;
}
.review-score-ring-fill {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.review-score-ring-wrapper svg {
    width: 100%;
    height: 100%;
}
.review-score-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}
.review-score-ring-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.review-score-ring-out-of {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--grey-400);
}
.review-score-ring-verdict {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.125rem 0.5rem;
    border-radius: 100px;
    margin-top: 0.25rem;
}
.review-score-ring-verdict.excellent {
    background: var(--green-50);
    color: var(--green-dark);
}
.review-score-ring-verdict.good {
    background: #FFF7ED;
    color: #C2410C;
}
.review-score-ring-verdict.average {
    background: #FEF2F2;
    color: #DC2626;
}
.review-score-ring-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--grey-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Score bars */
.review-score-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-score-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-score-bar-label {
    width: 120px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    flex-shrink: 0;
}
.review-score-bar-track {
    flex: 1;
    height: 10px;
    background: var(--grey-100);
    border-radius: 100px;
    overflow: hidden;
}
.review-score-bar-fill {
    height: 100%;
    background: var(--green);
    border-radius: 100px;
    transition: width 1s ease-out;
}
.review-score-bar-value {
    width: 36px;
    text-align: right;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

/* ========== 6. REVIEW LAYOUT ========== */
.review-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

/* Sidebar TOC */
.review-toc {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
}
.review-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey-400);
    margin-bottom: 0.75rem;
}
.review-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.review-toc-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--grey-500);
    text-decoration: none;
    border-left: 2px solid var(--grey-200);
    transition: var(--transition);
}
.review-toc-list a:hover {
    color: var(--navy);
    border-left-color: var(--grey-400);
}
.review-toc-list a.active {
    color: var(--green-dark);
    border-left-color: var(--green);
    font-weight: 600;
    background: var(--green-50);
}

/* Article content */
.review-article {
    flex: 1;
    min-width: 0;
}
.review-article h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.review-article h2:first-child {
    margin-top: 0;
}
.review-article h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.review-article p {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.review-article ul,
.review-article ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.review-article li {
    font-size: 1rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 0.375rem;
}
.review-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5rem 0;
}
.review-article a {
    color: var(--green-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: var(--transition);
}
.review-article a:hover {
    color: var(--green);
}

/* ========== 7. REVIEW ARTICLE ELEMENTS ========== */

/* Tables */
.review-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.875rem;
}
.review-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 2px solid var(--green);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.review-table tbody td {
    padding: 0.75rem 1rem;
    color: var(--grey-600);
    border-bottom: 1px solid var(--grey-100);
}
.review-table tbody tr:nth-child(even) {
    background: var(--grey-50);
}
.review-table tbody tr:hover {
    background: var(--green-50);
}

/* Pros / Cons */
.review-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}
.review-pros,
.review-cons {
    padding: 1.5rem;
    border-radius: var(--radius);
}
.review-pros {
    background: var(--green-50);
}
.review-cons {
    background: #FEF2F2;
}
.review-pros-title,
.review-cons-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.review-pros-title svg,
.review-cons-title svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.review-pros-title {
    color: var(--green-dark);
}
.review-cons-title {
    color: #DC2626;
}
.review-pros ul,
.review-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.review-pros li,
.review-cons li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--grey-600);
    margin-bottom: 0;
}
.review-pros li::before {
    content: "\2713";
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}
.review-cons li::before {
    content: "\2717";
    color: #DC2626;
    font-weight: 700;
    flex-shrink: 0;
}

/* CTA buttons */
.review-cta-wrap {
    text-align: center;
    margin: 2rem 0;
}
.review-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--purple);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.review-cta-btn:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.review-cta-btn svg {
    width: 16px;
    height: 16px;
}

/* Verdict card */
.review-verdict {
    background: var(--green-50);
    border: 1px solid var(--green-light);
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}
.review-verdict p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--navy);
    margin-bottom: 0;
}
.review-verdict strong {
    color: var(--green-dark);
}

/* FAQ accordion */
.faq-section {
    margin: 2rem 0;
}
.faq-item {
    border-bottom: 1px solid var(--grey-200);
}
.faq-item:first-child {
    border-top: 1px solid var(--grey-200);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    font-family: inherit;
    transition: var(--transition);
}
.faq-question:hover {
    color: var(--green-dark);
}
.faq-question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}
.faq-item.active .faq-question-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}
.faq-answer p {
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.6;
}

/* Blockquotes */
.review-article blockquote {
    border-left: 3px solid var(--green);
    background: var(--grey-50);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--grey-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ========== 8. SIMILAR PRODUCTS GRID ========== */
.review-similar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    border-top: 1px solid var(--grey-200);
}
.review-similar-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.review-similar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.review-similar-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.review-similar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.review-similar-card-img {
    width: 100%;
    height: 180px;
    background: var(--grey-50);
    overflow: hidden;
    position: relative;
}
.review-similar-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}
.similar-card-fb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-400);
}
.review-similar-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
}
.review-similar-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-similar-card-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
}
.review-similar-card-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--grey-500);
}
.review-similar-card-rating .stars {
    color: var(--gold);
}
.review-similar-card-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--green);
    margin-top: auto;
    padding-top: 0.5rem;
    transition: var(--transition);
}
.review-similar-card:hover .review-similar-card-link {
    color: var(--green-dark);
}

/* ========== 9. BEST-FOR CARD ========== */
.review-best-for {
    margin: 1.5rem 0;
}
.review-best-for-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey-400);
    margin-bottom: 0.75rem;
}
.review-best-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.review-best-for-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--green-50);
    color: var(--green-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}
.review-best-for-tag svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* FAQ chevron */
.faq-chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* ========== 10. QUIZ CTA SECTION ========== */
.quiz-cta-section {
    background: var(--green-50);
    padding: 3rem 2rem;
    text-align: center;
}
.quiz-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.quiz-cta-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.quiz-cta-section p {
    font-size: 1.0625rem;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ========== 11. RESPONSIVE ========== */

/* 1024px - TOC hidden, single column review body */
@media (max-width: 1024px) {
    .review-toc {
        display: none;
    }
    .review-body {
        flex-direction: column;
    }
    .review-similar-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .review-scores {
        flex-direction: column;
        align-items: center;
    }
    .review-score-bars {
        width: 100%;
    }
}

/* 768px - hero stacks, glance strip wraps */
@media (max-width: 768px) {
    .review-hero {
        padding: 1.5rem 1.5rem 2.5rem;
    }
    .review-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .review-hero-image {
        max-width: 300px;
        margin: 0 auto;
    }
    .review-hero-title {
        font-size: 1.625rem;
    }
    .review-hero-price {
        font-size: 1.75rem;
    }
    .review-glance-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .review-pros-cons {
        grid-template-columns: 1fr;
    }
    .review-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-similar-card-img {
        height: 140px;
    }
    .review-scores {
        padding: 2rem 1.5rem;
    }
    .review-body {
        padding: 0 1.5rem 3rem;
    }
    .quiz-cta-section {
        padding: 2rem 1.5rem;
    }
    .quiz-cta-section h2 {
        font-size: 1.5rem;
    }
    .product-thumb {
        width: 48px;
        height: 48px;
    }
}

/* 640px - everything stacked, smaller fonts */
@media (max-width: 640px) {
    .review-hero {
        padding: 1.25rem 1.25rem 2rem;
    }
    .review-hero-grid {
        gap: 1.5rem;
    }
    .review-hero-image {
        max-width: 250px;
    }
    .review-hero-title {
        font-size: 1.375rem;
    }
    .review-hero-price {
        font-size: 1.5rem;
    }
    .review-hero-ctas {
        flex-direction: column;
    }
    .review-hero-cta-primary,
    .review-hero-cta-outline {
        text-align: center;
        justify-content: center;
    }
    .review-glance-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .review-article h2 {
        font-size: 1.5rem;
    }
    .review-article h3 {
        font-size: 1.25rem;
    }
    .review-similar-grid {
        grid-template-columns: 1fr;
    }
    .review-similar-card {
        flex-direction: row;
    }
    .review-similar-card-img {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }
    .review-similar-card-body {
        padding: 1rem;
        justify-content: center;
    }
    .review-similar-title {
        font-size: 1.375rem;
    }
    .review-body {
        padding: 0 1.25rem 2.5rem;
    }
    .review-scores {
        padding: 2rem 1.25rem;
    }
    .quiz-cta-section {
        padding: 2rem 1.25rem;
    }
    .quiz-cta-section h2 {
        font-size: 1.375rem;
    }
    .quiz-cta-section .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }
    .product-thumb {
        width: 44px;
        height: 44px;
    }

    /* Sticky buy bar compact */
    .sticky-buy-bar-inner {
        padding: 0.625rem 1rem;
        gap: 0.75rem;
    }
    .sticky-buy-bar-title {
        font-size: 0.75rem;
    }
    .sticky-buy-bar-price {
        display: none;
    }
    .sticky-buy-bar-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    .review-table {
        display: block;
        overflow-x: auto;
    }
    .faq-question {
        font-size: 0.9375rem;
    }
}
