.details_left {
    display: flex;
    gap: 1rem;
}

.small_img {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.small_img__box {
    height: 100px;
    width: 100px;
    cursor: pointer;
    object-fit: contain;
    border: 1px solid #ccc;
}

.big_img img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border: 1px solid #ccc;
}

.product_price p {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-top: 10px;
    font-size: 18px;
}

.product_price p a {
    color: var(--main-color);
    font-weight: 600;
}

.product_table tr td {
    border: 1px solid #ccc;
    padding: 10px;
}

.product_table {
    margin-top: 1rem;
}

.product_table table {
    width: 100%;
}

.product_parra p {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 27px;
}


/* modal_flex */
.modal_flex {
    display: flex;
    gap: 1rem;
}

.modal_flex__product,
.modal_input {
    width: 100%;
}

.modal_input input,
.modal_input textarea {
    width: 100%;
    outline: none;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    padding: 7px;
}

.modal_flex__product img {
    width: 100%;
    border: 1px solid #ccc;
}

.product-modal .modal-dialog {
    max-width: 800px;
}
.big_img{
    position: relative;
}
.zoom-lens {
    position: absolute;
    width: 100px; /* Size of zoom lens */
    height: 100px;
    border: 2px solid #000;
    background-repeat: no-repeat;
    pointer-events: none;
    display: none;
    transform: scale(1.5);
}

@media(max-width:768px) {
    .details_left {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .details_right {
        margin-top: 1rem;
    }

    .details_right h3 {
        font-size: 18px;
    }

    .product_price p {
        font-size: 16px;
        margin-top: 5px;
    }

    .product_table tr td {
        font-size: 14px;
        padding: 5px;
    }

    .product_parra p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 25px;
    }

    .big_img img {
        height: 350px;
    }

    .details_wrapper {
        padding: 25px 0 50px 0;
    }

    .small_img {
        display: flex;
        flex-direction: row;
        height: auto;
        width: auto;
    }
}

@media(max-width:576px) {
    .modal_flex {
        flex-direction: column;
    }

    .modal-title {
        font-size: 15px;
    }

    .small_img__box {
        height: auto;
    }
}