/* Review Page Specific Styles */

/* Author Byline */
.author-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    align-items: center;
}

.author-byline a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.author-byline a:hover {
    color: var(--cream);
    text-decoration: underline;
}

.author-name {
    font-weight: 600;
    color: var(--cream);
}

.author-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.author-meta::before {
    content: "\00B7";
    margin-right: 0.25rem;
}

.author-meta span:not(:last-child)::after {
    content: "\00B7";
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .author-byline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .author-meta::before {
        display: none;
    }
}

/* Key Findings Section (AI-optimized) */
.key-findings {
    background: linear-gradient(135deg, var(--cream) 0%, #f0ebe0 100%);
    border: 1px solid rgba(45, 74, 62, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.key-findings h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.key-findings .findings-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.findings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.finding-card {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.finding-card strong {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finding-card .finding-value {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--forest-dark);
}

.finding-card .finding-basis {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .findings-grid {
        grid-template-columns: 1fr;
    }
}

/* Prevent horizontal overflow on mobile */
.review-hero,
.review-content-wrapper,
.review-main {
    overflow-x: hidden;
    max-width: 100%;
}

.review-nav {
    background: var(--forest-dark);
    position: relative;
    padding: 1.2rem 6%;
}

.review-nav .logo {
    color: var(--cream);
    text-decoration: none;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--cream);
}

/* Review Hero */
.review-hero {
    background: linear-gradient(165deg, var(--forest-dark) 0%, var(--forest) 100%);
    padding: 3rem 6% 4rem;
    color: var(--cream);
}

.review-hero-content {
    max-width: 800px;
}

.review-badge {
    display: inline-block;
    background: var(--copper);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.review-hero h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.review-tagline {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 600px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.overall-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.score-number {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
}

.score-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.quick-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 600;
}

.stat-key {
    font-size: 0.85rem;
    opacity: 0.7;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-buy-large {
    display: inline-block;
    background: var(--copper);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--copper);
}

.btn-buy-large:hover {
    background: #a06429;
    border-color: #a06429;
    transform: translateY(-2px);
}

/* Review Content Layout */
.review-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    padding: 4rem 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.review-main {
    min-width: 0;
}

/* TLDR Box */
.tldr-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--copper);
}

.tldr-box h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    color: var(--forest-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tldr-box h2::before {
    content: '⚡';
}

.tldr-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.tldr-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tldr-highlight {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tldr-highlight-value {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
}

.tldr-highlight-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* At a Glance Section */
.at-a-glance {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.at-a-glance h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.spec-item {
    text-align: center;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
}

.spec-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--forest-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Image */
.product-gallery {
    margin-bottom: 3rem;
}

.main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pros and Cons Grid */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pros-card, .cons-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.pros-card {
    border-top: 4px solid #2e7d32;
}

.cons-card {
    border-top: 4px solid #c62828;
}

.pros-card h3, .cons-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros-card h3 {
    color: #2e7d32;
}

.pros-card h3::before {
    content: '👍';
}

.cons-card h3 {
    color: #c62828;
}

.cons-card h3::before {
    content: '👎';
}

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

.pros-card li, .cons-card li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    border-bottom: 1px solid #f0f0f0;
}

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

.pros-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.cons-card li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
}

/* Review Sections */
.review-section {
    margin-bottom: 3rem;
}

.review-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    color: var(--forest-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sage);
}

.review-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.review-section p:last-child {
    margin-bottom: 0;
}

/* Who Is This For */
.who-for-section {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.who-for-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
    text-align: center;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.who-for-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.who-for-item::before {
    content: '✓';
    color: var(--copper);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Score Breakdown */
.score-breakdown-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.score-breakdown-section h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
}

.score-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.score-row {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.score-category {
    font-weight: 600;
    color: var(--forest-dark);
    font-size: 0.95rem;
}

.score-bar {
    height: 14px;
    background: #e8e8e8;
    border-radius: 7px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--moss), var(--sage));
    border-radius: 7px;
    transition: width 0.5s ease-out;
}

.score-fill.high {
    background: linear-gradient(90deg, #2e7d32, #4caf50);
}

.score-fill.medium {
    background: linear-gradient(90deg, #f57c00, #ffb74d);
}

.score-value {
    font-weight: 700;
    color: var(--forest);
    text-align: right;
    font-size: 1.1rem;
}

/* Comparison Box */
.comparison-box {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    color: var(--cream);
}

.comparison-box h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--cream);
    border-bottom: none;
    padding-bottom: 0;
}

.comparison-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.comparison-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--cream);
    transition: all 0.3s;
}

.comparison-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.comparison-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.comparison-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--copper);
    display: block;
    margin-bottom: 0.25rem;
}

.comparison-item-type {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Bottom Line */
.bottom-line {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid var(--forest);
}

.bottom-line h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--forest-dark);
    margin-bottom: 1rem;
    border-bottom: none;
    padding-bottom: 0;
}

.bottom-line p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

.discount-callout {
    background: var(--copper);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Old Pros/Cons Lists (for backward compatibility) */
.pros-list,
.cons-list,
.audience-list {
    list-style: none;
    padding: 0;
}

.pros-list li,
.cons-list li,
.audience-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

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

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}

.cons-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #c62828;
    font-weight: 700;
    font-size: 1.1rem;
}

.audience-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--copper);
    font-weight: 700;
}

.verdict-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    border-left: 4px solid var(--copper);
    padding-left: 1.5rem;
    font-style: italic;
}

