#rq-overlay {
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    z-index:9998;
}

#rq-popup {
    display:none;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    background:#fff;
    padding:30px;
    max-width:500px;
    width:90%;
    border-radius:8px;
    z-index:9999;
}

#rq-close {
    float:right;
    cursor:pointer;
    font-size:32px;
}

.rq-btn {
    background:#0073aa;
    color:#fff;
    padding:12px 16px;
    border-radius:5px;
    cursor:pointer;
    border:none;
    margin-top:15px;
	margin-bottom:15px;
}
/* LIMIT POPUP HEIGHT */
#rq-popup {
    max-height: 85vh;        /* Prevent overly tall popup */
    overflow-y: auto;        /* Scroll if content is long */
}

/* MAKE CF7 FIELDS MORE COMPACT */
#rq-popup input[type="text"],
#rq-popup input[type="email"],
#rq-popup textarea {
    padding: 6px 10px !important;
    font-size: 14px !important;
    height: auto !important;
    margin-bottom: 10px !important;
}

/* REDUCE LABEL SPACING */
#rq-popup label {
    font-size: 13px;
    display: block;
    margin-bottom: 4px;
}

/* STYLE READONLY FIELDS (Product, Variation, SKU) */
#product-title,
#variation-details,
#variation-sku {
    background: #f3f3f3;
    border: 1px solid #ccc;
}

/* FIX CLOSE BUTTON POSITION */
#rq-close {
    position: absolute;
    top: 5px;
    right: 10px;
    float: none;
}
#rq-popup textarea {
    height: 80px !important;
}
#variation-details{
	text-transform:capitalize;
}