#wc-quote-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.wc-quote-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: none;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.wc-quote-close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.wc-quote-close:hover,
.wc-quote-close:focus {
    color: #333;
    text-decoration: none;
}

.wc-quote-modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #333;
}

#wc-quote-form p {
    margin-bottom: 15px;
}

#wc-quote-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

#wc-quote-form input[type="email"],
#wc-quote-form input[type="text"],
#wc-quote-form input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

#wc-quote-form input:focus {
    border-color: #007cba;
    outline: none;
}

#wc-quote-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#wc-quote-form button[type="submit"]:hover {
    background-color: #333;
}

#wc-quote-form button[type="submit"]:disabled {
    background-color: #888;
    cursor: not-allowed;
}

#wc-quote-request-btn {
    width: 100%;
    text-align: center;
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}
#wc-quote-request-btn:hover {
    background-color: #e2e2e2;
}
