/* ========
   AGC HOME
  =========*/

:root {
    --red: #de0c1b;
    --red-dark: #b80a16;
    --indigo: #30264b;
    --indigo-dark: #241c3a;
    --cream: #f7eac2;
    --ink: #101117;
    --bg: #f7f8fb;
    --line: #e8eaef;
    --muted: #4d5060;
    --faint: #7a7e8c;
    --font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Shared eyebrow with the Design-6 bullet, used across sections */
.agc-hero,
.agc-trending,
.agc-ts,
.agc-ranges,
.agc-welcome,
.agc-blog,
.agc-reviews,
.agc-faqs {
    font-family: var(--font-body);
}

.agc-trending .eyebrow,
.agc-ts .eyebrow,
.agc-ranges .eyebrow,
.agc-welcome .eyebrow,
.agc-blog .eyebrow,
.agc-reviews .eyebrow,
.agc-faqs .eyebrow {
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.agc-trending .eyebrow::before,
.agc-ts .eyebrow::before,
.agc-ranges .eyebrow::before,
.agc-welcome .eyebrow::before,
.agc-blog .eyebrow::before,
.agc-reviews .eyebrow::before,
.agc-faqs .eyebrow::before {
    content: "●";
    font-size: 8px;
    line-height: 1;
}

/* Shared headings */
.agc-trending h2,
.agc-ts .head h2,
.agc-ranges .head h2,
.agc-welcome h1,
.agc-welcome h2,
.agc-blog .head h2,
.agc-reviews .head h2,
.agc-faqs .head h2 {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--indigo);
    letter-spacing: -.02em;
    line-height: 1.12;
}

/* =================================================================
   HERO — catalog hero: red gradient main + light spec side panel
   ================================================================= */
.agc-hero {
    --red: #de0c1b;
    --indigo: #30264b;
    --indigo-dark: #241c3a;
    --soft: #6b6982;
    --faint: #9a98ad;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;

    width: 100%;
    max-width: 1920px;

    /* Desktop + tablet hero ratio */
    aspect-ratio: 1920 / 554;

    margin: 0 auto;

    font-family: var(--font-body);
    border-bottom: 1px solid var(--line);
}


.agc-hero * {
    box-sizing: border-box;
}


/* BOTH BANNERS */
.agc-hero .banner {
    position: relative;
    display: block;

    width: 100%;
    height: 100%;

    min-width: 0;
    min-height: 0;

    overflow: hidden;
    text-decoration: none;
}


/* IMAGES */
.agc-hero .bg {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}


/* PICTURE */
.agc-hero .banner picture {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    line-height: 0;

    z-index: 0;
}


.agc-hero .banner picture > .bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* MAIN */
.agc-hero .banner-main {
    width: 100%;
    height: 100%;
}


/* SIDE */
.agc-hero .banner-side {
    width: 100%;
    height: 100%;

    border-left: 1px solid var(--line);
}



/* ========================================
   MOBILE
   767px AND BELOW
======================================== */

@media (max-width: 767px) {

    .agc-hero {
        grid-template-columns: 1fr;
        aspect-ratio: auto;
        max-width: none;
    }

    .agc-hero .banner-main,
    .agc-hero .banner-side {
        width: 100%;
        height: auto;
        aspect-ratio: 440 / 306;
    }

    .agc-hero .banner-side {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

}
/* =================================================================
   TRENDING — Design-6 spec card (image left · body+specs right)
   ================================================================= */
.agc-trending {
    background: var(--bg);
    color: var(--ink);
    padding: 64px 0;
}

.agc-trending * {
    box-sizing: border-box;
}

.agc-trending .wrap {
    max-width: 1350px;
    margin: 0 auto;
}

/* card shell */
.agc-trending .grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(48, 38, 75, .06);
}

/* media side (your existing .card > .prod img markup still works) */
.agc-trending .card {
    background: #fff;
    border: 0;
    border-right: 1px solid var(--line);
    border-radius: 0;
    padding: 48px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}

.agc-trending .prod {
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f1f5, #dadce5);
    display: grid;
    place-items: center;
    color: #9a98ad;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.agc-trending .prod img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* body side */
.agc-trending .grid>div:not(.card) {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agc-trending h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 12px 0 14px;
}

.agc-trending p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 8px;
}

/* badge */
.agc-trending .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: #fef0f1;
    color: var(--red);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}

