/* ... existing CSS ... */

/* Product Card Slider Enhancements */
.product-card {
    position: relative;
    overflow: hidden;
    /* Ensure images don't spill out */
    /* existing styles remain... */
}

.product-card-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.product-card-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.product-card-slide.active {
    opacity: 0.4;
    /* Visibility behind the colored overlay */
    transform: scale(1.1);
    /* Subtle zoom effect */
}

.product-card-overlay-color {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.product-card-overlay-color.blue {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    mix-blend-mode: multiply;
}

.product-card-overlay-color.orange {
    background: linear-gradient(135deg, rgba(245, 130, 32, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
    mix-blend-mode: multiply;
}

.product-card-content {
    position: relative;
    z-index: 2;
    /* Content sits on top of everything */
}