/* ==========================================================================
   Hilo Cleaning Co. — Wash & Fold booking widget skin
   --------------------------------------------------------------------------
   The booking flow (markup + logic) is the dashboard's booking.js, injected
   into #booking as .lc-* elements. This file re-themes those .lc-* classes
   into the marketing brand (style.css tokens: --avo-dark / --cream /
   --pale-lime / Big Shoulders / DM Sans). Loaded AFTER /css/style.css so it
   wins over the site's global input/select/label styling.
   Keep selectors matched to the dashboard's assets/v2/css/laundry.css so every
   injected element is covered.
   ========================================================================== */

/* ---- Booking landing layout -------------------------------------------- */
.laundry-booking-wrap { max-width: 720px; margin: 0 auto; }

.lc-booking { display: flex; flex-direction: column; gap: 20px; }
.lc-loading { color: var(--gray); font-size: 15px; text-align: center; padding: 24px 0; }

/* ---- Step cards (address / turnaround / estimate / slot / contact / card) */
.lc-booking .lc-step {
  background: var(--cream);
  border: 2px solid var(--avo-dark);
  border-radius: 4px;
  padding: 22px 22px 24px;
  box-shadow: 5px 5px 0 rgba(26, 46, 66, 0.08);
}

.lc-booking .lc-step h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 22px;
  line-height: 1.05;
  color: var(--avo-dark);
  margin: 0 0 16px;
}

/* Field labels — Bebas Neue eyebrow style to match the site's form labels */
.lc-booking .lc-step label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--avo-dark);
  margin: 16px 0 6px;
}
.lc-booking .lc-step label:first-of-type { margin-top: 0; }

/* Inputs/selects — match the site's global field styling (ivory, 2px border) */
.lc-booking .lc-step input,
.lc-booking .lc-step select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; /* 16px keeps iOS from zooming on focus */
  color: var(--black);
  background: var(--ivory);
  border: 2px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.15s ease;
}
.lc-booking .lc-step input:focus,
.lc-booking .lc-step select:focus {
  outline: none;
  border-color: var(--avo-dark);
}
.lc-booking .lc-step select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%231A2E42' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.lc-zone-note { font-size: 13.5px; color: var(--avo-mid); margin: 12px 0 0; min-height: 16px; line-height: 1.5; }

/* ---- Structured address grid ------------------------------------------- */
.lc-addr-grid { display: flex; gap: 12px; margin-top: 14px; }
.lc-addr-grid .lc-field { margin: 0; }
.lc-addr-grid .lc-field label { margin-top: 0; }
.lc-addr-grid .lc-field:first-child { flex: 1 1 auto; min-width: 0; }
.lc-field-state { flex: 0 0 70px; }
.lc-field-zip { flex: 0 0 108px; }

/* ---- "Tap your area" fallback chips ------------------------------------ */
.lc-area-fallback { margin-top: 14px; }
.lc-fallback-label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gray); margin-bottom: 10px;
}
.lc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lc-booking .lc-chip {
  appearance: none; cursor: pointer; width: auto;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--avo-dark); background: var(--ivory);
  border: 2px solid var(--border); border-radius: 100px;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.lc-booking .lc-chip:hover { border-color: var(--avo-dark); }
.lc-booking .lc-chip.is-active {
  background: var(--avo-dark); color: var(--cream); border-color: var(--avo-dark);
}

/* ---- Turnaround radios -------------------------------------------------- */
.lc-radios { display: flex; flex-direction: column; gap: 10px; }
.lc-radio {
  display: flex; align-items: center; gap: 12px; margin: 0; cursor: pointer;
  padding: 14px; border: 2px solid var(--border); border-radius: 3px;
  background: var(--ivory); transition: border-color 0.15s ease;
}
.lc-radio:hover { border-color: var(--pale-lime); }
.lc-radio input { width: auto; accent-color: var(--avo-dark); }
.lc-radio span { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500; color: var(--black); }

/* ---- Estimate + air-dry field row -------------------------------------- */
.lc-est-help { font-size: 13.5px; color: var(--gray); line-height: 1.55; margin: 0 0 14px; }
.lc-field-row { display: flex; gap: 14px; }
.lc-field { flex: 1 1 0; min-width: 0; }
.lc-field label:first-of-type { margin-top: 0; }
.lc-step .lc-estimate { margin-top: 16px; }

