main {
    margin-top: 0rem;
}

.moto-style-hero {
    display: grid;
    grid-auto-rows: auto;
    gap: 1.5rem;
    color: var(--white);
    --description-color: var(--white);
}

.moto-style-hero--dark {
    color: var(--black);
    --description-color: var(--black);
}

.moto-style-hero__bg-wrapper {
    background: var(--bg-img) no-repeat center / cover;
    padding: 7.5rem 0;
    position: relative;
}

.moto-style-hero__bg-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.moto-style-hero__bg-wrapper .container {
    position: relative;
    z-index: 1;
}

.moto-style-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 60%;
    margin: auto;
    text-align: center;
}

.moto-style-hero__title {
    font-size: 3.5rem;
    line-height: 100%;
    font-weight: bold;
}

.moto-style-hero__description {
    font-size: 1.125rem;
    line-height: 150%;
    color: var(--description-color);
    width: 80%;
}

.moto-style-hero__title,
.moto-style-hero__description {
    text-shadow: 2px 2px 4px rgb(0 0 0 / 20%);
}

.moto-style-hero__cat-link-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-content: center;
    gap: 1rem;
    list-style: none;
}

@media only screen and (min-width: 1760px) {
    .moto-style-hero__cat-link-list {
        grid-template-columns: repeat(6, 1fr);
    }
}

.moto-style-hero__cat-link-item {
    display: flex;
}

.moto-style-hero__cat-link {
    border: 2px solid var(--black);
    padding: 1.4rem 1rem;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    color: var(--black);
    font-size: 1rem;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background,
    var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.moto-style-hero__cat-link:hover {
    background: var(--black);
    color: var(--white);
}

.moto-style-hero--style-no-img .moto-style-hero__bg-wrapper {
    background: unset;
}

.moto-style-hero--style-no-img .moto-style-hero__bg-wrapper::before {
    all: unset;
}

.moto-style-hero--style-no-img {
    color: var(--black);
    --description-color: var(--text-dark);
}

.moto-style-hero--style-no-img .moto-style-hero__title,
.moto-style-hero--style-no-img .moto-style-hero__description,
.moto-style-hero--dark .moto-style-hero__title,
.moto-style-hero--dark .moto-style-hero__description {
    text-shadow: unset;
}

@media only screen and (max-width: 1023px) {
    .moto-style-hero__content {
        max-width: 75%;
    }
}

@media only screen and (max-width: 767px) {
    .moto-style-hero__content {
        max-width: 100%;
    }

    .moto-style-hero__bg-wrapper {
        padding: 5.5rem 0;
    }

    .moto-style-hero--style-no-img .moto-style-hero__bg-wrapper {
        padding-bottom: 2rem;
    }

    .moto-style-hero__content {
        gap: 1rem;
    }

    .moto-style-hero__title {
        font-size: 2.5rem;
        line-height: 100%;
    }

    .moto-style-hero__description {
        font-size: 1rem;
        line-height: 150%;
    }
}

@media only screen and (max-width: 575px) {
    .moto-style-hero__bg-wrapper {
        padding: 4rem 0;
    }

    .moto-style-hero__title {
        font-size: 2rem;
        line-height: 100%;
    }

    .moto-style-hero__description {
        width: auto;
    }

    .moto-style-hero .container--cat-links {
        display: none;
    }

    .moto-style-hero__content {
        align-items: flex-start;
        text-align: left;
    }
}

/*  */
.moto-style-product-cat {
    position: relative;
}

.moto-style-product-cat__content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.moto-style-product-cat--most-popular .moto-style-product-cat__content {
    gap: 1.5rem;
}

.moto-style-product-cat__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    order: 0;
}

.moto-style-product-cat__header .h2__style {
    margin: unset;
}

