/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f0f4f8;
    color: #111827;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.site-header .container {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 96px;
}
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-logo img { display: block; height: 80px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}
.site-nav a {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    color: #374151;
    transition: background .15s, color .15s;
}
.site-nav a:hover { background: #f3f4f6; color: #60a5fa; }
.nav-toggle { display: none; }
.nav-cta { margin-left: 8px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .15s;
    text-decoration: none;
    white-space: nowrap;
}
.btn--primary { background: #60a5fa; color: #fff; }
.btn--primary:hover { background: #3b82f6; }
.btn--ghost { background: transparent; color: #60a5fa; border: 1.5px solid #60a5fa; }
.btn--ghost:hover { background: #eff6ff; }
.btn--amazon { background: #ff9900; color: #111; }
.btn--amazon:hover { background: #e68a00; color: #111; }
.btn--lg { padding: 14px 28px; font-size: 1rem; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #60a5fa 100%);
    color: #fff;
    padding: 72px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__label {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: #93c5fd;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.hero__accent { color: #60a5fa; }
.hero__sub {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}
.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #e2e8f0;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
}
.filter-btn:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); color: #fff; }
.filter-btn.active { background: #fff; color: #60a5fa; border-color: #fff; }

/* ===== BRAND FILTER ===== */
.brand-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}
.brand-filter__label { font-size: .85rem; color: #94a3b8; font-weight: 500; margin-right: 4px; }
.brand-btn {
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.07);
    color: #cbd5e1;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
}
.brand-btn:hover { background: rgba(255,255,255,.15); color: #fff; }
.brand-btn.active { background: rgba(96,165,250,.25); border-color: #60a5fa; color: #93c5fd; }

/* ===== SORT LABEL ===== */
.sort-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: .88rem;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    margin-bottom: 0;
}
.sort-label strong { color: #111827; }
.phone-count { color: #9ca3af; }

/* ===== PHONE GRID ===== */
.phone-grid-section { padding: 32px 0 64px; }
.phone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ===== PHONE CARD ===== */
.phone-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.phone-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.phone-card.is-hidden { display: none; }
.phone-card.is-dimmed { opacity: .35; }

.phone-card__img-link {
    position: relative;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
}
.phone-card__img-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform .3s;
}
.phone-card:hover .phone-card__img-link img { transform: scale(1.04); }
.phone-card__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f1f5f9;
}
.phone-card__brand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #60a5fa;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}

.phone-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.phone-card__title { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.phone-card__title a { color: #111827; }
.phone-card__title a:hover { color: #60a5fa; }

.phone-card__score {
    display: flex;
    align-items: center;
    gap: 16px;
}
.phone-card__subscores { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.phone-card__price { font-size: 1.1rem; font-weight: 700; color: #111827; }
.phone-card__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; }
.phone-card__actions .btn { flex: 1; justify-content: center; }

/* ===== SCORE BAR ===== */
.score-bar {
    display: grid;
    grid-template-columns: 80px 1fr 32px;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
}
.score-bar__label { color: #6b7280; font-weight: 500; }
.score-bar__track {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    overflow: hidden;
}
.score-bar__fill {
    height: 100%;
    border-radius: 3px;
    transition: width .6s ease;
}
.score-bar__val { font-weight: 700; color: #374151; text-align: right; }

/* ===== BLOG SECTION ===== */
.blog-section {
    background: #fff;
    padding: 72px 0 64px;
    border-top: 1px solid #e5e7eb;
}
.blog-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}
.blog-section__label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 6px;
}
.blog-section__title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #111827;
    margin: 0;
}
.blog-section__all { flex-shrink: 0; }

/* Carousel wrapper */
.blog-carousel-wrap {
    position: relative;
}
.blog-carousel {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

/* Blog card */
.blog-card {
    flex: 0 0 calc((100% - 48px) / 3);
    scroll-snap-align: start;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, border-color .2s, transform .2s;
}
.blog-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
    border-color: #d1d5db;
    transform: translateY(-3px);
}
.blog-card__thumb {
    display: block;
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #1e3a5f;
    flex-shrink: 0;
}
.blog-card__thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s;
    display: block;
}
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__thumb-fallback {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 20%, #0f172a), #1e3a5f);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.blog-card__thumb .blog-card__tag {
    position: absolute;
    bottom: 10px; left: 12px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    color: #fff;
}
.blog-card__body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-card__date { font-size: .78rem; color: #9ca3af; }
.blog-card__title {
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin: 0;
}
.blog-card__title a { color: inherit; }
.blog-card__title a:hover { color: #60a5fa; }
.blog-card__excerpt {
    font-size: .86rem;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}
.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    font-weight: 600;
    color: #60a5fa;
    margin-top: auto;
    transition: gap .15s;
}
.blog-card__link:hover { gap: 8px; }

/* Carousel nav buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: background .15s, box-shadow .15s, opacity .2s;
    z-index: 5;
}
.carousel-nav:hover { background: #f3f4f6; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.carousel-nav--prev { left: -22px; }
.carousel-nav--next { right: -22px; }

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background .2s, width .2s, border-radius .2s;
}
.carousel-dot.is-active {
    background: #60a5fa;
    width: 24px;
    border-radius: 4px;
}

/* ===== HOW WE REVIEW ===== */
.how-we-review { background: #fff; padding: 72px 0; }
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -.02em;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.pillar { text-align: center; }
.pillar__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.pillar__icon--camera   { background: #eff6ff; color: #60a5fa; }
.pillar__icon--perf     { background: #fef3c7; color: #d97706; }
.pillar__icon--battery  { background: #f0fdf4; color: #16a34a; }
.pillar__icon--display  { background: #fdf4ff; color: #9333ea; }
.pillar h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pillar p  { font-size: .9rem; color: #6b7280; line-height: 1.6; }

/* ===== NO RESULTS ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 1rem;
}
.no-results button {
    color: #60a5fa;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
}

/* ===== REVIEW PAGE ===== */
.review-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 48px 0;
}
.review-hero__inner { }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: .85rem;
    color: #94a3b8;
    margin-bottom: 32px;
}
.breadcrumb a { color: #60a5fa; }
.breadcrumb a:hover { text-decoration: underline; }

.review-hero__layout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: stretch;
}
.review-hero__image {
    background: rgba(255,255,255,.07);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}
.review-hero__image img { max-height: 280px; width: auto; margin: 0 auto; object-fit: contain; }
.review-hero__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.review-brand {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 8px;
}
.review-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -.02em;
}
.review-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 24px;
}

.overall-score-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 28px;
    max-width: 320px;
}
.overall-score-box__label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.overall-score-box__label strong { font-size: .95rem; font-weight: 700; color: #e2e8f0; }
.overall-score-box__label span   { font-size: 1.4rem; font-weight: 800; color: #fff; }

.review-body { padding: 40px 20px 80px; }
.card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.card h2 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    letter-spacing: -.02em;
}

/* ===== SCORE BREAKDOWN (review page) ===== */
.score-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
}
.score-breakdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.score-breakdown__item span {
    font-size: .85rem;
    font-weight: 600;
    color: #6b7280;
}
.score-bars-list { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.score-bars-list .score-bar { grid-template-columns: 120px 1fr 40px; }

/* ===== PROS & CONS ===== */
.pros-cons__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.pros-cons__col h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.pros-cons__col--pros h3 { color: #16a34a; }
.pros-cons__col--cons h3 { color: #dc2626; }
.pros-cons__col ul { display: flex; flex-direction: column; gap: 10px; }
.pros-cons__col li {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .92rem;
    line-height: 1.5;
}
.pros-cons__col--pros li { background: #f0fdf4; color: #166534; }
.pros-cons__col--cons li { background: #fef2f2; color: #991b1b; }

/* ===== REVIEW CONTENT ===== */
.review-content h3 { font-size: 1.1rem; font-weight: 700; margin: 24px 0 8px; }
.review-content p  { margin-bottom: 16px; color: #374151; line-height: 1.75; font-size: .97rem; }

/* ===== SPECS TABLE ===== */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
    font-size: .9rem;
}
.specs-table th {
    width: 160px;
    color: #6b7280;
    font-weight: 600;
    background: #f8fafc;
}
.specs-table td { color: #111827; }
.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }

/* ===== PHONE ZOOM WRAP ===== */
.review-hero__img-col {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 360px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
}
.phone-zoom-wrap {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 420px;
}
.phone-hero-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== THUMB STRIP ===== */
.thumb-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    margin-top: 12px;
}
.thumb-btn {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    padding: 0;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color .15s, transform .15s;
    flex-shrink: 0;
}
.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.thumb-btn:hover { border-color: #94a3b8; transform: scale(1.06); }
.thumb-btn.active { border-color: #60a5fa; box-shadow: 0 0 0 2px rgba(96,165,250,.3); }

/* ===== HERO SCORE BARS ===== */
.hero-score-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.hero-score-bars .score-bar { grid-template-columns: 100px 1fr 36px; }
.hero-score-bars .score-bar__label { color: #94a3b8; }
.hero-score-bars .score-bar__val { color: #e2e8f0; }
.hero-score-bars .score-bar__track { background: rgba(255,255,255,.12); }

/* ===== GALLERY SECTION ===== */
.gallery-section .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}
.gallery-thumb {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
    background: #f1f5f9;
    aspect-ratio: 4/3;
    transition: transform .2s, box-shadow .2s;
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.gallery-thumb:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.gallery-thumb:hover img { transform: scale(1.04); }
.gallery-thumb__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s;
    color: #fff;
}
.gallery-thumb:hover .gallery-thumb__overlay { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.lightbox.is-open { display: flex; }
.lightbox__img-wrap {
    position: relative;
    max-width: calc(100vw - 160px);
    max-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img-wrap img {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 16px 64px rgba(0,0,0,.6);
}
.lightbox__counter {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .85rem;
    color: #94a3b8;
    white-space: nowrap;
}
.lightbox__close {
    position: fixed;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    z-index: 1001;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }
.lightbox__nav {
    background: rgba(255,255,255,.1);
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    flex-shrink: 0;
}
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__nav[style*="hidden"] { pointer-events: none; }

/* ===== EXTERNAL REVIEWS ===== */
.ext-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.ext-review-card {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .2s, border-color .2s;
}
.ext-review-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); border-color: #d1d5db; }
.ext-review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.ext-review-card__site {
    font-size: .9rem;
    font-weight: 700;
    color: #111827;
}
.ext-review-card__score {
    font-size: 1.1rem;
    font-weight: 800;
    border: 2px solid;
    border-radius: 8px;
    padding: 2px 8px;
    line-height: 1.3;
    flex-shrink: 0;
}
.ext-review-card__score span {
    font-size: .65rem;
    font-weight: 600;
    opacity: .75;
}
.ext-review-card__quote {
    font-size: .88rem;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid #e5e7eb;
    padding-left: 12px;
    margin: 0;
    flex: 1;
}
.ext-review-card__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .82rem;
    font-weight: 600;
    color: #60a5fa;
    transition: color .15s;
    margin-top: auto;
}
.ext-review-card__link:hover { color: #3b82f6; text-decoration: underline; }

/* ===== BESTBUY STAR RATING ===== */
.bb-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.bb-rating__stars {
    display: flex;
    align-items: center;
    gap: 1px;
}
.bb-rating__val {
    font-size: .88rem;
    font-weight: 700;
    color: #f59e0b;
}
.bb-rating__count {
    font-size: .82rem;
    color: #9ca3af;
}
.bb-rating__source {
    font-size: .75rem;
    color: #9ca3af;
    font-weight: 500;
}

/* On dark hero background - review page */
.review-hero__info .bb-rating__count,
.review-hero__info .bb-rating__source { color: #64748b; }

/* ===== REVIEW ACTIONS ===== */
.review-actions { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 10px; }
.verdict-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* ===== VERDICT ===== */
.verdict-box__inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}
blockquote.verdict-box__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #374151;
    border-left: 3px solid #60a5fa;
    padding-left: 20px;
    font-style: italic;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; color: #94a3b8; line-height: 1.65; }
.footer-links h4 {
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 16px;
}
.footer-links li + li { margin-top: 10px; }
.footer-links a {
    font-size: .9rem;
    color: #cbd5e1;
    transition: color .15s;
}
.footer-links a:hover { color: #60a5fa; }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    text-align: center;
    font-size: .85rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-affiliate {
    font-size: .78rem;
    color: #475569;
}
.footer-affiliate a { color: #64748b; text-decoration: underline; }
.footer-affiliate a:hover { color: #94a3b8; }

/* ===== SINGLE ARTICLE ===== */
.article-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}
.article-header--has-img {
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    min-height: 360px;
    display: flex;
    align-items: flex-end;
}
.article-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,20,40,.45) 0%, rgba(10,20,40,.82) 100%);
    pointer-events: none;
}
.article-header__inner {
    max-width: 800px;
    position: relative;
    z-index: 1;
    padding-bottom: 8px;
}
.article-header .breadcrumb { margin-bottom: 20px; }
.article-header__title {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.article-header__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: #cbd5e1;
}
.article-header__dot { opacity: .5; }

.article-body {
    padding: 40px 20px 80px;
    max-width: 860px;
    margin: 0 auto;
}
.article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}
.article-content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111827;
    margin: 36px 0 14px;
    letter-spacing: -.02em;
    border-bottom: none;
    padding-bottom: 0;
}
.article-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 28px 0 10px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.article-content li { line-height: 1.7; }
.article-content strong { color: #111827; font-weight: 700; }
.article-content blockquote {
    border-left: 4px solid #60a5fa;
    margin: 24px 0;
    padding: 16px 20px;
    background: #eff6ff;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #1e40af;
}

.article-nav { padding: 20px 32px; }
.article-nav__links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.article-nav__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 45%;
    transition: color .15s;
}
.article-nav__item--next { align-items: flex-end; text-align: right; margin-left: auto; }
.article-nav__label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #9ca3af;
}
.article-nav__post-title {
    font-size: .92rem;
    font-weight: 700;
    color: #374151;
    line-height: 1.4;
}
.article-nav__item:hover .article-nav__post-title { color: #60a5fa; }

/* ===== BLOG ARCHIVE ===== */
.blog-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.blog-archive-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e5e7eb;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
}
.blog-archive-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.09); transform: translateY(-3px); }
.blog-archive-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.blog-archive-card__date { font-size: .82rem; color: #9ca3af; }
.blog-archive-card__title { font-size: 1.15rem; font-weight: 800; line-height: 1.35; margin: 0; }
.blog-archive-card__title a { color: #111827; }
.blog-archive-card__title a:hover { color: #60a5fa; }
.blog-archive-card__excerpt { font-size: .9rem; color: #6b7280; line-height: 1.65; margin: 0; flex: 1; }
.wp-block-heading { font-size: 1.25rem; font-weight: 700; margin: 32px 0 12px; color: #111827; }
.wp-block-paragraph { margin-bottom: 18px; color: #374151; line-height: 1.75; font-size: .97rem; }
.wp-block-list { margin: 0 0 18px 24px; }
.wp-block-list li { margin-bottom: 8px; color: #374151; font-size: .95rem; line-height: 1.6; }

/* ===== ARCHIVE PAGE ===== */
.archive-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.archive-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.archive-header p   { color: #94a3b8; font-size: 1rem; }

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .review-hero__layout { grid-template-columns: 1fr; }
    .review-hero__img-col { width: 100%; max-width: 420px; margin: 0 auto; min-height: 480px; }
    .review-hero__image { max-width: 280px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1/-1; }
    .pros-cons__grid { grid-template-columns: 1fr; }
    .ext-reviews__grid { grid-template-columns: 1fr 1fr; }
    .blog-card { flex: 0 0 calc((100% - 24px) / 2); }
    .blog-section__header { flex-direction: column; align-items: flex-start; }
    .carousel-nav--prev { left: -12px; }
    .carousel-nav--next { right: -12px; }
}

@media (max-width: 640px) {
    .blog-card { flex: 0 0 calc(100% - 0px); }
    .carousel-nav { display: none; }
    .blog-carousel { overflow-x: auto; padding-bottom: 8px; }
    .hero { padding: 48px 0 36px; }
    .site-nav ul { display: none; flex-direction: column; position: absolute; top: 96px; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: 0 8px 16px rgba(0,0,0,.1); z-index: 200; }
    .site-nav ul.is-open { display: flex; }
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
    }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: #111827; border-radius: 2px; transition: all .2s; }
    .nav-cta { display: none; }
    .filter-bar { gap: 8px; }
    .filter-btn { padding: 8px 14px; font-size: .82rem; }
    .phone-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .phone-card__img-link { height: 160px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .score-breakdown { gap: 16px; }
    .overall-score-box { flex-wrap: wrap; }
    .gallery-section .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    .ext-reviews__grid { grid-template-columns: 1fr; }
    .lightbox__img-wrap { max-width: calc(100vw - 120px); }
    .lightbox__nav { width: 40px; height: 40px; font-size: 1.8rem; }
    .thumb-btn { width: 50px; height: 50px; }
}

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

/* ===== STATIC PAGES ===== */
.page-content-wrap { padding: 48px 0 80px; }

.page-hero-simple {
    text-align: center;
    padding: 56px 0 48px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 48px;
}
.page-hero-simple h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
}
.page-hero-simple .lead {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
}

/* About */
.about-mission { max-width: 760px; margin: 0 auto 36px; padding: 36px 40px; }
.about-mission h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; color: #111827; }
.about-mission p { color: #374151; line-height: 1.75; margin-bottom: 14px; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.about-block { padding: 28px 28px 24px; text-align: center; }
.about-icon { font-size: 2rem; margin-bottom: 12px; }
.about-block h3 { font-size: 1.05rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.about-block p { font-size: .93rem; color: #4b5563; line-height: 1.7; }
.about-block a { color: #60a5fa; }

.about-values { max-width: 760px; margin: 0 auto 36px; padding: 36px 40px; }
.about-values h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: #111827; }
.values-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.values-list li { padding: 14px 18px; background: #f8fafc; border-left: 4px solid #60a5fa; border-radius: 0 8px 8px 0; color: #374151; line-height: 1.65; font-size: .95rem; }

.about-contact { max-width: 760px; margin: 0 auto; padding: 28px 40px; text-align: center; }
.about-contact h2 { font-size: 1.2rem; font-weight: 700; color: #111827; margin-bottom: 10px; }
.about-contact p { color: #4b5563; }
.about-contact a { color: #60a5fa; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block { padding: 24px 26px; }
.contact-block h3 { font-size: 1rem; font-weight: 700; color: #111827; margin: 10px 0 8px; }
.contact-block p { font-size: .9rem; color: #4b5563; line-height: 1.65; margin-bottom: 8px; }
.contact-block a { color: #60a5fa; }

.contact-form-wrap { padding: 32px 36px; }
.contact-form-wrap h2 { font-size: 1.3rem; font-weight: 700; color: #111827; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .85rem; font-weight: 600; color: #374151; }
.form-row input,
.form-row select,
.form-row textarea {
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: .95rem;
    color: #111827;
    background: #fff;
    transition: border-color .15s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: #60a5fa; }
.form-row textarea { resize: vertical; }

/* Legal / Privacy */
.legal-page .legal-body { max-width: 760px; margin: 0 auto; padding: 40px 44px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; color: #111827; margin: 32px 0 12px; }
.legal-body h3 { font-size: 1rem; font-weight: 700; color: #374151; margin: 20px 0 8px; }
.legal-body p { color: #374151; line-height: 1.75; margin-bottom: 14px; font-size: .95rem; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { color: #374151; line-height: 1.7; margin-bottom: 8px; font-size: .95rem; }
.legal-body a { color: #60a5fa; }

@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .about-mission, .about-values, .about-contact { padding: 28px 24px; }
    .contact-form-wrap { padding: 24px 22px; }
    .legal-body { padding: 28px 24px; }
    .page-hero-simple h1 { font-size: 2rem; }
}

/* ===== INLINE PHONE CARD (blog shortcode) ===== */
.inline-phone-card {
    display: flex;
    gap: 0;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
    transition: box-shadow .2s;
}
.inline-phone-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.inline-card__img {
    width: 160px;
    flex-shrink: 0;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-right: 1.5px solid #f1f5f9;
}
.inline-card__img img { width: 100%; height: 130px; object-fit: contain; }
.inline-card__no-img { width: 100%; height: 130px; background: #e5e7eb; border-radius: 8px; }
.inline-card__body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.inline-card__header { display: flex; gap: 14px; justify-content: space-between; align-items: flex-start; }
.inline-card__brand { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #60a5fa; margin-bottom: 3px; }
.inline-card__name { display: block; font-size: 1.1rem; font-weight: 700; color: #111827; text-decoration: none; line-height: 1.3; }
.inline-card__name:hover { color: #60a5fa; }
.inline-card__verdict { font-size: .83rem; color: #6b7280; margin: 6px 0 0; line-height: 1.5; }
.inline-card__score {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 2.5px solid;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; font-weight: 800;
}
.inline-card__scores { display: flex; flex-direction: column; gap: 5px; }
.inline-card__bar { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: #374151; }
.inline-card__bar span:first-child { width: 80px; flex-shrink: 0; }
.inline-card__bar span:last-child { width: 28px; text-align: right; font-weight: 600; flex-shrink: 0; }
.inline-card__track { flex: 1; height: 6px; background: #f1f5f9; border-radius: 3px; overflow: hidden; }
.inline-card__track div { height: 100%; border-radius: 3px; }
.inline-card__footer { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 4px; flex-wrap: wrap; }
.inline-card__price { font-size: .9rem; font-weight: 700; color: #111827; }
.inline-card__buy { font-size: .82rem; font-weight: 600; padding: 6px 14px; background: #ff9900; color: #111; border-radius: 6px; text-decoration: none; }
.inline-card__buy:hover { background: #e68a00; }
.inline-card__review { font-size: .82rem; font-weight: 600; color: #60a5fa; text-decoration: none; margin-left: auto; }
.inline-card__review:hover { text-decoration: underline; }

@media (max-width: 560px) {
    .inline-phone-card { flex-direction: column; }
    .inline-card__img { width: 100%; border-right: none; border-bottom: 1.5px solid #f1f5f9; height: 140px; }
    .inline-card__img img { height: 110px; }
}
