/* ── Smart Glass Logic — Custom UI ─────────────────────────────────────── */

:root {
    --sg-accent:    #6366f1;
    --sg-accent2:   #8b5cf6;
    --sg-green:     #10b981;
    --sg-red:       #ef4444;
    --sg-yellow:    #f59e0b;
    --sg-bg:        #0f172a;
    --sg-card:      #1e293b;
    --sg-border:    #334155;
    --sg-text:      #f1f5f9;
    --sg-muted:     #94a3b8;
    --sg-radius:    12px;
}

/* ── Product Hero ───────────────────────────────────────────────────────── */
.sg-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-bottom: 1px solid var(--sg-border);
    padding: 3rem 0;
}
.sg-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}
.sg-hero-image {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sg-hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--sg-radius); }
.sg-hero-image-placeholder {
    font-size: 5rem;
    opacity: 0.3;
}
.sg-badge {
    display: inline-block;
    background: rgba(99,102,241,0.2);
    color: var(--sg-accent);
    border: 1px solid rgba(99,102,241,0.4);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.sg-badge.vr      { background: rgba(99,102,241,0.2); color: #818cf8; border-color: rgba(99,102,241,0.4); }
.sg-badge.ar      { background: rgba(16,185,129,0.15); color: #34d399; border-color: rgba(16,185,129,0.3); }
.sg-badge.mr      { background: rgba(245,158,11,0.15); color: #fbbf24; border-color: rgba(245,158,11,0.3); }
.sg-badge.smart   { background: rgba(139,92,246,0.2); color: #c4b5fd; border-color: rgba(139,92,246,0.4); }
.sg-hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--sg-text);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.sg-hero-brand { color: var(--sg-muted); font-size: 1rem; margin-bottom: 1rem; }
.sg-hero-excerpt { color: #cbd5e1; font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.sg-hero-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--sg-text);
    margin-bottom: 0.25rem;
}
.sg-hero-price-note { color: var(--sg-muted); font-size: 0.875rem; margin-bottom: 1.5rem; }
.sg-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* ── Sticky Buy Bar ─────────────────────────────────────────────────────── */
.sg-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.97);
    border-top: 1px solid var(--sg-border);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    padding: 0.75rem 1.5rem;
}
.sg-sticky-bar--visible { transform: translateY(0); }
.sg-sticky-bar__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.sg-sticky-bar__title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sg-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sg-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.sg-sticky-bar__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sg-text);
}

/* ── Affiliate Disclosure ───────────────────────────────────────────────── */
.sg-disclosure {
    background: rgba(30,41,59,0.4);
    border-top: 1px solid var(--sg-border);
    padding: 1.25rem 0;
    margin-bottom: 80px; /* space for sticky bar */
}
.sg-disclosure p {
    font-size: 0.78rem;
    color: var(--sg-muted);
    line-height: 1.6;
    margin: 0;
}
.sg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.sg-btn-primary {
    background: linear-gradient(135deg, var(--sg-accent), var(--sg-accent2));
    color: #fff;
}
.sg-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }
.sg-btn-secondary {
    background: var(--sg-card);
    color: var(--sg-text);
    border: 1px solid var(--sg-border);
}
.sg-btn-secondary:hover { border-color: var(--sg-accent); color: var(--sg-text); }
.sg-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.sg-availability.available { color: var(--sg-green); }
.sg-availability.coming_soon { color: var(--sg-yellow); }
.sg-availability.preorder { color: #60a5fa; }
.sg-availability.discontinued { color: var(--sg-red); }
.sg-availability::before { content: '●'; }

/* ── Overall Rating Ring ────────────────────────────────────────────────── */
.sg-rating-ring {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}
.sg-ring {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}
.sg-ring svg { transform: rotate(-90deg); }
.sg-ring-bg { fill: none; stroke: var(--sg-border); stroke-width: 6; }
.sg-ring-fill { fill: none; stroke: var(--sg-accent); stroke-width: 6; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.sg-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sg-text);
}
.sg-rating-ring-meta h4 { margin: 0 0 0.25rem; color: var(--sg-text); font-size: 1rem; }
.sg-rating-ring-meta p { margin: 0; color: var(--sg-muted); font-size: 0.85rem; }

