/* product-carousel.css */

.orbitus-product-carousel {
    padding: 0px 0;
}

.carousel-title {
    
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.orbitus-carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 0 4px;
}

/* Product Card Styling */
.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px;
    color: #333;
}

.product-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0 15px 15px;
}

/* Tablet: 3 columns */
@media (max-width: 1024px) {
    .orbitus-carousel-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .carousel-title {
        font-size: 28px;
    }
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .orbitus-carousel-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 15px;
    }
    
    .carousel-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .product-card h3 {
        font-size: 16px;
        margin: 12px;
    }
    
    .product-card .price {
        font-size: 18px;
        margin: 0 12px 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .orbitus-carousel-wrapper {
        gap: 12px;
        padding: 0 10px;
    }
    
    .product-card h3 {
        font-size: 14px;
        margin: 10px;
    }
    
    .product-card .price {
        font-size: 16px;
        margin: 0 10px 10px;
    }
}