/* =====================================================
   YOULO BOOKING WIDGET — CSS NAMESPACE: .youlo-bw__*
   ===================================================== */

/* Spacing above widget — matches other section padding-top */
.section-10#reservar {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  .section-10#reservar { padding-top: 48px; padding-bottom: 48px; }
}

.section-10 h2.section-10__heading {
  font-family: 'Bernoru-BlackMedium', sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: #292929;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 960px;
  padding: 0 20px;
}
@media (max-width: 1366px) {
  .section-10 h2.section-10__heading { font-size: 44px; line-height: 32px; }
}
@media (max-width: 767px) {
  .section-10 h2.section-10__heading { font-size: 40px; line-height: 0.95; }
}

.youlo-booking-widget {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px 60px;
  scroll-margin-top: 80px;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: #292929;
  background: #F8F6F4;
  border-radius: 16px;
  -webkit-font-smoothing: antialiased;
}

.youlo-booking-widget *,
.youlo-booking-widget *::before,
.youlo-booking-widget *::after {
  box-sizing: border-box;
}

/* ---- Variables ---- */
.youlo-booking-widget {
  --accent: #DDC73F;
  --accent-bg: rgba(221, 199, 63, 0.1);
  --accent-border: #DDC73F;
  --bg: #F8F6F4;
  --card-bg: #fff;
  --text: #292929;
  --muted: #7A7A7A;
  --border: #E8E4DF;
  --inactive: #D4D0CB;
  --radius: 4px;
  --radius-lg: 0;
}

/* =====================================================
   PROGRESS BAR
   ===================================================== */
.youlo-bw__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 20px 40px;
  max-width: 500px;
  margin: 0 auto;
}

.youlo-bw__progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.youlo-bw__progress-line {
  height: 3px;
  flex: 1;
  background: var(--inactive);
  margin-top: 6px;
  transition: background 0.3s ease;
  min-width: 40px;
}

.youlo-bw__progress-line.completed {
  background: var(--accent);
}

.youlo-bw__step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--inactive);
  border: 2px solid var(--inactive);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.youlo-bw__step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 16px;
  height: 16px;
}

.youlo-bw__step-dot.completed {
  background: var(--accent);
  border-color: var(--accent);
}

.youlo-bw__step-label {
  font-size: 12px;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.youlo-bw__step-label.active {
  color: var(--text);
  font-weight: 700;
}

/* =====================================================
   PANELS
   ===================================================== */
.youlo-bw__panel {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.youlo-bw__panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   STEP 1 — SESSION
   ===================================================== */
.youlo-bw__step1-inner {
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Field blocks ---- */
.youlo-bw__field {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.youlo-bw__field-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.youlo-bw__field-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ---- People big circle slider ---- */
.youlo-bw__people-wrap {
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
}

.youlo-bw__people-bubble {
  position: absolute;
  top: 4px;
  width: 44px;
  height: 44px;
  background: #292929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transform: translateX(-50%);
  pointer-events: none;
  transition: left 0.05s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
}

input[type="range"].youlo-bw__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

input[type="range"].youlo-bw__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--accent), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

input[type="range"].youlo-bw__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--accent), 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
}

/* People range: invisible thumb — bubble replaces it visually */
input[type="range"].youlo-bw__range--people {
  height: 4px;
}

input[type="range"].youlo-bw__range--people::-webkit-slider-thumb {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

input[type="range"].youlo-bw__range--people::-moz-range-thumb {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.youlo-bw__slider-marks {
  position: relative;
  display: flex;
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  height: 16px;
}

.youlo-bw__slider-marks span {
  position: absolute;
  transform: translateX(-50%);
}

.youlo-bw__slider-marks span:nth-child(1) { left: 22px; }
.youlo-bw__slider-marks span:nth-child(2) { left: calc(22px + 0.2857 * (100% - 44px)); }
.youlo-bw__slider-marks span:nth-child(3) { left: calc(22px + 0.6429 * (100% - 44px)); }
.youlo-bw__slider-marks span:nth-child(4) { left: calc(100% - 22px); }

/* ---- Duration pills ---- */
.youlo-bw__duration-row {
  display: flex;
  gap: 8px;
}

.youlo-bw__dur-label {
  flex: 1;
  cursor: pointer;
}

.youlo-bw__dur-label.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.youlo-bw__dur-label input[type="radio"] {
  display: none;
}

.youlo-bw__dur-pill {
  display: block;
  text-align: center;
  padding: 10px 0;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
  min-height: 44px;
  line-height: 1.5;
}

.youlo-bw__dur-label input[type="radio"]:checked + .youlo-bw__dur-pill {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.youlo-bw__dur-label:not(.disabled):hover .youlo-bw__dur-pill {
  border-color: var(--accent);
}

.youlo-bw__dur-hint {
  font-size: 12px;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 600;
  display: none;
}

/* ---- Price display (Step 1) ---- */
.youlo-bw__price-display {
  text-align: center;
  margin-bottom: 20px;
  padding: 36px 24px 32px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: none;
}

.youlo-bw__price-main {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  letter-spacing: -1px;
  font-style: normal;
}

.youlo-bw__price-main::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

.youlo-bw__price-per {
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
}

/* ---- Tooltip ---- */
.youlo-bw__help {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
}

.youlo-bw__help:hover,
.youlo-bw__help.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}

.youlo-bw__tooltip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: var(--text);
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 6px;
  width: 220px;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  z-index: 100;
  pointer-events: none;
}

.youlo-bw__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--text);
}

