    :root {
        --swiper-theme-color: #9c9c9c;
    }

    .swiper {
        width: 100%;
        height: 100%;
        background-color: #dedede;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper {
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .mySwiper2 {
        height: 80%;
        width: 100%;
    }

    .mySwiper2 .swiper-slide {
        padding: 1px 1px 0 1px;
    }

    .mySwiper {
        height: 20%;
        box-sizing: border-box;
        padding: 1px;
    }

    .mySwiper .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.7;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }


    .mySwiper2 .swiper-button-next:after,
    .mySwiper2 .swiper-button-prev:after {
        display: none;
    }

    .mySwiper2 .swiper-slide a.hover-image {
        display: block;
        position: relative;
        width: 100%;
    }

    a.hover-image::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        z-index: 2;
    }

    a.hover-image:hover:before {
        opacity: 1;
    }

    a.hover-image img {
        transition: 0.5s;
    }

    a.hover-image:hover img {
        transform: scale(1.1);
    }

    .catalog-grid.one-column .product-item {

    }

    .product-item .text-content {
        font-size: 12px;
    }

    .catalog-grid.one-column form.ms2_form {
        height: 100%;
    }

    .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item__info,
    .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item {

        flex-wrap: wrap;
    }

    .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item__info {
        width: calc(100% - 200px - 1rem);
    }

    .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item__basket {
        width: calc(100% - 250px);
    }

    .catalog-grid.catalog-row-gap.catalog-grid-column-gap.one-column .product-item__image a img {
        height: 325px;
        object-fit: cover;
    }

    @media (max-width: 767px) {
        .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item__info {
            width: 100%;
        }

        .catalog-list.catalog-row-gap.catalog-list-column-gap .product-item__basket {
            width: 100%;
        }
    }