

/* =========================
   ALTANZ MOBILE MODAL (CLEAN FINAL)
========================= */

@media (max-width: 768px) {

    /* Stack layout */
    .altanz-modal-body {
        display: block !important;
    }

    .altanz-modal-left,
    .altanz-modal-right {
        width: 100% !important;
    }

    /* Spacing */
    .altanz-modal-right {
        margin-top: 15px;
    }

    /* Preview box */
    .altanz-preview-box {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }

    /* Section spacing */
    .altanz-section {
        margin-bottom: 15px;
    }

    /* 🔥 SCROLL (CORRECT WAY) */
    .altanz-modal-content {
        max-height: 85vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Cart text wrap fix */
    tr.altanz-child .wc-item-meta {
        white-space: normal;
    }
}



/**********DESKTOP ONLY*********************/


/* DESKTOP: hide only price text, keep structure */
@media (min-width: 769px) {
    tr.altanz-child td.product-price .altanz-child-price {
        display: none;
    }
}

