.home {
    padding-bottom: 75px;
}

@media (max-width: 991px) {
    .home {
        padding-bottom: 40px;
    }
}

/* Hero */

.home-hero {
    background: white;
    padding-bottom: 42px;
}

.home-hero__swiper {
    background: var(--bg-color);
    padding: 32px;
    border-radius: 12px;
}

.home-hero__swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero__swiper .swiper-button-next,
.home-hero__swiper .swiper-button-prev {
    background: #CBCED7;
    width: 78px;
    height: 78px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero__swiper .swiper-navigation-icon {
    display: none;
}

.home-hero__swiper .swiper-button-prev::before {
    content: url('data:image/svg+xml,<svg width="12" height="22" viewBox="0 0 12 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 1L1 10.5238L11 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 12px;
    height: 22px;
}

.home-hero__swiper .swiper-button-next::before {
    content: url('data:image/svg+xml,<svg width="12" height="22" viewBox="0 0 12 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L11 10.5238L1 21" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    width: 12px;
    height: 22px;
}

.home-hero__swiper .swiper-pagination-bullets {
    bottom: 30px;
    box-shadow: 0px 4px 4px 0px #DFDEE840;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
}

.home-hero__swiper .swiper-pagination-bullet {
    background: white;
    width: 14px;
    height: 14px;
    opacity: 1;
}

.home-hero__swiper .swiper-pagination-bullet-active {
    background: #BBC0CE;
}

@media (max-width: 991px) {
    .home-hero {
        background: var(--bg-color);
        padding: 30px 0;
        padding-bottom: 0;
    }

    .home-hero::after {
        content: '';
        height: 34px;
        background: white;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        margin-top: 30px;
        display: block;
    }

    .home-hero__swiper {
        padding: 0;
        background: transparent;
    }

    .home-hero__swiper .swiper-button-next,
    .home-hero__swiper .swiper-button-prev {
        display: none;
    }

    .home-hero__swiper .swiper-pagination-bullets {
        bottom: 0;
    }
}

/* Catalog */

.home-category {
    margin-top: 20px;
}

.home-category__inner {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
}

.home-category__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1C1C1C;
    line-height: 130%;
}

.home-category__items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-category__items .product .tinv-wraper.tinv-wishlist  {
    display: none;
}

@media (max-width: 991px) {
    .home-category {
        padding: 30px 0;
        background: white;
        border-radius: 12px;
        margin-top: 35px;
    }

    .home-category__inner {
        padding: 0;
        background: transparent;
    }

    .home-category__items {
        gap: 10px;
        row-gap: 20px;
    }
}

/* Testimonials */

.home-testimonials {
    margin-top: 40px;
}

.home-testimonials__title {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #1C1C1C;
}

.home-testimonials .btn {
    display: flex;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}