.agc-trending .badge::before {
    content: "●";
    font-size: 7px;
}

/* spec grid 2x2 */
.agc-trending .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 22px 0;
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.agc-trending .specs>div {
    padding: 14px 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.agc-trending .specs>div:nth-child(2n) {
    border-right: 0;
}

.agc-trending .specs>div:nth-last-child(-n+2) {
    border-bottom: 0;
}

.agc-trending .spec-lbl {
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--faint);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.agc-trending .spec-val {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
}

/* price + CTAs */
.agc-trending .price {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 900;
    color: var(--red);
    margin: 8px 0;
}

.agc-trending .price small {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 6px;
}

.agc-trending .cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.agc-trending .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 13.5px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    letter-spacing: .02em;
}

.agc-trending .btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.agc-trending .btn-line {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 13.5px;
    text-decoration: none;
    transition: .2s;
}

@media(max-width:860px) {
    .agc-trending {
        padding: 48px 0;
    }

    .agc-trending .grid {
        grid-template-columns: 1fr;
    }

    .agc-trending .card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 36px;
    }

    .agc-trending .grid>div:not(.card) {
        padding: 32px;
    }
}

/* =================================================================
   TOP SELLERS / NEW ARRIVALS
   ================================================================= */
.agc-ts {
    background: #fff;
    color: var(--ink);
    padding: 60px 0;
}

.agc-ts.alt {
    background: var(--bg);
}

.agc-ts * {
    box-sizing: border-box;
}

.agc-ts .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-ts .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    gap: 16px;
    flex-wrap: wrap;
}

.agc-ts .head h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 8px 0 0;
}

.agc-ts .nav {
    display: flex;
    gap: 8px;
}

.agc-ts .nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: var(--indigo);
    transition: .18s;
    line-height: 1;
}

.agc-ts .nav button:hover {
    border-color: var(--red);
    color: var(--red);
}

/* scroll track */
.agc-ts .track {
    display: grid;
    grid-auto-flow: column;
    gap: 60px;
    grid-auto-columns: minmax(210px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: thin;
    scrollbar-color: #d6d6e0 var(--bg);
}

.agc-ts .track.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.agc-ts .track>* {
    width: 267px;
    margin: 0;
    float: none;
    scroll-snap-align: start;
}

.agc-ts .track img {
    -webkit-user-drag: none;
}

.agc-ts .track::-webkit-scrollbar {
    height: 6px;
}

.agc-ts .track::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 99px;
}

.agc-ts .track::-webkit-scrollbar-thumb {
    background: #d6d6e0;
    border-radius: 99px;
}

.agc-ts.alt .track::-webkit-scrollbar-track {
    background: #ededf2;
}

@media(max-width:860px) {

    .agc-ts {
        padding: 48px 0;
    }
}

@media(max-width:560px) {
    .agc-ts .track {
        gap: 33px;
        padding-bottom: 22px;
        scroll-padding-left: 18px;
    }

    .agc-ts .track>* {
        width: 240px;
        padding: 0px 10px
    }

    .agc-ts .track img {
        height: 150px;
        width: 100%;
        object-fit: contain;
    }
}

/* ===============
   SHOP TOP RANGES
   =============== */
.agc-ranges {
    background: #fff;
    color: var(--ink);
    padding: 72px 0;
}

.agc-ranges * {
    box-sizing: border-box;
}

.agc-ranges .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-ranges .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    max-width: none;
    margin: 0 0 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.agc-ranges .head h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 8px 0 0;
}

/* inline-svg icon sizing (shared by hero + list) */
.agc-ranges .ico {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* "View all categories" link (top-right of header) */
.agc-ranges .vall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    border: 1.5px solid var(--line);
    padding: 12px 22px;
    border-radius: 6px;
    transition: .2s;
    text-decoration: none;
}

.agc-ranges .vall .ico {
    width: 17px;
    height: 17px;
    transition: transform .2s;
}

.agc-ranges .vall:hover .ico {
    transform: translateX(3px);
}

/* layout: featured hero + quick list */
.agc-ranges-split .split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
}

/* FEATURED hero (left) */
.agc-ranges-split .hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    min-height: 460px;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(48, 38, 75, .08);
}

.agc-ranges-split .hero-ph {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a3301f, #3a1210);
}

/* shows until real img added */
.agc-ranges-split .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.agc-ranges-split .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0%), #30264b);
}

