.kbw-related-products-carousel {
    font-family: 'Be Vietnam Pro', sans-serif;
    padding: 40px 0;
}

/* Header */
.kbw-rpc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.kbw-rpc-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #382F2D;
    margin: 0;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Navigation */
.kbw-rpc-nav {
    display: flex;
    gap: 10px;
}

.kbw-rpc-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #333;
}

.kbw-rpc-nav button.kbw-rpc-prev:before {
    content: url('../images/prev-arrow.svg');
}

.kbw-rpc-nav button.kbw-rpc-next:before {
    content: url('../images/next-arrow.svg');
}


.kbw-rpc-nav button:hover {
    background: #f5f5f5;
    border-color: #ccc;
}


.kbw-rpc-nav button.swiper-button-disabled,
.kbw-rpc-nav button.swiper-button-lock {
    opacity: 0.5;
}

/* Slider */
.kbw-rpc-slider {
    overflow: hidden;
    padding-bottom: 20px;
    /* Space for shadow if needed */
}

.kbw-rpc-card {
    width: 100%;
}

.kbw-rpc-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.kbw-rpc-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kbw-rpc-card:hover .kbw-rpc-image img {
    transform: scale(1.05);
}

.kbw-rpc-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.kbw-rpc-content a {
    text-decoration: none;
    color: inherit;
}

/* Responsive */
@media (max-width: 768px) {
    .kbw-rpc-header {
        flex-direction: row;
        /* Keep nav on right or stack? Reference shows row usually */
        align-items: center;
    }

    .kbw-rpc-header h2 {
        font-size: 24px;
    }

    .kbw-rpc-image {
        height: 250px;
    }
}