/* ===== LIGHTBOX ===== */

.lightbox{

    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    justify-content:center;
    align-items:center;
    z-index:9999;

}

.lightbox img{

    max-width:95%;
    max-height:90%;
    border-radius:12px;

}

.close-lightbox{

    position:absolute;
    top:30px;
    right:40px;
    color:white;
    font-size:50px;
    cursor:pointer;

}

#main-image{

    display:block;
    width:100%;
    height:auto;
    max-height:70vh;
    object-fit:contain;
    border-radius:12px;
    cursor:zoom-in;

}



.thumb.active{

    border:3px solid #8f5cc8;
}
    
.image-wrapper{

    width:100%;
    position:relative;

}

.gallery-arrow{

    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.55);
    color:white;
    font-size:28px;
    cursor:pointer;
    z-index:5;
    transition:.2s;

}

.gallery-arrow:hover{

    background:#8f5cc8;

}

#prev-image{

    left:15px;

}

#next-image{

    right:15px;

}

.gallery-dots{

    display:flex;
    justify-content:center;
    gap:10px;
    margin:18px 0;

}

.dot{

    width:12px;
    height:12px;
    border-radius:50%;
    background:#cfcfcf;
    cursor:pointer;
    transition:.25s;

}

.dot.active{

    background:#8f5cc8;
    transform:scale(1.3);

}

@media (max-width:768px){

    .product-page{

        flex-direction:column;
        gap:25px;
        padding:15px;

    }

    .product-gallery{

        width:100%;
        max-width:100%;

    }

    .product-info{

        width:100%;

    }

}
