/* The Gear Logic - static affiliate review publication system */
:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --surface-soft: #f1f5f9;
    --ink: #0f172a;
    --ink-soft: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --brand: #2563eb;
    --brand-dark: #1e40af;
    --green: #059669;
    --amber: #b45309;
    --red: #b91c1c;
    --star: #f59e0b;
    --radius: 10px;
    --shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
    --font: "Hanken Grotesk", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink-soft);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(5, 150, 105, 0.06), transparent 22%),
        var(--bg);
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    margin: 0 0 12px;
    color: var(--ink);
    line-height: 1.2;
}

h1 { font-size: 2.45rem; }
h2 { font-size: 1.55rem; }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; }
p { margin: 0 0 14px; }

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    color: var(--ink);
    font-weight: 800;
    font-size: 1.34rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.logo span { color: var(--brand); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.main-nav a {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 8px;
    border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand);
    background: #eaf1fb;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    font-size: 1.2rem;
}

.hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.96) 48%, rgba(240, 253, 250, 0.86)),
        #f8fafc;
    color: var(--ink);
    padding: 62px 0 30px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    gap: 46px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    padding: 5px 9px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: rgba(255,255,255,0.7);
}

.hero h1 {
    color: var(--ink);
    max-width: 820px;
    margin-bottom: 14px;
    letter-spacing: 0;
    font-size: clamp(2.35rem, 5vw, 3.65rem);
    max-width: 760px;
}

.hero p {
    color: var(--ink-soft);
    font-size: 1.08rem;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 7px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15,23,42,0.06);
}

