/* Product Recommender Pro - Carousel Slider */

/* Carousel wrapper */
.prp-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prp-products-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

/* Slider item styling */
.prp-products-grid .product {
    flex: 0 0 calc(20% - 16px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Carousel buttons */
.prp-carousel-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 2px solid #ddd;
    background-color: #fff;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.prp-carousel-btn:hover {
    background-color: #f0f0f0;
    border-color: #333;
}

.prp-carousel-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .prp-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

.prp-products-grid .product a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.prp-products-grid .product img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.prp-products-grid .product h3 {
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
}

.prp-products-grid .price {
    display: block;
    margin: 10px 0;
    font-weight: bold;
    color: #333;
}

/* Responsive slider widths */
/* Desktop - 20% width (5 columns visible) */
@media (min-width: 1200px) {
    .prp-products-grid .product {
        flex: 0 0 calc(20% - 16px);
    }
}

/* Laptop - 25% width (4 columns visible) */
@media (min-width: 992px) and (max-width: 1199px) {
    .prp-products-grid .product {
        flex: 0 0 calc(25% - 15px);
    }
}

/* Tablet - 33% width (3 columns visible) */
@media (min-width: 768px) and (max-width: 991px) {
    .prp-products-grid .product {
        flex: 0 0 calc(33.33% - 14px);
    }
}

/* Mobile - 50% width (2 columns visible) */
@media (max-width: 767px) {
    .prp-products-grid {
        gap: 15px;
    }
    .prp-products-grid .product {
        flex: 0 0 calc(50% - 7.5px);
        min-width: 150px;
    }
}

/* Extra small - 80% width (1.25 columns visible) */
@media (max-width: 480px) {
    .prp-products-grid .product {
        flex: 0 0 calc(80% - 16px);
        min-width: 120px;
    }
}

/* Shortcode container styling */
.prp-recommendations-shortcode h2,
.prp-single-product-recommendations h2,
.prp-widget-recommendations h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: left;
}

/* Slider container padding and styling */
.prp-recommendations-shortcode,
.prp-single-product-recommendations,
.prp-widget-recommendations {
    margin: 0 0 30px 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.prp-products-grid::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.prp-products-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
