/* Overlay */
#wc-inquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Modal box */
#wc-inquiry-modal {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: wc-inquiry-fadein 0.2s ease;
}

@keyframes wc-inquiry-fadein {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Title */
#wc-inquiry-modal h2 {
    margin: 0 0 20px;
    font-size: 1.4em;
}

/* Close button */
#wc-inquiry-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
    transition: color 0.15s;
}

#wc-inquiry-close:hover {
    color: #000;
}

/* Read-only product name field */
#wc-inquiry-modal input[name="product-name"] {
    background-color: #f5f5f5 !important;
    color: #555 !important;
    cursor: not-allowed !important;
    border-color: #ddd !important;
}

/* Trigger button spacing */
.wc-inquiry-btn {
    margin-top: 10px !important;
    display: block !important;
    width: 100% !important;
}
