@import "./tokens.css";

/* ============================================================
 * RESET / SHELL
 * ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body.fc-app {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background: var(--fc-surface);
    color: var(--fc-text);
    font-family: var(--fc-font-sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.fc-app img {
    max-width: 100%;
}

.fc-app a {
    color: inherit;
}

.fc-container {
    width:
        min(
            var(--fc-container-max),
            calc(
                100%
                - (
                    2
                    * var(--fc-container-gutter)
                )
            )
        );

    margin-inline: auto;
}

.fc-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 99999;
    padding: 10px 14px;
    background: #ffffff;
    color: #11181d;
    transform: translateY(-160%);
}

.fc-skip-link:focus {
    transform: translateY(0);
}

.fc-main {
    min-height: 48vh;
}

.fc-home-stream {
    padding-block: 28px 72px;
}

.fc-home-stream > .fc-container {
    display: grid;
    gap: 30px;
}

.fc-home-stream
> .fc-container
> * {
    min-width: 0;
}

.fc-storefront-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        var(--fc-aside-width);
    gap: 34px;
    padding-block: 32px 64px;
}

.fc-aside--left
.fc-storefront-grid {
    grid-template-columns:
        var(--fc-aside-width)
        minmax(0, 1fr);
}

.fc-storefront-content,
.fc-storefront-aside {
    min-width: 0;
}

.fc-storefront-aside {
    align-self: start;
}

/* ============================================================
 * HEADER
 * ============================================================ */

.fc-header {
    position: relative;
    z-index: 1000;
}

.fc-header--sticky {
    position: sticky;
    top: 0;
}

.fc-header-top-region {
    background: var(--fc-brand);
    color: #11181d;
}

.fc-header__surface {
    background:
        linear-gradient(
            180deg,
            #182128 0%,
            #11181d 100%
        );

    color: #ffffff;
    box-shadow:
        0 1px 0
        rgba(255, 255, 255, .06);
}

.fc-header__main {
    display: grid;
    grid-template-columns:
        auto
        minmax(180px, auto)
        minmax(260px, 1fr)
        auto;
    align-items: center;
    gap: 22px;
    min-height: 82px;
}

.fc-header__toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
}

.fc-header__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #ffffff;
}

.fc-header__brand-fallback {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.fc-header__brand-fallback img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 48px;
}

.fc-header__brand-fallback strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.02em;
}

.fc-header__composition {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
}

.fc-header__composition
.fc-brand-block {
    flex: 0 0 auto;
    min-width: 0;
}

.fc-header__composition
.fc-brand-block__intro,
.fc-header__composition
.fc-brand-block__contact,
.fc-header__composition
.fc-brand-block__name {
    display: none;
}

.fc-header__composition
.fc-brand-block__logo img {
    width: auto;
    max-width: 210px;
    max-height: 46px;
}

.fc-header__composition
.fc-content-block__title {
    display: none;
}

.fc-header__composition
.fc-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-header__composition
.fc-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: #f2f4f5;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.fc-header__composition
.fc-menu a:hover {
    color: var(--fc-brand);
}

.fc-header-search {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        48px;
    min-width: 0;
    height: 46px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: #273139;
    overflow: hidden;
}

.fc-header-search:focus-within {
    border-color: rgba(252,185,0,.70);
    box-shadow:
        0 0 0 3px
        rgba(252,185,0,.12);
}

.fc-header-search input {
    min-width: 0;
    width: 100%;
    padding: 0 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #ffffff;
    font: inherit;
    font-size: 13px;
}

.fc-header-search input::placeholder {
    color: #929ba2;
}

.fc-header-search button {
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 19px;
}

.fc-header-actions {
    display: flex;
    align-items: stretch;
    gap: 3px;
}

