/*
    Storefront readability upgrade
    Product cards were designed too compact for desktop viewing.
*/

.product-card-body {
    padding: 20px;
}

/* Smart Product Intelligence + Auto Compare Engine */
.smart-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.smart-product-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 13px;
    border: 1px solid rgba(207, 255, 60, .28);
    border-radius: 999px;
    color: #dfff76;
    background: rgba(207, 255, 60, .11);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: -.01em;
}

.smart-product-tag.camera,
.smart-product-tag.performance,
.smart-product-tag.display {
    color: #dbe7ff;
    border-color: rgba(108, 92, 231, .38);
    background: rgba(108, 92, 231, .18);
}

.smart-product-tag.value,
.smart-product-tag.battery,
.smart-product-tag.travel,
.smart-product-tag.work,
.smart-product-tag.trust {
    color: #ddffb1;
    border-color: rgba(0, 184, 148, .35);
    background: rgba(0, 184, 148, .16);
}

.smart-intel-card {
    position: relative;
    overflow: hidden;
}

.smart-intel-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--lime), #ff6b5f);
}

.smart-intel-summary {
    margin: -4px 0 22px;
    color: #48566b;
    font-size: 16px;
    line-height: 1.75;
}

.smart-intel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.smart-intel-box {
    padding: 20px;
    border-radius: 18px;
    border: 1px solid #e4e9f2;
}

.smart-intel-box.buy {
    background: linear-gradient(135deg, rgba(0, 184, 148, .10), rgba(207, 255, 60, .11));
}

.smart-intel-box.skip {
    background: linear-gradient(135deg, rgba(255, 107, 95, .10), rgba(255, 244, 236, .88));
}

.smart-intel-box h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 18px;
}

.smart-intel-box h3 span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background: var(--ink);
}

.smart-intel-box p {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 8px;
    margin: 0 0 11px;
    color: #344157;
    font-size: 15px;
    line-height: 1.55;
}

.smart-intel-box p:last-child {
    margin-bottom: 0;
}

.smart-intel-box i {
    color: #00a884;
    font-style: normal;
    font-weight: 900;
}

.smart-intel-box.skip i {
    color: #ff6b5f;
}

.smart-intel-meter {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #edf0f5;
    color: #66738a;
    font-size: 14px;
    font-weight: 800;
}

.smart-intel-meter i {
    overflow: hidden;
    height: 10px;
    border-radius: 999px;
    background: #edf1f7;
}

.smart-intel-meter em {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue), var(--lime));
}

.auto-compare-panel,
.smart-product-summary-grid {
    margin: 22px 0;
}

.auto-compare-panel {
    padding: 24px;
    border: 1px solid #dfe5ef;
    border-radius: 24px;
    background: white;
    box-shadow: 0 18px 44px rgba(15, 23, 42, .08);
}

.auto-compare-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.auto-compare-head h2 {
    margin: 7px 0 0;
    max-width: 720px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.04em;
}

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

