.carousel {
    margin-bottom: 4rem;
}

.carousel-caption {
    bottom: 3rem;
    z-index: 10;
}

.carousel-item {
    height: 600px;
}

.bg-image {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}

.bg-image.bg1 {
    background-image: url(/images/bg1.jpg);
}

.bg-image.bg2 {
    background-image: url(/images/bg2.jpg);
}

.footer {
    margin-top: 3rem;
}

.product-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-image-wrapper {
    border: 1px solid #eee;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    display: block;
}

a.product {
    display: block;
}

.product-name {
    font-size: 18px;
    margin-top: 8px;
}

.product-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
}

.product-images .carousel-item {
    height: auto;
}

.product-image-slide {
    aspect-ratio: 1/1;
    object-fit: contain;
    background-color: #2b3035;
}

.product-name.title {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-info-wrapper {
        grid-template-columns: 1fr;
    }
}
