﻿@font-face {
    font-family: "Montserrat";
    src: url("/store/webfonts/Montserrat/Montserrat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("/store/webfonts/Montserrat/Montserrat-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("/store/webfonts/Roboto/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("/store/webfonts/Roboto/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --am-black: #0b0b0b;
    --am-dark: #111;
    --am-gray: #f2f2f2;
    --am-text: #222;
    --am-muted: #666;
    --am-red: #0F4C5C;
    --am-pill: #f7f7f7;
    --am-max: 1280px;
    --am-surface: #ffffff;
    --am-surface-2: #f6f7fb;
    --am-border: #e8e8ee;
    --am-shadow: 0 10px 30px rgba(0,0,0,.10);
    --am-belt-bg: var(--am-surface);
    --am-belt-fg: var(--am-text);
    --am-belt-hover: rgba(15,76,92,.10);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

    body.am-body {
        font: 16px/1.45 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
        color: var(--am-text);
        background: #fff;
    }

.am-container {
    max-width: var(--am-max);
    margin: auto;
    padding: 0 16px;
}

.am-topband {
    background: #fff;
    color: var(--am-dark);
    border-bottom: 1px solid #eee;
}

.am-topband__list {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    white-space: nowrap;
    overflow: auto;
}

.am-topband__brands {
    margin-left: auto;
    text-decoration: none;
    color: var(--am-dark);
    font-weight: 600;
}

.am-header__row {
    display: grid;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
}


.am-logo__text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .3px;
}

.am-search {
    display: grid;
    grid-template-columns: 160px 1fr 44px;
    background: var(--am-pill);
    border: 1px solid #e6e6e6;
    border-radius: 28px;
    overflow: hidden;
}

    .am-search select {
        appearance: none;
        border: 0;
        background: #fff;
        border-right: 1px solid #eee;
        padding: 10px 12px;
        border-top-left-radius: 28px;
        border-bottom-left-radius: 28px;
        font-size: 14px;
        cursor: pointer;
        transition: background .2s ease;
    }

        .am-search select:hover {
            background: #f9f9f9;
        }

        .am-search select:focus {
            outline: 2px solid var(--am-red);
            outline-offset: -2px;
        }

    .am-search input {
        border: 0;
        background: transparent;
        padding: 10px 12px;
        font-size: 15px;
    }

        .am-search input:focus {
            outline: none;
        }

.am-search__btn {
    border: 0;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    border-left: 1px solid #eee;
    transition: background .2s ease;
}

    .am-search__btn:hover {
        background: #f9f9f9;
    }

    .am-search__btn svg {
        width: 18px;
        height: 18px;
    }

.am-actions {
    display: flex;
    gap: 14px;
    align-items: center;
}

.am-act {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
}

    .am-act svg {
        width: 22px;
        height: 22px;
    }

.am-act__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--am-red);
    color: #fff;
    border-radius: 10px;
    padding: 0 6px;
    font-size: 12px;
    line-height: 18px;
}

.am-cart__meta {
    display: flex;
    flex-direction: column;
}

.am-cart__label {
    font-size: 11px;
    color: var(--am-muted);
    margin-top: -2px;
}

.am-cart__total {
    font-weight: 700;
}

.am-belt {
    background: var(--am-belt-bg);
    color: var(--am-belt-fg);
    border-top: 1px solid var(--am-border);
    border-bottom: 1px solid var(--am-border);
}

.am-belt__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.am-catbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--am-red);
    color: #fff;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(15,76,92,.18);
}

    .am-catbtn:hover {
        filter: brightness(1.03);
    }

.am-catbtn__ico {
    font-weight: 800;
    font-size: 18px;
}

.am-catbtn__chev {
    width: 16px;
    height: 16px;
    opacity: .8;
}

.am-belt__bullets {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    opacity: .9;
    overflow: auto;
    white-space: nowrap;
}

.am-belt__brands {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.am-main {
    padding: 16px;
}

.am-h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 0 12px;
}

.am-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.am-infostrip {
    margin: 24px 0 16px;
}

.am-info-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.am-info {
    display: grid;
    grid-template-columns: 64px 1fr;
    align-items: center;
    gap: 14px;
}

.am-info__icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--bg, #f3f4f6);
    display: grid;
    place-items: center;
}

    .am-info__icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