.moto-style-product-cat__description-wrapper {
    --max-height: 96px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.moto-style-product-cat__description {
    width: 100%;
    max-width: 80ch;
    max-height: var(--max-height);
    overflow: hidden;
    position: relative;
    transition: 0.3s ease-in-out all;
}

.moto-style-product-cat__description p {
    font-size: 1rem;
    line-height: 150%;
    font-weight: 300;
    color: var(--text-dark);
}

.moto-style-product-cat__description-wrapper.clamp-lines
.moto-style-product-cat__description::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: calc((1rem * 1.5) * 2);
    opacity: 1;
    background: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(rgba(244, 244, 244, 0)),
            to(#f4f4f4)
    );
    background: -o-linear-gradient(top, rgba(244, 244, 244, 0) 0, #fff 100%);
    background: linear-gradient(180deg, rgba(244, 244, 244, 0) 0, #fff 100%);
    pointer-events: none;
    transition: 0.3s ease-in-out all;
}

.moto-style-product-cat__description-wrapper.active
.moto-style-product-cat__description::after {
    opacity: 0;
}

.moto-style-product-cat__description-btn {
    display: none;
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-position: under;
    cursor: pointer;
    transition: 0.3s ease-in-out all;
}

.moto-style-product-cat__description-wrapper.clamp-lines
.moto-style-product-cat__description-btn {
    display: block;
}

.moto-style-product-cat__description-btn:hover {
    color: var(--orange);
}

.moto-style-product-cat__btns-wrapper {
    display: flex;
    justify-content: flex-end;
    order: 1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.moto-style-product-cat .sale__carousel {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding-bottom: 2px;
}

.moto-style-product-cat__swiper-wrapper {
    order: 2;
}

.simple-products-carousel.moto-style-product-cat__carousel {
    order: 2;
    padding: 0;
    width: 100%;
}

@media only screen and (max-width: 575px) {
    .moto-style-product-cat--all .moto-style-product-cat__content {
        gap: 1.5rem;
    }

    .moto-style-product-cat__btns-wrapper .view-all-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

.moto-style-product-cat .swiper--manufacturer .swiper-wrapper {
    max-width: 464px;
}

.moto-style-product-cat .swiper--manufacturer .swiper-slide {
    width: auto;
}

.moto-style-product-cat .swiper--manufacturer a {
    display: flex;
}

.moto-style-product-cat .swiper--manufacturer img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    object-position: center;
    user-select: none;
}

@media only screen and (max-width: 575px) {
    .moto-style-product-cat__btns-wrapper {
        margin: unset;
        order: 3;
    }

    .moto-style-product-cat__header {
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .moto-style-product-cat__swiper-manufacturer-wrapper {
        width: 100%;
    }
}

@media only screen and (min-width: 1024px) {
    .moto-style-product-cat .swiper--manufacturer .swiper-wrapper {
        max-width: 600px;
    }

    .moto-style-product-cat .swiper--manufacturer img {
        width: 5rem;
        height: 5rem;
    }
}

/*  */
.moto-style-sections-wrapper {
    display: flex;
    flex-direction: column;
    gap: 7.5rem 0;
    margin-top: 5rem;
}

@media only screen and (max-width: 767px) {
    .moto-style-sections-wrapper {
        gap: 5rem 0;
    }
}

@media only screen and (max-width: 575px) {
    .moto-style-sections-wrapper {
        margin-top: 2.5rem;
    }
}

/*  */
.moto-style-product-cat .swiper-button-prev--moto-style,
.moto-style-product-cat .swiper-button-next--moto-style {
    width: 2rem;
    height: 2rem;
    aspect-ratio: 1/1;
    position: static;
    padding: 0.5rem;
    margin: unset;
    border: 1px solid var(--orange);
}

.moto-style-product-cat .swiper-button-prev--moto-style::after,
.moto-style-product-cat .swiper-button-next--moto-style::after {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.moto-style-product-cat__swiper-manufacturer-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
}

@media only screen and (min-width: 576px) {
    .moto-style-product-cat__swiper-manufacturer-inner-wrapper {
        grid-template-columns: auto 1fr auto;
    }
}

@media only screen and (min-width: 1024px) {
    .moto-style-product-cat__swiper-manufacturer-inner-wrapper {
        gap: 1.5rem;
    }
}

@media only screen and (max-width: 575px) {
    .swiper-button-next--moto-style {
        display: block !important;
    }
}

.href-div {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
}
