.product-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    position: relative;
}

.product-banner {
    position: relative;
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 3.2 / 1;
    margin-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
}

@media screen and (max-width: 1920px) {
    .product-banner {
        border-radius: 0px;
    }

}

.banner-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.prev,
.next {
    position: absolute;
    height: 100%;
    width: 8%;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    mix-blend-mode: difference;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.product-header {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 85%;
    max-width: 1200px;
    color: #000;
    margin: auto;
    margin-top: 2.5rem;
}

.product-header h1 {
    margin: auto 0;
    line-height: 2;
}

.product-header p {
    margin: auto 0;
    line-height: 1.5;
}

.production {
    display: grid;
    width: 90%;
    max-width: 1200px;
    height: auto;
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    overflow: visible;
}

.product {
    background: #ffffff;
    text-align: center;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    opacity: 0.8;
    transform: translateX(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.product.visible {
    opacity: 1;
    transform: translateY(0);
}

.product img,
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    z-index: 0;
}

.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    pointer-events: none;
}

.product img:hover {
    transform: scale(1.05);
}

.information {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    z-index: 2;
}

.information-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}

.product h2 {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    margin: 0;
}

.product .price {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    z-index: 1;
    margin: 0;
}

.information img {
    height: 100%;
    width: auto;
    z-index: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.page {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 3rem;
    justify-content: space-between;
    margin: auto;
    margin-top: 0;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .production {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (prefers-color-scheme: dark) {
    .banner-slide img {
        filter: brightness(0.8);
    }

    .product-header h1,
    .product-header p {
        color: #ffffff;
    }

    .product h2,
    .product .price {
        color: #ffffff;
    }

    .information img {
        filter: brightness(0.8);
    }
}