/* ── Content Wrapper ────────────────────────────────────────────────────── */
.sg-content {
    background: #0f172a;
    color: #f1f5f9;
    padding: 2.5rem max(1.5rem, calc(50vw - 550px)) 3rem;
}
.sg-grid-2 {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

/* ── Section ────────────────────────────────────────────────────────────── */
.sg-section {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.sg-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sg-text);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--sg-border);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

/* ── Spec Table ─────────────────────────────────────────────────────────── */
.sg-spec-table { width: 100%; border-collapse: collapse; }
.sg-spec-table tr { border-bottom: 1px solid rgba(51,65,85,0.5); }
.sg-spec-table tr:last-child { border-bottom: none; }
.sg-spec-table td { padding: 0.6rem 0; font-size: 0.9rem; vertical-align: top; }
.sg-spec-table td:first-child { color: var(--sg-muted); width: 45%; }
.sg-spec-table td:last-child { color: var(--sg-text); font-weight: 500; }
.sg-spec-check { color: var(--sg-green); }
.sg-spec-cross { color: var(--sg-red); }

/* ── Dimension Ratings ──────────────────────────────────────────────────── */
.sg-dim-rating { margin-bottom: 0.9rem; }
.sg-dim-rating:last-child { margin-bottom: 0; }
.sg-dim-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    font-size: 0.875rem;
}
.sg-dim-name { color: var(--sg-muted); }
.sg-dim-score { color: var(--sg-text); font-weight: 700; }
.sg-dim-bar {
    height: 6px;
    background: var(--sg-border);
    border-radius: 999px;
    overflow: hidden;
}
.sg-dim-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sg-accent), var(--sg-accent2));
    transition: width 0.6s ease;
}
.sg-dim-fill.high   { background: linear-gradient(90deg, var(--sg-green), #059669); }
.sg-dim-fill.medium { background: linear-gradient(90deg, var(--sg-yellow), #d97706); }
.sg-dim-fill.low    { background: linear-gradient(90deg, var(--sg-red), #dc2626); }

/* ── Pros / Cons ────────────────────────────────────────────────────────── */
.sg-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.sg-pros-box, .sg-cons-box {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.25rem;
}
.sg-pros-box { border-top: 3px solid var(--sg-green); }
.sg-cons-box { border-top: 3px solid var(--sg-red); }
.sg-pros-box h4 { color: var(--sg-green); margin: 0 0 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sg-cons-box h4 { color: var(--sg-red); margin: 0 0 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sg-pros-box ul, .sg-cons-box ul { margin: 0; padding: 0; list-style: none; }
.sg-pros-box li, .sg-cons-box li { font-size: 0.9rem; color: #cbd5e1; padding: 0.3rem 0; padding-left: 1.25rem; position: relative; }
.sg-pros-box li::before { content: '✓'; position: absolute; left: 0; color: var(--sg-green); font-weight: 700; }
.sg-cons-box li::before { content: '✗'; position: absolute; left: 0; color: var(--sg-red); font-weight: 700; }

/* ── Verdict ────────────────────────────────────────────────────────────── */
.sg-verdict {
    background: #fefce8;
    border: 2px solid #fbbf24;
    border-left: 6px solid #f59e0b;
    border-radius: var(--sg-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.sg-verdict-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #92400e;
    margin-bottom: 0.5rem;
}
.sg-verdict p { margin: 0; color: #44403c; font-size: 1rem; line-height: 1.65; }

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.sg-sidebar .sg-section { margin-bottom: 1rem; }
.sg-quick-spec { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; border-bottom: 1px solid rgba(51,65,85,0.4); font-size: 0.875rem; }
.sg-quick-spec:last-child { border-bottom: none; }
.sg-quick-spec-label { color: var(--sg-muted); }
.sg-quick-spec-value { color: var(--sg-text); font-weight: 600; }
.sg-use-cases { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sg-use-case-tag {
    background: rgba(99,102,241,0.1);
    color: #a5b4fc;
    border: 1px solid rgba(99,102,241,0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ── Comparison Template ────────────────────────────────────────────────── */
.sg-compare-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-bottom: 1px solid var(--sg-border);
    padding: 2.5rem 0;
    text-align: center;
}
.sg-compare-hero h1 { color: var(--sg-text); font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.sg-compare-hero p { color: var(--sg-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.sg-compare-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.sg-compare-vs-pill {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--sg-text);
}
.sg-vs-divider { color: var(--sg-muted); font-weight: 800; }
.sg-compare-table-wrap { overflow-x: auto; margin: 2rem 0; }
.sg-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.sg-compare-table th {
    background: var(--sg-card);
    color: var(--sg-text);
    font-weight: 700;
    padding: 1rem 1.25rem;
    text-align: center;
    border: 1px solid var(--sg-border);
    font-size: 1rem;
}
.sg-compare-table th:first-child { text-align: left; color: var(--sg-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sg-compare-table td {
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--sg-border);
    font-size: 0.9rem;
    color: var(--sg-text);
    text-align: center;
    vertical-align: middle;
}
.sg-compare-table td:first-child { text-align: left; color: var(--sg-muted); background: rgba(15,23,42,0.5); }
.sg-compare-table tr:nth-child(even) td { background: rgba(30,41,59,0.4); }
.sg-compare-table tr:nth-child(even) td:first-child { background: rgba(15,23,42,0.6); }
.sg-compare-table .sg-section-row td {
    background: rgba(99,102,241,0.08) !important;
    color: var(--sg-accent);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 0.5rem 1.25rem;
}
.sg-winner-col { background: rgba(99,102,241,0.05) !important; }
.sg-compare-table th.sg-winner-col { border-top: 3px solid var(--sg-accent); }
.sg-our-pick {
    background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(139,92,246,0.12));
    border: 1px solid rgba(99,102,241,0.35);
    border-radius: var(--sg-radius);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin: 2rem 0;
}
.sg-our-pick-badge {
    background: var(--sg-accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sg-our-pick-name { font-weight: 800; font-size: 1.1rem; color: var(--sg-text); margin-bottom: 0.4rem; }
.sg-our-pick-reason { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ── Archive / Product Grid ─────────────────────────────────────────────── */
.sg-archive-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--sg-border);
    text-align: center;
}
.sg-archive-hero h1 { color: var(--sg-text); font-size: 2.2rem; font-weight: 800; margin-bottom: 0.5rem; }
.sg-archive-hero p { color: var(--sg-muted); font-size: 1.05rem; }
.sg-filters {
    background: var(--sg-card);
    border-bottom: 1px solid var(--sg-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 50;
}
.sg-filters-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.sg-filter-btn {
    background: transparent;
    border: 1px solid var(--sg-border);
    color: var(--sg-muted);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}
.sg-filter-btn:hover,
.sg-filter-btn.active {
    background: var(--sg-accent);
    border-color: var(--sg-accent);
    color: #fff;
}
.sg-filter-label { color: var(--sg-muted); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-right: 0.25rem; }
.sg-grid {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.sg-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.sg-card:hover { border-color: var(--sg-accent); transform: translateY(-3px); }
.sg-card-img {
    aspect-ratio: 16/9;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-bottom: 1px solid var(--sg-border);
    overflow: hidden;
}
.sg-card-img img { width: 100%; height: 100%; object-fit: cover; }
.sg-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.sg-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.sg-card-brand { font-size: 0.8rem; color: var(--sg-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.sg-card-score {
    background: rgba(99,102,241,0.15);
    color: var(--sg-accent);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}
.sg-card-title { font-size: 1.05rem; font-weight: 700; color: var(--sg-text); margin-bottom: 0.5rem; line-height: 1.3; }
.sg-card-excerpt { font-size: 0.85rem; color: var(--sg-muted); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.sg-card-footer { display: flex; justify-content: space-between; align-items: center; }
.sg-card-price { font-size: 1.1rem; font-weight: 800; color: var(--sg-text); }
.sg-card-price.tba { color: var(--sg-muted); font-size: 0.9rem; }
.sg-card-arrow { color: var(--sg-accent); font-size: 1.1rem; }

/* ── Comparison Archive ──────────────────────────────────────────────────── */
.sg-comparison-list {
    max-width: 860px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}
.sg-comparison-item {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s;
}
.sg-comparison-item:hover { border-color: var(--sg-accent); }
.sg-comparison-item h3 { color: var(--sg-text); font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.sg-comparison-item p { color: var(--sg-muted); font-size: 0.9rem; margin: 0; line-height: 1.55; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sg-hero-inner { grid-template-columns: 1fr; }
    .sg-hero-image { max-width: 280px; }
    .sg-grid-2 { grid-template-columns: 1fr; }
    .sg-proscons { grid-template-columns: 1fr; }
    .sg-compare-table th, .sg-compare-table td { padding: 0.6rem 0.75rem; }
}

/* ── Homepage ───────────────────────────────────────────────────────────── */
.sg-home-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 60%, #0f172a 100%);
    border-bottom: 1px solid var(--sg-border);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
}
.sg-home-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}
.sg-home-hero__badge {
    display: inline-block;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.4);
    color: var(--sg-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.sg-home-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--sg-text);
    line-height: 1.15;
    margin: 0 0 1rem;
}
.sg-home-hero__accent {
    background: linear-gradient(90deg, var(--sg-accent), var(--sg-accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sg-home-hero__sub {
    font-size: 1.1rem;
    color: var(--sg-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.sg-home-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.sg-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}
.sg-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.sg-btn--primary {
    background: var(--sg-accent);
    color: #fff;
}
.sg-btn--ghost {
    background: transparent;
    color: var(--sg-text);
    border: 1px solid var(--sg-border);
}
.sg-btn--ghost:hover { border-color: var(--sg-accent); color: var(--sg-accent); }
.sg-home-hero__stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}
.sg-stat__num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sg-accent);
}
.sg-stat__label {
    font-size: 0.8rem;
    color: var(--sg-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Home Sections ──────────────────────────────────────────────────────── */
.sg-home-section {
    padding: 4rem 0;
}
.sg-home-section--alt {
    background: rgba(30,41,59,0.5);
    border-top: 1px solid var(--sg-border);
    border-bottom: 1px solid var(--sg-border);
}
.sg-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.sg-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.sg-section-header h2 {
    margin: 0;
    font-size: 1.6rem;
    color: var(--sg-text);
}
.sg-link-more {
    color: var(--sg-accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}
.sg-link-more:hover { text-decoration: underline; }

/* ── Product Grid Cards (homepage) ─────────────────────────────────────── */
.sg-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.sg-product-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    text-decoration: none;
    color: var(--sg-text);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}
.sg-product-card:hover {
    border-color: var(--sg-accent);
    transform: translateY(-3px);
}
.sg-product-card__rank {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--sg-accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    z-index: 2;
}
.sg-product-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0f172a;
}
.sg-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sg-product-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.sg-product-card__body {
    padding: 1.1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.sg-product-card__cat {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sg-accent);
    font-weight: 700;
}
.sg-product-card__name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--sg-text);
    margin: 0;
    line-height: 1.3;
}
.sg-product-card__brand {
    font-size: 0.78rem;
    color: var(--sg-muted);
}
.sg-product-card__excerpt {
    font-size: 0.82rem;
    color: var(--sg-muted);
    line-height: 1.5;
    margin: 0.2rem 0 0;
    flex: 1;
}
.sg-product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--sg-border);
}
.sg-rating-badge {
    background: var(--sg-accent);
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 0.2rem 0.55rem;
    border-radius: 6px;
}
.sg-rating-label {
    font-size: 0.75rem;
    color: var(--sg-muted);
    margin-left: 0.25rem;
}
.sg-product-card__price {
    font-weight: 700;
    color: var(--sg-text);
    font-size: 0.95rem;
}

/* ── Category Grid ──────────────────────────────────────────────────────── */
.sg-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}
.sg-cat-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    text-decoration: none;
    color: var(--sg-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, transform 0.2s;
}
.sg-cat-card:hover { border-color: var(--sg-accent); transform: translateY(-2px); }
.sg-cat-card__icon { font-size: 2.5rem; }
.sg-cat-card__name { font-weight: 700; font-size: 0.95rem; }
.sg-cat-card__count { font-size: 0.78rem; color: var(--sg-muted); }

/* ── Compare List (homepage) ────────────────────────────────────────────── */
.sg-compare-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.sg-compare-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.5rem;
    text-decoration: none;
    color: var(--sg-text);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: border-color 0.2s, transform 0.2s;
}
.sg-compare-card:hover { border-color: var(--sg-accent); transform: translateY(-2px); }
.sg-compare-card__vs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 0.9rem;
    flex-wrap: wrap;
}
.sg-compare-card__divider {
    color: var(--sg-accent);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
}
.sg-compare-card__desc {
    font-size: 0.82rem;
    color: var(--sg-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.sg-compare-card__pick {
    font-size: 0.78rem;
    color: var(--sg-accent);
    font-weight: 600;
    padding-top: 0.5rem;
    border-top: 1px solid var(--sg-border);
}

/* ── Trust Section ──────────────────────────────────────────────────────── */
.sg-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.sg-trust-text h2 { font-size: 1.6rem; margin: 0 0 1rem; color: var(--sg-text); }
.sg-trust-text p { color: var(--sg-muted); line-height: 1.7; margin: 0 0 0.75rem; }
.sg-trust-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.sg-pillar {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0 0.75rem;
    align-items: start;
}
.sg-pillar__icon {
    font-size: 1.5rem;
    grid-row: span 2;
    padding-top: 0.1rem;
}
.sg-pillar strong { color: var(--sg-text); font-size: 0.95rem; }
.sg-pillar p { color: var(--sg-muted); font-size: 0.83rem; line-height: 1.5; margin: 0.1rem 0 0; }

@media (max-width: 768px) {
    .sg-trust-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sg-product-grid { grid-template-columns: 1fr; }
    .sg-home-hero__stats { gap: 1.5rem; }
}

/* ── About Page ─────────────────────────────────────────────────────────── */
.sg-about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-bottom: 1px solid var(--sg-border);
    padding: 4rem 0 3rem;
}
.sg-about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--sg-text);
    margin: 0 0 1rem;
}
.sg-about-hero__sub {
    font-size: 1.05rem;
    color: var(--sg-muted);
    max-width: 640px;
    line-height: 1.7;
    margin: 0;
}
.sg-about-body {
    padding: 3rem 0 5rem;
}
.sg-about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}
.sg-about-content h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--sg-text);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--sg-border);
}
.sg-about-content h2:first-child { margin-top: 0; }
.sg-about-content p {
    color: var(--sg-muted);
    line-height: 1.75;
    margin: 0 0 1rem;
}
.sg-about-content strong { color: var(--sg-text); }
.sg-methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.25rem 0;
}
.sg-method-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 1.1rem;
}
.sg-method-card__score {
    display: inline-block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}
.sg-method-card p {
    font-size: 0.83rem;
    color: var(--sg-muted);
    line-height: 1.5;
    margin: 0;
}
.sg-about-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .sg-about-grid { grid-template-columns: 1fr; }
    .sg-methodology-grid { grid-template-columns: 1fr; }
    .sg-about-sidebar { position: static; }
}

/* ── Contact Page ───────────────────────────────────────────────────────── */
.sg-contact-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
}
.sg-contact-card {
    background: var(--sg-card);
    border: 1px solid var(--sg-border);
    border-radius: var(--sg-radius);
    padding: 2rem;
}
.sg-contact-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--sg-text);
}
.sg-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}
.sg-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.sg-form-row label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sg-muted);
}
.sg-form-row input,
.sg-form-row select,
.sg-form-row textarea {
    background: #0f172a;
    border: 1px solid var(--sg-border);
    border-radius: 8px;
    color: var(--sg-text);
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s;
    font-family: inherit;
    resize: vertical;
}
.sg-form-row input:focus,
.sg-form-row select:focus,
.sg-form-row textarea:focus {
    border-color: var(--sg-accent);
}
.sg-form-row select option {
    background: #1e293b;
}
.sg-contact-success {
    margin-top: 1.25rem;
    background: rgba(16,185,129,0.12);
    border: 1px solid #10b981;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: #10b981;
    font-size: 0.9rem;
}
.sg-contact-aside {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.sg-contact-reason {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sg-border);
}
.sg-contact-reason:last-child { border-bottom: none; }
.sg-contact-reason strong {
    display: block;
    color: var(--sg-text);
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}
.sg-contact-reason p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--sg-muted);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .sg-contact-grid { grid-template-columns: 1fr; }
    .sg-contact-aside { position: static; }
}