.am-info__title {
    font-weight: 800;
}

.am-info__sub {
    color: var(--am-muted);
    font-size: 14px;
    margin-top: 2px;
}

.am-paystrip {
    margin: 18px 0 10px;
}

.am-paystrip__row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.am-pay img {
    height: 28px;
    filter: grayscale(1) contrast(1.05);
    opacity: .85;
    transition: all .2s ease;
}

.am-pay:hover img {
    filter: none;
    opacity: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.am-spec {
    margin: 28px 0 24px;
}

.am-spec__title,
.am-popbrands__title {
    text-align: center;
    font-family: "Montserrat","Segoe UI",Roboto,Arial,sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #1f2937;
    margin: 0 0 14px;
}

.am-spec__subtitle,
.am-popbrands__subtitle {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7280;
    margin: 8px 0 14px;
}

.am-spec__tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: fit-content;
    max-width: 100%;
    margin: 12px auto 20px;
    padding: 8px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.am-spec__tab {
    position: relative;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 12px 18px;
    min-height: 44px;
    border-radius: 999px;
    font-family: "Montserrat","Segoe UI",Roboto,Arial,sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .01em;
    color: #64748b;
    outline: none;
    transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

    .am-spec__tab::after {
        content: "";
        position: absolute;
        left: 18px;
        right: 18px;
        bottom: 6px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--am-red), #155e75);
        opacity: 0;
        transform: scaleX(.45);
        transition: transform .24s ease, opacity .24s ease, background .24s ease;
    }

    .am-spec__tab:hover {
        color: #0f172a;
        background: rgba(255,255,255,.78);
        box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
        transform: translateY(-1px);
    }

        .am-spec__tab:hover::after {
            opacity: .72;
            transform: scaleX(1);
        }

    .am-spec__tab.is-active {
        color: #fff;
        background: linear-gradient(135deg, var(--am-red) 0%, #155e75 100%);
        box-shadow: 0 12px 28px rgba(15, 76, 92, .24);
    }

        .am-spec__tab.is-active::after {
            opacity: .95;
            transform: scaleX(1);
            background: rgba(255,255,255,.92);
        }

    .am-spec__tab:focus-visible {
        box-shadow: 0 0 0 3px rgba(15, 76, 92, .16);
    }

.am-spec__pane {
    display: none;
    position: relative;
    margin-top: 8px;
}

    .am-spec__pane.is-active {
        display: block;
    }

    .am-spec__pane.is-loading::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,.6));
    }

.am-spec__grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(5, 195px);
    justify-content: center;
}

    .am-spec__grid > .am-card {
        width: 100%;
        max-width: 195px;
        margin: 0 auto;
    }

