/* --- Force hide the original Add to Cart button --- */
.woocommerce div.product form.cart .button {
    display: none !important;
}

/* --- Main "Send Inquiry" Button --- */
.inquiry-button {
    background-color: #BE185D !important;
    border-color: #BE185D !important;
    color: #ffffff !important;
    transition: opacity 0.2s ease;
}
.inquiry-button:hover {
    opacity: 0.9;
}

/* --- SCROLL LOCK --- */
/* This class is added by JavaScript and is the key to fixing the double scrollbar */
body.modal-open {
    overflow: hidden;
}

/* --- MODAL STYLES --- */
#inquiry-modal-wrapper {
    display: none; 
    position: fixed;
    z-index: 99999; /* Ensure it's on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 25, 25, 0.8);
    overflow-y: auto;
    padding: 2rem 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

#inquiry-modal-content {
    background-color: #ffffff;
    margin: 0 auto; 
    padding: 2.5rem; 
    width: 100%;
    max-width: 550px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    text-align: left;
    animation: fadeIn 0.3s ease-out;
}

#inquiry-modal-content h2 {
    font-size: 1.5rem; /* Reduced title size */
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

#inquiry-modal-close {
    color: #9ca3af; 
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: normal;
    line-height: 1;
    transition: all 0.2s ease;
}
#inquiry-modal-close:hover {
    color: #111827;
    transform: rotate(90deg);
}

/* --- FORM STYLING --- */
#product-inquiry-form p {
    margin-bottom: 1rem;
}

#product-inquiry-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.875rem;
    color: #374151;
}

#product-inquiry-form input[type="text"],
#product-inquiry-form input[type="email"],
#product-inquiry-form input[type="tel"],
#product-inquiry-form input[type="number"],
#product-inquiry-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-sizing: border-box; 
    transition: all 0.2s ease;
}
#product-inquiry-form input:focus,
#product-inquiry-form textarea:focus {
    border-color: #BE185D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.15);
}

#product-inquiry-form button {
    width: 100%;
    background-color: #BE185D;
    color: white;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: opacity 0.2s ease;
}
#product-inquiry-form button:hover {
    opacity: 0.85;
}