/* ── Custom Footer ──────────────────────────────────────────────────────── */
.sg-footer {
    background: #080e1a;
    border-top: 1px solid var(--sg-border);
    margin-top: 0;
}
.sg-footer__widgets {
    padding: 3.5rem 0 2.5rem;
}
.sg-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
}
.sg-footer__logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 0.75rem;
    display: block;
}
.sg-footer__site-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--sg-text);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
}
.sg-footer__tagline {
    font-size: 0.83rem;
    color: var(--sg-muted);
    line-height: 1.6;
    margin: 0 0 0.4rem;
    max-width: 240px;
}
.sg-footer__col h4 {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sg-text);
    margin: 0 0 1rem;
}
.sg-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.sg-footer__col ul li a {
    font-size: 0.85rem;
    color: var(--sg-muted);
    text-decoration: none;
    transition: color 0.15s;
}
.sg-footer__col ul li a:hover { color: var(--sg-accent); }
.sg-footer__contact {
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--sg-muted);
    line-height: 1.6;
}
.sg-footer__contact a {
    color: var(--sg-accent);
    text-decoration: none;
}
.sg-footer__bottom {
    border-top: 1px solid var(--sg-border);
    padding: 1.1rem 0;
}
.sg-footer__bottom .sg-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.sg-footer__bottom span,
.sg-footer__bottom a {
    font-size: 0.8rem;
    color: var(--sg-muted);
}
.sg-footer__bottom-links {
    display: flex;
    gap: 1.25rem;
}
.sg-footer__bottom-links a {
    text-decoration: none;
    transition: color 0.15s;
}
.sg-footer__bottom-links a:hover { color: var(--sg-accent); }
@media (max-width: 1024px) {
    .sg-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
    .sg-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .sg-footer__grid { grid-template-columns: 1fr 1fr; }
    .sg-footer__bottom .sg-container { flex-direction: column; align-items: flex-start; }
}

