/* ============================================================================
   hotel-widget.css — Buchungs-Widget der Hotel-Detailseiten
   ----------------------------------------------------------------------------
   REINER UMZUG, kein neues Design. Inhalt 1:1 aus dem seitenlokalen
   <style>-Block uebernommen (Nachtrag 12, Weg B). Klassennamen und IDs bleiben
   unveraendert, weil das Buchungs-JavaScript daran haengt (hw-field, hw-chip,
   hw-card, hw-price, hw-results ... sowie die IDs hw-adults, hw-airport ...).
   Nicht umbenennen, nicht "aufraeumen" — jede Umbenennung bricht die Strecke.
   Stand 2026-08-06.
   ========================================================================= */

.section-preise{background:#0F1418}
    #hotel-widget{max-width:880px;margin:2rem auto 0;background:rgba(201,168,76,.04);border:1px solid rgba(201,168,76,.18);border-radius:14px;padding:2rem}
    .hw-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:1rem;margin-bottom:1.25rem}
    .hw-field{display:flex;flex-direction:column}
    .hw-field label{font-size:.72rem;letter-spacing:1.2px;text-transform:uppercase;color:#C9A84C;margin-bottom:.4rem}
    .hw-field select,.hw-field input{background:rgba(255,255,255,.05);border:1px solid rgba(201,168,76,.3);color:#F5F3EF;padding:.7rem;border-radius:8px;font-family:inherit;font-size:.95rem}
    .hw-chips{display:flex;flex-wrap:wrap;gap:.5rem}
    .hw-chip{background:rgba(255,255,255,.05);border:1px solid rgba(201,168,76,.3);color:#F5F3EF;padding:.5rem 1rem;border-radius:20px;cursor:pointer;font-size:.85rem;transition:.2s}
    .hw-chip.is-active{background:#C9A84C;color:#0B0F14;border-color:#C9A84C;font-weight:600}
    .hw-check{display:flex;align-items:center;gap:.5rem;color:rgba(250,248,245,.75);margin:1rem 0;font-size:.9rem}
    #hw-search{width:100%;margin-top:.5rem}
    .hw-results{margin-top:1.5rem;display:flex;flex-direction:column;gap:1rem}
    .hw-card{display:flex;gap:1rem;background:rgba(255,255,255,.03);border:1px solid rgba(201,168,76,.15);border-radius:10px;padding:1.1rem;align-items:center}
    .hw-card__img{width:150px;height:104px;border-radius:8px;flex-shrink:0;background:linear-gradient(135deg,#1a2129,#0B0F14);background-size:cover;background-position:center;overflow:hidden}
    .hw-card__imgel{width:100%;height:100%;object-fit:cover;display:block}
    .hw-lage{font-size:.82rem;color:rgba(250,248,245,.6);line-height:1.5;margin-bottom:.4rem;padding-left:.1rem}
    .hw-card__main{flex:1;min-width:0}
    .hw-card__row{display:flex;gap:.6rem;flex-wrap:wrap;font-size:.82rem;color:rgba(250,248,245,.6);margin-top:.35rem}
    .hw-badge{background:rgba(201,168,76,.15);color:#C9A84C;padding:.15rem .6rem;border-radius:6px;font-size:.78rem;font-weight:600}
    .hw-card__price{text-align:right;min-width:130px}
    .hw-price{font-size:1.45rem;font-weight:700;color:#C9A84C;line-height:1}
    .hw-price small{display:block;font-size:.7rem;color:rgba(250,248,245,.5);font-weight:400;margin-top:.2rem}
    .hw-actions{display:flex;gap:.5rem;margin-top:.7rem;justify-content:flex-end}
    .hw-wa{background:transparent;border:1px solid rgba(201,168,76,.4);color:#C9A84C;padding:.45rem .8rem;border-radius:6px;text-decoration:none;font-size:.8rem;font-weight:600;white-space:nowrap}
    .hw-wa:hover{border-color:#C9A84C;background:rgba(201,168,76,.1)}
    .hw-anfrage{background:rgba(201,168,76,.15);color:#C9A84C;padding:.45rem .8rem;border-radius:6px;text-decoration:none;font-size:.8rem;font-weight:600;white-space:nowrap}
    .hw-empty,.hw-loading{text-align:center;padding:2rem;color:rgba(250,248,245,.6)}
    @media(max-width:640px){.hw-card{flex-direction:column}.hw-card__img{width:100%;height:170px}.hw-card__price{text-align:left;width:100%}.hw-actions{justify-content:stretch}.hw-actions a{flex:1;text-align:center}}

/* ============================================================================
   RESKIN 2026-08-06 (Nachtrag 13) — helle CI-Sprache statt Dunkelseite.
   Werte 1:1 aus der Referenz uebernommen:
     Formular-Controls  reisedesign.css  (.rd-form__input/__select/__label)
     Chips              auszeit-design-system.css (.chip)
     Ergebniskarten     hotels-signature.css (.hotel-card*)
   Klassennamen und IDs bleiben unveraendert — das Buchungs-JS haengt daran.
   ========================================================================= */

.section-preise { background: var(--paper, #F5F3EF); }

#hotel-widget {
  max-width: 880px;
  margin: 2rem auto 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  background: #fff;
}

/* Labels — .rd-form__label */
.hw-field label {
  margin-bottom: 6px;
  color: var(--ink, #1A1A1A);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* Controls — .rd-form__input / .rd-form__select */
.hw-field select,
.hw-field input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  background: #fff;
  color: var(--ink, #1A1A1A);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: .95rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 200ms ease;
}
.hw-field select {
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' stroke='%236E6A60' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.hw-field select:focus,
.hw-field input:not([type="checkbox"]):not([type="radio"]):focus {
  outline: none;
  border-color: var(--gold, #C9A84C);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, .3);
}

/* Chips — .chip aus dem Design-System */
.hw-chip {
  padding: 9px 18px;
  border: 1px solid var(--line, rgba(26, 26, 26, .14));
  border-radius: 100px;
  background: #fff;
  color: var(--ink, #1A1A1A);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 500;
  transition: border-color .15s, background .15s;
}
.hw-chip:hover { border-color: var(--gold, #C9A84C); background: rgba(201, 168, 76, .08); }
.hw-chip.is-active { border-color: var(--gold, #C9A84C); background: var(--gold, #C9A84C); color: var(--ink, #1A1A1A); font-weight: 600; }

.hw-check { color: var(--muted, #6E6A60); }

/* Ergebniskarten — hotel-card-Sprache */
.hw-card {
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  background: #fff;
}
.hw-card__img { border-radius: 0; background: var(--paper-deep, #EDEAE3); }
.hw-lage,
.hw-card__row { color: var(--muted, #6E6A60); }
.hw-badge {
  border-radius: 0;
  background: var(--paper, #F5F3EF);
  color: #615b53;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hw-price { color: var(--gold-text, #7A5E1A); font-family: var(--display, 'Playfair Display', serif); font-weight: 500; }
.hw-price small { color: var(--muted, #6E6A60); }
.hw-wa,
.hw-anfrage {
  border-radius: 0;
  font-family: var(--body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: .77rem;
  letter-spacing: .02em;
}
.hw-wa { border: 1px solid var(--line, rgba(26, 26, 26, .14)); background: #fff; color: var(--gold-text, #7A5E1A); }
.hw-wa:hover { border-color: var(--gold, #C9A84C); background: rgba(201, 168, 76, .08); }
.hw-anfrage { border: 1px solid var(--gold, #C9A84C); background: var(--gold, #C9A84C); color: var(--ink, #1A1A1A); }
.hw-empty,
.hw-loading { color: var(--muted, #6E6A60); }

/* Variante A: fuenf Kacheln in einer Reihe (sonst gilt der 4er-Baustein) */
.hotels-promise-grid--five { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .hotels-promise-grid--five { grid-template-columns: repeat(2, 1fr); } }

/* Zimmerkategorie-Filter: Kaestchen + Beschriftung als Paar, nicht als Feld.
   Ohne den Ausschluss oben wurden die Checkboxen wie Eingabefelder gestylt
   (100 % Breite, Innenabstand) und erschienen als leere Kaesten. */
.hw-roomfilter .hw-rooms,
#hw-rooms {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-top: .4rem;
}
.hw-roomfilter label:not(:first-child),
#hw-rooms label {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  margin: 0;
  padding: .45rem .8rem;
  border: 1px solid var(--line, rgba(26, 26, 26, .14));
  border-radius: 100px;
  background: #fff;
  color: var(--ink, #1A1A1A);
  font-size: .78rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.hw-roomfilter input[type="checkbox"],
#hw-rooms input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--gold, #C9A84C);
  flex: 0 0 auto;
}
