/* ================================
   LaptopTester — Review page part 1
   Breadcrumb, hero, gallery, rating
   ================================ */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    padding: 20px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb a {
    color: var(--text-muted);
    transition: color .2s;
}
.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb .sep { color: var(--text-dim); opacity: .6; }
.breadcrumb span:not(.sep) { color: var(--text); }

/* ---------- Test hero ---------- */
.test-hero {
    padding: 24px 0 60px;
    border-bottom: 1px solid var(--border);
}
.test-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Gallery */
.test-gallery {
    position: sticky;
    top: 100px;
}
.tg-main {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}
.tg-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.tg-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.tg-thumb {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all .2s;
    overflow: hidden;
}
.tg-thumb img {
    width: 100%; height: 100%;
    object-fit: contain;
}
.tg-thumb:hover { border-color: var(--border-strong); }
.tg-thumb.is-active {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* Infos */
.test-info .th-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
}
.th-title {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.15;
    margin-bottom: 12px;
}
.th-brand {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}
.th-brand strong { color: var(--text); }

.th-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 24px;
}
.th-rating-big {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1;
}
.th-score {
    font-size: 48px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.th-score-max { font-size: 18px; color: var(--text-dim); }
.th-stars {
    font-size: 20px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 4px;
}
.th-stars .on { color: #F59E0B; }
.th-stars .half {
    background: linear-gradient(90deg, #F59E0B 50%, var(--text-dim) 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.th-reviews-count {
    font-size: 13px;
    color: var(--text-muted);
}
.th-reviews-count strong { color: var(--text); }

.th-verdict-flash {
    padding: 16px 20px;
    background: rgba(124, 58, 237, 0.08);
    border-left: 3px solid var(--accent-1);
    border-radius: 0 12px 12px 0;
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--text);
}
.th-verdict-flash strong { color: var(--accent-2); display: block; margin-bottom: 4px; }

.th-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