@media (max-width: 1024px) {
    .am-header__row {
        grid-template-columns: 1fr;
    }

    .am-actions {
        justify-content: flex-end;
    }

    .am-logo {
        order: -1;
    }

    .am-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .am-info-list {
        grid-template-columns: repeat(2,1fr);
    }

    .am-spec__grid {
        grid-template-columns: repeat(3, 195px);
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .am-search {
        grid-template-columns: 100px 1fr 44px;
    }

    .am-belt__bullets {
        gap: 16px;
    }

    .am-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .am-spec__grid {
        grid-template-columns: repeat(2, 195px);
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .am-info-list {
        grid-template-columns: 1fr;
    }
}

.am-popbrands {
    margin: 28px 0 12px;
}

.am-popbrands__view {
    overflow: hidden;
}

.am-popbrands__track {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    will-change: transform;
}

.am-brand {
    display: grid;
    place-items: center;
    height: 72px;
    min-width: 200px;
    padding: 10px 16px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.04);
}

    .am-brand img {
        max-height: 40px;
        max-width: 180px;
        object-fit: contain;
        filter: grayscale(1) contrast(1.05);
        opacity: .9;
        transition: transform .2s ease, opacity .2s ease, filter .2s ease;
    }

    .am-brand:hover img {
        filter: none;
        opacity: 1;
        transform: scale(1.03);
    }

@media (max-width:1024px) {
    .am-brand {
        min-width: 180px;
        height: 68px;
    }

        .am-brand img {
            max-height: 36px;
            max-width: 160px;
        }
}

@media (max-width:640px) {
    .am-brand {
        min-width: 160px;
        height: 64px;
    }

        .am-brand img {
            max-height: 34px;
            max-width: 150px;
        }
}

.am-footer {
    background: #fff;
    border-top: 1px solid #eee;
    color: var(--am-text);
}

.am-foot__grid {
    display: grid;
    grid-template-columns: 320px 1fr 1fr 1fr 380px;
    gap: 28px;
    padding: 26px 0 18px;
}

.am-foot__col {
    min-width: 0;
}

.am-foot__logo img {
    height: 74px;
    display: block;
    margin-bottom: 6px;
}

.am-foot__title {
    font-weight: 800;
    margin: 10px 0 8px;
    letter-spacing: .2px;
}

.am-foot__contact {
    margin: 6px 0;
}

    .am-foot__contact dt {
        font-weight: 700;
        font-size: 14px;
        color: #111;
    }

    .am-foot__contact dd {
        margin: 0 0 10px;
        color: var(--am-text);
    }

.am-foot__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .am-foot__list a {
        text-decoration: none;
        color: var(--am-text);
    }

        .am-foot__list a:hover {
            text-decoration: underline;
        }

.am-foot__muted {
    color: var(--am-muted);
    margin: 0 0 10px;
}

.am-foot__form {
    position: relative;
    margin: 8px 0 16px;
}

    .am-foot__form input {
        width: 100%;
        padding: 12px 46px 12px 14px;
        border: 1px solid #e6e6e6;
        border-radius: 12px;
        outline: none;
        background: #fff;
    }

    .am-foot__form button {
        position: absolute;
        top: 50%;
        right: 6px;
        transform: translateY(-50%);
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 1px solid #e6e6e6;
        background: #fff;
        border-radius: 10px;
        cursor: pointer;
    }

.am-foot__socials {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

    .am-foot__socials a {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #e6e6e6;
        border-radius: 10px;
        color: #111;
        text-decoration: none;
        background: #fff;
        transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

        .am-foot__socials a:hover {
            border-color: #d0d0d0;
            color: var(--am-red);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(0,0,0,.06);
        }

    .am-foot__socials svg {
        width: 18px;
        height: 18px;
        display: block;
    }

.am-foot__bottom {
    border-top: 1px solid #eee;
    padding: 12px 0 18px;
    color: #666;
    font-size: 14px;
    text-align: center;
}

@media (max-width:1200px) {
    .am-foot__grid {
        grid-template-columns: 280px 1fr 1fr 1fr
    }

        .am-foot__grid > :last-child {
            grid-column: 1/-1
        }
}

@media (max-width:900px) {
    .am-foot__grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 22px
    }
}

@media (max-width:640px) {
    .am-foot__grid {
        grid-template-columns: 1fr
    }

    .am-foot__logo img {
        height: 64px
    }
}

.am-belt__nav {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.am-belt__link,
.am-belt__link:visited {
    color: var(--am-text);
    text-decoration: none;
    font-family: "Montserrat","Segoe UI",Roboto,Arial,sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .01em;
    line-height: 1.2;
    opacity: .96;
    padding: 9px 12px;
    border-radius: 999px;
    transition: background .18s ease, color .18s ease, opacity .18s ease, transform .18s ease;
}

    .am-belt__link:hover {
        opacity: 1;
        background: var(--am-belt-hover);
        color: var(--am-red);
        transform: translateY(-1px);
    }

    .am-belt__link.am-belt__brands,
    .am-belt__link.am-belt__brands:visited {
        background: transparent;
        color: var(--am-text);
        opacity: .96;
    }

        .am-belt__link.am-belt__brands:hover {
            opacity: 1;
            background: var(--am-belt-hover);
            color: var(--am-red);
            transform: translateY(-1px);
        }

@media (max-width: 900px) {
    .am-belt__nav {
        max-width: 50vw;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--am-red) rgba(15,76,92,.12);
    }

        .am-belt__nav::-webkit-scrollbar {
            height: 6px;
        }

        .am-belt__nav::-webkit-scrollbar-track {
            background: rgba(15,76,92,.12);
            border-radius: 999px;
        }

        .am-belt__nav::-webkit-scrollbar-thumb {
            background: var(--am-red);
            border-radius: 999px;
        }

            .am-belt__nav::-webkit-scrollbar-thumb:hover {
                background: #0c3d4a;
            }
}

.am-rowrail__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .am-rowrail__track::-webkit-scrollbar {
        display: none;
    }

.am-rowrail__item {
    flex: 0 0 auto;
}

.am-spec__grid {
    transition: opacity .16s ease;
}

    .am-spec__grid.is-fade {
        opacity: 0;
    }

.am-spec__skel {
    border: 1px solid #eee;
    border-radius: 14px;
    background: linear-gradient(90deg, #f1f1f1 0%, #fafafa 50%, #f1f1f1 100%);
    background-size: 200% 100%;
    animation: amSpecShimmer 1.1s ease-in-out infinite;
    min-height: 280px;
}

@keyframes amSpecShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.am-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .am-paystrip__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 14px;
        padding: 10px 6px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
    }

        .am-paystrip__row::-webkit-scrollbar {
            display: none;
        }

    .am-pay {
        scroll-snap-align: start;
    }

        .am-pay img {
            height: 26px;
        }
}

@media (max-width: 640px) {
    .am-spec__tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        width: 100%;
        max-width: 100%;
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
    }

        .am-spec__tabs::-webkit-scrollbar {
            display: none;
        }

    .am-spec__tab {
        flex: 0 0 auto;
        white-space: nowrap;
        scroll-snap-align: start;
        padding: 11px 16px;
        font-size: 13px;
    }

        .am-spec__tab::after {
            left: 14px;
            right: 14px;
            bottom: 5px;
        }
}

