.mg-product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .26);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}

.mg-product-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mg-product-modal {
    position: fixed;
    right: 0;
    top: 0;
    width: 430px;
    max-width: calc(100vw - 18px);
    height: 100vh;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    box-shadow: 0 26px 80px rgba(15, 23, 42, .18);
    z-index: 160;
    transform: translateX(104%);
    transition: .22s ease;
    display: flex;
    flex-direction: column;
}

.mg-product-modal.is-open {
    transform: translateX(0);
}

.mg-product-modal__head {
    height: 72px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.mg-product-modal__body {
    padding: 20px;
    overflow: auto;
    flex: 1;
}

.mg-product-modal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.mg-product-modal-row span {
    color: #6b7280;
}

.mg-product-modal__body p {
    color: #6b7280;
    line-height: 1.55;
}
