.gpc-product-slider__section {
    padding-bottom: 60px;
    padding-top: 60px;
}

.product-carousel-swiper {
    width: 100%;
    height: auto;
}

.product-carousel-swiper .swiper-wrapper {
    height: auto;
}

.product-carousel-swiper .swiper-slide {
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gpc-product-slider__intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-bottom: 20px;
}

.gpc-product-carousel {
    padding-top: 20px;
    position: relative;
}

.gpc-product-carousel:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    height: 1px;
    background-color: var(--gpc-light-grey);
}

.gpc-product-slider__intro-text p {
    padding-top: 20px;
    margin-bottom: 0;
}

.gpc-product-slider__intro-link {
    flex-shrink: 0;
}

.gpc-product-slider__title {
    margin-bottom: 0;
}

.gpc-product-carousel__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    text-align: left;
}

.gpc-product-carousel__item img {
    margin: 0;
}

@media(max-width: 639px) {
    .gpc-product-carousel__item {
        text-align: center;
    }
    .gpc-product-carousel__item img {
        margin: 0 auto;
    }
}

.gpc-product-slider__intro a,
.gpc-product-carousel__item__price {
    color: var(--gpc-accent-color);
    transition: color var(--gpc-transition-time);
}

.gpc-product-slider__intro a:hover {
    color: var(--gpc-accent-color-hover);
}

.gpc-product-carousel__item__image {
    position: relative;
    width: auto;
    height: auto;
    max-width: fit-content;
}

@media (max-width:639px) {
    .gpc-product-carousel__item__image {
        margin: 0 auto;
    }
}

.gpc-product-carousel__item__sale-badge {
    font-family: "Playfair Display";
    font-size: 12px;
    line-height: 110%;
    position: absolute;
    padding: 5px 10px;
    background-color: #fff;
    border: 1px solid var(--gpc-black);
    color: #000;
    right: 10px;
    top: 10px;
}

.gpc-product-carousel__item__title {
    margin-bottom: 0;
    font-family: "Playfair Display";
    font-size: 14px;
    color: #000;
}

.gpc-product-carousel__item__author {
    color: var(--gpc-dark-grey);
    font-size: 14px;
}

.gpc-swiper-next,
.gpc-swiper-prev {
    background-color: var(--gpc-accent-color) !important;
    border-radius: 50%;
    color: #fff !important;
    width: 44px !important;
    height: 44px !important;
    transition: background-color var(--gpc-transition-time), opacity var(--gpc-transition-time);
}

@media(max-width: 479px) {
    .gpc-swiper-next {
        right: 10 !important;
    }

    .gpc-swiper-prev {
        left: 10 !important;
    }
}

.gpc-swiper-next:hover,
.gpc-swiper-prev:hover {
    background-color: var(--gpc-accent-color-hover) !important;
}

.gpc-product-carousel .gpc-swiper-prev {
    left: 10;
    transform: translateX(-50%);
}

.gpc-product-carousel .gpc-swiper-next {
    right: 10;
    transform: translateX(50%);
}

.gpc-swiper-next svg,
.gpc-swiper-prev svg {
    width: 24px !important;
    height: auto !important;
}

.gpc-swiper-next:after,
.gpc-swiper-prev:after {
    display: none;
}

.gpc-swiper-prev.swiper-button-disabled,
.gpc-swiper-next.swiper-button-disabled {
    opacity: 0 !important;
}