﻿.ag-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.ag-home {
    background: #f4f5f6;
}

.ag-hero {
    position: relative;
    min-height: 405px;
    background: linear-gradient(90deg, rgba(8,10,12,.92), rgba(8,10,12,.68) 42%, rgba(8,10,12,.20)), var(--ag-hero-bg, linear-gradient(120deg, #1d2328, #303840));
    background-size: cover;
    background-position: center;
    color: #fff;
}

.ag-hero__media {
    display: block;
    min-height: 405px;
}

.ag-hero__inner {
    min-height: 405px;
    display: flex;
    align-items: center;
}

.ag-hero__content {
    max-width: 520px;
    padding: 54px 0;
}

.ag-hero__eyebrow {
    color: var(--ag-red);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.ag-hero h2 {
    margin: 0;
    font-family: Montserrat, Roboto, Arial, sans-serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: .98;
    letter-spacing: -1.5px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-hero p {
    margin: 18px 0 0;
    color: #e4e8eb;
    font-size: 19px;
    line-height: 1.35;
}

.ag-hero__actions {
    margin-top: 24px;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}

.ag-hero__btn {
    min-width: 150px;
    height: 46px;
    padding: 0 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-hero__btn--primary {
    background: var(--ag-red);
    color: #fff;
}

.ag-hero__btn--ghost {
    border: 1px solid rgba(255,255,255,.42);
    color: #fff;
    background: rgba(255,255,255,.05);
}

.ag-service-strip {
    background: #181d21;
    color: #fff;
}

.ag-service-strip__grid {
    min-height: 76px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    border-left: 1px solid rgba(255,255,255,.08);
}

.ag-service {
    flex: 0 1 20%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    border-right: 1px solid rgba(255,255,255,.08);
}

.ag-service__icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #fff;
}

    .ag-service__icon img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

.ag-service strong {
    display: block;
    font-size: 12px;
    font-weight: 900;
}

.ag-service small {
    display: block;
    color: #b8c0c7;
    font-size: 11px;
    margin-top: 2px;
}

.ag-cats {
    padding: 24px 0 20px;
}

.ag-cats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.ag-cat {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 9px;
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    align-items: center;
    padding: 12px;
    transition: .18s ease;
}

    .ag-cat:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(15,23,42,.10);
    }

.ag-cat__media {
    width: 100%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ag-cat__media img {
        max-width: 100%;
        max-height: 68px;
        object-fit: contain;
    }

.ag-cat strong {
    color: #171c20;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.ag-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 17px;
}

    .ag-section-head h2 {
        margin: 0;
        color: #171c20;
        font-family: Montserrat, Roboto, Arial, sans-serif;
        font-size: 22px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .ag-section-head a {
        min-height: 32px;
        padding: 8px 14px;
        border: 1px solid #e1e5e9;
        border-radius: 999px;
        background: #fff;
        color: #4b5563;
        font-size: 12px;
        font-weight: 800;
    }

.ag-section-head--compact {
    margin-bottom: 12px;
}

.ag-brands {
    padding: 4px 0 24px;
}

.ag-brands__rail {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 9px;
    min-height: 70px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.ag-brand {
    height: 70px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #edf0f2;
    color: #171c20;
    font-weight: 900;
}

    .ag-brand:last-child {
        border-right: 0;
    }

    .ag-brand img {
        max-width: 100%;
        max-height: 38px;
        object-fit: contain;
        filter: grayscale(1);
        opacity: .82;
        transition: .18s ease;
    }

    .ag-brand:hover img {
        filter: none;
        opacity: 1;
    }

.ag-product-section {
    padding: 10px 0 24px;
}

.ag-section-head__right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ag-rail-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #e1e5e9;
    border-radius: 999px;
    background: #fff;
    color: #171c20;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

    .ag-rail-btn:hover {
        background: var(--ag-red);
        color: #fff;
        border-color: var(--ag-red);
    }

.ag-product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 56px) / 5);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

    .ag-product-rail::-webkit-scrollbar {
        height: 0;
    }

.ag-product-rail__item {
    scroll-snap-align: start;
    min-width: 0;
}

.ag-promo {
    padding: 0 0 28px;
}

.ag-promo__box {
    min-height: 184px;
    border-radius: 9px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(15,18,21,.92), rgba(15,18,21,.58), rgba(15,18,21,.20)), linear-gradient(120deg, #1f2933, #4b5563);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
    color: #fff;
}

.ag-promo__content h2 {
    margin: 0 0 10px;
    font-family: Montserrat, Roboto, Arial, sans-serif;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-promo__content p {
    max-width: 520px;
    margin: 0 0 15px;
    color: #d8dde2;
    line-height: 1.5;
}

.ag-promo__content span {
    display: inline-flex;
    height: 38px;
    align-items: center;
    padding: 0 18px;
    border-radius: 4px;
    background: var(--ag-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-promo__discount {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: var(--ag-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transform: rotate(-4deg);
}

    .ag-promo__discount strong {
        font-size: 28px;
        line-height: 1;
    }

    .ag-promo__discount small {
        font-size: 11px;
        font-weight: 900;
        text-align: center;
    }

.ag-fitment {
    padding: 0 0 24px;
}

.ag-fitment__box {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 9px;
    padding: 24px;
    text-align: center;
}

.ag-fitment__head h2 {
    margin: 0;
    font-family: Montserrat, Roboto, Arial, sans-serif;
    font-size: 21px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-fitment__head p {
    margin: 6px 0 18px;
    color: #6b7280;
    font-size: 13px;
}

.ag-fitment__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 160px;
    gap: 14px;
}

    .ag-fitment__form select,
    .ag-fitment__form button {
        height: 44px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 800;
    }

    .ag-fitment__form select {
        border: 1px solid #e1e5e9;
        background: #fff;
        color: #6b7280;
        padding: 0 12px;
    }

    .ag-fitment__form button {
        border: 0;
        background: var(--ag-red);
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
    }

.ag-advice {
    padding: 0 0 28px;
}

.ag-advice__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ag-advice-card {
    position: relative;
    min-height: 145px;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8ebef;
    display: grid;
    grid-template-columns: 42% 1fr;
    color: #171c20;
}

    .ag-advice-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        background: #e8ebef;
    }

    .ag-advice-card div {
        padding: 18px;
    }

.ag-advice-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: #fff;
    color: #171c20;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.ag-advice-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
}

.ag-advice-card p {
    margin: 0 0 10px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.45;
}

.ag-advice-card strong {
    color: var(--ag-red);
    font-size: 12px;
    text-transform: uppercase;
}

.ag-testimonials {
    background: #151a1e;
    color: #fff;
    padding: 36px 0 42px;
}

    .ag-testimonials h2 {
        margin: 0 0 22px;
        text-align: center;
        font-family: Montserrat, Roboto, Arial, sans-serif;
        font-size: 22px;
        font-weight: 900;
        text-transform: uppercase;
    }

.ag-testimonials__rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ag-review {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 22px;
}

.ag-review__stars {
    color: var(--ag-yellow);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ag-review p {
    margin: 0 0 16px;
    color: #d8dde2;
    line-height: 1.55;
    font-size: 13px;
}

.ag-review strong {
    display: block;
    color: #fff;
}

.ag-review small {
    color: #9aa2a9;
}

.ag-instagram {
    background: #fff;
    padding: 24px 0 28px;
}

.ag-instagram__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.ag-instagram__item {
    aspect-ratio: 1.35 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #e8ebef;
}

    .ag-instagram__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .18s ease;
    }

    .ag-instagram__item:hover img {
        transform: scale(1.05);
    }

@media (max-width: 1100px) {
    .ag-service {
        flex: 0 1 50%;
    }

    .ag-cats__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .ag-product-rail {
        grid-auto-columns: calc((100% - 42px) / 4);
    }

    .ag-fitment__form {
        grid-template-columns: repeat(2, 1fr);
    }

        .ag-fitment__form button {
            grid-column: 1 / -1;
        }
}

@media (max-width: 768px) {
    .ag-hero,
    .ag-hero__media,
    .ag-hero__inner {
        min-height: 360px;
    }

    .ag-service {
        flex: 0 1 100%;
    }

    .ag-cats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ag-brands__rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .ag-product-rail {
        grid-auto-columns: calc((100% - 14px) / 2);
    }

    .ag-promo__box {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .ag-fitment__form {
        grid-template-columns: 1fr;
    }

    .ag-advice__grid,
    .ag-testimonials__rail {
        grid-template-columns: 1fr;
    }

    .ag-instagram__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.ag-hero-slider {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #151a1e;
}

.ag-hero-slider__track {
    position: relative;
    min-height: 430px;
}

.ag-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

    .ag-hero-slide.is-active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

    .ag-hero-slide .ag-hero__media {
        display: block;
        min-height: 430px;
    }

    .ag-hero-slide .ag-hero__inner {
        min-height: 430px;
    }

.ag-hero-slide {
    background: linear-gradient(90deg, rgba(8,10,12,.92), rgba(8,10,12,.68) 42%, rgba(8,10,12,.20)), var(--ag-hero-bg, linear-gradient(120deg, #1d2328, #303840));
    background-size: cover;
    background-position: center;
}

.ag-hero-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #151a1e;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
}

    .ag-hero-slider__nav:hover {
        background: var(--ag-red);
        color: #fff;
    }

.ag-hero-slider__nav--prev {
    left: max(18px, calc((100vw - var(--ag-container)) / 2 + 12px));
}

.ag-hero-slider__nav--next {
    right: max(18px, calc((100vw - var(--ag-container)) / 2 + 12px));
}

.ag-hero-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

    .ag-hero-slider__dots button,
    .ag-mid-slider__dots button {
        width: 9px;
        height: 9px;
        border: 0;
        border-radius: 999px;
        background: rgba(255,255,255,.45);
        cursor: pointer;
    }

        .ag-hero-slider__dots button.is-active,
        .ag-mid-slider__dots button.is-active {
            width: 24px;
            background: var(--ag-red);
        }

.ag-mid-slider {
    padding: 0 0 28px;
}

.ag-mid-slider__viewport {
    position: relative;
    min-height: 220px;
    border-radius: 9px;
    overflow: hidden;
    background: #151a1e;
}

.ag-mid-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(15,18,21,.90), rgba(15,18,21,.56), rgba(15,18,21,.18)), var(--ag-mid-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

    .ag-mid-slide.is-active {
        opacity: 1;
        visibility: visible;
    }

.ag-mid-slide__content {
    max-width: 560px;
    padding: 34px 44px;
}

    .ag-mid-slide__content span {
        display: inline-flex;
        color: var(--ag-red);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .ag-mid-slide__content h2 {
        margin: 0;
        font-family: Montserrat, Roboto, Arial, sans-serif;
        font-size: 28px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .ag-mid-slide__content em {
        display: inline-flex;
        margin-top: 14px;
        height: 36px;
        align-items: center;
        padding: 0 16px;
        border-radius: 4px;
        background: var(--ag-red);
        color: #fff;
        font-size: 12px;
        font-weight: 900;
        font-style: normal;
        text-transform: uppercase;
    }

.ag-mid-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #151a1e;
    font-size: 25px;
    cursor: pointer;
    transform: translateY(-50%);
}

    .ag-mid-slider__nav:hover {
        background: var(--ag-red);
        color: #fff;
    }

.ag-mid-slider__nav--prev {
    left: 14px;
}

.ag-mid-slider__nav--next {
    right: 14px;
}

.ag-mid-slider__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}

.ag-duo-banners {
    padding: 0 0 28px;
}

.ag-duo-banners__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.ag-duo-banner {
    min-height: 210px;
    border-radius: 9px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(15,18,21,.88), rgba(15,18,21,.45), rgba(15,18,21,.08)), var(--ag-duo-bg);
    background-size: cover;
    background-position: center;
}

.ag-duo-banner__content {
    max-width: 420px;
    padding: 28px;
}

    .ag-duo-banner__content span {
        color: var(--ag-red);
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .ag-duo-banner__content h2 {
        margin: 8px 0 0;
        font-family: Montserrat, Roboto, Arial, sans-serif;
        font-size: 26px;
        line-height: 1.12;
        font-weight: 900;
        text-transform: uppercase;
    }

    .ag-duo-banner__content em {
        display: inline-flex;
        margin-top: 14px;
        height: 34px;
        align-items: center;
        padding: 0 14px;
        border-radius: 4px;
        background: #fff;
        color: #151a1e;
        font-size: 12px;
        font-weight: 900;
        font-style: normal;
        text-transform: uppercase;
    }

.ag-product-section--best {
    padding-bottom: 34px;
}

@media (max-width: 768px) {
    .ag-hero-slider,
    .ag-hero-slider__track,
    .ag-hero-slide .ag-hero__media,
    .ag-hero-slide .ag-hero__inner {
        min-height: 360px;
    }

    .ag-hero-slider__nav {
        display: none;
    }

    .ag-mid-slider__viewport {
        min-height: 190px;
    }

    .ag-mid-slide__content {
        padding: 28px;
    }

    .ag-duo-banners__grid {
        grid-template-columns: 1fr;
    }
}