/* ============================================
   HERO
   ============================================ */
.page-hero {
    background: #f8f9fb;
    border-bottom: 1px solid #e5e7eb;
    padding: 52px 0 44px;
}

.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.page-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 14px;
}

h1.page-hero-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--color-text);
    margin-bottom: 16px;
    max-width: 760px;
}

.page-hero-lead {
    font-size: 17px;
    line-height: 1.75;
    color: #555;
    max-width: 660px;
    margin-bottom: 28px;
}

.page-hero-lead a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.15s;
}

.page-hero-lead a:hover {
    color: var(--color-primary-dark);
}

.page-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.page-hero-meta-item {
    font-size: 13px;
    color: #888;
}

.page-hero-meta-item strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ============================================
   BEST — Layout
   ============================================ */
.main-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 64px 0;
    border-bottom: 1px solid #e5e7eb;
}

.section:last-child {
    border-bottom: none;
}

.product-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.product-main {
    flex: 1;
    min-width: 0;
}

h2.section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 620px;
}

.product-article-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-rating-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
}

.rating-num {
    color: #888;
    font-size: 13px;
}

/* Price card */
.price-card {
    flex-shrink: 0;
    width: 180px;
    position: sticky;
    top: 24px;
    align-self: flex-start;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.price-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
    padding: 12px;
}

.price-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 16px 16px;
    width: 100%;
}

.price-card-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aaa;
}

.price-card-model {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
}

.price-card-current {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.price-card-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.btn-deal {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
    margin-top: 4px;
}

.btn-deal:hover {
    background: var(--color-primary-dark);
}

h4.block-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 32px;
    max-width: 720px;
}

/* Overview : description + vidéo */
.overview-product-link {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.overview-product-link:hover {
    color: var(--color-primary-dark);
}

.overview-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.overview-description {
    flex: 1;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.overview-video {
    flex: 0 0 500px;
    aspect-ratio: 16 / 9;
}

.overview-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    border: none;
}

/* Facade YouTube */
.yt-facade {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.yt-facade:hover img {
    opacity: 0.85;
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    pointer-events: none;
}

.yt-play::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #fff;
}

.yt-facade:hover .yt-play {
    background: #ff0000;
}

@media (max-width: 1000px) {
    .overview-grid {
        flex-direction: column;
    }
    .overview-video {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* ============================================
   SPECS GRID
   ============================================ */
.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.spec-item {
    flex: 0 0 auto;
    background: #F5F5F5;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    white-space: nowrap;
}

.spec-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

/* ============================================
   PROS / CONS
   ============================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.pros-box,
.cons-box {
    border-radius: 8px;
    padding: 16px 18px;
}

.pros-box {
    background: #f0faf4;
    border: 1px solid #c3e6cf;
}

.cons-box {
    background: #fdf3f2;
    border: 1px solid #f0c4bf;
}

.pros-box h5 {
    color: #1a7a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cons-box h5 {
    color: #c0392b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.pros-box li,
.cons-box li {
    font-size: 14px;
    padding: 4px 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.5;
    color: #333;
}

.pros-box li::before {
    content: "✓";
    color: #1a7a4a;
    font-weight: 700;
    flex-shrink: 0;
}

.cons-box li::before {
    content: "✕";
    color: #c0392b;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
}

.comparison-table thead tr {
    background: var(--color-text);
    color: #fff;
}

.comparison-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s;
}

.comparison-table tbody tr:hover {
    background: #f8f9fb;
}

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

.comparison-table td {
    padding: 14px 16px;
    vertical-align: middle;
}

.ct-pick {
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.ct-pick a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--color-primary);
}

.ct-pick a:hover {
    border-bottom-style: solid;
}

.ct-model {
    font-weight: 600;
}

.ct-model a {
    color: var(--color-text);
    text-decoration: none;
    border-bottom: 2px solid var(--color-primary);
    transition: color 0.15s;
}

.ct-model a:hover {
    color: var(--color-primary);
}

.ct-price {
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.ct-yes,
.ct-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.ct-yes {
    background: #e6f4ec;
    color: #1a7a4a;
}

.ct-no {
    background: #fdecea;
    color: #c0392b;
}

.ct-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--color-text);
    color: #fff;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 13px;
    font-weight: 700;
}

.ct-rating span {
    color: #f59e0b;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
}

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

.faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 0;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.2s;
    line-height: 1;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-top: 14px;
}

.faq-brand-link {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.faq-brand-link:hover {
    color: var(--color-primary);
}

/* ============================================
   DISCLOSURE
   ============================================ */
.disclosure{max-width:var(--max-width);margin:0 auto;padding:32px 1rem}.disclosure-text {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.disclosure-text strong {
    color: #777;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 640px) {
    .product-wrap {
        flex-direction: column;
    }

    .price-card {
        width: 100%;
        position: static;
    }


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