.agc-ranges-split .hero:hover .hero-img {
    transform: scale(1.04);
}

.agc-ranges-split .hero .c {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}

.agc-ranges-split .hero .ey {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
}

.agc-ranges-split .hero h3 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    margin: 8px 0;
    color: #fff;
}

.agc-ranges-split .hero p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    max-width: 360px;
    margin-bottom: 18px;
    line-height: 1.55;
}

.agc-ranges-split .hero .cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 6px;
    transition: background .2s;
}

.agc-ranges-split .hero .cta .ico {
    width: 16px;
    height: 16px;
}

.agc-ranges-split .hero:hover .cta {
    background: var(--red-dark);
}

/* QUICK LIST (right) */
.agc-ranges-split .list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.agc-ranges-split .row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 20px;
    flex: 1;
    min-height: 70px;
    border-bottom: 1px solid var(--line);
    transition: background .18s;
    text-decoration: none;
}

.agc-ranges-split .row:last-child {
    border-bottom: 0;
}

.agc-ranges-split .row:hover {
    background: var(--bg);
}

.agc-ranges-split .th {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--indigo);
    color: #fff;
    display: grid;
    place-items: center;
    transition: background .18s;
}

.agc-ranges-split .th .ico {
    width: 22px;
    height: 22px;
}

.agc-ranges-split .row:hover .th {
    background: var(--red);
}

.agc-ranges-split .rtx {
    flex: 1;
    min-width: 0;
}

.agc-ranges-split .rtx h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0px;
}

.agc-ranges-split .rtx .cnt {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--faint);
    margin-top: 2px;
    line-height: 100%;
}

.agc-ranges-split .ar {
    flex-shrink: 0;
    color: var(--faint);
    transition: .2s;
}

.agc-ranges-split .ar .ico {
    width: 18px;
    height: 18px;
}

.agc-ranges-split .row:hover .ar {
    color: var(--red);
    transform: translateX(3px);
}

@media(max-width:860px) {
    .agc-ranges-split .split {
        grid-template-columns: 1fr;
    }

    .agc-ranges-split .hero {
        min-height: 320px;
    }

    .agc-ranges-split .row {
        min-height: 64px;
    }
}

@media(max-width:560px) {
    .agc-ranges {
        padding: 48px 0;
    }

    .agc-ranges .wrap {
        padding: 0 18px;
    }

    .agc-ranges-split .hero .c {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

/* =================================================================
   WELCOME — trust ticks + 3-up stats strip
   ================================================================= */
.agc-welcome {
    background: #fff;
    color: var(--ink);
    padding: 72px 0;
}

.agc-welcome * {
    box-sizing: border-box;
}

.agc-welcome .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-welcome .grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.agc-welcome h1,
.agc-welcome h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 10px 0 16px;
}

.agc-welcome p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.agc-welcome p strong {
    color: var(--ink);
}

.agc-welcome a.inline {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.agc-welcome a.inline:hover {
    color: var(--red-dark);
}

/* trust list — Design-6 square ticks */
.agc-welcome .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
    margin: 24px 0 24px;
    padding: 0;
    list-style: none;
}

.agc-welcome .trust li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
}

.agc-welcome .trust .tick {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--indigo);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
}

/* stats strip */
.agc-welcome .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 0 26px;
}

.agc-welcome .stats>div {
    background: #fff;
    padding: 20px 14px;
    text-align: center;
}

.agc-welcome .stats .num {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.agc-welcome .stats .lbl {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 5px;
    font-weight: 500;
}

.agc-welcome .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.agc-welcome .btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.agc-welcome .media {
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(48, 38, 75, .08);
    position: relative;
    border: 1px solid var(--line);
}

.agc-welcome .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agc-welcome .media .badge {
    position: absolute;
    left: -14px;
    bottom: 24px;
    background: var(--indigo);
    color: #fff;
    padding: 14px 22px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(48, 38, 75, .25);
}

.agc-welcome .media .badge b {
    font-family: var(--font-display);
    display: block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.agc-welcome .media .badge span {
    font-family: var(--font-display);
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream);
    margin-top: 6px;
}

@media(max-width:860px) {
    .agc-welcome {
        padding: 48px 0;
    }

    .agc-welcome .grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .agc-welcome .media {
        aspect-ratio: 16/11;
        order: -1;
    }
}

@media(max-width:480px) {
    .agc-welcome .trust {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   BLOG — bordered rounded cards
   ================================================================= */
.agc-blog {
    background: var(--bg);
    color: var(--ink);
    padding: 72px 0;
}

.agc-blog * {
    box-sizing: border-box;
}

.agc-blog .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-blog .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.agc-blog .head h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 8px 0 0;
}

.agc-blog .head p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 14.5px;
    margin: 8px 0 0;
}

.agc-blog .nav {
    display: flex;
    gap: 8px;
}

.agc-blog .nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: var(--indigo);
    transition: .18s;
    line-height: 1;
}

