#custom-enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#custom-enquiry-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    z-index: 1001;
}

#custom-enquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#custom-enquiry-response {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1002;
}

#custom-enquiry-form input[type="text"],
#custom-enquiry-form input[type="email"] {
    width: 100%;
	margin-bottom: 10px;
}

#custom-enquiry-form textarea {
    width: 100%;
}

.custom-enquiry-button-loop + .astra-shop-summary-wrap .woocommerce-loop-product__buttons {
    display: none!important;
}