/* ---- Estimate readout card (navy) -------------------------------------- */
.lc-estimate {
  background: var(--avo-dark);
  color: var(--cream);
  border-radius: 4px;
  padding: 20px;
  box-shadow: 5px 5px 0 rgba(13, 27, 42, 0.16);
}
.lc-est-amount { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.lc-est-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pale-lime);
}
.lc-est-fine { font-size: 12.5px; color: rgba(245, 240, 232, 0.82); line-height: 1.55; margin: 12px 0 0; }
.lc-num { font-family: 'DM Sans', sans-serif; font-weight: 700; font-variant-numeric: tabular-nums; }
.lc-est-amount .lc-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 0.9;
  color: var(--cream);
}

/* ---- Stripe card element ----------------------------------------------- */
.lc-card-el {
  padding: 14px; background: var(--ivory);
  border: 2px solid var(--border); border-radius: 2px;
}

/* ---- Primary submit button (matches .btn-avo) -------------------------- */
.lc-booking .lc-btn {
  appearance: none; border: 0; cursor: pointer; width: 100%;
  padding: 17px 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cream); background: var(--avo-dark);
  border-radius: 100px;
  transition: transform 0.12s ease, background 0.15s ease;
}
.lc-booking .lc-btn:hover:not(:disabled) { background: var(--black); transform: translateY(-2px); }
.lc-booking .lc-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* ---- Errors ------------------------------------------------------------- */
.lc-err { color: #B4432F; font-size: 13.5px; min-height: 16px; line-height: 1.5; }
#fatal.lc-err { background: #FBEDE9; border: 1px solid #E7C3B9; border-radius: 3px; padding: 12px 14px; }
#fatal.lc-err[hidden] { display: none; }

/* ---- Confirmation ("done") --------------------------------------------- */
.lc-done {
  background: var(--cream); border: 2px solid var(--avo-dark); border-radius: 4px;
  padding: 28px 26px; box-shadow: 5px 5px 0 rgba(26, 46, 66, 0.08);
}
.lc-done h2 {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; text-transform: uppercase;
  color: var(--avo-dark); font-size: 28px; line-height: 1; margin: 0 0 14px;
}
.lc-done p { color: var(--black); line-height: 1.6; margin: 0 0 12px; }
.lc-done a { color: var(--avo-mid); font-weight: 600; }
.lc-sign { color: var(--gray); font-style: italic; }

/* ---- Paused notice ------------------------------------------------------ */
.lc-paused {
  background: var(--cream); border: 2px solid var(--avo-dark); border-top: 5px solid var(--pale-lime);
  border-radius: 4px; box-shadow: 5px 5px 0 rgba(26, 46, 66, 0.08);
  padding: 34px 26px; text-align: center;
}
.lc-paused-badge {
  display: inline-block; margin-bottom: 16px; padding: 6px 14px; border-radius: 100px;
  background: var(--avo-dark); color: var(--cream);
  font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
}
.lc-paused h2 {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; text-transform: uppercase;
  color: var(--avo-dark); font-size: 30px; line-height: 1.05; margin: 0 0 14px;
}
.lc-paused-msg { color: var(--black); font-size: 15px; line-height: 1.6; margin: 0 auto 16px; max-width: 44ch; }
.lc-paused-reopen {
  display: inline-block; margin: 2px auto 18px; padding: 11px 18px; border-radius: 3px;
  background: var(--ivory); color: var(--avo-dark); font-size: 14px; border: 1px solid var(--border);
}
.lc-paused-reopen strong { font-weight: 700; font-variant-numeric: tabular-nums; }
.lc-paused-soft { color: var(--gray); font-size: 13.5px; margin: 0 0 16px; }
.lc-paused .lc-sign { color: var(--gray); }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 560px) {
  .lc-booking .lc-step { padding: 18px 16px 20px; }
  .lc-booking .lc-step h2 { font-size: 20px; }
  .lc-est-amount .lc-num { font-size: 34px; }
  .lc-field-row { flex-direction: column; gap: 0; }
  .lc-addr-grid { flex-wrap: wrap; }
  .lc-addr-grid .lc-field:first-child { flex: 1 1 100%; }
  .lc-field-state { flex: 1 1 32%; }
  .lc-field-zip { flex: 1 1 55%; }
  .lc-paused h2 { font-size: 24px; }
}