.fc-header-action {
    display: inline-flex;
    min-width: 58px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;
    padding: 5px 9px;
    border-radius: 9px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.fc-header-action i {
    font-size: 20px;
}

.fc-header-action:hover,
.fc-header-action:focus-visible {
    background: rgba(255,255,255,.07);
    color: var(--fc-brand);
}

.fc-header-action--cart {
    padding-inline: 14px;
    background: var(--fc-brand);
    color: #11181d;
}

.fc-header-action--cart:hover,
.fc-header-action--cart:focus-visible {
    background: var(--fc-brand-hover);
    color: #11181d;
}

/* ============================================================
 * ANNOUNCEMENT
 * ============================================================ */

.fc-announcement {
    position: relative;
    width: 100%;
    font-size: 13px;
}

.fc-announcement__inner {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.fc-announcement__content {
    display: flex;
    align-items: center;
    justify-content: inherit;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.fc-announcement--align-start
.fc-announcement__inner {
    justify-content: flex-start;
}

.fc-announcement--align-end
.fc-announcement__inner {
    justify-content: flex-end;
}

.fc-announcement__link {
    font-weight: 800;
    text-underline-offset: 3px;
}

.fc-announcement__close {
    width: 28px;
    height: 28px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
}

/* ============================================================
 * SLIDER
 * ============================================================ */

.fc-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--fc-radius-xl);
    background: #11181d;
    box-shadow: var(--fc-shadow-sm);
}

.fc-slider__viewport {
    overflow: hidden;
}

.fc-slider__track {
    display: flex;
    width: 100%;
    transition:
        transform
        .55s
        cubic-bezier(.2,.7,.2,1);
    will-change: transform;
}

.fc-slider__slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-height:
        var(
            --fc-slider-min-height,
            520px
        );
    overflow: hidden;
    color: #ffffff;
}

.fc-slider__slide-link {
    display: block;
    min-height: inherit;
    color: inherit;
    text-decoration: none;
}

.fc-slider__media {
    position: absolute;
    inset: 0;
    display: block;
}

.fc-slider__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,8,10,.68),
            rgba(5,8,10,.20) 56%,
            transparent 78%
        );
}

.fc-slider__media img {
    width: 100%;
    height:
        var(
            --fc-slider-min-height,
            520px
        );
    object-fit: cover;
}

.fc-slider__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    min-height:
        var(
            --fc-slider-min-height,
            520px
        );
}

.fc-slider__overlay > .fc-container {
    display: flex;
    align-items: center;
}

.fc-slider__content {
    width: min(720px, 72%);
    padding-block: 68px;
}

.fc-slider__title {
    margin: 0;
    font-size:
        clamp(
            38px,
            4.8vw,
            74px
        );
    line-height: .96;
    letter-spacing: -.045em;
}

.fc-slider__description {
    max-width: 620px;
    margin: 20px 0 0;
    font-size:
        clamp(
            15px,
            1.4vw,
            19px
        );
}

.fc-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 50%;
    background: rgba(17,24,29,.62);
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    transform: translateY(-50%);
}

.fc-slider__nav--prev {
    left: 20px;
}

.fc-slider__nav--next {
    right: 20px;
}

.fc-slider__dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    z-index: 5;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.fc-slider__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.50);
    cursor: pointer;
}

.fc-slider__dot[aria-current="true"] {
    width: 28px;
    background: var(--fc-brand);
}

/* ============================================================
 * CATEGORY FEATURE
 * ============================================================ */

.fc-commerce-block {
    margin: 0;
}

.fc-category-feature {
    display: grid;
    grid-template-columns:
        minmax(300px, .78fr)
        minmax(0, 1.75fr);
    overflow: hidden;
    border-radius: var(--fc-radius-xl);
    background: var(--fc-surface-muted);
}

.fc-category-feature__intro {
    display: flex;
    min-width: 0;
    min-height: 420px;
    flex-direction: column;
}

.fc-category-feature__media {
    display: block;
    min-height: 220px;
    overflow: hidden;
    background: #e9edef;
}

.fc-category-feature__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-category-feature__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.fc-category-feature__label {
    margin-bottom: 10px;
    color: #8a6d00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.fc-category-feature__title {
    margin: 0;
    font-size:
        clamp(
            30px,
            3.2vw,
            50px
        );
    line-height: 1;
    letter-spacing: -.04em;
}

