.quote-cart-notice {
    margin-bottom: 30px;
}

.quote-form-wrapper {
    margin-top: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.quote-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form-group {
    flex: 1;
}

.quote-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.quote-form-group input[type="text"],
.quote-form-group input[type="email"],
.quote-form-group input[type="tel"],
.quote-form-group textarea,
.quote-form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.quote-form-group textarea {
    resize: vertical;
}

.quote-form-actions {
    margin-top: 30px;
    text-align: center;
}

.quote-form-actions button {
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
}

.quote-form-actions button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.quote-response-message {
    margin-top: 20px;
}

.quote-success-message {
    background: #f0f9ff;
    border: 2px solid #0073aa;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
}

.quote-success-message .success-icon {
    font-size: 60px;
    color: #0073aa;
    margin-bottom: 20px;
}

.quote-success-message h3 {
    color: #0073aa;
    font-size: 28px;
    margin: 0 0 20px 0;
}

.quote-success-message p {
    line-height: 1.8;
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

.qrwc-recaptcha-wrapper {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.qrwc-hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.quote-form-group select#address_country {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}

.quote-form-consents {
    margin: 20px 0;
}
.quote-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}
.quote-consent-label input[type="checkbox"] {
    margin-top: 3px;
    min-width: 18px;
    min-height: 18px;
}
.quote-consent-label a {
    color: #0073aa;
    text-decoration: underline;
}

/* Phone prefix selector */
.qrwc-phone-wrapper {
    display: flex;
    gap: 0;
}
.qrwc-phone-prefix {
    width: 120px;
    min-width: 120px;
    padding: 12px 8px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    background-color: #f9f9f9;
    cursor: pointer;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}
.qrwc-phone-input {
    flex: 1;
    border-radius: 0 4px 4px 0 !important;
}

/* Country dropdown with flags */
.quote-form-group select {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
    cursor: pointer;
}

@media (max-width: 768px) {
    .quote-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .quote-success-message {
        padding: 30px 20px;
    }
}