/* Modal styles for WC Cart Enquiry */
.cart-enquiry-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}
.cart-enquiry-content {
    background: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    max-width: 650px;
    position: relative;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.close-enquiry {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.cart-enquiry-content input,
.cart-enquiry-content textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
    box-sizing: border-box;
}
.cart-enquiry-content textarea { min-height: 100px; }
.cart-enquiry-cart-items { margin-bottom: 10px; }
#cart-enquiry-items-list { font-size: 14px; }
#cart-enquiry-response { margin-top: 10px; }

/* Export CSV button colors */
a.button[style*="#ff5000"] {
    background: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
}
a.button[style*="#ff5000"]:hover {
    background: #4d5154 !important;
    border-color: #4d5154 !important;
    color: #ffffff !important;
}

@media (max-width:600px){
    .cart-enquiry-content { width: 95%; padding: 12px; }
}