.fc-category-feature__title a,
.fc-category-feature__all,
.fc-category-feature__child {
    text-decoration: none;
}

.fc-category-feature__children {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.fc-category-feature__child {
    padding: 7px 11px;
    border: 1px solid #e3e6e8;
    border-radius: 999px;
    background: #ffffff;
    font-size: 12px;
    font-weight: 650;
}

.fc-category-feature__child:hover {
    border-color: var(--fc-brand);
    background: #fff8df;
}

.fc-category-feature__all {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 6px;
    margin-top: 26px;
    font-weight: 800;
}

.fc-category-feature__products {
    display: grid;
    min-width: 0;
    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );
    gap: 14px;
    padding: 20px;
    background: #ffffff;
}

/* ============================================================
 * PRODUCT CARD
 * ============================================================ */

.fc-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #edf0f2;
    border-radius: 14px;
    background: #ffffff;
    transition:
        transform var(--fc-transition),
        box-shadow var(--fc-transition),
        border-color var(--fc-transition);
}

.fc-product-card:hover {
    border-color: #dce1e4;
    transform: translateY(-3px);
    box-shadow: var(--fc-shadow-md);
}

.fc-product-card__media {
    position: relative;
    aspect-ratio: 1 / .92;
    overflow: hidden;
    background: #f7f8f9;
}

.fc-product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.fc-product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform .25s ease;
}

.fc-product-card:hover
.fc-product-card__image {
    transform: scale(1.035);
}

.fc-product-card__quick-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    gap: 7px;
}

.fc-product-card__icon-button {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 50%;
    background: rgba(255,255,255,.96);
    text-decoration: none;
    box-shadow: var(--fc-shadow-sm);
}

.fc-product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px;
}

.fc-product-card__brand {
    margin-bottom: 5px;
    color: #c58f00;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fc-product-card__title {
    margin: 0;
    font-size: 14px;
    line-height: 1.42;
}

.fc-product-card__title a {
    text-decoration: none;
}

.fc-product-card__sku {
    margin-top: 7px;
    color: var(--fc-text-muted);
    font-size: 11px;
}

.fc-product-card__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 7px;
    margin-top: 14px;
}

.fc-product-card__price-current {
    font-size: 18px;
    font-weight: 850;
}

.fc-product-card__price-original {
    color: var(--fc-text-muted);
    font-size: 12px;
}

.fc-product-card__cart {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 9px 12px;
    border: 0;
    border-radius: 8px;
    background: var(--fc-brand);
    color: #11181d;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

/* ============================================================
 * PRODUCT RAIL
 * ============================================================ */

.fc-commerce-block__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.fc-commerce-block__title {
    margin: 0;
    font-size:
        clamp(
            25px,
            2.8vw,
            38px
        );
    letter-spacing: -.03em;
}

.fc-product-carousel__controls {
    display: flex;
    gap: 8px;
}

.fc-product-carousel__button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--fc-border);
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
}

.fc-product-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns:
        calc(
            (
                100%
                - (
                    (
                        var(--fc-product-columns, 4)
                        - 1
                    )
                    * 16px
                )
            )
            /
            var(--fc-product-columns, 4)
        );
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.fc-product-rail::-webkit-scrollbar {
    display: none;
}

.fc-product-rail__item {
    min-width: 0;
    scroll-snap-align: start;
}

/* ============================================================
 * CATEGORY TREE
 * ============================================================ */

.fc-category-tree {
    padding: 20px;
    border: 1px solid var(--fc-border);
    border-radius: 14px;
    background: #ffffff;
}

.fc-category-tree__title {
    margin: 0 0 14px;
    font-size: 18px;
}

.fc-category-tree__list,
.fc-category-tree__children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-category-tree__children {
    padding-left: 14px;
}

.fc-category-tree__row {
    display: flex;
    min-height: 38px;
    align-items: center;
    gap: 6px;
}

.fc-category-tree__link {
    flex: 1;
    font-size: 13px;
    text-decoration: none;
}

.fc-category-tree__toggle {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 0;
    border-radius: 7px;
    background: transparent;
    cursor: pointer;
}

