/* travel-hero.css */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@700&display=swap");

:root {
    --primary-accent: #ff6b35; /* Same orange from the user's color scheme if possible */
    --badge-green: #2ecc71;
    --glass-bg: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
}

/* Global resets removed to prevent breaking main layout */

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh; /* Reduced height from 100vh */
    min-height: 600px; /* Reduced min-height from 700px */
    background-image: url("/images/bg.png"); /* Using existing background image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(14, 25, 45, 0.8) 100%
    );
    z-index: 1;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.badge-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
}

.badge.green {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.3);
    color: #a8ffcc;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 800px;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-accent);
    overflow: hidden;
    background: #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--primary-accent);
    font-weight: 500;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 900px;
    border-left: 2px solid var(--primary-accent);
    padding-left: 24px;
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
        padding: 60px 0;
    }
    .hero-desc {
        font-size: 1rem;
        padding-left: 16px;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 60px 0 0;
    background-color: #ffffff;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: #003566;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #eef2f6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.comparison-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #eef2f6;
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #1e293b;
    font-size: 0.95rem;
}

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

.product-cell {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 250px;
}

.product-img {
    width: 55px; /* Slightly larger thumbnail as per screenshot */
    height: 55px;
    border-radius: 8px;
    background-color: #f8fafc;
    object-fit: contain; /* Better for product shots with white backgrounds */
    flex-shrink: 0;
    border: 1px solid #f1f5f9;
}

.product-info h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: #003580; /* Navy blue as per reference */
}

.product-info .label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-transform: capitalize;
}

.weight-cell,
.price-cell {
    font-weight: 500;
}

.rating-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffb800;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.rating-num {
    font-weight: 600;
    color: #64748b;
    font-size: 0.9rem;
}

.btn-amazon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-amazon:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-amazon i {
    font-size: 0.85rem;
}

/* Top Picks Section Styles */
.picks-section {
    padding: 40px 0 80px;
    background-color: #f8fafc; /* Subtle light background as per reference */
}

.picks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pick-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 53, 128, 0.08); /* Deep premium shadow */
}

