.psc-container {
    max-width: 100%;
    margin: 30px auto;
    padding: 20px;
    overflow: hidden;
    font-family: "Open Sans", sans-serif;
}

.psc-swatches {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.psc-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.psc-swatch[data-color="all"] {
    background: #fff;
    width: auto;
    height: auto;
    padding: 5px 15px;
    border-radius: 15px;
}

.psc-swatch.active {
    transform: scale(1.1);
    border-color: #333;
}

.psc-carousel {
    width: 100%;
    padding: 20px 0;
}

.psc-carousel .swiper-slide a .psc-product-content {
    position: relative;
    min-height: 250px;
    padding: 70px 20px 0px 20px;
    text-align: center;
    display: flex;
    align-items: end;
    justify-content: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center 90%;
    border-radius: 10px !important;
    overflow: hidden;
    background-color: #efeeeb !important;
    margin: 90px 5px 100px 5px !important;
    /*box-shadow: 0px 0px 15px -7px rgba(0, 0, 0, 0) !important;*/
    box-sizing: border-box;
    /*transition-duration: 0.3s;*/


}

.psc-carousel .swiper-slide a .psc-product-content:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    border: 0;
    width: 100%;
    height: 50%;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.7105217087) 0%, rgba(0, 0, 0, 0) 85%, rgba(255, 255, 255, 0) 100%);*/
    opacity: 0;
    z-index: 3;
}

.psc-carousel .swiper-slide a {
    text-decoration: none;
}

.psc-carousel .swiper-slide a .psc-product-content-inner {}

.psc-carousel .swiper-slide a .psc-product-content-inner h4 {
    color: #222121;
    transition: color 0.3s ease;
    font-size: 19px;
    margin-bottom: 0;
    margin-top: 0;
}

.psc-carousel .swiper-slide a .psc-product-content-inner p {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: normal;
    color: #8E8E8E;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.psc-carousel .swiper-slide a:hover .psc-product-content-inner h4 {
    color: #fff;
}

.psc-carousel .swiper-slide a:hover .psc-product-content-inner p {
    color: #fff;
}

.psc-carousel .swiper-slide.prev-prev-left {
    transform: scale(0.9) translatex(10px);
    z-index: 2 !important;
}

.psc-carousel .swiper-slide.prev-left {
    transform: scale(1.2) translatex(-40px);
    z-index: 3 !important;
}

.psc-carousel .swiper-slide.swiper-slide-active {
    transform: scale(1.6) translatex(-15px);
    z-index: 4 !important;
    width: 300px !important;
}

.psc-carousel .swiper-slide.next-right {
    transform: scale(1.2) translatex(25px);
    z-index: 3 !important;
}

.psc-carousel .swiper-slide.next-next-right {
    transform: scale(0.9) translatex(-55px);
    z-index: 2 !important;
}

.psc-carousel .swiper-slide {

    &.prev-prev-left,
    &.prev-left,
    &.swiper-slide-active,
    &.next-right,
    &.next-next-right {
        .psc-product-content {
            -webkit-box-shadow: -1px 10px 20px -1px rgba(189, 189, 189, 1);
            -moz-box-shadow: -1px 10px 20px -1px rgba(189, 189, 189, 1);
            box-shadow: -1px 10px 20px -1px rgba(189, 189, 189, 1);
        }
    }
}

.psc-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto;
    border-radius: 20px;

}

.psc-carousel .swiper-slide h3 {
    margin-top: 10px;
    font-size: 1.2em;
}

.psc-carousel .swiper-button-next,
.psc-carousel .swiper-button-prev {
    color: #333;
}

.psc-carousel .swiper-pagination-bullet-active {
    background: #333;
}

.psc-carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
}


.psc-carousel-navigation .psc-carousel-navigation-button {
    width: 30px;
    height: 30px;
    background-color: #F5F3ED;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.psc-carousel-navigation .psc-carousel-navigation-button:focus {
    outline: none;
}

.psc-carousel-navigation .swiper-button-prev:after,
.psc-carousel-navigation .swiper-button-next:after {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

@media (max-width: 1200px) {
    .psc-carousel .swiper-slide.prev-prev-left {
        transform: scale(0.9) translatex(-55px);
        z-index: 2 !important;
    }

    .psc-carousel .swiper-slide.prev-left {
        transform: scale(1) translatex(15px);
        z-index: 3 !important;
    }

    .psc-carousel .swiper-slide.swiper-slide-active {
        transform: scale(1.4) translatex(15px);
        z-index: 4 !important;
        width: 300px !important;
    }

    .psc-carousel .swiper-slide.next-right {
        transform: scale(1) translatex(15px);
        z-index: 3 !important;
    }

    .psc-carousel .swiper-slide.next-next-right {
        transform: scale(0.9) translatex(55px);
        z-index: 2 !important;
    }
}

@media (max-width: 991px) {
    .psc-container .psc-swatches {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .psc-container {
        padding: 0;
    }

    .psc-container .psc-swatches {
        margin-top: 10px;
        margin-right: 10px;
    }

    .psc-carousel .swiper-slide a .psc-product-content {
        min-height: 320px;
        padding-top: 0;
        margin-top: 20px !important;
        background-position: center 90% !important;
        margin-bottom: 40px !important;
    }

    .psc-carousel .swiper-slide.swiper-slide-active,
    .psc-carousel .swiper-slide.prev-prev-left,
    .psc-carousel .swiper-slide.prev-left,
    .psc-carousel .swiper-slide.next-right,
    .psc-carousel .swiper-slide.next-next-right {
        transform: scale(1);
    }

    .psc-carousel .swiper-slide a .psc-product-content-inner h4 {
        font-size: 24px;
    }

    .psc-carousel .swiper-slide a .psc-product-content-inner p {
        font-size: 16px;
    }
}