.christmas {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
}

.autumn {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    column-gap: 20px;
    row-gap: 20px;
}

.season-title {
    flex-basis: 100%;
}


.product-container {
    display: flex;
    justify-content: center;
    width: 400px;
    padding: 5px;
    background-color: #64717a;
    box-shadow: 0px 1px 2px #000;
    flex-wrap: wrap;
}

.product-container:hover {
    background-color: #D0C0A9;
    color: #64717a;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
}

h2 {
    font-family: 'Times New Roman', Times, serif;
    font-size: x-large;
    text-transform: uppercase;
    color: #fff8f0;
    background-color: #64717a;

}

h3 {
    font-size: large;
    color: #fff8f0;
    margin-top: 5px;
}

.slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 400px; /* or use aspect-ratio if preferred */

}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
    object-fit: cover; /* Optional: ensures images fill the container nicely */
}

.slide.active {
    opacity: 1;
    z-index: 1;
}


@media only screen and (max-width: 600px) {

    .slide {
        width: 300px;
        height: 300px;
    }

    .slideshow {
        height: 300px;
        width: 300px;
    }

    .product-container {
        width: 300px;
    }
}

@media (min-width: 601px) {

    .slide {
        width: 400px;
        height: 400px;
    }

    .slideshow {
        height: 400px;
        width: 400px;
    }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}