/* ============ TOKENS ============ */
  #huf-booking-widget {
    --huf-primary: #1E3A2F;
    --huf-secondary: #1E6B2E;
    --huf-accent: #009688;
    --huf-text: #1A1A1A;
    --huf-bg: #F4F8F4;
    --huf-white: #FFFFFF;
    --huf-border: #DCE5DD;
    --huf-muted: #6B7770;
    font-family: 'Lato', sans-serif;
    color: var(--huf-text);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #huf-booking-widget * { box-sizing: border-box; }

  /* ============ SEARCH CARD ============ */
  .huf-search-card {
    background: var(--huf-white);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(30,58,47,0.12);
    padding: 32px;
    margin-top: -60px;
    position: relative;
    z-index: 200;
  }
  .huf-search-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--huf-primary);
    margin: 0 0 4px 0;
  }
  .huf-search-subtitle {
    font-size: 14px;
    color: var(--huf-muted);
    margin: 0 0 24px 0;
  }
  .huf-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr auto;
    gap: 12px;
    align-items: end;
  }
  @media (max-width: 800px) {
    .huf-search-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px) {
    .huf-search-grid { grid-template-columns: 1fr; }
    .huf-search-card { padding: 24px 20px; }
  }

  .huf-field { position: relative; }
  .huf-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--huf-primary);
    margin-bottom: 6px;
  }

  /* Date buttons - Booking.com style month/day */
  .huf-date-btn {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: var(--huf-bg);
    border: 2px solid var(--huf-border);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.2s;
    white-space: nowrap;
    overflow: hidden;
  }
  .huf-date-btn:hover, .huf-date-btn:focus-visible { border-color: var(--huf-accent); outline: none; }
  .huf-date-month {
    font-size: 14px;
    font-weight: 700;
    color: var(--huf-secondary);
    text-transform: uppercase;
  }
  .huf-date-day {
    font-size: 22px;
    font-weight: 700;
    color: var(--huf-text);
  }

  .huf-guests-btn {
    width: 100%;
    text-align: left;
    background: var(--huf-bg);
    border: 2px solid var(--huf-border);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    color: var(--huf-text);
  }
  .huf-guests-btn:hover, .huf-guests-btn:focus-visible { border-color: var(--huf-accent); outline: none; }

  .huf-search-btn {
    background: var(--huf-accent);
    color: var(--huf-white);
    border: none;
    border-radius: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
  }
  .huf-search-btn:hover { background: #00786d; }
  .huf-search-btn:active { transform: scale(0.98); }

  /* ============ CALENDAR POPOVER ============ */
  .huf-calendar-pop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--huf-white);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    padding: 16px;
    z-index: 100;
    width: 300px;
    max-width: calc(100vw - 48px);
  }
  .huf-calendar-pop.huf-open { display: block; }
  .huf-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  .huf-cal-month-label {
    font-weight: 700;
    color: var(--huf-primary);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
  }
  .huf-cal-nav {
    background: none;
    border: 1px solid var(--huf-border);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    color: var(--huf-secondary);
    font-weight: 700;
  }
  .huf-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
  }
  .huf-cal-weekday {
    font-size: 11px;
    color: var(--huf-muted);
    font-weight: 700;
    padding: 4px 0;
  }
  .huf-cal-day {
    padding: 8px 0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    border: none;
    background: none;
    color: var(--huf-text);
  }
  .huf-cal-day:hover { background: var(--huf-bg); }
  .huf-cal-day.huf-selected { background: var(--huf-accent); color: var(--huf-white); font-weight: 700; }
  .huf-cal-day.huf-disabled { color: #CCCCCC; cursor: not-allowed; }
  .huf-cal-day.huf-empty { visibility: hidden; }

  /* ============ GUESTS POPOVER ============ */
  .huf-guests-pop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--huf-white);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.18);
    padding: 16px;
    z-index: 100;
  }
  .huf-guests-pop.huf-open { display: block; }
  .huf-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--huf-border);
  }
  .huf-guest-label { display: flex; flex-direction: column; }
  .huf-guest-sublabel { font-size: 12px; color: var(--huf-muted); }
  .huf-stepper { display: flex; align-items: center; gap: 12px; }
  .huf-step-btn {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid var(--huf-secondary);
    background: var(--huf-white);
    color: var(--huf-secondary);
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
  }
  .huf-step-btn:hover { background: var(--huf-secondary); color: var(--huf-white); }
  .huf-step-value { min-width: 20px; text-align: center; font-weight: 700; }
  .huf-guests-done {
    width: 100%;
    margin-top: 12px;
    background: var(--huf-primary);
    color: var(--huf-white);
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    cursor: pointer;
  }

  /* ============ RESULTS ============ */
  .huf-results { margin-top: 56px; }
  .huf-results-header { text-align: center; margin-bottom: 32px; }
  .huf-results-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--huf-primary);
    margin: 0 0 6px 0;
  }
  .huf-results-subtitle { color: var(--huf-muted); font-size: 15px; margin: 0; }

  .huf-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
  }

  .huf-room-card {
    background: var(--huf-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30,58,47,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
  }
  .huf-room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(30,58,47,0.15); }
  .huf-room-card.huf-room-selected { border-color: var(--huf-accent); }

  .huf-room-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: var(--huf-bg);
  }
  .huf-room-body { padding: 18px; }
  .huf-room-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    color: var(--huf-primary);
    margin: 0 0 8px 0;
  }
  .huf-room-desc {
    font-size: 13.5px;
    color: var(--huf-muted);
    line-height: 1.5;
    margin: 0 0 14px 0;
    min-height: 40px;
  }
  .huf-room-combo-badge {
    display: inline-block;
    background: var(--huf-bg);
    color: var(--huf-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 10px;
    border-radius: 14px;
    margin-bottom: 8px;
  }
  .huf-room-amenities {
    font-size: 12px;
    color: var(--huf-secondary);
    margin: 0 0 8px 0;
    line-height: 1.5;
  }
  .huf-room-no-breakfast {
    font-size: 11.5px;
    color: var(--huf-muted);
    margin: 0 0 16px 0;
    font-style: italic;
  }
  .huf-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .huf-room-price-block { display: flex; flex-direction: column; }
  .huf-room-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--huf-primary);
    line-height: 1.4;
  }
  .huf-room-price-iva {
    font-size: 11px;
    font-weight: 400;
    color: var(--huf-muted);
    text-transform: none;
  }
  .huf-room-price-note { font-size: 11px; color: var(--huf-muted); }
  .huf-room-select-btn {
    background: var(--huf-secondary);
    color: var(--huf-white);
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }
  .huf-room-select-btn:hover { background: var(--huf-primary); }
  .huf-room-select-btn.huf-selected-btn { background: var(--huf-accent); }

  /* ============ UPSELL TOURS ============ */
  /* ============ SECCIÓN DE PROMOS EN EL WIDGET ============ */
  .huf-promos-section { margin-bottom: 40px; }
  .huf-promos-header { text-align: center; margin-bottom: 20px; }
  .huf-promos-eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #E8A000, #F5C400);
    color: #1A1A1A;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .huf-promos-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--huf-primary);
    margin: 0 0 6px 0;
  }
  .huf-promos-subtitle { color: var(--huf-muted); font-size: 14px; margin: 0; }
  .huf-promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
  }
  .huf-promo-card {
    background: var(--huf-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30,58,47,0.12);
    border: 2px solid #E8A000;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
  }
  .huf-promo-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,47,0.18); }
  .huf-promo-card.huf-promo-selected { border-color: var(--huf-accent); box-shadow: 0 0 0 3px rgba(0,150,136,0.2); }
  .huf-promo-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #E8A000;
    color: #1A1A1A;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
  }
  .huf-promo-img { width: 100%; height: 180px; object-fit: cover; background: var(--huf-bg); display: block; }
  .huf-promo-body { padding: 18px; }
  .huf-promo-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--huf-primary);
    margin: 0 0 8px 0;
  }
  .huf-promo-desc { font-size: 13.5px; color: var(--huf-muted); line-height: 1.5; margin: 0 0 12px 0; }
  .huf-promo-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
  .huf-promo-badge {
    background: #FFF8E6;
    color: #7A5500;
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid #E8D080;
  }
  .huf-promo-footer { display: flex; justify-content: space-between; align-items: center; }
  .huf-promo-price-block { display: flex; flex-direction: column; }
  .huf-promo-price { font-size: 22px; font-weight: 700; color: var(--huf-primary); }
  .huf-promo-price-note { font-size: 11px; color: var(--huf-muted); }
  .huf-promo-select-btn {
    background: #E8A000;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
  }
  .huf-promo-select-btn:hover { background: #CC8C00; }
  .huf-promo-select-btn.huf-promo-disabled {
    background: var(--huf-border);
    color: var(--huf-muted);
    cursor: not-allowed;
  }
  .huf-promo-select-btn.huf-promo-disabled:hover { background: var(--huf-border); }
  .huf-promos-divider {
    text-align: center;
    color: var(--huf-muted);
    font-size: 13px;
    margin: 0 0 24px 0;
    position: relative;
  }
  .huf-promos-divider::before, .huf-promos-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background: var(--huf-border);
  }
  .huf-promos-divider::before { left: 0; }
  .huf-promos-divider::after { right: 0; }

  /* ============ DESAYUNO ADD-ON ============ */
  .huf-breakfast {
    margin-top: 32px;
    display: flex;
    justify-content: center;
  }
  .huf-breakfast-card {
    background: var(--huf-white);
    border: 2px solid var(--huf-border);
    border-radius: 14px;
    padding: 18px 22px;
    max-width: 480px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: border-color 0.2s;
  }
  .huf-breakfast-card.huf-breakfast-active {
    border-color: var(--huf-accent);
    background: #F0FAF9;
  }
  .huf-breakfast-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .huf-breakfast-icon { font-size: 28px; }
  .huf-breakfast-info { display: flex; flex-direction: column; }
  .huf-breakfast-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--huf-primary);
  }
  .huf-breakfast-desc {
    font-size: 12.5px;
    color: var(--huf-muted);
    margin-top: 2px;
  }
  .huf-breakfast-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .huf-breakfast-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--huf-primary);
    white-space: nowrap;
  }

  /* Toggle switch */
  .huf-breakfast-toggle {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    cursor: pointer;
  }
  .huf-breakfast-toggle input { opacity: 0; width: 0; height: 0; }
  .huf-breakfast-slider {
    position: absolute;
    inset: 0;
    background: #CCCCCC;
    border-radius: 26px;
    transition: background 0.2s;
  }
  .huf-breakfast-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--huf-white);
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  .huf-breakfast-toggle input:checked + .huf-breakfast-slider {
    background: var(--huf-accent);
  }
  .huf-breakfast-toggle input:checked + .huf-breakfast-slider::before {
    transform: translateX(20px);
  }

  .huf-upsell { margin-top: 56px; }
  .huf-upsell-header { text-align: center; margin-bottom: 28px; }
  .huf-upsell-eyebrow {
    display: inline-block;
    background: var(--huf-bg);
    color: var(--huf-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
  }
  .huf-upsell-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--huf-primary);
    margin: 0 0 6px 0;
  }
  .huf-upsell-subtitle { color: var(--huf-muted); font-size: 14px; margin: 0; }

  .huf-tours-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 4px 16px 4px;
    scroll-snap-type: x proximate;
  }
  .huf-tour-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    background: var(--huf-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(30,58,47,0.08);
    border: 2px solid transparent;
  }
  .huf-tour-card.huf-tour-selected { border-color: var(--huf-accent); }
  .huf-tour-img { width: 100%; height: 130px; object-fit: cover; background: var(--huf-bg); }
  .huf-tour-body { padding: 14px; }
  .huf-tour-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--huf-accent);
    font-weight: 700;
  }
  .huf-tour-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--huf-primary);
    margin: 4px 0 6px 0;
    line-height: 1.3;
  }
  .huf-tour-desc {
    font-size: 12px;
    color: var(--huf-muted);
    line-height: 1.4;
    margin: 0 0 12px 0;
    min-height: 50px;
  }
  .huf-tour-footer { display: flex; justify-content: space-between; align-items: center; }
  .huf-tour-price { font-size: 13px; font-weight: 700; color: var(--huf-primary); }
  .huf-tour-price-iva { font-size: 10px; font-weight: 400; color: var(--huf-muted); }
  .huf-tour-price-na { font-size: 11px; color: var(--huf-muted); }
  .huf-tour-iva-note {
    font-size: 10.5px;
    color: var(--huf-muted);
    margin: 8px 0 0 0;
    line-height: 1.4;
  }
  .huf-tour-add-btn {
    background: var(--huf-bg);
    color: var(--huf-secondary);
    border: 1.5px solid var(--huf-secondary);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
  }
  .huf-tour-add-btn.huf-added { background: var(--huf-accent); color: var(--huf-white); border-color: var(--huf-accent); }

  /* ============ SUMMARY ============ */
  .huf-summary { margin-top: 48px; display: flex; justify-content: center; }
  .huf-summary-card {
    background: var(--huf-primary);
    color: var(--huf-white);
    border-radius: 14px;
    padding: 28px;
    max-width: 480px;
    width: 100%;
  }
  .huf-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin: 0 0 16px 0;
  }
  .huf-summary-lines { margin-bottom: 16px; }
  .huf-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .huf-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    padding: 14px 0;
    border-top: 2px solid rgba(255,255,255,0.3);
    margin-bottom: 18px;
  }
  .huf-checkout-btn {
    width: 100%;
    background: var(--huf-accent);
    color: var(--huf-white);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
  }
  .huf-checkout-btn:hover { background: #00786d; }
  .huf-summary-note {
    font-size: 11px;
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin: 10px 0 0 0;
  }

  /* ============ GUEST FORM ============ */
  .huf-guest-form { margin-top: 48px; display: flex; justify-content: center; }
  .huf-guest-form-card {
    background: var(--huf-white);
    border: 2px solid var(--huf-border);
    border-radius: 14px;
    padding: 28px;
    max-width: 480px;
    width: 100%;
  }
  .huf-form-back {
    background: none;
    border: none;
    color: var(--huf-secondary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-bottom: 16px;
  }
  .huf-form-back:hover { color: var(--huf-primary); }
  .huf-form-subtitle {
    font-size: 13.5px;
    color: var(--huf-muted);
    margin: 0 0 20px 0;
  }
  .huf-form-field { margin-bottom: 16px; }
  .huf-form-input {
    width: 100%;
    background: var(--huf-bg);
    border: 2px solid var(--huf-border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    color: var(--huf-text);
  }
  .huf-form-input:focus { border-color: var(--huf-accent); outline: none; }
  .huf-form-textarea {
    resize: vertical;
    min-height: 70px;
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
  }
  .huf-policy-box {
    background: var(--huf-bg);
    border-radius: 10px;
    padding: 16px 18px;
    margin: 8px 0 20px 0;
  }
  .huf-policy-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--huf-primary);
    margin: 0 0 8px 0;
  }
  .huf-policy-text {
    font-size: 13px;
    color: var(--huf-text);
    line-height: 1.5;
    margin: 0 0 10px 0;
  }
  .huf-policy-text strong { color: var(--huf-secondary); }
  .huf-policy-list {
    margin: 0;
    padding-left: 18px;
  }
  .huf-policy-list li {
    font-size: 12.5px;
    color: var(--huf-muted);
    line-height: 1.6;
    margin-bottom: 4px;
  }
  .huf-form-error {
    background: #FDEEEE;
    color: #B23A3A;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    margin: 0 0 16px 0;
  }
  /* Override de la nota dentro del form (fondo claro, no oscuro) */
  .huf-guest-form-card .huf-summary-note,
  .huf-confirmation-card .huf-summary-note {
    color: var(--huf-muted);
  }

  /* ============ CONFIRMATION ============ */
  .huf-confirmation { margin-top: 48px; display: flex; justify-content: center; }
  .huf-confirmation-card {
    background: var(--huf-white);
    border-radius: 14px;
    padding: 36px 28px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(30,58,47,0.1);
  }
  .huf-confirmation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--huf-accent);
    color: var(--huf-white);
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 16px;
  }
  .huf-confirmation-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--huf-primary);
    margin: 0 0 10px 0;
  }
  .huf-confirmation-text {
    font-size: 14px;
    color: var(--huf-muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .huf-payment-box {
    background: var(--huf-bg);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: left;
  }
  .huf-payment-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--huf-primary);
    margin: 0 0 6px 0;
  }
  .huf-payment-text {
    font-size: 13px;
    color: var(--huf-muted);
    line-height: 1.5;
    margin: 0;
  }
  .huf-stay-info-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    padding: 0 4px;
  }
  .huf-stay-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--huf-muted);
  }
  .huf-stay-info-icon { font-size: 14px; }

  .huf-confirmation-whatsapp { width: 100%; box-sizing: border-box; }

  /* ============ LOADING / EMPTY ============ */
  .huf-loading {
    text-align: center;
    padding: 60px 20px;
  }
  .huf-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--huf-border);
    border-top-color: var(--huf-accent);
    border-radius: 50%;
    margin: 0 auto 16px auto;
    animation: huf-spin 0.8s linear infinite;
  }
  @keyframes huf-spin { to { transform: rotate(360deg); } }
  .huf-loading p { color: var(--huf-muted); font-size: 14px; }

  .huf-empty {
    text-align: center;
    padding: 48px 20px;
    background: var(--huf-white);
    border-radius: 14px;
    margin-top: 24px;
  }
  .huf-empty-title { font-weight: 700; color: var(--huf-primary); font-size: 17px; margin: 0 0 8px 0; }
  .huf-empty-text { color: var(--huf-muted); font-size: 14px; margin: 0 0 20px 0; }
  .huf-whatsapp-btn {
    display: inline-block;
    background: var(--huf-secondary);
    color: var(--huf-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
  }

  @media (prefers-reduced-motion: reduce) {
    .huf-room-card, .huf-spinner { animation: none; transition: none; }
  }