.agc-blog .nav button:hover {
    border-color: var(--red);
    color: var(--red);
}

.agc-blog .track {
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
    grid-auto-columns: minmax(300px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: thin;
    scrollbar-color: #d6d6e0 var(--bg);
}

.agc-blog .track.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.agc-blog .track>* {
    scroll-snap-align: start;
}

.agc-blog .track::-webkit-scrollbar {
    height: 6px;
}

.agc-blog .track::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 99px;
}

.agc-blog .track::-webkit-scrollbar-thumb {
    background: #d6d6e0;
    border-radius: 99px;
}

.agc-blog .card {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    padding: 0 !important;
}

.agc-blog .card:hover {
    box-shadow: 0 12px 28px rgba(16, 17, 23, .10);
    transform: translateY(-3px);
}

.agc-blog .card .thumb {
    aspect-ratio: 16/10;
    background-color: #e9eaf0;
    position: relative;
    overflow: hidden;
    transition: transform .5s ease;
}

.agc-blog .card:hover .thumb {
    transform: scale(1.03);
}

.agc-blog .card .body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.agc-blog .card .date {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--faint);
    line-height: 1;
}

.agc-blog .card .body h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--indigo);
    margin: 0;
    line-height: 1.32;
}

.agc-blog .card .body p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.agc-blog .card .read {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f1f5;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.agc-blog .card .read i {
    transition: transform .2s ease;
    font-style: normal;
}

.agc-blog .card:hover .read i {
    transform: translateX(4px);
}

.agc-blog .view-all {
    text-align: center;
    margin-top: 32px;
}

.agc-blog .view-all a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 6px;
    border: 1.5px solid var(--line);
    font-size: 13.5px;
    text-decoration: none;
    transition: .2s;
}

@media(max-width:560px) {
    .agc-blog {
        padding: 48px 0;
    }

    .agc-blog .wrap {
        padding: 0 18px;
    }

    .agc-blog .track {
        grid-auto-columns: minmax(280px, 1fr);
    }
}

/* =================================================================
   REVIEWS — static cards in a scroll track (matches Top Sellers/Blog)
   Add up to 4 .card items; swap them weekly.
   ================================================================= */
.agc-reviews {
    background: #fff;
    color: var(--ink);
    padding: 72px 0;
}

.agc-reviews * {
    box-sizing: border-box;
}

.agc-reviews .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-reviews .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.agc-reviews .head h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 8px 0 0;
}

.agc-reviews .head p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 14.5px;
    margin: 8px 0 0;
}

.agc-reviews .nav {
    display: flex;
    gap: 8px;
}

.agc-reviews .nav button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1.5px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: var(--indigo);
    transition: .18s;
    line-height: 1;
}

.agc-reviews .nav button:hover {
    border-color: var(--red);
    color: var(--red);
}

/* scroll track — same mechanics as the product/blog tracks */
.agc-reviews .track {
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
    grid-auto-columns: minmax(300px, 1fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    scrollbar-width: thin;
    scrollbar-color: #d6d6e0 var(--bg);
}

.agc-reviews .track.grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.agc-reviews .track>* {
    scroll-snap-align: start;
}

.agc-reviews .track::-webkit-scrollbar {
    height: 6px;
}

.agc-reviews .track::-webkit-scrollbar-track {
    background: var(--bg);
    border-radius: 99px;
}

.agc-reviews .track::-webkit-scrollbar-thumb {
    background: #d6d6e0;
    border-radius: 99px;
}

/* When 4 or fewer cards, let them fill the row instead of scrolling */
.agc-reviews .track.fit {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-columns: auto;
}

/* review card */
.agc-reviews .card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}

.agc-reviews .card:hover {
    box-shadow: 0 12px 28px rgba(16, 17, 23, .10);
    transform: translateY(-3px);
}