.button.primary { background: linear-gradient(180deg, #2563eb, #1d4ed8); color: #fff; }
.button.primary:hover { background: var(--brand-dark); color: #fff; }
.button.green { background: var(--green); color: #fff; }
.button.green:hover { background: #066848; color: #fff; }
.button.secondary {
    border-color: #cbd5e1;
    color: var(--ink);
    background: #fff;
}
.button.secondary:hover { background: #f1f5f9; color: var(--ink); }

.cta-button,
.btn-check-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--green);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    border: 0;
}

.cta-button:hover,
.btn-check-price:hover {
    background: #066848;
    color: #fff;
}

.hero-panel {
    background: rgba(255,255,255,0.96);
    color: var(--ink-soft);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.13);
    border: 1px solid rgba(191, 219, 254, 0.9);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #059669, #f59e0b);
}

.hero-panel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 9px;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    padding: 14px;
}

.panel-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.metric {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px;
    background: #f8fafc;
}

.metric strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
}

.metric span {
    color: var(--muted);
    font-size: 0.76rem;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.trust-item {
    border: 1px solid rgba(219, 234, 254, 0.95);
    background: rgba(255,255,255,0.76);
    border-radius: 8px;
    padding: 13px;
    box-shadow: 0 4px 12px rgba(15,23,42,0.025);
}

.trust-item strong { display: block; color: var(--ink); }
.trust-item span { color: var(--muted); font-size: 0.84rem; }

.notice {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #dbeafe;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin: 24px 0 0;
}

.section {
    padding: 54px 0 0;
}

.section-compact {
    padding-top: 42px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
}

.section-header p {
    color: var(--muted);
    max-width: 720px;
    margin: 0;
}

.view-all {
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.category-tile {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 15px;
    box-shadow: 0 5px 18px rgba(15,23,42,0.04);
    position: relative;
    overflow: hidden;
}

.category-tile::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--tile-accent, var(--brand));
}

.category-tile:hover {
    color: var(--ink);
    border-color: #93c5fd;
    box-shadow: 0 14px 32px rgba(15,23,42,0.08);
    transform: translateY(-2px);
}

.category-tile span {
    color: var(--tile-accent, var(--brand));
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.category-tile strong {
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.25;
}

.category-tile em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.82rem;
    line-height: 1.45;
}

.category-tile b {
    color: var(--tile-accent, var(--brand));
    font-size: 0.78rem;
    line-height: 1;
}

.category-tile b::after {
    content: " ->";
}

.tile-blue { --tile-accent: #2563eb; }
.tile-green { --tile-accent: #059669; }
.tile-amber { --tile-accent: #b45309; }
.tile-rose { --tile-accent: #be123c; }
.tile-slate { --tile-accent: #334155; }

.editorial-band {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--line);
}

.editorial-band div {
    background: #ffffff;
    padding: 15px 16px;
}

.editorial-band strong {
    display: block;
    color: var(--ink);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.editorial-band span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.article-card,
.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(15,23,42,0.045);
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 20px 42px rgba(15,23,42,0.10);
    transform: translateY(-2px);
}

.card-img {
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #ffffff, #eff6ff);
    overflow: hidden;
    padding: 14px;
    border-bottom: 1px solid #eef2f7;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.generated-visual {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(37,99,235,0.12), rgba(5,150,105,0.10)),
        #f8fafc;
    border-radius: 10px;
}

.generated-visual span {
    color: var(--ink);
    font-weight: 800;
    text-align: center;
}

.product-art {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc, #eaf1fb);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-art::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 12px;
}

.art-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: var(--ink);
    font-weight: 900;
    text-align: center;
    font-size: 0.9rem;
}

.art-projector .body {
    width: 46%;
    height: 30%;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    position: relative;
}

.art-projector .body::before {
    content: "";
    width: 28%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 45%, #60a5fa, #0f172a 58%, #020617);
    position: absolute;
    left: 13%;
    top: 22%;
}

.art-projector .body::after {
    content: "";
    width: 34%;
    height: 10%;
    border-radius: 999px;
    background: #dbeafe;
    position: absolute;
    right: 12%;
    top: 28%;
}

.art-poolbot .body {
    width: 48%;
    height: 30%;
    border-radius: 999px 999px 18px 18px;
    background: linear-gradient(180deg, #ffffff, #dbeafe);
    border: 2px solid #93c5fd;
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.14);
    position: relative;
}

.art-poolbot .body::before,
.art-poolbot .body::after {
    content: "";
    width: 24%;
    height: 28%;
    border-radius: 999px;
    background: #0f172a;
    position: absolute;
    bottom: -9%;
}

.art-poolbot .body::before { left: 13%; }
.art-poolbot .body::after { right: 13%; }

.art-poolbot .water {
    position: absolute;
    width: 72%;
    height: 16%;
    bottom: 25%;
    border-radius: 999px;
    background: repeating-linear-gradient(90deg, rgba(37,99,235,0.25), rgba(37,99,235,0.25) 18px, rgba(14,165,233,0.14) 18px, rgba(14,165,233,0.14) 36px);
}

.art-pump .body {
    width: 38%;
    height: 42%;
    border-radius: 40% 40% 34% 34%;
    background: linear-gradient(180deg, #ffffff, #fee2e2);
    border: 2px solid #fecaca;
    box-shadow: 0 18px 36px rgba(244, 63, 94, 0.10);
    position: relative;
}

.art-pump .body::before {
    content: "";
    position: absolute;
    width: 52%;
    height: 30%;
    border-radius: 50%;
    background: #fff7ed;
    border: 2px solid #fed7aa;
    left: 24%;
    top: 18%;
}

.art-pump .body::after {
    content: "";
    position: absolute;
    width: 28%;
    height: 12%;
    border-radius: 999px;
    background: #fb7185;
    left: 36%;
    bottom: 16%;
}

.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tag.review { background: #eaf1fb; color: var(--brand); }
.tag.guide { background: #ecfdf5; color: var(--green); }
.tag.deal { background: #fff7ed; color: var(--amber); }
.tag.workflow { background: #f3e8ff; color: #6d28d9; }

.card-title {
    display: block;
    color: var(--ink);
    font-size: 1.03rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 8px;
}

.card-title::after {
    content: "";
}

.card-excerpt,
.card-meta {
    color: var(--muted);
    font-size: 0.88rem;
}

.card-excerpt {
    flex: 1;
}

.card-meta {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #eef2f7;
}

.category-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    margin-top: 22px;
}

.category-feature .info-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars { color: var(--star); letter-spacing: 1px; }
.score { color: var(--ink); font-weight: 800; }

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 26px;
}

.info-card { padding: 20px; }
.info-card {
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
.info-card ul, .content-page ul, .content-page ol { padding-left: 20px; margin: 0 0 14px; }
.info-card li, .content-page li { margin: 0 0 8px; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.process-step b {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    margin-bottom: 12px;
}

.category-hero {
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(20, 36, 66, 0.94)),
        #101827;
    color: #fff;
    padding: 42px 0;
}

.category-hero h1 { color: #fff; }
.category-hero p { color: #d1d5db; max-width: 720px; }

.content-page {
    max-width: 820px;
    padding: 38px 0;
}

.content-page h2 {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.breadcrumb {
    color: var(--muted);
    font-size: 0.86rem;
    margin: 24px 0 16px;
}

.review-hero {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 26px;
}

.review-header {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 26px;
}

.review-masthead {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
}

.review-image {
    aspect-ratio: 4 / 3;
    background: var(--surface-soft);
    border-radius: 12px;
    overflow: hidden;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: linear-gradient(135deg, #f8fafc, #eaf1fb);
    padding: 10px;
}

.review-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
}

.review-content {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    min-width: 0;
}

.review-content h2 {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.review-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.review-sidebar > div {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    padding: 7px 0;
    border-bottom: 1px solid var(--line);
}

.toc-list li:last-child { border-bottom: 0; }

.score-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 9px 12px;
    color: var(--ink);
    font-weight: 800;
}

.score-badge strong {
    color: var(--star);
    font-size: 1.5rem;
}

.price-box,
.affiliate-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.price {
    color: var(--ink);
    font-size: 1.6rem;
    font-weight: 900;
}

.small-note,
.disclosure-note {
    color: var(--muted);
    font-size: 0.8rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

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

.pros { background: #ecfdf5; border: 1px solid #bbf7d0; }
.cons { background: #fef2f2; border: 1px solid #fecaca; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.9rem;
}

.comparison-table th {
    background: #101827;
    color: #fff;
    text-align: left;
    padding: 10px;
}

.comparison-table td {
    border-bottom: 1px solid var(--line);
    padding: 10px;
}

.comparison-table tbody tr:nth-child(even) { background: #f8fafc; }
.winner { background: #ecfdf5; color: var(--green); font-weight: 800; }
.comp-winner { background: #ecfdf5 !important; color: var(--green); font-weight: 800; }

.price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.price-label {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-amount {
    color: var(--ink);
    font-size: 1.7rem;
    font-weight: 900;
}

.price-updated {
    color: var(--muted);
    font-size: 0.8rem;
}

.author-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #dbeafe;
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.site-footer {
    background: #101827;
    color: #fff;
    margin-top: 56px;
    padding: 42px 0 22px;
}

.footer-grid {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.footer-grid h4 { color: #fff; }
.footer-grid p, .footer-grid a, .footer-bottom {
    color: #aeb8c5;
    font-size: 0.88rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li { margin-bottom: 7px; }

.footer-bottom {
    width: min(1140px, calc(100% - 40px));
    margin: 26px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 900px) {
    h1 { font-size: 1.75rem; }
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 66px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 20px;
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.open { display: flex; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .hero-grid,
    .two-column,
    .review-layout,
    .review-masthead {
        grid-template-columns: 1fr;
    }
    .trust-strip,
    .process-grid,
    .panel-meta,
    .category-grid,
    .editorial-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-width: 1120px) {
    .header-inner {
        min-height: 76px;
        align-items: flex-start;
        padding: 14px 0 10px;
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: 4px;
        max-width: 760px;
    }
    .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 30px;
    }
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .container, .header-inner, .footer-grid, .footer-bottom {
        width: min(100% - 28px, 1140px);
    }
    .hero { padding-top: 36px; }
    .trust-strip,
    .process-grid,
    .panel-meta,
    .category-grid,
    .editorial-band,
    .pros-cons {
        grid-template-columns: 1fr;
    }
    .section-header,
    .price-box,
    .affiliate-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .review-content,
    .review-sidebar,
    .product-hero-inner,
    .product-hero,
    .product-visual,
    .buy-box {
        min-width: 0;
        max-width: 100%;
    }
    .review-content {
        overflow-x: hidden;
    }
    .comparison-table {
        display: block;
        overflow-x: auto;
        max-width: 100%;
        white-space: nowrap;
    }
    .product-hero {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
