/* Products Slider Styles */
.co__products-slider-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.co__products-slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.co__products-slider-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.co__products-slider-item:hover h4 {
    color: var(--primary-color);
}

.co__products-slider-item img {
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.co__products-slider-item:hover img {
    transform: scale(1.05);
}

.co__products-slider-item p {
    font-size: 1rem;
    margin: 0.8rem auto;
    line-height: 1.4;
    min-height: 2.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 10%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 50%;
    background-size: 50%;
    background-position: center;
}

/* Product Price Tag */
.product-price {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.co__products-slider-item:hover .product-price {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(236, 68, 15, 0.3);
}

/* Product Availability */
.product-availability {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 1rem;
}

.in-stock {
    background-color: rgba(39, 174, 96, 0.2);
    color: #27AE60;
}

.low-stock {
    background-color: rgba(243, 156, 18, 0.2);
    color: #F39C12;
}

.out-stock {
    background-color: rgba(231, 76, 60, 0.2);
    color: #E74C3C;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .co__products-slider-item {
        padding: 1.5rem;
    }
    
    .co__products-slider-item img {
        max-height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .co__products-slider-item h4 {
        font-size: 1.1rem;
    }
    
    .co__products-slider-item p {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
}
