/* Breadcrumb */
.breadcrumb-nav {
    background: var(--bg-white);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* Header */
.best-header {
    background: var(--gradient-hero);
    padding: 3rem 0;
    color: var(--bg-white);
}

.best-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--bg-white);
}

.best-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.best-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.best-header-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.best-header-meta i {
    color: var(--accent-light);
}

/* Introduction */
.introduction {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

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

/* Top Section */
.top-section {
    margin-bottom: 3rem;
}

.top-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
    color: var(--secondary);
}

.top-section h2 i {
    color: var(--warning);
}

/* Podium Grid */
.podium {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .podium {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Podium Card */
.podium-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.podium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Rank 1 - Center, tallest */
.podium-card.rank-1 {
    border-color: var(--warning);
    order: 2;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(232, 200, 124, 0.25);
}

.podium-card.rank-1:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Rank 2 - Left */
.podium-card.rank-2 {
    border-color: #B8C5CC;
    order: 1;
}

/* Rank 3 - Right */
.podium-card.rank-3 {
    border-color: #D4A574;
    order: 3;
}

@media (max-width: 992px) {
    .podium-card.rank-1,
    .podium-card.rank-2,
    .podium-card.rank-3 {
        order: unset;
        transform: none;
    }
    .podium-card.rank-1:hover {
        transform: translateY(-8px);
    }
}

/* Podium Header with Rank */
.podium-header {
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

.podium-rank {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bg-white);
    margin: 0 auto 1rem;
}

.rank-1 .podium-rank {
    background: linear-gradient(135deg, #E8C87C 0%, #D4B366 100%);
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(232, 200, 124, 0.4);
}

.rank-2 .podium-rank {
    background: linear-gradient(135deg, #B8C5CC 0%, #9AABB5 100%);
}

.rank-3 .podium-rank {
    background: linear-gradient(135deg, #D4A574 0%, #C08E5A 100%);
}

.podium-medal {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.rank-1 .podium-medal { color: var(--warning); }
.rank-2 .podium-medal { color: #94a3b8; }
.rank-3 .podium-medal { color: #D4A574; }

/* Podium Image */
.podium-image {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
    margin: 1rem;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.rank-1 .podium-image {
    min-height: 220px;
}

.podium-image img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.podium-card:hover .podium-image img {
    transform: scale(1.05);
}

.rank-1 .podium-image img {
    max-height: 180px;
}

/* Podium Content */
.podium-content {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.podium-brand {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.podium-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--secondary);
}

.rank-1 .podium-title {
    font-size: 1.25rem;
}

.podium-title a {
    color: inherit;
    text-decoration: none;
}

.podium-title a:hover {
    color: var(--primary);
}

.podium-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.podium-rating .stars {
    color: var(--warning);
    font-size: 0.9rem;
}

.podium-rating .score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.rank-1 .podium-rating .score {
    font-size: 1.15rem;
}

/* Podium Footer */
.podium-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.podium-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 0.25rem;
}

.rank-1 .podium-price {
    font-size: 1.75rem;
}

.podium-merchant {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--gradient-accent);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    width: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 165, 152, 0.4);
    color: var(--bg-white);
}

.rank-1 .btn-cta {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Mini Review Section */
.mini-reviews {
    margin-bottom: 3rem;
}

.mini-reviews h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.mini-review {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.mini-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mini-review-rank {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.mini-review-rank.gold {
    background: linear-gradient(135deg, #E8C87C 0%, #D4B366 100%);
}

.mini-review-rank.silver {
    background: linear-gradient(135deg, #B8C5CC 0%, #9AABB5 100%);
}

.mini-review-rank.bronze {
    background: linear-gradient(135deg, #D4A574 0%, #C08E5A 100%);
}

.mini-review h3 {
    font-size: 1.35rem;
    margin: 0;
    color: var(--secondary);
}

.mini-review h3 a {
    color: inherit;
    text-decoration: none;
}

.mini-review h3 a:hover {
    color: var(--primary);
}

.mini-review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

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

.mini-review-pros h4,
.mini-review-cons h4 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-review-pros h4 {
    color: var(--success);
}

.mini-review-cons h4 {
    color: var(--danger);
}

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

.mini-review-pros li,
.mini-review-cons li {
    padding: 0.375rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.mini-review-pros li::before {
    content: '\2713';
    color: var(--success);
    font-weight: bold;
}

.mini-review-cons li::before {
    content: '\2717';
    color: var(--danger);
    font-weight: bold;
}

.mini-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 1rem;
}

.mini-review-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
}

.mini-review-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Other Products */
.other-products {
    margin-bottom: 3rem;
}

.other-products h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.other-product {
    display: grid;
    grid-template-columns: 60px 100px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.other-product:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .other-product {
        grid-template-columns: 50px 80px 1fr;
        gap: 1rem;
    }
    .other-product-rating,
    .other-product-cta {
        display: none;
    }
}

.other-product-rank {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.other-product-image {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.other-product-image img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.other-product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.other-product-info h4 a {
    color: inherit;
    text-decoration: none;
}

.other-product-info h4 a:hover {
    color: var(--primary);
}

.other-product-brand {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.other-product-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--warning);
}

.other-product-price {
    font-weight: 700;
    color: var(--success);
}

.other-product-cta .btn-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    width: auto;
}

/* Conclusion */
.conclusion {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--bg-white);
    margin-bottom: 2rem;
}

.conclusion h2 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.conclusion p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Author Box */
.author-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

.author-box img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent-light);
}

.author-box-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.author-box-info h4 a {
    color: inherit;
    text-decoration: none;
}

.author-box-info h4 a:hover {
    color: var(--primary);
}

.author-box-info .title {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.author-box-info .date {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.author-box-info .date i {
    color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.empty-state i {
    font-size: 3rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 767.98px) {
    .best-header {
        padding: 2rem 0;
    }

    .best-header h1 {
        font-size: 1.5rem;
    }
}
:root {
    --gold: #FFD700;
    --gold-bg: #fef9e7;
    --silver: #C0C0C0;
    --silver-bg: #f8f9fa;
    --bronze: #CD7F32;
    --bronze-bg: #fdf6f0;
    --trust-green: #059669;
    --trust-bg: #ecfdf5;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-nav {
    background: var(--bg-white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}
.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.breadcrumb-nav li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}
.breadcrumb-nav li:not(:last-child)::after { content: "\203A"; }
.breadcrumb-nav a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav li:last-child { color: var(--primary); font-weight: 500; }

/* =============================================
   HERO COMPACT + PODIUM VISIBLE
   ============================================= */
.hero-best {
    background: var(--gradient-hero);
    padding: 1.5rem 0;
    color: white;
}
.hero-best h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.hero-meta i { color: var(--accent-light); }

/* =============================================
   MAIN CONTENT
   ============================================= */
.content-main { padding: 2rem 0; }

/* TOC */
.toc-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 2rem;
}
.toc-box summary {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.toc-box summary i { color: var(--primary); }
.toc-box[open] summary { margin-bottom: 1rem; }
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 2rem;
}
@media (max-width: 576px) { .toc-list { columns: 1; } }
.toc-list li { margin-bottom: 0.4rem; break-inside: avoid; }
.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.toc-list a:hover { color: var(--primary); }
.toc-list a::before { content: "\2192"; color: var(--primary); font-size: 0.75rem; }

/* EEAT Box */
.eeat-box {
    background: var(--trust-bg);
    border: 1px solid #a7f3d0;
    border-left: 4px solid var(--trust-green);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
@media (max-width: 576px) {
    .eeat-box { flex-direction: column; text-align: center; align-items: center; }
}
.eeat-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.eeat-content h3 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.eeat-content h3 a { color: var(--text-primary); text-decoration: none; }
.eeat-content h3 a:hover { color: var(--primary); }
.eeat-title { font-size: 0.8rem; color: var(--trust-green); font-weight: 500; margin-bottom: 0.4rem; }
.eeat-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; margin-bottom: 0.5rem; }
.eeat-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.eeat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: white;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: var(--text-secondary);
    border: 1px solid #d1fae5;
}
.eeat-badge i { color: var(--trust-green); font-size: 0.65rem; }

/* Section titles */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.section-title i { color: var(--primary); }

/* Introduction */
.intro-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.intro-content {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
}
.intro-content p { margin-bottom: 1rem; }
.intro-content p:last-child { margin-bottom: 0; }

/* Key Points */
.key-points {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.25rem 0;
}
.key-points h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
}
.key-points ul { margin: 0; padding-left: 1.25rem; }
.key-points li { margin-bottom: 0.4rem; color: var(--text-secondary); line-height: 1.5; }
.key-points li:last-child { margin-bottom: 0; }
.key-points strong { color: var(--text-primary); }

/* Product Detail Cards */
.product-detail {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    overflow: hidden;
}
.product-detail.top-1 { border: 2px solid var(--gold); }
.product-detail.top-2 { border: 2px solid var(--silver); }
.product-detail.top-3 { border: 2px solid var(--bronze); }

.product-header {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}
.product-detail.top-1 .product-header { background: var(--gold-bg); }
.product-detail.top-2 .product-header { background: var(--silver-bg); }
.product-detail.top-3 .product-header { background: var(--bronze-bg); }

@media (max-width: 768px) {
    .product-header { flex-direction: column; text-align: center; }
}

.product-rank-badge {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}
.product-rank-badge.r1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.product-rank-badge.r2 { background: linear-gradient(135deg, #9ca3af, #6b7280); }
.product-rank-badge.r3 { background: linear-gradient(135deg, #d97706, #b45309); }
.product-rank-badge.other { background: var(--primary); }

.product-thumb { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; }
.product-info { flex: 1; min-width: 0; }
.product-info h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.product-info h3 a { color: var(--text-primary); text-decoration: none; }
.product-info h3 a:hover { color: var(--primary); }
.product-tagline { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 0.4rem; }
.product-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; font-size: 0.85rem; }
.product-meta span { display: flex; align-items: center; gap: 0.25rem; }
.product-meta i { color: var(--primary); }
.product-meta .rating i { color: var(--warning); }

.product-cta-box { text-align: center; flex-shrink: 0; }
.product-cta-box .price { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.product-cta-box .merchant { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: white;
    padding: 0.55rem 1.1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
}
.btn-buy:hover { background: var(--accent-dark); color: white; }

.product-body { padding: 1.25rem; }
.product-description { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 1.25rem; }
.product-description p { margin-bottom: 0.75rem; }
.product-description p:last-child { margin-bottom: 0; }

/* Pros/Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
@media (max-width: 576px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-box, .cons-box { padding: 1rem; border-radius: var(--radius-md); }
.pros-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons-box { background: #fef2f2; border: 1px solid #fecaca; }
.pros-box h4 { color: #166534; font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.cons-box h4 { color: #991b1b; font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.4rem; }
.pros-box ul, .cons-box ul { list-style: none; padding: 0; margin: 0; }
.pros-box li, .cons-box li { padding: 0.25rem 0 0.25rem 1.25rem; position: relative; font-size: 0.9rem; line-height: 1.4; }
.pros-box li::before { content: "\2713"; position: absolute; left: 0; color: #22c55e; font-weight: bold; }
.cons-box li::before { content: "\2717"; position: absolute; left: 0; color: #ef4444; font-weight: bold; }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
    gap: 0.75rem;
}
.btn-review { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--primary); text-decoration: none; font-weight: 500; font-size: 0.9rem; }
.btn-review:hover { text-decoration: underline; }

/* Guide d'achat */
.guide-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.guide-box h3 { font-size: 1.15rem; margin: 1.25rem 0 0.75rem; color: var(--text-primary); }
.guide-box p { font-size: 1rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 0.75rem; }
.guide-box ul, .guide-box ol { margin: 0.75rem 0; padding-left: 1.5rem; }
.guide-box li { margin-bottom: 0.4rem; line-height: 1.6; color: var(--text-secondary); }

.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.25rem 0; }
.criteria-card { background: var(--bg-light); border-radius: var(--radius-md); padding: 1rem; }
.criteria-card h4 { font-size: 0.95rem; margin-bottom: 0.35rem; display: flex; align-items: center; gap: 0.4rem; }
.criteria-card h4 i { color: var(--primary); }
.criteria-card p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.5; }

/* FAQ */
.faq-box { margin-bottom: 2rem; }
.faq-list { border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
    width: 100%;
    background: var(--bg-white);
    border: none;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question i { color: var(--primary); transition: transform 0.2s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; font-size: 0.95rem; line-height: 1.7; color: var(--text-secondary); background: var(--bg-white); }
.faq-item.active .faq-answer { display: block; }

/* Verdict */
.verdict-box {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: white;
    margin-bottom: 2rem;
}
.verdict-box h2 { font-size: 1.5rem; margin-bottom: 1rem; color: white; display: flex; align-items: center; gap: 0.5rem; }
.verdict-content { font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.9); }
.verdict-content p { margin-bottom: 0.75rem; }
.verdict-winner {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.verdict-winner i { font-size: 1.75rem; color: var(--gold); }
.verdict-winner strong { color: white; }

/* Methodology */
.methodology-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.methodology-box h2 { font-size: 1.1rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.methodology-box h2 i { color: var(--primary); }
.methodology-box p { font-size: 0.95rem; line-height: 1.6; color: var(--text-secondary); margin-bottom: 0.75rem; }
.methodology-box a { color: var(--primary); font-weight: 500; }

/* Author Box */
.author-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}
@media (max-width: 576px) { .author-box { flex-direction: column; text-align: center; align-items: center; } }
.author-box img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.author-box h3 a { color: var(--text-primary); text-decoration: none; }
.author-box h3 a:hover { color: var(--primary); }
.author-title { color: var(--primary); font-weight: 500; font-size: 0.85rem; margin-bottom: 0.4rem; }
.author-bio { font-size: 0.9rem; line-height: 1.5; color: var(--text-secondary); margin-bottom: 0.5rem; }
.author-creds { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.author-cred { display: inline-flex; align-items: center; gap: 0.25rem; background: var(--bg-light); padding: 0.2rem 0.5rem; border-radius: 50px; font-size: 0.7rem; color: var(--text-secondary); }
.author-cred i { color: var(--primary); }

/* Update Box */
.update-box {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
}
.update-box i { color: var(--primary); margin-right: 0.35rem; }
.update-box time { font-weight: 600; }

/* Comparatif Table */
.compare-section { margin-bottom: 2rem; }
.compare-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-white); font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.compare-table th { background: var(--bg-light); font-weight: 600; white-space: nowrap; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-light); }
.rank-badge { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; font-weight: 700; font-size: 0.8rem; }
.rank-badge.gold { background: var(--gold); color: #000; }
.rank-badge.silver { background: var(--silver); color: #000; }
.rank-badge.bronze { background: var(--bronze); color: #fff; }
.rank-badge.other { background: var(--bg-light); color: var(--text-secondary); border: 1px solid var(--border-light); }
.compare-product { display: flex; align-items: center; gap: 0.6rem; }
.compare-product img { width: 40px; height: 40px; object-fit: contain; }
.compare-product-name { font-weight: 600; }
.compare-product-name a { color: var(--text-primary); text-decoration: none; }
.compare-product-name a:hover { color: var(--primary); }
.compare-brand { font-size: 0.75rem; color: var(--text-muted); }
.compare-rating { display: flex; align-items: center; gap: 0.25rem; color: var(--warning); }
.compare-price { font-weight: 600; color: var(--primary); }
.compare-cta { display: inline-flex; align-items: center; gap: 0.25rem; background: var(--primary); color: white; padding: 0.35rem 0.65rem; border-radius: var(--radius-sm); text-decoration: none; font-size: 0.75rem; font-weight: 500; }
.compare-cta:hover { background: var(--primary-dark); color: white; }

/* Related */
.related-section { margin-top: 2rem; }
.related-section h2 { font-size: 1.25rem; margin-bottom: 1rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.related-card { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 1rem; text-decoration: none; transition: all 0.2s; }
.related-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.related-card h3 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.related-card p { font-size: 0.8rem; color: var(--text-secondary); margin: 0; line-height: 1.4; }

/* =============================================
   CTA BUTTONS (shared)
   ============================================= */

/* Outline CTA - "Lire le test" (podium) */
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.25rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
    width: 100%;
}
.btn-cta-outline:hover {
    background: var(--primary);
    color: white;
}

/* Podium actions container */
.podium-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Product detail header - "Lire le test" link */
.btn-test {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}
.btn-test:hover {
    text-decoration: underline;
}

/* Other products - small outline CTA */
.btn-cta-outline-sm {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    white-space: nowrap;
}
.btn-cta-outline-sm:hover {
    background: var(--primary);
    color: white;
}

/* Verdict - Winner CTA buttons */
.verdict-winner {
    flex-wrap: wrap;
}
.verdict-winner-info {
    flex: 1;
    min-width: 0;
}
.verdict-winner-cta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.btn-verdict {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}
.btn-verdict:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
}
.btn-verdict-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}
.btn-verdict-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Other products CTA container */
.other-product-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .verdict-winner-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.75rem;
    }
}

/* =============================================
   PRODUCT DETAIL - MERCHANT BOX
   ============================================= */
.product-merchant-box {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}
.merchant-box-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.merchant-box-title i {
    color: var(--primary);
}
.product-merchant-box .merchant-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-light);
}
.product-merchant-box .merchant-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.product-merchant-box .merchant-logo {
    object-fit: contain;
    flex-shrink: 0;
}
.product-merchant-box .merchant-name-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 80px;
    flex-shrink: 0;
}
.product-merchant-box .merchant-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}
.product-merchant-box .merchant-price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.btn-merchant {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--accent);
    color: white;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}
.btn-merchant:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .product-merchant-box .merchant-item {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }
    .product-merchant-box .merchant-price {
        text-align: center;
    }
    .btn-merchant {
        width: 100%;
        justify-content: center;
    }
}
