.product__gallery {
    display: flex;
    padding: 15px;
    transition: 0.3s;
    gap: 15px;
}
.gallery__column {
    display: flex;
    flex-direction: column;
    width: 33%;
    gap: 15px;
}
@media (max-width: 576px) {
    .product__gallery {
        display: flex;
        padding: 10px;
        transition: 0.3s;
        gap: 7px;
    }
    .gallery__column {
        display: flex;
        flex-direction: column;
        width: 33%;
        gap: 7px;
    }
}
.gallery__thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}
.gallery__image:hover {
    transform: scale(1.1);
}

.gallery_buy{
    width: 100%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    padding: 0;
    left: 0;
    text-align: center;
}
.gallery_buy > .aaa{
    margin: 10px 0;
    color: black;
    width: 90%;
    background: white;
    font-weight: 600;
}
@media (max-width: 576px) {
    .gallery_buy{
        width: 100%;
        z-index: 1;
        position: absolute;
        bottom: 0;
        padding: 0;
        left: 0;
        text-align: center;
    }
    .gallery_buy > .aaa{
        margin: 6px 0;
        color: black;
        width: 90%;
        padding: 8px 0;
        font-size: 0.9em;
        background: white;
    }
}


.gallery__heading{
    width: 100%;
    text-transform: uppercase;
    font-size: 3.5em;
    margin: 30px 0;
    font-weight: 600;
    text-align: center;
}


.cust-images{
    width: 100%;
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    margin: 40px 0 20px;
    padding: 10px 0;
    font-size: 1.5em;
    text-align: center;
    text-transform: uppercase;
}

#product__gallery__image-modal, #product__customisation-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgb(0 0 0 / 59%); /* Black w/ opacity */
    z-index: 9999;
}
  
/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 450px;
}

/* The Close Button */
.image-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    z-index: 9999;
}

.image-close:hover,
.image-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}

.zoom-container{
    width: 100%;
    z-index: 9999;
    width: 500px;
}