.products-showcase-widget {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.products-showcase-widget .products-showcase-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .products-showcase-widget .products-showcase-container {
        padding: 0;
    }
}


.products-showcase-widget .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.products-showcase-slider-wrapper {
    position: relative;
    margin: 0 auto;
}

.products-showcase-slider {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Slick slider customizations */
.products-showcase-slider .slick-slide {
    padding: 0 15px;
}

.products-showcase-slider .slick-list {
    margin: 0 -15px;
}

.products-showcase-product-item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.products-showcase-product-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.products-showcase-product-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.products-showcase-product-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #f8f9fa;
}

.products-showcase-product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.products-showcase-product-details {
    flex: 1 1 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.products-showcase-product-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.products-showcase-product-sku {
    font-size: 14px;
    color: #007bff;
    margin: 0 0 10px 0;
}

.products-showcase-product-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    flex: 1;
}

.products-showcase-product-rating {
    margin-top: auto;
}

.products-showcase-product-rating .star {
    font-size: 20px;
    color: #ddd;
}

.products-showcase-product-rating .star.filled {
    color: #ffc107;
}

.products-showcase-nav-divider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.products-showcase-nav-divider-prev,
.products-showcase-nav-divider-next {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.products-showcase-nav-divider-prev:hover,
.products-showcase-nav-divider-next:hover {
    background-color: #0056b3;
}

.products-showcase-nav-divider-prev img,
.products-showcase-nav-divider-next img {
    width: 20px;
    height: 20px;
    filter: invert(100%);
}

.products-showcase-nav-divider-prev {
    margin-right: 15px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .products-showcase-widget {
        padding: 50px 0;
    }
    
    .products-showcase-widget .products-showcase-container {
        padding: 0 10px;
    }

    
    .products-showcase-widget .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .products-showcase-product-image {
        height: 150px;
    }
    
    .products-showcase-product-title {
        font-size: 18px;
    }
    
    .products-showcase-product-description {
        font-size: 13px;
    }
    
    .products-showcase-nav-divider-container {
        margin-top: 20px;
    }
    
    .products-showcase-nav-divider-prev,
    .products-showcase-nav-divider-next {
        width: 40px;
        height: 40px;
    }
    
    .products-showcase-nav-divider-prev img,
    .products-showcase-nav-divider-next img {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {

    
    .products-showcase-product-image {
        height: 120px;
    }
    
    .products-showcase-product-details {
        padding: 15px;
    }
    
    .products-showcase-product-title {
        font-size: 16px;
    }
    
    .products-showcase-product-sku {
        font-size: 12px;
    }
    
    .products-showcase-product-description {
        font-size: 12px;
    }
    
    .products-showcase-product-rating .star {
        font-size: 16px;
    }
}