/* Related Products Carousel */
.rpc-wrapper {
    position: relative;
    width: 100%;
}

.rpc-swiper {
    overflow: hidden;
    width: 100%;
}

.rpc-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.rpc-product-link {
    display: block;
    text-decoration: none;
}

.rpc-product-image {
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.rpc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rpc-product-link:hover .rpc-product-image img {
    transform: scale(1.05);
}

.rpc-product-title {
    margin: 12px 0 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.3s ease;
    word-break: break-word;
}

/* Navigation */
.rpc-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    color: #999;
}

.rpc-nav-btn:hover {
    opacity: 0.7;
}

.rpc-nav-prev {
    left: -20px;
}

.rpc-nav-next {
    right: -20px;
}

.rpc-nav-btn i {
    font-size: 40px;
    line-height: 1;
}

.rpc-nav-btn img,
.rpc-nav-btn svg {
    width: 40px;
    height: 40px;
    display: block;
}

.rpc-nav-btn svg {
    stroke: currentColor;
}