/* ── Extended Review Content (post_content on product pages) ─────────────── */
.sg-extended-review {
    margin-top: 2rem;
    border-top: 1px solid var(--sg-border);
    padding-top: 1.75rem;
}
.sg-extended-review h2 {
    font-size: 1.25rem;
    color: var(--sg-text);
    margin: 1.5rem 0 0.6rem;
    font-weight: 800;
}
.sg-extended-review h3 {
    font-size: 1rem;
    color: var(--sg-text);
    margin: 1.25rem 0 0.4rem;
    font-weight: 700;
}
.sg-extended-review p {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0 0 0.85rem;
}
.sg-extended-review ul,
.sg-extended-review ol {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.75;
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}
.sg-extended-review li { margin-bottom: 0.3rem; }
.sg-extended-review table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.87rem;
}
.sg-extended-review table th {
    background: var(--sg-border);
    color: var(--sg-text);
    font-weight: 700;
    padding: 0.6rem 0.85rem;
    text-align: left;
    border: 1px solid #475569;
}
.sg-extended-review table td {
    color: #cbd5e1;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--sg-border);
}
.sg-extended-review table tr:nth-child(even) td {
    background: rgba(30,41,59,0.5);
}
.sg-extended-review a { color: var(--sg-accent); text-decoration: none; }
.sg-extended-review a:hover { text-decoration: underline; }
.sg-extended-review strong { color: var(--sg-text); font-weight: 700; }

