.sbc-product-slider-wrap {
    width: 100%;
    position: relative;
}

.sbc-product-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.sbc-product-card {
    position: relative;
    height: 100%;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sbc-product-card:hover {
    transform: translateY(-5px);
}

.sbc-product-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #f7f7f7;
}

.sbc-product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.sbc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.sbc-product-card:hover .sbc-product-image img {
    transform: scale(1.06);
}

.sbc-sale-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #d82f2f;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    padding: 7px 12px;
    border-radius: 30px;
    z-index: 2;
}

.sbc-product-card-content {
    padding: 20px;
    text-align: center;
}

.sbc-product-category {
    font-size: 13px;
    margin-bottom: 8px;
    color: #777777;
}

.sbc-product-category a {
    color: inherit;
    text-decoration: none;
}

.sbc-product-title {
    font-size: 18px;
    line-height: 1.35;
    margin: 0 0 10px;
}

.sbc-product-title a {
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sbc-product-title a:hover {
    color: #2f7d32;
}

.sbc-product-rating {
    margin-bottom: 10px;
}

.sbc-product-rating .star-rating {
    float: none;
    margin: 0 auto;
}

.sbc-product-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2f7d32;
}

.sbc-product-price del {
    opacity: 0.55;
    font-weight: 400;
    margin-right: 6px;
}

.sbc-product-price ins {
    text-decoration: none;
}

.sbc-product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.sbc-product-actions a,
.sbc-product-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: all 0.3s ease;
}

.sbc-add-cart-btn {
    background: #c6a664;
    color: #ffffff;
}

.sbc-details-btn {
    background: #111111;
    color: #ffffff;
}

.sbc-add-cart-btn:hover,
.sbc-details-btn:hover {
    opacity: 0.85;
    color: #ffffff;
}

.sbc-product-prev,
.sbc-product-next {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sbc-product-prev:hover,
.sbc-product-next:hover {
    opacity: 0.85;
}

.sbc-product-prev {
    left: 10px;
}

.sbc-product-next {
    right: 10px;
}

.sbc-product-pagination {
    position: relative;
    margin-top: 25px;
    text-align: center;
}

.sbc-product-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.35;
}

.sbc-product-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.sbc-no-products,
.sbc-woo-warning {
    padding: 20px;
    background: #fff3cd;
    color: #664d03;
    text-align: center;
}

@media (max-width: 767px) {
    .sbc-product-image {
        height: 240px;
    }

    .sbc-product-actions {
        flex-direction: column;
    }

    .sbc-product-actions a,
    .sbc-product-actions button {
        width: 100%;
    }

    .sbc-product-prev,
    .sbc-product-next {
        width: 40px;
        height: 40px;
    }
}