.am-header .am-search {
    height: 44px;
    align-items: stretch;
}

    .am-header .am-search select,
    .am-header .am-search input,
    .am-header .am-search .am-search__btn {
        height: 44px;
        min-height: 44px;
    }

    .am-header .am-search select,
    .am-header .am-search input {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        line-height: 44px !important;
        font: inherit;
    }

    .am-header .am-search .am-search__btn {
        padding: 0 !important;
    }

.am-search.am-search--simple {
    grid-template-columns: 1fr 44px;
}

    .am-search.am-search--simple input {
        width: 100%;
        min-width: 0;
    }

.am-header__row {
    grid-template-areas: "logo search actions";
}

.am-logo {
    grid-area: logo;
}

.am-search {
    grid-area: search;
}

.am-actions {
    grid-area: actions;
}

@media (max-width: 1024px) {
    .am-header__row {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "logo actions"
            "search search";
        align-items: start;
        gap: 14px 12px;
        padding: 14px 0 18px;
    }

    .am-logo {
        order: 0;
    }

    .am-actions {
        justify-self: end;
        align-self: start;
        display: flex;
        gap: 10px;
        align-items: center;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .am-search {
        width: 100%;
        margin-top: 2px;
    }

    .am-belt {
        margin-top: 8px;
    }

    .am-belt__row {
        gap: 12px;
        padding: 14px 0 10px;
    }
}

.am-catbtn {
    padding: 8px 14px;
    border-radius: 12px;
    gap: 8px;
    font-family: "Montserrat","Segoe UI",Roboto,Arial,sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.am-catbtn__ico {
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
}

.am-catbtn__chev {
    width: 14px;
    height: 14px;
    opacity: .92;
}

@media (min-width: 1280px) {
    .am-spec__grid {
        grid-template-columns: repeat(5, 215px);
    }

        .am-spec__grid > .am-card {
            max-width: 215px;
        }
}

@media (max-width: 640px) {
    .am-spec__grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        grid-template-columns: none;
        padding: 4px 2px 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
    }

        .am-spec__grid::-webkit-scrollbar {
            display: none;
        }

        .am-spec__grid > .am-card {
            flex: 0 0 195px;
            width: 195px;
            max-width: 195px;
            margin: 0;
            scroll-snap-align: start;
        }
}

@media (max-width: 640px) {
    .am-main {
        padding: 8px;
    }

    .am-container {
        padding: 0 8px;
    }

    .am-header__row {
        gap: 12px 10px;
        padding-bottom: 16px;
    }

    .am-actions {
        gap: 6px;
    }

    .am-act {
        padding: 6px;
    }

        .am-act svg {
            width: 20px;
            height: 20px;
        }

    .am-cart {
        gap: 0;
    }

    .am-cart__meta {
        display: none;
    }

    .am-belt {
        margin-top: 10px;
    }

    .am-belt__row {
        gap: 10px;
        padding: 12px 0 8px;
    }
}