/* ── Comparison Page (redesign) ─────────────────────────────────────────── */
.sg-cmp-hero {
    background: linear-gradient(160deg, #111827 0%, #1e1b4b 55%, #111827 100%);
    border-bottom: 2px solid #312e81;
    padding: 3rem max(1.5rem, calc(50vw - 480px)) 2.5rem;
    text-align: center;
}
.sg-cmp-hero__inner { max-width: 960px; margin: 0 auto; }
.sg-cmp-hero__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a5b4fc;
    background: rgba(99,102,241,0.2);
    border: 1px solid rgba(165,180,252,0.4);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    margin-bottom: 1rem;
}
.sg-cmp-hero__title {
    color: #ffffff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 0.75rem;
}
.sg-cmp-hero__intro {
    color: #c7d2fe;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 2rem;
    line-height: 1.65;
}

/* Hero product cards */
.sg-cmp-hero__products {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.sg-cmp-hero__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: #e2e8f0;
    letter-spacing: 0.08em;
    background: #1e293b;
    border: 1px solid #475569;
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    flex-shrink: 0;
    align-self: center;
}
.sg-cmp-hero__card {
    background: #1e293b;
    border: 2px solid #475569;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.sg-cmp-hero__card.is-winner {
    border-color: #818cf8;
    background: #1e1b4b;
    box-shadow: 0 0 0 1px #4f46e5, 0 8px 32px rgba(99,102,241,0.3);
}
.sg-cmp-hero__winner-flag {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    border: 1px solid #818cf8;
}
.sg-cmp-hero__img {
    width: 110px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 0.25rem;
}
.sg-cmp-hero__img-placeholder {
    width: 110px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    opacity: 0.7;
}
.sg-cmp-hero__card-name {
    font-weight: 800;
    font-size: 1rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}
