/* Labels */
.wdcl-label-discontinued {
    background: #e74c3c !important;
    color: #fff !important;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    display: inline-block;
}
.wdcl-label {
    margin-bottom: 0px;
    position: absolute;
}
.swiper-backface-hidden .swiper-slide{
    max-width: 220px;
}
.swiper-wrapper {
    justify-content: center;
}
.wdcl-label-new {
    background: #2ecc71 !important;
    color: #fff !important;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    display: inline-block;
}

/* Slider Container */
.wdcl-slider-container {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 2px solid #f1f1f1;
    max-width: 100%;
}

.wdcl-slider-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.wdcl-slider {
    padding-bottom: 40px !important;
}

/* Product Card */
.wdcl-product-card {
    display: block;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.wdcl-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.wdcl-product-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f8f8;
}

.wdcl-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wdcl-product-card:hover .wdcl-product-image img {
    transform: scale(1.05);
}

.wdcl-product-info {
    padding: 12px;
}

.wdcl-product-info h4 {
    font-size: 13px;
    margin: 0 0 8px;
    font-weight: 600;
    line-height: 1.3;
    height: 34px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wdcl-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #83b735;
}

/* Swiper Navigation */
.wdcl-slider .swiper-button-next,
.wdcl-slider .swiper-button-prev {
    color: #83b735;
    background: rgba(255,255,255,0.9);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.wdcl-slider .swiper-button-next:after,
.wdcl-slider .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}




.wdcl-slider .swiper-pagination {
    bottom: 5px !important;
}

.wdcl-slider .swiper-pagination-bullet-active {
    background: #83b735;
}

/* Responsive */
@media (max-width: 768px) {
    .wdcl-product-image {
        height: 140px;
    }
    
    .wdcl-product-info h4 {
        font-size: 12px;
        height: 30px;
    }
    
    .wdcl-slider .swiper-button-next,
    .wdcl-slider .swiper-button-prev {
        display: none;
    }
}