/* Request-a-Quote form (Hostfully-mode chalets). Uses theme button classes;
   this only lays out the fields to match the booking widget look. */
.mlh-quote-form { font-family: inherit; }
.mlh-quote-title {
    font-size: 1.25rem;
    margin: 0 0 1rem;
    color: var(--yml-primary, #1e3a5f);
}
.mlh-quote-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}
.mlh-quote-row > label,
.mlh-quote-full {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width: 120px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--yml-gray-600, #555);
    gap: 4px;
}
.mlh-quote-full { width: 100%; }
.mlh-quote-form input,
.mlh-quote-form textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border: 1px solid #d8dde3;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 400;
    color: #222;
    background: #fff;
}
.mlh-quote-form input:focus,
.mlh-quote-form textarea:focus {
    outline: none;
    border-color: var(--yml-secondary, #EDA86A);
}
.mlh-quote-price {
    margin: 0.5rem 0 1rem;
    padding: 0.75rem 1rem;
    background: #f4f7fa;
    border-radius: 8px;
    font-weight: 600;
    color: var(--yml-primary, #1e3a5f);
}
.mlh-quote-contact { margin-top: 0.5rem; }
.mlh-quote-form .yml-btn { width: 100%; justify-content: center; }
.mlh-quote-message { margin-top: 0.75rem; font-size: 0.9rem; }