.agc-reviews .card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.agc-reviews .card .stars {
    color: #f0a818;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.agc-reviews .card .verified {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.agc-reviews .card .quote {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--ink);
    margin: 0 0 18px;
}

.agc-reviews .card .who {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f0f1f5;
}

.agc-reviews .card .name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--indigo);
}

.agc-reviews .card .meta {
    font-family: var(--font-body);
    font-size: 11.5px;
    color: var(--faint);
    margin-top: 3px;
}

@media(max-width:920px) {
    .agc-reviews .track.fit {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:560px) {
    .agc-reviews {
        padding: 48px 0;
    }

    .agc-reviews .wrap {
        padding: 0 18px;
    }

    .agc-reviews .track {
        grid-auto-columns: minmax(260px, 1fr);
    }

    .agc-reviews .track.fit {
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-auto-columns: minmax(260px, 1fr);
    }
}

/* ======
   FAQ 
   ====== */
.agc-faqs {
    background: var(--bg);
    color: var(--ink);
    padding: 72px 0;
}

.agc-faqs * {
    box-sizing: border-box;
}

.agc-faqs .wrap {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 28px;
}

.agc-faqs .faqs-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.agc-faqs .head {
    max-width: none;
    margin: 0;
    text-align: left;
    position: sticky;
    top: 24px;
}

.agc-faqs .head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 8px 0 0;
}

.agc-faqs .head p {
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 14px 0 0;
    max-width: 380px;
}

.agc-faqs .head .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    padding: 13px 26px;
    border-radius: 6px;
    font-size: 13.5px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    margin-top: 22px;
}

.agc-faqs .head .btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.agc-faqs .list {
    max-width: none;
}

.agc-faqs .item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}

.agc-faqs .item:hover {
    border-color: #dcdce5;
}

.agc-faqs .item.open {
    border-color: #dcdce5;
    background: #fff;
}

.agc-faqs .q {
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.agc-faqs .q:hover {
    color: var(--indigo);
}

.agc-faqs .q .cv {
    font-size: 20px;
    color: var(--red);
    transition: transform .25s ease;
    flex-shrink: 0;
    line-height: 1;
    font-weight: 600;
}

.agc-faqs .item.open .cv {
    transform: rotate(45deg);
}

.agc-faqs .a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

.agc-faqs .a-inner {
    padding: 0 24px 22px;
    font-family: var(--font-body);
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
}

.agc-faqs .a-inner p {
    margin: 0 0 10px;
}

.agc-faqs .a-inner p:last-child {
    margin-bottom: 0;
}

.agc-faqs .a-inner a {
    color: var(--red);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media(max-width:860px) {
    .agc-faqs .faqs-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .agc-faqs .head {
        position: static;
    }

    .agc-faqs .head p {
        max-width: none;
    }
}

@media(max-width:560px) {
    .agc-faqs {
        padding: 48px 0;
    }

    .agc-faqs .wrap {
        padding: 0 18px;
    }

    .agc-faqs .q {
        padding: 18px 20px;
        font-size: 14px;
    }

    .agc-faqs .a-inner {
        padding: 0 20px 20px;
        font-size: 14px;
    }
}

/* --- added: View-All row default + button arrow icons + responsive rules --- */
.agc-ranges-split .row-all {
    display: none;
}

/* Task 4: SVG arrow inside primary buttons — matches the Featured-Split hero CTA */
.agc-hero .btn-light .ico,
.agc-trending .btn .ico,
.agc-welcome .btn .ico,
.agc-faqs .head .btn .ico {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Task 2: Blog & Reviews — hide scroll-nav on screens <=580px */
@media(max-width:580px) {

    .agc-blog .nav,
    .agc-reviews .nav {
        display: none;
    }
}

/* Task 1: Browse by Category — View-All becomes a list row at <=469px */
@media(max-width:469px) {
    .agc-ranges .head .vall {
        display: none;
    }

    .agc-ranges-split .row-all {
        display: flex;
    }
}

/* Respect reduced motion */
@media(prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* =================================================================
   PERFORMANCE — skip rendering of below-the-fold sections until the
   user scrolls near them.
   ================================================================= */
.agc-welcome {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
}

.agc-blog {
    content-visibility: auto;
    contain-intrinsic-size: auto 620px;
}

.agc-reviews {
    content-visibility: auto;
    contain-intrinsic-size: auto 440px;
}

.agc-faqs {
    content-visibility: auto;
    contain-intrinsic-size: auto 820px;
}