.product-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Enable horizontal scrolling if needed */
}

.gallery-item {
    flex: 0 0 auto; /* Prevent items from stretching */
    text-align: center; /* Center caption text */
}

.gallery-item img {
    display: block; /* Prevents image from affecting line height */
    margin: 0 auto; /* Center image horizontally */
}

.gallery-item .caption {
    font-size: 0.8em;
    color: #777;
    margin-top: 5px;
}

body {
  background-color: blue;
}