.pick-img-container {
    padding: 0;
    background-color: #fff;
    position: relative;
    text-align: center;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #003580; /* Navy blue */
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.pick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.card-content {
    padding: 0 30px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}

.card-rating {
    margin-bottom: 25px;
}

.card-rating .rating-num {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 700;
}

.pros-cons {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes button to bottom */
}

.pros-cons li {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.pros-cons li i {
    font-size: 0.9rem;
    margin-top: 3px;
}

.pros-cons li i.fa-check {
    color: #10b981; /* Green check */
}

.pros-cons li i.fa-xmark {
    color: #ef4444; /* Red x */
}

.btn-amazon-full {
    display: block;
    width: 100%;
    background-color: var(--primary-accent);
    color: #fff;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-amazon-full:hover {
    background-color: #e55a2b;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive Grid */
@media (max-width: 768px) {
    .picks-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Review Section Styles */
.product-review-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #eef2f6;
    font-family: "Inter", sans-serif;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.review-rank {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.review-badge {
    background-color: #003580; /* Navy blue */
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.review-title {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: #003566;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.review-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 20px;
}

.review-image-col {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.review-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-details-col {
    flex: 1.2 1 500px;
    display: flex;
    flex-direction: column;
}

.review-rating-large {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.review-rating-large .stars {
    font-size: 1.1rem;
    color: var(--primary-accent);
}

.rating-num-large {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.spec-box {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.spec-icon {
    color: var(--primary-accent);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
}

.spec-price-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-accent);
}

.pros-cons-container {
    margin-bottom: 30px;
}

.pros-cons-container {
    margin-bottom: 30px;
    background: #fff;
}

.pros-cons-headers {
    display: flex;
    width: 100%;
}

.header-pros, .header-cons {
    flex: 1;
    padding: 12px 20px;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.header-pros {
    background-color: #0ebb2e;
}

.header-cons {
    background-color: #bd0606;
}

.pros-cons-content {
    display: flex;
    padding: 20px 0;
}

.pros-column, .cons-column {
    flex: 1;
    padding: 0 20px;
}

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

.pros-list li,
.cons-list li {
    font-size: 0.95rem;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.pros-list li i.fa-check {
    color: #0ebb2e;
    margin-top: 4px;
    font-size: 1rem;
}

.cons-list li i.fa-ban {
    color: #bd0606;
    margin-top: 4px;
    font-size: 1rem;
}

.btn-amazon-orange {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.btn-amazon-orange:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.review-description {
    margin-top: 10px;
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .review-content {
        gap: 30px;
    }
    .specs-grid {
        grid-template-columns: 1fr;
    }
    .review-title {
        font-size: 2.2rem;
    }
    .review-image-col {
        min-height: 300px;
        flex-basis: 100%;
    }
    .btn-amazon-orange {
        width: 100%;
    }
    
    /* Responsive Pros & Cons */
    .pros-cons-container {
        display: flex;
        flex-direction: column;
    }
    .pros-cons-headers, .pros-cons-content {
        display: contents;
    }
    .header-pros {
        order: 1;
    }
    .pros-column {
        order: 2;
        padding: 20px 15px;
    }
    .header-cons {
        order: 3;
    }
    .cons-column {
        order: 4;
        padding: 20px 15px;
        border-top: 1px solid #eef2f6;
    }
}

/* Buyers Guide Section Styles */
.buyers-guide-section {
    padding: 45px 0;
    background-color: #fafbfd; /* Very subtle off-white background */
    border-top: 1px solid #eef2f6;
}

.guide-header {
    margin-bottom: 50px;
}

.guide-header .section-title {
    margin-bottom: 12px;
}

.guide-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 0;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.guide-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: #ff5e14; /* Primary accent with opacity */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.guide-icon-wrapper i {
    color: var(--primary-accent);
    font-size: 1.3rem;
}

.guide-card-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.guide-card-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }
    .guide-card {
        padding: 25px 20px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 45px 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 900px; /* Optional, makes it look more readable */
    margin: 0 auto;
}

.faq-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #003566;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #eef2f6;
    border-radius: 6px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-summary {
    padding: 18px 24px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* removes default triangle in some browsers */
    font-size: 1.05rem;
    transition: background-color 0.2s ease;
}

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

.faq-summary:hover {
    background-color: #f8fafc;
}

.faq-icon {
    color: #64748b;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 20px;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Helper for section title to align left */
.text-left {
    text-align: left;
    margin-bottom: 30px;
}

/* Related Deals Section */
.related-deals-section {
    padding: 45px 0;
    background-color: #ffffff;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.deal-card-inline {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.deal-card-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border-color: #e2e8f0;
}

.deal-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.deal-icon i {
    color: var(--primary-accent);
    font-size: 1rem;
}

.deal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-badge.badge-orange {
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-accent);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    width: fit-content;
}

.deal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.deal-store {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.deal-store i {
    font-size: 0.65rem;
}

/* Related Articles Section */
.related-articles-section {
    padding: 45px 0;
    background-color: #fafbfd;
}

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

.article-card-simple {
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    padding: 35px 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.article-card-simple:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.article-title {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.article-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.article-link:hover {
    gap: 10px;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 60px 0 100px;
    background-color: #ffffff;
}

.cta-banner-box {
    background-color: #123460; /* Deep navy matching user visual */
    border-radius: 12px;
    padding: 70px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.05rem;
    color: #c9d8eb; /* light pale blue/gray */
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .deals-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .deals-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .cta-banner-box {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 1.8rem;
    }
}
/* ============================================================
   COMPREHENSIVE RESPONSIVE — PRODUCT PAGE
   ============================================================ */

/* === TABLET (≤ 992px) === */
@media (max-width: 992px) {
    /* Container padding */
    .hero-container,
    .comparison-section .container,
    .picks-section .container,
    .product-review-section .container,
    .buyers-guide-section .container,
    .faq-section .container,
    .related-deals-section .container,
    .related-articles-section .container,
    .cta-banner-section .container {
        width: 95%;
        padding-left: 16px;
        padding-right: 16px;
    }


    /* Section titles */
    .section-title  { font-size: 1.8rem; }
    .review-title   { font-size: 2.2rem; }
    .faq-title      { font-size: 1.8rem; }
    .cta-title      { font-size: 1.8rem; }

    /* Picks grid: 2 columns */
    .picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Guide grid: 2 columns */
    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Deals / Articles: 2 columns */
    .deals-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Review: stack image above details */
    .review-content {
        flex-direction: column;
        gap: 30px;
    }
    .review-image-col {
        flex: unset;
        width: 100%;
        min-height: 320px;
    }
    .review-details-col {
        flex: unset;
        width: 100%;
    }
}

/* === MOBILE (≤ 768px) === */
@media (max-width: 768px) {

    /* Hero section */
    .hero-section {
        height: auto;
        min-height: unset;
        padding: 80px 0 60px;
        background-attachment: scroll; /* Fixed bg breaks on mobile */
    }
    .hero-container {
        width: 92%;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-desc {
        font-size: 0.95rem;
        padding-left: 14px;
    }
    .badge-wrapper {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Section padding */
    .comparison-section  { padding: 40px 0 0; }
    .picks-section       { padding: 40px 0 60px; }
    .product-review-section { padding: 40px 0; }
    .buyers-guide-section   { padding: 50px 0; }
    .faq-section            { padding: 50px 0; }
    .related-deals-section  { padding: 50px 0; }
    .related-articles-section { padding: 50px 0; }
    .cta-banner-section     { padding: 40px 0 60px; }

    /* Section titles */
    .section-title { font-size: 1.6rem; margin-bottom: 24px; }
    .review-title  { font-size: 1.8rem; margin-bottom: 24px; }
    .faq-title     { font-size: 1.6rem; }
    .cta-title     { font-size: 1.6rem; }

    /* Picks: 1 column */
    .picks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 24px;
    }

    /* Review image */
    .review-image-col {
        min-height: 260px;
    }

    /* Specs grid: 1 column */
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    /* Pros & Cons — stack vertically */
    .pros-cons-container {
        display: flex;
        flex-direction: column;
    }
    .pros-cons-headers,
    .pros-cons-content {
        display: contents;
    }
    .header-pros   { order: 1; }
    .pros-column   { order: 2; padding: 16px 14px; }
    .header-cons   { order: 3; }
    .cons-column   { order: 4; padding: 16px 14px; border-top: 1px solid #eef2f6; }

    /* Buy button full width */
    .btn-amazon-orange {
        width: 100%;
        justify-content: center;
    }

    /* Guide grid: 1 column */
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .guide-card { padding: 25px 20px; }

    /* Deals / Articles: 1 column */
    .deals-grid, .articles-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    /* CTA banner */
    .cta-banner-box {
        padding: 40px 20px;
        border-radius: 8px;
    }
    .cta-subtitle { font-size: 0.95rem; }

    /* FAQ */
    .faq-summary { font-size: 0.95rem; padding: 14px 18px; }
    .faq-content { padding: 0 18px 16px; }
}

/* === SMALL MOBILE (≤ 480px) === */
@media (max-width: 480px) {

    /* Hero */
    .hero-title    { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .author-meta   { gap: 10px; }
    .author-avatar { width: 44px; height: 44px; }
    .author-info h4 { font-size: 0.95rem; }

    /* Pick card image area */
    .pick-img-container { min-height: 220px; }

    /* Review section */
    .review-header { flex-wrap: wrap; gap: 8px; }
    .review-image-col { min-height: 220px; }

    /* Comparison table always has horizontal scroll */
    .table-container { -webkit-overflow-scrolling: touch; }

    /* Spec box compact */
    .spec-box { padding: 12px 14px; gap: 10px; }
    .spec-value { font-size: 0.85rem; }

    /* Article card */
    .article-card-simple { padding: 24px 18px; }
    .article-title { font-size: 1.1rem; }

    /* Deal card */
    .deal-card-inline { padding: 16px 14px; gap: 12px; }
}

/* ============================================================
   COMPARISON TABLE → CARD LAYOUT (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Hide the original thead */
    .comparison-table thead {
        display: none;
    }

    /* Remove table min-width so it can shrink */
    .comparison-table {
        min-width: unset;
        width: 100%;
    }

    /* Remove outer border from table-container */
    .table-container {
        border: none;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    /* Each row becomes a card */
    .comparison-table tr {
        display: block;
        background: #ffffff;
        border: 1px solid #eef2f6;
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 16px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

    /* Each cell becomes a flex row: label on left, value on right */
    .comparison-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 4px;
        border-bottom: 1px solid #f1f5f9;
        font-size: 0.9rem;
    }

    .comparison-table td:last-child {
        border-bottom: none;
        padding-top: 14px;
    }

    /* Show "label:" before each cell using data-label attribute */
    .comparison-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.75rem;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        flex-shrink: 0;
        margin-right: 12px;
        min-width: 70px;
    }

    /* Product cell: show image + name stacked nicely */
    .comparison-table td[data-label="Product"] {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid #eef2f6;
        padding-bottom: 14px;
        margin-bottom: 4px;
    }

    .comparison-table td[data-label="Product"]::before {
        display: none; /* No label needed for product header */
    }

    .product-cell {
        min-width: unset;
        width: 100%;
    }

    .product-img {
        width: 50px;
        height: 50px;
    }

    /* Amazon button full width */
    .comparison-table td[data-label=""] {
        justify-content: center;
        padding-top: 12px;
    }

    .comparison-table td[data-label=""]::before {
        display: none;
    }

    .btn-amazon {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
}
