/* Dufoor Booking — minimal, framework-agnostic layout for the Phase 6 front-end.
   Intentionally unstyled beyond basic spacing/readability — visual design is a
   separate, later concern for whoever owns the site's theme. */

.df-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
}

.df-search-form__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.df-product-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
}

.df-product-card__offer {
    background: #b32d2e;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.8em;
}

.df-product__gallery img {
    max-width: 100%;
    height: auto;
    margin-right: 8px;
}

.df-product__specs,
.df-product__facilities,
.df-booking-funnel__addons {
    list-style: none;
    padding: 0;
}

.df-booking-funnel__form label {
    display: block;
    margin-bottom: 10px;
}

.df-booking-funnel__form input,
.df-booking-funnel__form textarea {
    display: block;
    width: 100%;
    max-width: 400px;
}

.df-booking-funnel__error {
    color: #b32d2e;
}

.df-price-list table,
.df-sitemap ul {
    width: 100%;
}