/* ==========================================================================
   Landing-page components — bundled here because these are page-scoped in
   services.html's <style>, not in the global stylesheet. Kept byte-faithful
   to the site's look. Plus the laundry-only landing layout.
   ========================================================================== */

/* ---- Checklist grid (from the services.html component set) -------------- */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 28px; }
.include-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--black); opacity: .82; line-height: 1.5; }
.include-check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--avo-dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.include-check svg { color: var(--cream); }

/* ---- Frequency/type tags ------------------------------------------------ */
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.stag {
  font-family: 'Bebas Neue', sans-serif; font-size: 10px; letter-spacing: 2px;
  color: var(--avo-dark); background: var(--ivory); border: 1.5px solid rgba(26,46,66,.3);
  padding: 5px 12px; border-radius: 2px;
}

/* ---- Bottom CTA band ---------------------------------------------------- */
.services-cta-band {
  background: var(--black); border: 3px solid var(--avo-dark); outline: 1px solid var(--avo-dark);
  outline-offset: 5px; padding: clamp(36px,5vw,56px) clamp(28px,4vw,56px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  position: relative; overflow: hidden; flex-wrap: wrap;
}
.services-cta-band::before { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: .045; pointer-events: none; }
.services-cta-band h3 {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(28px,4vw,48px);
  color: var(--cream); text-transform: uppercase; line-height: 0.95; letter-spacing: -0.5px;
  position: relative; z-index: 1;
}
.services-cta-band p { font-size: 14px; color: var(--cream); opacity: .55; margin-top: 8px; line-height: 1.6; position: relative; z-index: 1; }
.services-cta-band .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; flex-shrink: 0; }

/* ---- How-it-works: three-step grid ------------------------------------- */
.lc-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lc-howto-card {
  background: var(--cream); border: 2px solid var(--avo-dark); border-radius: 4px;
  padding: 28px 26px 30px; box-shadow: 5px 5px 0 rgba(26,46,66,.08); position: relative; overflow: hidden;
}
.lc-howto-card::before { content: ''; position: absolute; inset: 0; background-image: var(--stripe-light); pointer-events: none; }
.lc-howto-num {
  display: block; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900;
  font-size: 52px; line-height: 1; letter-spacing: -2px; color: var(--pale-lime); opacity: .55;
  margin-bottom: 14px; position: relative; z-index: 1;
}
.lc-howto-card h3 {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; text-transform: uppercase;
  font-size: 24px; line-height: 1; color: var(--avo-dark); margin: 0 0 12px; position: relative; z-index: 1;
}
.lc-howto-card p { font-size: 14.5px; line-height: 1.65; color: var(--black); opacity: .78; margin: 0; position: relative; z-index: 1; }

/* ---- Why split (navy aside + checklist body) — mirrors .service-row ----- */
.lc-why {
  display: grid; grid-template-columns: 1fr 1.6fr; border: 3px solid var(--avo-dark);
  outline: 1px solid var(--avo-dark); outline-offset: 5px; background: var(--cream);
  position: relative; overflow: hidden;
}
.lc-why::before { content: ''; position: absolute; inset: 0; background-image: var(--stripe-light); pointer-events: none; }
.lc-why-aside {
  background: var(--avo-dark); padding: clamp(36px,5vw,56px) clamp(28px,4vw,48px);
  display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1;
}
.lc-why-aside::after { content: ''; position: absolute; inset: 0; background-image: var(--stripe-dark); pointer-events: none; }
.lc-why-aside > * { position: relative; z-index: 1; }
.lc-why-aside .service-num {
  display: block; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900;
  font-size: clamp(40px,5vw,64px); line-height: 1; color: var(--pale-lime); opacity: .5;
}
.lc-why-aside h2 {
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(28px,3.5vw,44px);
  color: var(--cream); text-transform: uppercase; letter-spacing: -0.5px; line-height: 0.95; margin: 0;
}
.lc-why-aside p { font-size: 14px; color: var(--cream); opacity: .6; line-height: 1.7; margin: 0; }
.lc-why-body { padding: clamp(32px,4vw,52px) clamp(28px,4vw,52px); position: relative; z-index: 1; }
.lc-why-body .eyebrow { display: block; margin-bottom: 20px; }

