/* =================================================
 * TIDO VARIATION POPUP STYLES
 * ================================================= */

/* ===== Overlay ===== */
#tido-variation-overlay {
    position: fixed !important;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 2147483646 !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

#tido-variation-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Popup ===== */
#tido-variation-popup {
    position: fixed !important;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2147483647 !important;
    transform: translateY(100%);
    transition: transform .35s ease;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding: 16px;
    padding-top: 44px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 40px rgba(0,0,0,.35);
    isolation: isolate;
}

#tido-variation-popup.active {
    transform: translateY(0);
}

/* ===== Close button ===== */
#tido-variation-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #333;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    user-select: none;
}

#tido-variation-close:hover {
    background: #e5e5e5;
}