.youlo-bw__help.active .youlo-bw__tooltip {
  display: block;
}

/* ---- CTA Button ---- */
.youlo-bw__btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: var(--text);
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 52px;
}

.youlo-bw__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(221, 199, 63, 0.4);
}

.youlo-bw__btn:active {
  transform: translateY(0);
}

.youlo-bw__btn--nav {
  width: auto;
  padding: 10px 24px;
  font-size: 13px;
}

.youlo-bw__btn--muted {
  background: #fff;
  border: 1.5px solid var(--text);
  color: var(--text);
}

.youlo-bw__btn--muted:hover {
  background: var(--text);
  color: #fff;
  filter: none;
  box-shadow: none;
}

.youlo-bw__step1-inner .youlo-bw__btn {
  margin-top: 20px;
}

/* =====================================================
   STEP 2 — EXTRAS
   ===================================================== */
.youlo-bw__step2-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  .youlo-bw__step2-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- Navigation row (back/next) ---- */
.youlo-bw__nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.youlo-bw__back {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  transition: color 0.2s;
  min-height: 44px;
}

.youlo-bw__back:hover {
  color: var(--text);
}

/* ---- Section heading ---- */
.youlo-bw__section-heading {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0;
}

/* ---- Addon card (selling card) ---- */
.youlo-bw__addon-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
  overflow: hidden;
}

.youlo-bw__addon-card.highlighted {
  border-color: var(--accent-border);
}

.youlo-bw__addon-card-body {
  padding: 16px 20px;
}

/* ---- Retoque: selling card with big before/after ---- */
.youlo-bw__retoque-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.youlo-bw__retoque-hero .youlo-bw__ba-before,
.youlo-bw__retoque-hero .youlo-bw__ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.youlo-bw__retoque-hero img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  pointer-events: none;
}

.youlo-bw__retoque-hero .youlo-bw__ba-after {
  clip-path: inset(0 0 0 50%);
}

.youlo-bw__retoque-hero .youlo-bw__ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 4px rgba(0,0,0,0.4);
  z-index: 2;
}

.youlo-bw__retoque-hero .youlo-bw__ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
}

.youlo-bw__retoque-hero .youlo-bw__ba-label {
  position: absolute;
  bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
  z-index: 2;
  pointer-events: none;
}

.youlo-bw__retoque-hero .youlo-bw__ba-label--before {
  left: 12px;
}