.sg-cmp-hero__card-brand {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.sg-cmp-hero__card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
}
.sg-cmp-hero__rating {
    font-size: 1.5rem;
    font-weight: 900;
    color: #a5b4fc;
}
.sg-cmp-hero__rating small {
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
}
.sg-cmp-hero__price {
    font-size: 1rem;
    font-weight: 700;
    color: #34d399;
}
.sg-cmp-hero__avail {
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

/* Body container */
.sg-cmp-body {
    background: #0f172a;
    color: #f1f5f9;
    padding: 2.5rem max(1.5rem, calc(50vw - 480px)) 4rem;
}

/* Verdict / Our Pick callout */
.sg-cmp-verdict {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fefce8;
    border: 2px solid #fbbf24;
    border-left: 6px solid #f59e0b;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
}
.sg-cmp-verdict__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.sg-cmp-verdict__content { flex: 1; }
.sg-cmp-verdict__label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #92400e;
    margin-bottom: 0.35rem;
}
.sg-cmp-verdict__name {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1c1917;
    margin-bottom: 0.5rem;
}
.sg-cmp-verdict__reason {
    color: #44403c;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.sg-cmp-verdict__cta {
    align-self: center;
    flex-shrink: 0;
    background: #f59e0b;
    color: #1c1917;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid #d97706;
    transition: background 0.15s;
}
.sg-cmp-verdict__cta:hover { background: #d97706; color: #1c1917; }

/* Section wrappers */
.sg-cmp-section { margin: 3rem 0; }
.sg-cmp-section__title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #334155;
}
.sg-cmp-section--analysis .sg-cmp-analysis {
    color: #e2e8f0;
    font-size: 0.97rem;
    line-height: 1.8;
}
.sg-cmp-section--analysis .sg-cmp-analysis h2,
.sg-cmp-section--analysis .sg-cmp-analysis h3 {
    color: #ffffff;
    font-weight: 800;
    margin-top: 1.75rem;
}
.sg-cmp-section--analysis .sg-cmp-analysis p { margin-bottom: 0.9rem; }

