.product__carousel {
    display: block;
    max-width: 700px;
}
.product__carousel a {
    display: block;
    margin-bottom: 15px;
}
/* .gallery-top-static {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
} */

.gallery-top-static .static-image img {
  width: 100%;
  max-width: 450px; 
  height: auto;
}
@media screen and (min-width:500px) {
    #mainProductImage{
        height: 300px;
    }
}
#mainProductImage{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}
.static-thumb{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
}
.static-image{
    justify-content: center;
    width: -webkit-fill-available;
    display: flex;
}
.gallery-thumbs-static .static-thumb img.active {
  border: 2px solid #007bff; /* your desired highlight color */
  border-radius: 5px; /* optional: rounded corners */
  padding: 2px; /* optional: spacing inside border */
  box-sizing: border-box; /* ensures padding does not affect size */
}

.gallery-thumbs-static {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 3rem;
}

.gallery-thumbs-static .static-thumb img {
  width: 100%;
  height: auto;
}

.product__carousel .gallery-top {
    border: 1px solid #ebebeb;
    border-radius: 3px;
    margin-bottom: 5px;
    height: auto !important;
}
.product__carousel .gallery-top .swiper-slide {
    position: relative;
    overflow: hidden;
}
.product__carousel .gallery-top .swiper-slide a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.product__carousel .gallery-top .swiper-slide a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
    min-width: 100%;
    min-height: 100%;
}
.product__carousel .swiper-button-next.swiper-button-white,
.product__carousel .swiper-button-prev.swiper-button-white {
    color: #ff3720;
}
.product__carousel .gallery-thumbs .swiper-slide {
    position: relative;
    transition: border 0.15s linear;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    height: calc(100% - 2px);
}
.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #000;
}
.product__carousel .gallery-thumbs .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