.fc-category-tree__toggle:hover {
    background: var(--fc-surface-muted);
}

.fc-category-tree__toggle svg {
    transition: transform .18s ease;
}

.fc-category-tree__toggle[aria-expanded="false"] svg {
    transform: rotate(-90deg);
}

/* ============================================================
 * BANNER
 * ============================================================ */

.fc-banner {
    position: relative;
    min-height:
        var(
            --fc-banner-min-height,
            420px
        );
    overflow: hidden;
    border-radius: var(--fc-radius-xl);
    background: #11181d;
}

.fc-banner__media {
    position: absolute;
    inset: 0;
}

.fc-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-banner__overlay {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
}

.fc-banner__overlay > .fc-container {
    display: flex;
    align-items: center;
}

.fc-banner__content {
    width: min(650px, 70%);
    padding-block: 54px;
}

.fc-banner__title {
    margin: 0;
    font-size:
        clamp(
            34px,
            4vw,
            62px
        );
    line-height: .98;
}

.fc-banner--tone-dark {
    color: #ffffff;
}

.fc-banner--tone-dark::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.60),
            transparent 72%
        );
}

/* ============================================================
 * FOOTER
 * ============================================================ */

.fc-footer {
    margin-top: 40px;
    background: var(--fc-footer-bg);
    color: var(--fc-footer-text);
}

.fc-footer__main {
    padding-block: 54px 46px;
    background:
        linear-gradient(
            180deg,
            #141d23 0%,
            var(--fc-footer-bg) 100%
        );
}

.fc-footer-grid {
    display: grid;
    grid-template-columns:
        repeat(
            var(--fc-footer-columns, 4),
            minmax(0, 1fr)
        );
    gap: 34px;
}

.fc-footer-grid
.fc-content-block__title {
    margin: 0 0 16px;
    color: var(--fc-footer-heading);
    font-size: 14px;
    font-weight: 850;
}

.fc-footer-grid a {
    color: inherit;
    text-decoration: none;
}

.fc-footer-grid a:hover {
    color: var(--fc-brand);
}

