.cat-slide-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    margin: auto;
}

.base-cat-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
	z-index: 8;
	
}

.slide-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0%;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 15%,
        rgba(255, 255, 255, 0) 85%,
        rgba(255, 255, 255, 1) 100%);
    z-index: 20;
}

.slide-overlay.layer-1 {z-index: 9;}
.slide-overlay.layer-2 {z-index: 11;}
.slide-overlay.layer-3 {z-index: 12;}
.slide-overlay.layer-4 {z-index: 10;}
.slide-overlay.layer-5 {z-index: 10;}
.slide-overlay.layer-6 {z-index: 8;}


.slide-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
}





.slide-image.active {
    opacity: 1;
    z-index: 10;
}

.cat-slide-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
	    z-index: 21;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(225deg, #DAD7FF, #ADA2FF);
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.circle-2 {
    width: 74px;
    height: 74px;
    background: linear-gradient(45deg, #DAD7FF, #ADA2FF);
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.circle-3 {
    width: 46px;
    height: 46px;
    background: linear-gradient(45deg, #DAD7FF, #ADA2FF);
    bottom: -30px;
    right: -30px;
    animation-delay: 3s;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media only screen and (max-width: 767px) {
.circle-1 {
    width: 80px;
    height: 80px;
    top: 0px;
    left: 0px;
}

.circle-2 {
    width: 50px;
    height: 50px;
    bottom: 0px;
    right: 40px;
}
	
.circle-3 {
    width: 31px;
    height: 31px;
    bottom: 0px;
    left: 40px;
}
}