.auto-factor-card {
    min-height: 154px;
    padding: 17px;
    border: 1px solid #e5eaf2;
    border-radius: 18px;
    background: linear-gradient(180deg, #fff, #f8faff);
}

.auto-factor-card small {
    display: block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auto-factor-card strong {
    display: block;
    margin-top: 8px;
    color: var(--ink);
    font-size: 17px;
    line-height: 1.25;
}

.auto-factor-card span {
    display: inline-flex;
    margin-top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #082019;
    background: var(--lime);
    font-size: 12px;
    font-weight: 900;
}

.auto-factor-card p {
    margin: 10px 0 0;
    color: #657188;
    font-size: 13px;
    line-height: 1.45;
}

.smart-product-summary-grid {
    display: grid;
    grid-template-columns: repeat(var(--count, 2), minmax(0, 1fr));
    gap: 16px;
}

.smart-product-summary {
    padding: 20px;
    border: 1px solid #dfe5ef;
    border-radius: 22px;
    background: #fff;
}

.smart-product-summary > span {
    color: #69768d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.smart-product-summary h3 {
    margin: 7px 0 12px;
    color: var(--ink);
    font-size: 20px;
    letter-spacing: -.04em;
}

.smart-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.smart-mini-tags b {
    padding: 6px 9px;
    border-radius: 999px;
    color: #243046;
    background: #f0f4fa;
    font-size: 12px;
}

.smart-product-summary p {
    margin: 8px 0 0;
    color: #4d5a70;
    font-size: 14px;
    line-height: 1.5;
}

[data-theme-resolved="dark"] .smart-intel-card,
[data-theme-resolved="dark"] .auto-compare-panel,
[data-theme-resolved="dark"] .smart-product-summary,
[data-theme-resolved="dark"] .auto-factor-card {
    border-color: rgba(148, 163, 184, .22);
    background: #121c2f;
}

[data-theme-resolved="dark"] .smart-intel-summary,
[data-theme-resolved="dark"] .smart-intel-box p,
[data-theme-resolved="dark"] .auto-factor-card p,
[data-theme-resolved="dark"] .smart-product-summary p {
    color: #b7c2d6;
}

[data-theme-resolved="dark"] .smart-intel-box,
[data-theme-resolved="dark"] .smart-mini-tags b {
    border-color: rgba(148, 163, 184, .18);
    background: rgba(255, 255, 255, .05);
}

@media (max-width: 900px) {
    .smart-intel-grid,
    .auto-factor-grid,
    .smart-product-summary-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    border-color: #e3e8ef;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .09);
}

.product-card:hover {
    border-color: #d6dde7;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .15);
}

.product-meta {
    font-size: 12px;
    letter-spacing: .05em;
}

.product-meta .rating {
    white-space: nowrap;
}

.product-meta .rating small {
    font-size: 12px;
}

.product-card h3 {
    min-height: 48px;
    margin: 11px 0 7px;
    font-size: 19px;
    line-height: 1.28;
    letter-spacing: -.45px;
}

.product-card-body > p {
    min-height: 42px;
    font-size: 13px;
    line-height: 1.62;
}

.mini-specs {
    gap: 7px;
    min-height: 54px;
    margin-top: 14px;
}

.mini-specs span {
    padding: 7px 10px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
}

.product-card-footer {
    gap: 12px;
    margin-top: 17px;
    padding-top: 16px;
}

.price strong {
    font-size: 22px;
    letter-spacing: -.6px;
}

.price del {
    margin-top: 3px;
    font-size: 12px;
}

.deal-inline {
    font-size: 12px;
}

.compare-check {
    gap: 7px;
    font-size: 12px;
}

.compare-check span {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.compare-check.active span::after {
    inset: -1px 0 0;
    font-size: 12px;
}

.badge {
    padding: 7px 10px;
    font-size: 12px;
}

.icon-button {
    width: 36px;
    height: 36px;
}

.icon-button svg {
    width: 18px;
}

/* Homepage spacing polish */
.category-section {
    padding-top: 56px;
    padding-bottom: 34px;
}

.category-section .section-heading {
    margin-bottom: 24px;
}

.category-card {
    min-height: 96px;
    padding: 14px 16px;
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.category-icon svg {
    width: 30px;
}

.products-section {
    padding-top: 34px;
}

/* Site-wide readable scale and tighter vertical rhythm */
body {
    font-size: 16px;
}

.section {
    padding-top: 62px;
    padding-bottom: 62px;
}

.section-heading {
    margin-bottom: 26px;
}

.eyebrow {
    font-size: 12px;
}

.desktop-nav a,
.nav-search input {
    font-size: 14px;
}

.arrow-link,
.btn {
    font-size: 13px;
}

/* Frontend typography floor: avoid legacy 8px-11px text across public pages */
.announcement,
.hero-kicker,
.trending-searches,
.browser-alert-prompt span,
.trust-row span,
.category-copy small,
.listing-toolbar,
.listing-toolbar select,
.pagination-wrap nav > div:last-child,
.compare-copy li,
.empty-state p {
    font-size: 13px;
    line-height: 1.55;
}

.tiny-label,
.guide-tag,
.managed-ad-label,
.verdict-badge,
.comparison-group-title,
.collection-card > span,
.collection-rules span,
.filter-head a {
    font-size: 12px;
}

.nav-search kbd,
.compare-pill b,
.hero-kicker i,
.compare-copy li i,
.versus,
.winner-chip,
.circle-arrow,
.ac-unit b {
    font-size: 12px;
}

.compare-pill,
.tab-pills button,
.listing-search button,
.filter-group h3,
.filter-group a,
.mobile-filter-button,
.text-button,
.guide-content a,
.compare-mini-card > span,
.compare-mini-card > small,
.compare-label-spacer span,
.compare-product-head > span,
.compare-score span,
.add-product-card a,
.comparison-verdict p,
.comparison-row > div,
.compare-dock strong,
.compare-dock > div:first-child > span {
    font-size: 13px;
    line-height: 1.5;
}

.btn-small {
    min-height: 42px;
    font-size: 13px;
}

.featured-guide-card small,
.guide-list-card span,
.guide-list-card p,
.guide-content p,
.collection-hero-card span,
.collection-hero-card small,
.collection-card p,
.collection-preview-products b,
.collection-preview-products small,
.collection-side-panel p,
.related-collection-links a,
.collection-aside-card a,
.detail-actions .btn small,
.review-empty,
.review-success,
.review-error,
.user-review small,
.review-form small {
    font-size: 13px;
    line-height: 1.55;
}

.guide-content p,
.collection-card p,
.collection-side-panel p {
    font-size: 14px;
}

.listing-search input,
.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.review-form input,
.review-form select,
.review-form textarea,
.price-alert-card input {
    font-size: 14px;
}

.contact-form label span,
.review-form label span,
.price-alert-card label span {
    font-size: 12px;
    line-height: 1.4;
}

/* Footer readability */
.site-footer {
    padding-top: 56px;
}

.footer-about p {
    max-width: 390px;
    font-size: 15px;
    line-height: 1.72;
    color: #a7b2c4;
}

.footer-grid {
    gap: 54px;
}

.footer-grid h3 {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.3;
    letter-spacing: -.1px;
}

.footer-grid > div:not(:first-child) {
    gap: 13px;
}

.footer-grid > div:not(:first-child) a {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
    color: #aeb9ca;
}

.footer-social-links a {
    font-size: 13px;
}

.footer-bottom {
    margin-top: 42px;
    font-size: 12px;
    line-height: 1.55;
    color: #8290a5;
}

.footer-bottom a {
    color: #aab5c7;
}

/* Product detail readability */
.product-detail-hero {
    padding-top: 24px;
    padding-bottom: 40px;
}

.product-brand {
    font-size: 12px;
}

.detail-copy h1 {
    font-size: clamp(40px, 4vw, 52px);
}

.detail-tagline {
    margin-bottom: 13px;
    font-size: 16px;
}

.detail-rating-row {
    gap: 14px;
    font-size: 12px;
}

.rating-box {
    font-size: 12px;
}

.expert-score {
    margin: 16px 0;
    padding: 12px 14px;
}

.expert-score b,
.expert-score span {
    font-size: 12px;
}

.detail-highlights {
    gap: 9px;
}

.detail-highlights div {
    padding: 10px 12px;
}

.detail-highlights span {
    font-size: 12px;
}

.detail-price {
    margin-top: 16px;
}

.detail-price > span,
.affiliate-note {
    font-size: 12px;
}

.buy-intel-card {
    display: grid;
    gap: 8px;
    margin-top: 15px;
    padding: 14px 16px;
    border: 1px solid rgba(216, 255, 95, .28);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(216, 255, 95, .13), rgba(118, 232, 195, .08));
}

.buy-intel-card > span {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.buy-intel-card div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.buy-intel-card b {
    color: #f8fafc;
    font-size: 15px;
    line-height: 1.35;
}

.buy-intel-card strong {
    color: var(--lime);
    font-size: 22px;
    white-space: nowrap;
}

.buy-intel-card small {
    color: #aeb8c8;
    font-size: 13px;
    line-height: 1.5;
}

.detail-actions {
    margin-top: 14px;
}

.detail-subnav .container {
    gap: 28px;
}

.detail-subnav a {
    padding: 14px 0 12px;
    font-size: 13px;
}

.detail-body {
    padding-top: 42px;
    padding-bottom: 44px;
}

.detail-body-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
}

.content-card,
.aside-card {
    margin-bottom: 16px;
    padding: 24px;
}

.content-card-head {
    margin-bottom: 16px;
}

.content-card-head h2 {
    font-size: 27px;
}

.verdict-text {
    font-size: 15px;
    line-height: 1.65;
}

.pros-cons {
    gap: 12px;
    margin-top: 17px;
}

.pros-cons > div {
    padding: 16px;
}

.pros-cons h3 {
    margin-bottom: 10px;
    font-size: 14px;
}

.pros-cons p {
    margin: 7px 0;
    font-size: 12px;
    line-height: 1.45;
}

.spec-accordion summary {
    padding: 13px 3px;
    font-size: 14px;
}

.spec-table > div {
    min-height: 38px;
    font-size: 13px;
}

.spec-table span,
.spec-table strong {
    padding-right: 14px;
    padding-left: 14px;
}

.aside-card {
    padding: 20px;
}

.aside-card h3 {
    margin-bottom: 13px;
    font-size: 22px;
    line-height: 1.18;
}

.best-for {
    padding: 10px 0;
}

.best-for b {
    font-size: 14px;
    line-height: 1.4;
}

.best-for small,
.share-card > span {
    font-size: 12px;
    line-height: 1.45;
}

.share-card b {
    font-size: 15px;
}

.share-card button {
    font-size: 13px;
}

.aside-card .eyebrow {
    font-size: 12px;
    letter-spacing: .14em;
}

.collection-aside-card a,
.related-collection-links a {
    padding: 12px 0;
    font-size: 14px;
}

.price-history-chart {
    gap: 12px;
    margin-top: 14px;
}

.price-history-row {
    grid-template-columns: 96px minmax(80px, 1fr) auto;
    gap: 7px 10px;
}

.price-history-row span {
    font-size: 13px;
    line-height: 1.25;
}

.price-history-row b {
    font-size: 14px;
}

.price-history-row small {
    margin-top: -3px;
    font-size: 12px;
    line-height: 1.35;
}

.price-alert-card {
    gap: 13px;
}

.price-alert-card input {
    min-height: 46px;
    padding: 12px 14px;
}

.price-alert-card small {
    font-size: 12px;
    line-height: 1.55;
}

.seller-card {
    background: linear-gradient(180deg, #fff, #fbfcff);
}

.seller-offer-list {
    display: grid;
    gap: 10px;
}

.seller-offer-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e7eaf0;
    border-radius: 13px;
    background: #f8fafc;
    transition: .2s;
}

.seller-offer-list a:hover {
    border-color: #cfd6e4;
    transform: translateY(-1px);
}

.seller-offer-list a.best {
    border-color: rgba(118, 232, 195, .55);
    background: #eefbf7;
}

.seller-offer-list span {
    display: grid;
    gap: 3px;
}

.seller-offer-list b {
    color: var(--ink);
    font-size: 14px;
}

.seller-offer-list small {
    color: #7c8797;
    font-size: 12px;
    line-height: 1.35;
}

.seller-offer-list strong {
    color: #0f172a;
    font-size: 15px;
    white-space: nowrap;
}

.mobile-buy-bar {
    display: none;
}

.score-ring small {
    font-size: 11px;
}

.user-review b {
    font-size: 14px;
}

.user-review span {
    font-size: 12px;
}

.user-review p {
    font-size: 14px;
}

.product-reviews-section {
    padding-top: 42px;
    padding-bottom: 48px;
}

/* Smart compare and product trust layer */
.trust-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 8px auto 0;
    padding: 8px 11px;
    color: #0f172a;
    border-radius: 999px;
    background: #eefbf7;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
}

.trust-pill b {
    font-size: 16px;
}

.trust-pill span {
    color: #42506a;
    font-size: 12px;
}

.trust-pill.excellent,
.trust-pill.strong {
    background: linear-gradient(135deg, #d8ff5f, #76e8c3);
}

.trust-pill.attention {
    color: #7c2d12;
    background: #ffedd5;
}

.smart-compare-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.2fr;
    gap: 18px;
    margin: 24px 0 18px;
    padding: 22px;
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(216, 255, 95, .18), transparent 34%),
        linear-gradient(135deg, #0f172a, #1d2a44);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.smart-compare-summary {
    display: grid;
    align-content: center;
    gap: 10px;
}

.smart-compare-summary span {
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.smart-compare-summary h2 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.06;
    letter-spacing: -.8px;
}

.smart-compare-summary p {
    max-width: 640px;
    margin: 0;
    color: #c7d2e5;
    font-size: 15px;
    line-height: 1.6;
}

.smart-compare-strengths {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.smart-compare-strengths div {
    display: grid;
    gap: 5px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
}

.smart-compare-strengths small {
    color: #aeb8c8;
    font-size: 12px;
}

.smart-compare-strengths b {
    color: white;
    font-size: 15px;
    line-height: 1.25;
}

.smart-compare-strengths span {
    color: var(--lime);
    font-size: 13px;
    font-weight: 900;
}

.comparison-trust-row strong {
    color: #0f172a;
    font-size: 17px;
}

.comparison-trust-row small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 13px;
}

.product-trust-card {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(91, 105, 255, .12), transparent 42%),
        linear-gradient(180deg, #fff, #f8fbff);
}

.product-trust-head {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 14px;
}

.trust-meter {
    width: 80px;
    height: 80px;
    display: grid;
    place-items: center;
    align-content: center;
    color: #0f172a;
    border-radius: 999px;
    background:
        radial-gradient(circle, #fff 58%, transparent 59%),
        conic-gradient(var(--lime) calc(var(--trust) * 1%), #e6ebf3 0);
    box-shadow: inset 0 0 0 1px #dfe6f1;
}

.trust-meter strong {
    font-size: 24px;
    line-height: 1;
}

.trust-meter small {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.product-trust-head h3 {
    margin: 0 0 5px;
}

.product-trust-head p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.trust-component-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.trust-component-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    align-items: center;
}

.trust-component-list span {
    color: #475569;
    font-size: 13px;
    font-weight: 700;
}

.trust-component-list b {
    color: #0f172a;
    font-size: 13px;
}

.trust-component-list i {
    grid-column: 1 / -1;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf1f7;
}

.trust-component-list i::before {
    content: "";
    width: var(--bar);
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, #5b69ff, #d8ff5f);
}

.affiliate-optimizer-card {
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(216, 255, 95, .16), transparent 42%),
        linear-gradient(180deg, #fff, #f8fbff);
}

.affiliate-optimizer-head {
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 13px;
}

.affiliate-score {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    align-content: center;
    color: #0f172a;
    border-radius: 999px;
    background:
        radial-gradient(circle, #fff 58%, transparent 59%),
        conic-gradient(var(--lime) calc(var(--affiliate-score) * 1%), #e6ebf3 0);
    box-shadow: inset 0 0 0 1px #dfe6f1;
}

.affiliate-score strong {
    font-size: 22px;
    line-height: 1;
}

.affiliate-score small {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
}

.affiliate-optimizer-head h3 {
    margin: 0 0 5px;
}

.affiliate-optimizer-head p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
}

.affiliate-signal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 15px;
}

.affiliate-signal-list span {
    padding: 7px 9px;
    color: #0f172a;
    border-radius: 999px;
    background: #eef2ff;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

@media (max-width: 700px) {
    .section {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .category-section {
        padding-top: 42px;
        padding-bottom: 28px;
    }

    .products-section {
        padding-top: 30px;
    }

    .product-card h3 {
        min-height: auto;
        font-size: 20px;
    }

    .product-card-body > p {
        min-height: auto;
        font-size: 14px;
    }

    .mini-specs span,
    .compare-check {
        font-size: 13px;
    }

    .announcement,
    .hero-kicker,
    .trending-searches,
    .listing-toolbar,
    .listing-toolbar select,
    .filter-group a,
    .comparison-row > div,
    .featured-guide-card small,
    .guide-list-card p,
    .collection-preview-products b,
    .collection-aside-card a,
    .related-collection-links a {
        font-size: 14px;
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-about p,
    .footer-grid > div:not(:first-child) a {
        font-size: 14px;
    }

    .footer-grid h3 {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .product-detail-hero {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .detail-copy h1 {
        font-size: 36px;
    }

    .buy-intel-card {
        padding: 14px;
    }

    .buy-intel-card div {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .detail-subnav a {
        padding: 12px 0 10px;
        font-size: 12px;
    }

    .detail-body {
        padding-top: 28px;
        padding-bottom: 30px;
    }

    .content-card,
    .aside-card {
        margin-bottom: 14px;
        padding: 18px;
    }

    .aside-card h3 {
        font-size: 21px;
    }

    .best-for b,
    .price-history-row b {
        font-size: 14px;
    }

    .price-history-row {
        grid-template-columns: 88px minmax(70px, 1fr) auto;
    }

    .price-alert-card input,
    .review-form input,
    .review-form select,
    .review-form textarea {
        font-size: 15px;
    }

    .seller-offer-list b,
    .seller-offer-list strong {
        font-size: 15px;
    }

    .seller-offer-list small {
        font-size: 13px;
    }

    .mobile-buy-bar {
        position: fixed;
        z-index: 220;
        right: 12px;
        bottom: 12px;
        left: 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 10px;
        padding: 12px;
        color: white;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 18px;
        background: rgba(15, 23, 42, .96);
        box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
        backdrop-filter: blur(14px);
    }

    .mobile-buy-bar div {
        display: grid;
        gap: 1px;
        min-width: 0;
    }

    .mobile-buy-bar span,
    .mobile-buy-bar small {
        color: #aeb8c8;
        font-size: 11px;
        line-height: 1.25;
    }

    .mobile-buy-bar b {
        font-size: 17px;
        line-height: 1.1;
    }

    .mobile-buy-bar a,
    .mobile-buy-bar button {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 13px;
        color: var(--ink);
        border: 0;
        border-radius: 12px;
        background: var(--lime);
        font-size: 13px;
        font-weight: 900;
        white-space: nowrap;
    }

    .mobile-buy-bar button {
        color: white;
        border: 1px solid #3a465c;
        background: transparent;
    }

    .content-card-head h2 {
        font-size: 23px;
    }

    .verdict-text {
        font-size: 14px;
    }

    .spec-accordion summary {
        font-size: 13px;
    }

    .spec-table > div {
        grid-template-columns: 44% 56%;
        min-height: 42px;
        font-size: 12px;
    }

    .smart-compare-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .smart-compare-strengths {
        grid-template-columns: 1fr;
    }

    .product-trust-head {
        grid-template-columns: 76px 1fr;
    }

    .affiliate-optimizer-head {
        grid-template-columns: 72px 1fr;
    }

    .trust-meter {
        width: 72px;
        height: 72px;
    }
}

/* Mobile spacing control v45 */
.hero-grid-empty,
.compare-feature-grid-empty {
    grid-template-columns: minmax(0, 760px);
    justify-content: start;
    min-height: auto;
}

.hero-grid-empty .hero-copy,
.compare-feature-grid-empty .compare-copy {
    max-width: 720px;
}

.compare-feature-grid-empty {
    padding-top: 72px;
    padding-bottom: 72px;
}

@media (max-width: 700px) {
    .hero-grid {
        gap: 22px;
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .hero-grid-empty {
        padding-bottom: 32px;
    }

    .hero h1 {
        margin-top: 14px;
        margin-bottom: 13px;
        font-size: clamp(38px, 12vw, 49px);
        line-height: 1.02;
    }

    .hero-search {
        margin-top: 20px;
    }

    .trending-searches {
        margin-top: 14px;
    }

    .trust-row {
        margin-top: 22px;
    }

    .hero-showcase {
        height: 300px;
        margin-top: 0;
        transform: scale(.82);
        transform-origin: top center;
    }

    .hero-ticker {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .section {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .category-section {
        padding-top: 36px;
        padding-bottom: 26px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .compare-feature-grid,
    .compare-feature-grid-empty {
        gap: 20px;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .compare-copy h2 {
        margin-top: 10px;
        margin-bottom: 12px;
    }

    .compare-copy ul {
        margin-top: 18px;
        margin-bottom: 22px;
    }

    .compare-stage {
        height: 270px;
        margin-top: 0;
    }

    .guides-section {
        padding-top: 40px;
    }
}

@media (max-width: 420px) {
    .hero-grid {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .hero-showcase {
        height: 270px;
        transform: scale(.74);
    }

    .compare-feature-grid,
    .compare-feature-grid-empty {
        padding-top: 34px;
        padding-bottom: 34px;
    }

    .compare-stage {
        height: 250px;
    }
}

/* Frontend responsive and contrast audit v46 */
.btn-lime,
.hero-kicker i,
.compare-copy li i,
.versus,
.compare-pill b,
.hero-ticker {
    color: #07111f;
}

.newsletter-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: clamp(24px, 4vw, 48px);
}

.newsletter-card > div,
.newsletter-form,
.footer-grid > div {
    min-width: 0;
}

.newsletter-card h2 {
    max-width: 560px;
    overflow-wrap: anywhere;
}

.newsletter-form {
    width: 100%;
    max-width: 420px;
    justify-self: end;
}

.newsletter-form .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}

.newsletter-card .newsletter-message {
    grid-column: 1 / -1;
    margin: 0;
}

@media (max-width: 1050px) {
    .site-header .menu-toggle {
        display: block;
    }

    .site-header .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 13px;
        padding: 15px 20px 20px;
        border-top: 1px solid #e6e8eb;
    }
}

@media (max-width: 900px) {
    .newsletter-card {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
        gap: 24px;
        padding: 30px;
    }

    .newsletter-form {
        max-width: none;
        justify-self: stretch;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        gap: 34px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 520px) {
    .newsletter-card {
        padding: 24px 20px;
    }

    .newsletter-card h2 {
        font-size: 24px;
        line-height: 1.14;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .footer-about {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
    }
}

/* Devanagari hero typography guard v47 */
.hero-copy.is-devanagari h1 {
    font-family: "Noto Sans Devanagari", Inter, system-ui, sans-serif;
    line-height: 1.16;
    letter-spacing: -1.1px;
    word-break: normal;
    overflow-wrap: anywhere;
}

.hero-copy.is-devanagari h1 em {
    font-family: "Noto Sans Devanagari", Inter, system-ui, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: inherit;
}

.hero-copy.is-devanagari > p {
    margin-top: 4px;
    line-height: 1.78;
}

html[lang^="hi"] .hero h1,
html[lang^="hi"] .hero h1 em {
    font-family: "Noto Sans Devanagari", Inter, system-ui, sans-serif;
}

@media (max-width: 700px) {
    .hero-copy.is-devanagari h1 {
        margin-top: 16px;
        margin-bottom: 17px;
        font-size: clamp(34px, 10.8vw, 45px);
        line-height: 1.2;
        letter-spacing: -.7px;
    }

    .hero-copy.is-devanagari > p {
        font-size: 16px;
        line-height: 1.72;
    }
}

@media (max-width: 420px) {
    .hero-copy.is-devanagari h1 {
        font-size: clamp(31px, 10vw, 40px);
        line-height: 1.22;
    }
}

/* Mobile menu clarity and language switcher v48 */
@media (max-width: 780px) {
    .mobile-menu.open {
        gap: 14px;
    }

    .mobile-menu .mobile-theme-toggle {
        display: none !important;
    }

    .menu-toggle {
        border: 1px solid #d9e2ef;
    }

    .mobile-search {
        align-items: stretch;
    }

    .mobile-search input {
        min-width: 0;
        font-size: 16px;
        color: #07111f;
    }

    .mobile-search button {
        min-width: 94px;
        padding: 0 18px;
        color: #07111f;
        border: 1px solid rgba(7, 17, 31, .12);
        border-radius: 12px;
        background: var(--lime);
        font-weight: 900;
        white-space: nowrap;
    }

    .mobile-language-switcher {
        display: grid;
        gap: 10px;
        margin-top: 4px;
        padding-top: 14px;
        border-top: 1px solid #e3e8f0;
    }

    .mobile-language-switcher > span {
        color: #667085;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .mobile-language-switcher > div {
        display: flex;
        flex-wrap: wrap;
        gap: 9px;
    }

    .mobile-language-switcher a {
        display: inline-flex;
        align-items: center;
        min-height: 38px;
        padding: 0 14px;
        color: #111827;
        border: 1px solid #d9e2ef;
        border-radius: 999px;
        background: #ffffff;
        font-size: 13px;
        font-weight: 900;
    }

    .mobile-language-switcher a.active {
        color: #07111f;
        border-color: transparent;
        background: var(--lime);
    }
}

@media (max-width: 420px) {
    .mobile-search button {
        min-width: 82px;
        padding: 0 14px;
    }
}