/* Sidebar */
.review-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
    align-self: start;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.sidebar-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.1rem;
    color: var(--forest-dark);
    margin-bottom: 1.25rem;
}

.buy-card {
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
    color: var(--cream);
    text-align: center;
}

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

.price-display {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.discount-highlight {
    background: var(--copper);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.btn-buy-sidebar {
    display: block;
    background: var(--copper);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 1.25rem;
}

.btn-buy-sidebar:hover {
    background: #a06429;
    transform: translateY(-2px);
}

.buy-benefits {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: left;
}

.buy-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.buy-benefits li:last-child {
    border-bottom: none;
}

.buy-benefits li::before {
    content: '✓ ';
    color: var(--copper);
}

/* Specs Card */
.specs-card {
    background: var(--cream);
}

.specs-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.specs-list dt {
    color: var(--text-light);
    font-size: 0.85rem;
}

.specs-list dd {
    font-weight: 600;
    color: var(--forest-dark);
    text-align: right;
    margin: 0;
    font-size: 0.95rem;
}

/* Similar Products Card */
.similar-card h3 {
    margin-bottom: 1rem;
}

.similar-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.similar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.similar-item:hover {
    background: #e8e4da;
}

.similar-item-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.similar-item-price {
    color: var(--copper);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-items {
        grid-template-columns: 1fr;
    }

    .tldr-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .review-content-wrapper {
        grid-template-columns: 1fr;
    }

    .review-sidebar {
        position: relative;
        top: 0;
        flex-direction: row;
        flex-wrap: wrap;
        max-height: none;
        overflow-y: visible;
    }

    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .who-for-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .review-hero h1 {
        font-size: 2.2rem;
    }

    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .quick-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .score-row {
        grid-template-columns: 100px 1fr 40px;
    }

    .sidebar-card {
        min-width: 100%;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tldr-highlights {
        grid-template-columns: 1fr;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-buy-large {
        text-align: center;
    }
}

/* Touch-friendly buttons for review pages */
@media (pointer: coarse) {
    .btn-buy-large,
    .btn-buy-sidebar,
    .similar-item {
        min-height: 44px;
    }
}

@media (hover: none) {
    .btn-buy-large:hover,
    .btn-buy-sidebar:hover {
        transform: none;
    }
    .btn-buy-large:active,
    .btn-buy-sidebar:active {
        transform: scale(0.98);
    }
}

/* 375px breakpoint for ultra-small phones */
@media (max-width: 375px) {
    .review-hero h1 {
        font-size: 1.8rem;
    }

    .review-tagline {
        font-size: 1rem;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .overall-score {
        padding: 1rem 1.5rem;
    }

    .tldr-box {
        padding: 1.5rem;
    }

    .tldr-content {
        font-size: 1rem;
    }

    .at-a-glance {
        padding: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pros-card,
    .cons-card {
        padding: 1.25rem;
    }

    .score-row {
        grid-template-columns: 80px 1fr 35px;
        gap: 0.5rem;
    }

    .score-category {
        font-size: 0.8rem;
    }

    .review-section h2 {
        font-size: 1.25rem;
    }

    .bottom-line {
        padding: 1.5rem;
    }

    .discount-callout {
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    .btn-buy-large {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }

    .review-hero {
        padding: 2rem 5% 3rem;
    }

    .review-content-wrapper {
        padding: 2rem 4%;
    }
}

/* Testimonials Section */
.testimonials-section blockquote.testimonial {
    background: var(--cream);
    border-left: 4px solid var(--copper);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.testimonial p {
    margin: 0 0 0.5rem 0;
    line-height: 1.7;
}

.testimonial strong {
    color: var(--forest-dark);
    font-style: normal;
}

.testimonial cite {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: normal;
    margin-top: 0.5rem;
}

/* Setup Steps */
.setup-steps {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.setup-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.setup-steps li strong {
    color: var(--forest-dark);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--forest-dark);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--cream);
}

.comparison-table td:first-child {
    font-weight: 500;
}

/* Who For Section - Good/Bad Items */
.who-for-item.good {
    background: rgba(46, 125, 50, 0.1);
    border-left: 3px solid #2e7d32;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0 6px 6px 0;
}

.who-for-item.bad {
    background: rgba(198, 40, 40, 0.1);
    border-left: 3px solid #c62828;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0 6px 6px 0;
}

/* Detailed Specs Table */
.specs-table-detailed {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.specs-table-detailed table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table-detailed th[colspan="2"] {
    background: var(--forest-dark);
    color: var(--cream);
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
    text-align: left;
    letter-spacing: 0.3px;
}

.specs-table-detailed td {
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    vertical-align: top;
    line-height: 1.5;
}

.specs-table-detailed td:first-child {
    font-weight: 600;
    color: var(--forest-dark);
    white-space: nowrap;
    width: 160px;
}

.specs-table-detailed td:last-child {
    color: var(--text);
}

.specs-table-detailed tr:hover td {
    background: var(--cream);
}

.specs-table-detailed tr:last-child td {
    border-bottom: none;
}

.specs-table-detailed td strong {
    color: var(--forest-dark);
}

@media (max-width: 600px) {
    .specs-table-detailed td:first-child {
        white-space: normal;
        width: 120px;
    }

    .specs-table-detailed td {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Review Updated timestamp */
.review-updated {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Quote Highlight */
.quote-highlight {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.quote-highlight blockquote {
    margin: 0;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
}

.quote-highlight cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--copper);
}

/* FAQ Section */
.faq-section .faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

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

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--forest-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}