.lc-secure-note { text-align: center; font-size: 13px; color: var(--gray); margin: 16px 0 0; line-height: 1.5; }

@media (max-width: 900px) { .lc-steps-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 820px) {
  .lc-why { grid-template-columns: 1fr; }
  .lc-why-aside p { max-width: 100%; }
  .includes-grid { grid-template-columns: 1fr; }
  .services-cta-band { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Pricing display (data-driven card)
   ========================================================================== */
.lc-pricing-wrap { max-width: 760px; margin: 0 auto; }
.lc-price-grid {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 48px); align-items: center;
  background: var(--cream); border: 2px solid var(--avo-dark); border-radius: 4px;
  box-shadow: 5px 5px 0 rgba(26, 46, 66, 0.08); padding: clamp(24px, 4vw, 40px);
}
.lc-price-headline { text-align: center; border-right: 2px solid var(--border); padding-right: clamp(20px, 3vw, 40px); }
.lc-price-big { display: block; font-family: 'Big Shoulders Display', sans-serif; font-weight: 900; font-size: clamp(48px, 7vw, 76px); line-height: 0.9; color: var(--avo-dark); }
.lc-price-unit { font-size: 0.42em; font-weight: 800; }
.lc-price-sub { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-top: 10px; }
.lc-price-fine { display: block; font-size: 13px; color: var(--gray); margin-top: 4px; }
.lc-price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lc-price-list li { display: flex; flex-direction: column; gap: 3px; }
.lc-price-list li span { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.lc-price-list li strong { font-size: 14.5px; color: var(--black); font-weight: 600; line-height: 1.45; }
.lc-price-note { text-align: center; font-size: 13.5px; color: var(--gray); margin: 18px auto 0; max-width: 560px; line-height: 1.55; }
@media (max-width: 680px) {
  .lc-price-grid { grid-template-columns: 1fr; gap: 20px; }
  .lc-price-headline { border-right: none; border-bottom: 2px solid var(--border); padding-right: 0; padding-bottom: 20px; }
}

/* ==========================================================================
   Calendar pickup picker (brand-matched)
   ========================================================================== */
.lc-booking .lc-cal { border: 2px solid var(--border); border-radius: 4px; background: var(--ivory); padding: 14px; }
.lc-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.lc-cal-title { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; text-transform: uppercase; font-size: 20px; color: var(--avo-dark); }
.lc-cal-nav { appearance: none; border: 2px solid var(--border); background: #fff; border-radius: 6px; width: 36px; height: 36px; cursor: pointer; font-size: 20px; line-height: 1; color: var(--avo-dark); }
.lc-cal-nav:disabled { opacity: 0.3; cursor: default; }
.lc-cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 5px; }
.lc-cal-dow span { text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1px; color: var(--gray); }
.lc-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.lc-booking .lc-cal-day { appearance: none; border: 2px solid transparent; background: transparent; border-radius: 6px; aspect-ratio: 1; min-height: 42px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--gray); cursor: default; }
.lc-cal-day.is-empty { visibility: hidden; }
.lc-booking .lc-cal-day.is-open { color: var(--black); background: #fff; border-color: var(--border); cursor: pointer; font-weight: 600; }
.lc-booking .lc-cal-day.is-open:hover { border-color: var(--avo-dark); }
.lc-booking .lc-cal-day.is-selected { background: var(--avo-dark); color: var(--cream); border-color: var(--avo-dark); }
.lc-windows { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.lc-windows-label { width: 100%; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.lc-booking .lc-window-btn { appearance: none; cursor: pointer; padding: 12px 16px; border: 2px solid var(--border); border-radius: 3px; background: var(--ivory); font-family: 'DM Sans', sans-serif; font-size: 14.5px; color: var(--black); }
.lc-booking .lc-window-btn:hover { border-color: var(--avo-dark); }
.lc-booking .lc-window-btn.is-selected { background: var(--avo-dark); color: var(--cream); border-color: var(--avo-dark); }
