/* ============================================
   RESERVAR — Estilos específicos
   Depende de style.css
   ============================================ */

body { background: var(--cream); }

/* Steps bar */
.steps-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.steps-inner {
  display: flex; align-items: stretch;
  max-width: var(--max-w); margin: 0 auto; padding: 0 3rem;
}
.step {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1.25rem 2rem 1.25rem 0;
  position: relative; flex: 1;
  opacity: 0.4; transition: opacity 0.2s;
}
.step.active { opacity: 1; }
.step.done   { opacity: 0.7; }
.step::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background 0.2s;
}
.step.active::after { background: var(--gold); }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8125rem; font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--muted);
  flex-shrink: 0; transition: all 0.2s;
}
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: var(--white); }
.step.done   .step-num { background: var(--ink);  border-color: var(--ink);  color: var(--white); }
.step-label { font-size: 0.875rem; font-weight: 500; }
.step-sub   { font-size: 0.75rem; color: var(--muted); }

/* Layout */
.reserva-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 2rem; padding: 3rem 0 5rem; align-items: start;
}

/* Panels */
.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem 2.25rem; margin-bottom: 1.5rem;
}
.panel-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.75rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.panel-header-icon {
  width: 38px; height: 38px;
  background: var(--cream); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.9375rem; flex-shrink: 0;
}
.panel-title { font-size: 1.0625rem; font-weight: 600; }
.panel-sub   { font-size: 0.8125rem; color: var(--muted); }

/* Date + guests */
.date-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.guest-selector { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.guest-control {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 0.875rem 1rem; text-align: center;
}
.guest-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.375rem; }
.guest-counter { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 0.375rem; }
.counter-btn {
  width: 26px; height: 26px;
  border: 1.5px solid var(--border); border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--ink);
  cursor: pointer; transition: all 0.2s;
}
.counter-btn:hover { border-color: var(--gold); color: var(--gold); }
.counter-val { font-weight: 600; font-size: 1rem; min-width: 20px; text-align: center; }

/* Room options */
.room-option {
  display: flex; align-items: flex-start; gap: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.125rem; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 0.875rem;
}
.room-option:hover { border-color: var(--gold-lt); }
.room-option.selected { border-color: var(--gold); background: #ECE6DC; }
.room-option-img { width: 90px; height: 70px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.room-option-body { flex: 1; }
.room-option-name { font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.room-option-detail { font-size: 0.8rem; color: var(--muted); }
.room-option-price { text-align: right; flex-shrink: 0; }
.room-option-price strong { font-family: var(--font-display); font-size: 1.25rem; display: block; }
.room-option-price span { font-size: 0.75rem; color: var(--muted); }
.room-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); margin-top: 2px;
  flex-shrink: 0; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.room-option.selected .room-radio { border-color: var(--gold); background: var(--gold); }
.room-option.selected .room-radio::after {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--white);
}

/* Extras */
.extra-item {
  display: flex; align-items: center; gap: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem; cursor: pointer;
  transition: border-color 0.2s; margin-bottom: 0.75rem;
}
.extra-item:hover { border-color: var(--gold-lt); }
.extra-item.selected { border-color: var(--gold); background: #ECE6DC; }
.extra-icon {
  width: 40px; height: 40px; background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
}
.extra-body { flex: 1; }
.extra-name { font-weight: 500; font-size: 0.9rem; }
.extra-desc { font-size: 0.8rem; color: var(--muted); }
.extra-price { font-weight: 600; font-size: 0.9375rem; flex-shrink: 0; }
.checkbox {
  width: 20px; height: 20px;
  border: 2px solid var(--border); border-radius: 5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.extra-item.selected .checkbox {
  background: var(--gold); border-color: var(--gold);
  color: var(--white); font-size: 0.7rem;
}

/* Form grids */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid.three { grid-template-columns: 1fr 1fr 1fr; }

/* Summary */
.summary {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float); padding: 2rem;
  position: sticky; top: 7rem;
}
.summary-room-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 1.25rem; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.625rem 0; font-size: 0.9rem;
}
.summary-row.total {
  border-top: 1.5px solid var(--border);
  margin-top: 0.5rem; padding-top: 1rem;
}
.summary-row.total .label { font-weight: 600; font-size: 1rem; }
.summary-row.total .val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.summary-row .label { color: var(--ink-soft); }
.summary-row .val { font-weight: 500; }
.summary-row .val.green { color: #2F5D50; }
.summary-saving {
  background: #F5EDE8; border: 1px solid #D4907A;
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem; font-size: 0.8125rem;
  color: #924F36; margin: 0.75rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.trust-badges {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); }
.trust-item i { color: var(--gold); font-size: 0.75rem; width: 14px; }

/* Payment */
.pay-methods { display: flex; gap: 0.625rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.pay-method {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem; font-size: 0.8125rem; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.5rem;
  transition: all 0.2s;
}
.pay-method.selected { border-color: var(--gold); background: #ECE6DC; }
.pay-method i { font-size: 1rem; color: var(--gold); }

/* Step section header */
.step-section { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; }
.step-section-num {
  width: 24px; height: 24px; background: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--white);
}
.step-section h2 { font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600; }
