.product-container {
    font-family: 'Inter', sans-serif;
    max-height: 100vh;
    min-height: 90vh;
    background: #0a192f;
    clear: both;
}

.slider-wrapper {
    margin: 0 auto;
}

.slider-track {
    height: 90vh;
    margin-top: -5%;
    margin-bottom: -10%;
}

.product-slide {
    min-width: 250px;
    max-width: 600px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(-50%);
    pointer-events: none;
    left: 50%;
}

.product-slide.prev, .product-slide.next {
    height: 40%;
    opacity: 0.4;
    pointer-events: auto;
    cursor: pointer;
}

.product-slide.prev {
    transform: translateX(-130%) scale(0.75);
    z-index: 0;
}

.product-slide.next {
    transform: translateX(30%) scale(0.75);
    z-index: 0;
}

.product-slide.active {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
    filter: brightness(1);
    box-shadow: 0 20px 20px rgba(240, 245, 246, 0.3);
    pointer-events: auto;
    z-index: 2;
}

.slide-img {
    object-fit: contain;
}

.slide-content {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.product-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    padding: 2% 10%;
    font-size: 1.2rem;
    margin: 0;
    color: rgb(251, 255, 253);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.slide-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.2rem;
}

.learn-more-content {
    left: 30%;
    gap: 10px;
    padding: 20px;
}

.learn-more {
    cursor: pointer;
    gap: 10px
}

.arrow {
    width: fit-content;
    height: fit-content;
    margin: auto 0;
}

.learn-more-line {
    width: auto;
    height: 3px;
}

.product-container a {
    color: white;
    text-decoration: none;
}