/* Ratings bars */
.sg-cmp-ratings { display: flex; flex-direction: column; gap: 1.25rem; }
.sg-cmp-rating-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: start;
    gap: 0.75rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    padding: 0.85rem 1rem;
}
.sg-cmp-rating-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 0.35rem;
}
.sg-cmp-rating-bars { display: flex; flex-direction: column; gap: 0.65rem; }
.sg-cmp-rating-bar-wrap {
    display: grid;
    grid-template-columns: 160px 1fr 48px auto;
    align-items: center;
    gap: 0.6rem;
}
.sg-cmp-rating-bar-wrap.is-winner .sg-cmp-rating-bar-name { color: #c7d2fe; font-weight: 700; }
.sg-cmp-rating-bar-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: #f1f5f9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sg-cmp-rating-bar-track {
    height: 10px;
    background: #334155;
    border-radius: 999px;
    overflow: hidden;
}
.sg-cmp-rating-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.4s ease;
}
.sg-cmp-rating-bar-score {
    font-size: 0.88rem;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
    color: #e2e8f0;
}
.sg-cmp-rating-bar-best {
    font-size: 0.72rem;
    font-weight: 700;
    color: #34d399;
    white-space: nowrap;
}

/* Spec table */
.sg-cmp-table-wrap { overflow-x: auto; border-radius: 10px; border: 2px solid #334155; }
.sg-cmp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-size: 0.9rem;
}
.sg-cmp-table thead th {
    background: #0f172a;
    color: #f1f5f9;
    font-weight: 700;
    padding: 1.1rem 1.25rem;
    text-align: center;
    border-bottom: 2px solid #334155;
    font-size: 0.95rem;
}
.sg-cmp-table__spec-col {
    text-align: left !important;
    color: #94a3b8 !important;
    font-size: 0.72rem !important;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    width: 160px;
}
.sg-cmp-table__winner-th {
    background: #1e1b4b !important;
    border-top: 3px solid #818cf8 !important;
    color: #c7d2fe !important;
}
.sg-cmp-table__th-name { font-weight: 800; }
.sg-cmp-table__th-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #a5b4fc;
    margin-top: 0.25rem;
}
.sg-cmp-table tbody tr:hover td { background: #1e293b; }
.sg-cmp-table td {
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #334155;
    color: #e2e8f0;
    text-align: center;
    vertical-align: middle;
}
.sg-cmp-table__label {
    text-align: left !important;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.85rem;
    background: #0f172a !important;
}
.sg-cmp-table__section td {
    background: #1e1b4b !important;
    color: #a5b4fc;
    font-weight: 800;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    text-align: left;
    padding: 0.5rem 1.25rem;
    border-bottom: 1px solid #312e81;
}
.sg-cmp-table__winner-td {
    background: rgba(79,70,229,0.12) !important;
    border-left: 2px solid #4f46e5;
    border-right: 2px solid #4f46e5;
}
.sg-cmp-table__val { display: inline-block; }
.sg-cmp-table__val.is-best {
    color: #34d399;
    font-weight: 800;
}

/* Inline spec booleans */
.sg-cmp-yes { color: #34d399; font-weight: 700; }
.sg-cmp-no  { color: #f87171; font-weight: 600; }
.sg-cmp-na  { color: #64748b; }
.sg-cmp-note { color: #94a3b8; font-size: 0.78rem; }

/* Review links footer */
.sg-cmp-review-links {
    margin-top: 3rem;
    padding: 1.75rem;
    background: #1e293b;
    border: 2px solid #334155;
    border-radius: 12px;
    text-align: center;
}
.sg-cmp-review-links__label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 1.1rem;
}
.sg-cmp-review-links__btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive — comparison page */
@media (max-width: 680px) {
    .sg-cmp-hero__products { gap: 0.5rem; }
    .sg-cmp-hero__vs { padding: 0.35rem 0.75rem; font-size: 0.8rem; align-self: center; }
    .sg-cmp-hero__card { min-width: 150px; max-width: none; flex: 1 1 150px; padding: 1.5rem 1rem; }
    .sg-cmp-verdict { flex-direction: column; gap: 1rem; }
    .sg-cmp-verdict__cta { align-self: flex-start; }
    .sg-cmp-rating-row { grid-template-columns: 85px 1fr; }
    .sg-cmp-rating-bar-wrap { grid-template-columns: 1fr 1fr 38px auto; }
    .sg-cmp-rating-bar-name { font-size: 0.75rem; }
}