.fc-footer-grid
.fc-menu {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-footer__utility {
    border-top:
        1px solid
        rgba(255,255,255,.08);
    background: #0c1216;
}

.fc-footer-utility-grid {
    display: grid;
    min-height: 86px;
    grid-template-columns:
        minmax(220px, 1fr)
        auto
        auto;
    align-items: center;
    gap: 28px;
}

.fc-footer
.fc-brand-block__logo img {
    max-width: 220px;
    max-height: 55px;
}

.fc-footer
.fc-brand-block__name {
    color: #ffffff;
}

.fc-footer
.fc-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.fc-footer
.fc-social-link {
    color: inherit;
    text-decoration: none;
}

.fc-footer
.fc-payment-block__image {
    max-height: 46px;
    width: auto;
}

/* ============================================================
 * GENERIC BLOCK
 * ============================================================ */

.fc-content-block {
    min-width: 0;
}

.fc-content-block--align-center {
    text-align: center;
}

.fc-content-block--align-end {
    text-align: right;
}

/* ============================================================
 * RESPONSIVE
 * ============================================================ */

@media (max-width: 1280px) {
    .fc-header__main {
        grid-template-columns:
            auto
            minmax(150px, auto)
            minmax(240px, 1fr)
            auto;
        gap: 14px;
    }

    .fc-header-action--optional span {
        display: none;
    }

    .fc-category-feature__products {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }
}

@media (max-width: 992px) {
    :root {
        --fc-container-gutter: 20px;
    }

    .fc-header--sticky {
        position: relative;
    }

    .fc-header__main {
        grid-template-columns:
            auto
            minmax(0, 1fr)
            auto;
        gap: 10px;
        min-height: 72px;
        padding-block: 10px;
    }

    .fc-header__toggle {
        display: block;
    }

    .fc-header__composition {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        padding: 18px 20px;
        background: #11181d;
        border-top: 1px solid rgba(255,255,255,.08);
        box-shadow: var(--fc-shadow-md);
    }

    .fc-header__composition.is-open {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }

    .fc-header__composition
    .fc-menu {
        align-items: stretch;
        flex-direction: column;
    }

    .fc-header-search {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .fc-header-actions {
        grid-column: 3;
        grid-row: 1;
    }

    .fc-header-action--optional {
        display: none;
    }

    .fc-header-action span {
        display: none;
    }

    .fc-storefront-grid,
    .fc-aside--left
    .fc-storefront-grid {
        grid-template-columns: 1fr;
    }

    .fc-aside-mobile--before
    .fc-storefront-aside {
        order: -1;
    }

    .fc-aside-mobile--hidden
    .fc-storefront-aside {
        display: none;
    }

    .fc-category-feature {
        grid-template-columns: 1fr;
    }

    .fc-category-feature__products {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }

    .fc-footer-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

    .fc-footer-utility-grid {
        grid-template-columns: 1fr;
        padding-block: 24px;
    }
}

@media (max-width: 640px) {
    :root {
        --fc-container-gutter: 14px;
    }

    .fc-home-stream {
        padding-block: 16px 42px;
    }

    .fc-header__brand-fallback img {
        max-width: 145px;
    }

    .fc-header-actions {
        gap: 0;
    }

    .fc-header-action {
        min-width: 42px;
        padding-inline: 7px;
    }

    .fc-header-action--cart {
        min-width: 48px;
    }

    .fc-slider {
        border-radius: 14px;
    }

    .fc-slider__slide,
    .fc-slider__media img,
    .fc-slider__overlay {
        min-height: 420px;
        height: 420px;
    }

    .fc-slider__content {
        width: 84%;
        padding-block: 44px;
    }

    .fc-slider__title {
        font-size:
            clamp(
                32px,
                11vw,
                48px
            );
    }

    .fc-category-feature__products {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
        gap: 10px;
        padding: 10px;
    }

    .fc-product-rail {
        grid-auto-columns:
            min(
                78vw,
                290px
            );
    }

    .fc-footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (
    prefers-reduced-motion:
    reduce
) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* FC_PHASE_5R2C_CANONICAL_LAYOUT_START */

/* ============================================================
 * CANONICAL CONTENT / ASIDE
 * ============================================================ */

.fc-main
> .fc-storefront-grid {
    padding-block: 32px 72px;
}

.fc-storefront-grid--single {
    grid-template-columns:
        minmax(0, 1fr);
}

.fc-aside--left
.fc-storefront-aside {
    grid-column: 1;
    grid-row: 1;
}

.fc-aside--left
.fc-storefront-content {
    grid-column: 2;
    grid-row: 1;
}

.fc-aside--right
.fc-storefront-content {
    grid-column: 1;
    grid-row: 1;
}

.fc-aside--right
.fc-storefront-aside {
    grid-column: 2;
    grid-row: 1;
}

.fc-storefront-content {
    width: 100%;
}

.fc-page-render,
.fc-page-content,
.fc-page-content__body,
.fc-home-stream {
    min-width: 0;
    width: 100%;
}

.fc-home-stream {
    display: grid;
    gap: 30px;
    padding: 0;
}

.fc-page-content__header {
    margin-bottom: 28px;
}

.fc-page-content__title {
    margin: 0;
    font-size:
        clamp(
            30px,
            4vw,
            52px
        );
    line-height: 1.05;
    letter-spacing: -.04em;
}

.fc-content-region-stream {
    display: grid;
    gap: 30px;
    margin-top: 32px;
}

.fc-content-main-region {
    display: grid;
    gap: 30px;
}

/* ============================================================
 * PRODUCT CATEGORY IS CONTENT, NOT A FAKE SIDEBAR
 * ============================================================ */

.fc-category-feature {
    display: block;
    overflow: hidden;
    border:
        1px solid
        var(--fc-border);
    border-radius: var(--fc-radius-xl);
    background: #ffffff;
}

.fc-category-feature__intro {
    display: block;
    min-height: 0;
    background:
        var(--fc-surface-muted);
}

.fc-category-feature__media {
    display: none;
}

.fc-category-feature__content {
    display: grid;
    grid-template-columns:
        minmax(220px, .65fr)
        minmax(0, 1.6fr)
        auto;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
}

.fc-category-feature__label {
    grid-column: 1;
    margin: 0 0 4px;
}

.fc-category-feature__title {
    grid-column: 1;
    margin: 0;
    font-size:
        clamp(
            26px,
            2.6vw,
            40px
        );
}

.fc-category-feature__children {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
}

.fc-category-feature__all {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
    white-space: nowrap;
}

.fc-category-feature__products {
    width: 100%;
    border-top:
        1px solid
        var(--fc-border);
    background: #ffffff;
}

/* ============================================================
 * REAL RECURSIVE CATEGORY TREE
 * ============================================================ */

.fc-storefront-aside
.fc-category-tree {
    width: 100%;
}

.fc-category-tree {
    overflow: hidden;
    padding: 18px;
    border:
        1px solid
        var(--fc-border);
    border-radius: 14px;
    background: #ffffff;
}

.fc-category-tree__title {
    margin:
        0
        0
        14px;
    padding-bottom: 13px;
    border-bottom:
        1px solid
        var(--fc-border);
    font-size: 17px;
    font-weight: 850;
}

.fc-category-tree__list,
.fc-category-tree__children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fc-category-tree__children {
    position: relative;
    margin-left: 12px;
    padding-left: 12px;
    border-left:
        1px solid
        #e4e8eb;
}

.fc-category-tree__children[hidden] {
    display: none;
}

.fc-category-tree__item {
    position: relative;
}

.fc-category-tree__row {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
}

.fc-category-tree__row:hover {
    background:
        var(--fc-surface-muted);
}

.fc-category-tree__link {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    gap: 7px;
    padding:
        7px
        5px
        7px
        8px;
    font-size: 12.5px;
    font-weight: 650;
    line-height: 1.32;
    text-decoration: none;
}

.fc-category-tree__name {
    min-width: 0;
    overflow-wrap: anywhere;
}

.fc-category-tree__count {
    margin-left: auto;
    color:
        var(--fc-text-muted);
    font-size: 10px;
    font-weight: 600;
}

.fc-category-tree__toggle {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    margin-right: 3px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color:
        var(--fc-text-muted);
    cursor: pointer;
}

.fc-category-tree__toggle:hover {
    background: #e9edef;
    color: var(--fc-ink);
}

.fc-category-tree__toggle svg,
.fc-category-tree__toggle i {
    transition:
        transform
        .18s ease;
}

.fc-category-tree__toggle[aria-expanded="false"]
svg,
.fc-category-tree__toggle[aria-expanded="false"]
i {
    transform:
        rotate(-90deg);
}

/* ============================================================
 * RESPONSIVE REGION ORDER
 * ============================================================ */

@media (max-width: 992px) {
    .fc-storefront-grid,
    .fc-aside--left
    .fc-storefront-grid,
    .fc-aside--right
    .fc-storefront-grid {
        grid-template-columns: 1fr;
    }

    .fc-storefront-content,
    .fc-aside--left
    .fc-storefront-content,
    .fc-aside--right
    .fc-storefront-content {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }

    .fc-storefront-aside,
    .fc-aside--left
    .fc-storefront-aside,
    .fc-aside--right
    .fc-storefront-aside {
        grid-column: 1;
        grid-row: auto;
        order: 2;
    }

    .fc-aside-mobile--before
    .fc-storefront-aside {
        order: 0;
    }

    .fc-aside-mobile--after
    .fc-storefront-aside {
        order: 2;
    }

    .fc-aside-mobile--hidden
    .fc-storefront-aside {
        display: none;
    }

    .fc-category-feature__content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fc-category-feature__label,
    .fc-category-feature__title,
    .fc-category-feature__children,
    .fc-category-feature__all {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .fc-main
    > .fc-storefront-grid {
        padding-block:
            18px
            42px;
    }

    .fc-category-feature__content {
        padding:
            22px
            18px;
    }
}

/* FC_PHASE_5R2C_CANONICAL_LAYOUT_END */
