#qo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#qo-form {
    position: relative;
}

.qo-popup-inner {
    background: #fff;
    padding: 32px 24px 16px 24px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
    position: relative;
    overflow-y: auto;
    max-height: 95vh;
}

.qo-header {
    text-align: center;
    margin-bottom: 16px;
}

.qo-title {
    font-size: 20px;
    font-weight: bold;
}

.qo-desc {
    font-size: 13px;
    color: #888;
}

.qo-close {
    position: absolute;
    right: 15px;
    top: 0;
    font-size: 25px;
    line-height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555555;
    padding: 5px 10px;
    margin: 0;
    z-index: 1;
}

.qo-section {
    margin-bottom: 20px;
}

.qo-section h4 {
    margin-bottom: 8px;
    font-size: 15px;
}

.qo-address-row {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.qo-section input, .qo-section select, .qo-section textarea {
    width: 100%;
    padding: 7px 10px !important;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
}

.qo-section textarea {
    min-height: 38px;
}

#qo-product-info, #qo-order-summary {
    background: #f6f6f6;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 6px;
    font-size: 14px;
}

#qo-order-summary .qo-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.qo-submit-btn {
    display: block;
    width: 100%;
    background: #e60023;
    color: #fff;
    font-size: 16px;
    padding: 11px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 12px;
}

#qo-msg {
    text-align: center;
    color: green;
    margin-top: 10px;
}