.youlo-bw__retoque-hero .youlo-bw__ba-label--after {
  right: 12px;
}

/* ---- Option pills (for retoque and print) ---- */
.youlo-bw__option-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.youlo-bw__option-pill {
  flex: 1;
  min-width: 0;
  padding: 4px 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.youlo-bw__option-pill:hover {
  border-color: var(--accent);
}

.youlo-bw__option-pill.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.youlo-bw__option-pill-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.youlo-bw__option-pill-price {
  font-size: 12px;
  color: var(--muted);
}

.youlo-bw__option-pill.selected .youlo-bw__option-pill-price {
  color: var(--text);
}

.youlo-bw__option-pill-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 1px 5px;
  border-radius: 3px;
  position: absolute;
  bottom: 3px;
}

.youlo-bw__option-pill {
  position: relative;
}

.youlo-bw__option-pill.selected .youlo-bw__option-pill-badge {
  background: rgba(0,0,0,0.1);
  color: var(--text);
}

/* ---- Addon heading inside card ---- */
.youlo-bw__addon-title {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}

.youlo-bw__addon-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* ---- Print card placeholder ---- */
.youlo-bw__print-visual {
  background: linear-gradient(135deg, #F8F6F4 0%, #EDE9E3 100%);
  padding: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 100px;
}

.youlo-bw__print-icon {
  flex-shrink: 0;
  line-height: 1;
}

.youlo-bw__print-text {
  text-align: left;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

.youlo-bw__print-text strong {
  display: block;
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 16px;
  margin-bottom: 2px;
}

/* ---- Print fan (polaroid cards) ---- */
.youlo-bw__print-fan {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 16px 20px;
  background: linear-gradient(135deg, #F8F6F4 0%, #EDE9E3 100%);
  overflow: hidden;
}

.youlo-bw__print-fan-photo {
  background: #fff;
  padding: 5px;
  width: 140px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
}

.youlo-bw__print-fan-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.youlo-bw__print-fan-photo--1 {
  transform: rotate(-12deg);
  z-index: 1;
  margin-right: -18px;
}

.youlo-bw__print-fan-photo--2 {
  transform: rotate(2deg);
  z-index: 3;
  margin-right: -18px;
}

.youlo-bw__print-fan-photo--3 {
  transform: rotate(14deg);
  z-index: 2;
}

@media (max-width: 600px) {
  .youlo-bw__print-fan-photo {
    width: 100px;
    padding: 4px;
  }
  .youlo-bw__print-fan {
    padding: 24px 12px 16px;
  }
}

@media (max-width: 767px) {
  .youlo-bw__retoque-hero {
    height: 260px;
  }

  .youlo-bw__retoque-hero img {
    height: 260px;
  }

  .youlo-bw__option-pills {
    gap: 6px;
  }

  .youlo-bw__option-pill {
    padding: 5px 6px;
    min-height: 38px;
  }

  .youlo-bw__option-pill-label {
    font-size: 12px;
  }
}

/* ---- Color selector (both rooms) ---- */
.youlo-bw__colors-wrap {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 10px;
}

.youlo-bw__room-block {
  margin-bottom: 14px;
}

.youlo-bw__room-block:last-child {
  margin-bottom: 0;
}

.youlo-bw__room-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.youlo-bw__room-title.disabled-room {
  opacity: 0.4;
}

.youlo-bw__swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.youlo-bw__swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  border: 2px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.youlo-bw__swatch:hover:not(.disabled-swatch) {
  transform: scale(1.15);
}

.youlo-bw__swatch.selected {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.youlo-bw__swatch.disabled-swatch {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.youlo-bw__swatch--white { background: #fff; border-color: #d0d0d0; }
.youlo-bw__swatch--black { background: #292929; }
.youlo-bw__swatch--green { background: #034632; }
.youlo-bw__swatch--gray { background: #8E8E93; }
.youlo-bw__swatch--red { background: #88272e; }
.youlo-bw__swatch--yellow { background: #DDC73F; }
.youlo-bw__swatch--brown { background: #753d29; }

.youlo-bw__room-surcharge {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 400;
  display: none;
}

.youlo-bw__room-surcharge.visible {
  display: block;
  color: var(--text);
  font-weight: 700;
  background: var(--accent-bg);
  padding: 6px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* slider marks: using absolute positioning from main block (lines 243-260) */

/* (old retoque-inner/controls/ba-handle removed — replaced by retoque-hero + option-pills) */

/* ---- Sticky sidebar ---- */
.youlo-bw__sidebar {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: sticky;
  top: 24px;
}

.youlo-bw__sidebar-title {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: 0;
}

.youlo-bw__summary-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  padding: 5px 0;
  color: var(--text);
  gap: 8px;
}

.youlo-bw__summary-item span:first-child {
  flex: 1;
  min-width: 0;
}

.youlo-bw__summary-item.muted {
  color: var(--muted);
}

.youlo-bw__summary-sep {
  height: 1px;
  background: var(--border);
  margin: 10px 0;
}

.youlo-bw__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding: 8px 0 0;
}

.youlo-bw__sidebar .youlo-bw__btn {
  margin-top: 16px;
}

/* Nav CTA button in Step 2 top bar (mobile) */
.youlo-bw__nav-top--step2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border-radius: 0 0 12px 12px;
  padding: 8px 0;
}

.youlo-bw__nav-cta {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  min-height: 44px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  box-sizing: border-box;
}

.youlo-bw__nav-cta:hover {
  background: #C9A800;
}

.youlo-bw__nav-cta-price {
  display: none;
}

.youlo-bw__nav-cta-label {
  font-weight: 500;
}

@media (max-width: 767px) {
  .youlo-bw__nav-cta {
    display: flex;
  }

  .youlo-bw__sidebar--desktop {
    order: -1;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
  }

  .youlo-bw__sidebar--desktop .youlo-bw__sidebar-title {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .youlo-bw__sidebar--desktop .youlo-bw__summary-total {
    font-size: 15px;
  }

  .youlo-bw__sidebar--desktop .youlo-bw__btn {
    display: none;
  }
}

/* =====================================================
   STEP 3 — DATE & PAYMENT
   ===================================================== */
.youlo-bw__step3-main {
}

.youlo-bw__step3-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 767px) {
  .youlo-bw__step3-layout {
    grid-template-columns: 1fr;
  }
  .youlo-bw__step3-aside {
    order: -1;
  }
}

/* ---- Calendar ---- */
.youlo-bw__cal-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.youlo-bw__cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.youlo-bw__cal-month {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
}

.youlo-bw__cal-nav {
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.2s;
  line-height: 1;
}

.youlo-bw__cal-nav:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.youlo-bw__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.youlo-bw__cal-dow {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.youlo-bw__cal-day {
  padding: 10px 4px;
  border-radius: 8px;
  font-size: 15px;
  cursor: default;
  transition: all 0.2s;
  border: none;
  background: none;
  color: var(--inactive);
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
}

.youlo-bw__cal-day.available {
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}

.youlo-bw__cal-day.available:hover {
  background: var(--accent-bg);
}

.youlo-bw__cal-day.today {
  font-weight: 700;
}

.youlo-bw__cal-day.selected {
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
}

.youlo-bw__cal-day.empty {
  visibility: hidden;
}

/* ---- Time slots (separate block below calendar) ---- */
.youlo-bw__times-wrap {
  background: var(--card-bg);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 12px;
  display: none;
}

.youlo-bw__times-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.youlo-bw__times-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.youlo-bw__time-slot {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
}

.youlo-bw__time-slot:hover {
  border-color: var(--accent);
  background: var(--accent-bg);
}

.youlo-bw__time-slot.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

/* ---- Contact form ---- */
.youlo-bw__form-wrap {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.youlo-bw__form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.youlo-bw__form-title {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
}

.youlo-bw__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.youlo-bw__form-row:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 540px) {
  .youlo-bw__form-row {
    grid-template-columns: 1fr;
  }
  .youlo-bw__form-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .youlo-bw__form-card {
    padding: 16px;
  }
}

.youlo-bw__form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px 8px;
  transition: border-color .2s;
  background: #fff;
  min-height: 58px;
}

.youlo-bw__form-group:focus-within {
  border-color: var(--accent);
}

.youlo-bw__form-label {
  font-size: 11px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.youlo-bw__form-input,
.youlo-bw__form-select {
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: transparent;
  outline: none;
  min-height: 24px;
  -webkit-appearance: none;
  appearance: none;
}

.youlo-bw__form-input:focus,
.youlo-bw__form-select:focus {
  outline: none;
}

.youlo-bw__form-input::placeholder {
  color: #D4D0CB;
}

.youlo-bw__phone-row {
  display: flex;
}

.youlo-bw__phone-prefix {
  padding: 0 8px 0 0;
  border: none;
  border-radius: 0;
  font-size: 14px;
  color: var(--muted);
  background: transparent;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.youlo-bw__phone-row .youlo-bw__form-input {
  border-radius: 0;
}

/* ---- Certificate ---- */
.youlo-bw__certificate-section {
  margin-bottom: 24px;
}

.youlo-bw__certificate-toggle {
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.youlo-bw__certificate-toggle:hover {
  color: var(--accent);
}

.youlo-bw__certificate-form {
  margin-top: 12px;
  background: var(--accent-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.youlo-bw__cert-apply {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Soleil', 'Helvetica Neue', sans-serif;
}

.youlo-bw__cert-apply:hover { opacity: 0.9; }

/* ---- Payment label ---- */
.youlo-bw__form-label--payment {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- CTA pair ---- */
.youlo-bw__cta-pair {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  margin-top: 40px;
  align-items: stretch;
}

.youlo-bw__cta-pair .youlo-bw__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.youlo-bw__cta-pair .youlo-bw__btn--muted {
  flex-direction: row;
  gap: 8px;
}

@media (max-width: 480px) {
  .youlo-bw__cta-pair {
    grid-template-columns: 1fr;
  }
  .youlo-bw__cta-pair .youlo-bw__btn:not(.youlo-bw__btn--muted) {
    order: -1;
  }
}

/* ---- Step 3 heading ---- */
.youlo-bw__step3-heading {
  font-family: 'Bernoru-BlackMedium', 'Georgia', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
}

/* ---- Calendar reassurance ---- */
.youlo-bw__cal-reassurance {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
  line-height: 1.5;
}

/* ---- Button sub-text ---- */
.youlo-bw__btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* ---- Reassurance ---- */
.youlo-bw__reassurance {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ---- Deposit note ---- */
.youlo-bw__deposit-note {
  font-size: 13px;
  color: var(--muted);
  background: none;
  border: none;
  border-radius: 0;
  padding: 6px 0 0;
  margin-top: 8px;
  text-align: center;
  font-style: italic;
}

/* ---- Step 3 sidebar datetime ---- */
.youlo-bw__summary-dt {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  padding: 5px 0;
}

/* Confirmation panel: generated dynamically by showConfirmation() */

/* =====================================================
   UTILITY
   ===================================================== */
.youlo-bw__hidden {
  display: none !important;
}

@media (max-width: 767px) {
  .youlo-bw__price-main {
    font-size: 56px;
  }
}

/* ---- Badge ---- */
.youlo-bw__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 6px;
}

/* Fix: visible borders for pills after --border became transparent */
.youlo-bw__dur-pill,
.youlo-bw__option-pill,
.youlo-bw__sidebar,
.youlo-bw__cert-reveal,
.youlo-bw__summary-sep {
  border-color: #D4D0CB;
}
.youlo-bw__summary-sep {
  background: #D4D0CB;
}
