.products-slideshow-hero {
    position: relative;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slideshow-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slideshow-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
}

@keyframes slideZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.slideshow-container .slide.active {
    opacity: 1;
    z-index: 2;
}

.slideshow-container .slide.active img,
.slideshow-container .slide.previous img {
    animation: slideZoom 12s linear forwards;
}

.slideshow-container .slide.previous {
    z-index: 1;
    opacity: 0;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 12px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.products-hero-bg {
    display: none;
}

.products-section {
    position: relative;
    overflow: hidden;
}

.products-blob {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(62, 196, 225, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.products-delay-1 {
    transition-delay: 0.1s;
}

.products-delay-2 {
    transition-delay: 0.2s;
}