/* Kohi Campers — booking strip.
   Brand matched to kohicampers.co.nz: black + white + yellow, heavy italic
   uppercase headings (Montserrat), squared yellow CTA. */
:root {
  --kohi-bg:        #0d0d0d;
  --kohi-hero:      #161616;
  --kohi-panel:     rgba(20, 20, 20, 0.92);
  --kohi-field:     #232323;
  --kohi-field-bd:  #383838;
  --kohi-field-bdf: #f4c20d;
  --kohi-text:      #ffffff;
  --kohi-muted:     #9a9a9a;
  --kohi-accent:    #f4c20d;   /* Kohi yellow */
  --kohi-accent-hi: #e0b00a;
  --kohi-on-accent: #141414;   /* dark text on yellow */
  --kohi-error:     #ff8a6a;
  --kohi-radius:    12px;
  --kohi-font: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }

/* Defensive reset — when embedded in a WordPress theme, host global-styles (WP core's
   :root :where(h1){...} pattern) can tie in CSS specificity with our single-class
   selectors and win on source order. Force our own heading sizing regardless of the
   host page's styles or load order. */
.kohi-page h1, .kohi-page h2, .kohi-page h3,
.kohi-hero h1, .kohi-hero h2, .kohi-hero h3,
.kohi-widget h1, .kohi-widget h2, .kohi-widget h3 {
  font-family: var(--kohi-font) !important;
  letter-spacing: normal !important;
}

.kohi-hero {
  background:
    linear-gradient(180deg, var(--kohi-hero) 0%, var(--kohi-bg) 100%);
  color: var(--kohi-text);
  font-family: var(--kohi-font);
  padding: 56px 20px 64px;
  min-height: 100%;
}
.kohi-hero__inner { max-width: 1180px; margin: 0 auto; }

.kohi-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px; }
.kohi-brand__rent {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1.6px solid currentColor; border-radius: 4px; padding: 3px 7px; line-height: 1;
}
.kohi-logo { height: 46px; width: auto; display: block; }

.kohi-wordmark {
  display: inline-flex; align-items: center; gap: 8px;
  font-style: italic; font-weight: 800; font-size: 22px; letter-spacing: -0.5px;
  text-transform: uppercase; margin-bottom: 40px; color: #fff;
}
.kohi-wordmark__rent {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  border: 1.5px solid #fff; border-radius: 3px; padding: 1px 5px; font-style: normal;
}

.kohi-hero__title {
  font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important;
  font-size: clamp(30px, 5vw, 54px) !important; margin: 0 0 10px !important;
  line-height: 0.96 !important; letter-spacing: -0.5px !important;
}
.kohi-hero__sub { color: var(--kohi-muted); margin: 0 0 28px; font-size: 16px; font-weight: 400; }

/* --- the strip --- */
.kohi-strip {
  background: var(--kohi-panel);
  border: 1px solid var(--kohi-field-bd);
  border-radius: var(--kohi-radius);
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  backdrop-filter: blur(6px);
}
.kohi-group { display: flex; gap: 12px; flex: 1 1 auto; min-width: 0; }
.kohi-group--details { flex: 1 1 100%; }

.kohi-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.kohi-field--loc  { flex: 2 1 170px; }
.kohi-field--date { flex: 1 1 130px; }
.kohi-field--time { flex: 0 1 100px; }
.kohi-field--cat  { flex: 2 1 180px; }
.kohi-field--age  { flex: 1 1 120px; }
.kohi-field--search { flex: 1 1 190px; justify-content: flex-end; }

.kohi-field label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--kohi-muted); font-weight: 700;
}
.kohi-field select,
.kohi-field input {
  width: 100%; height: 48px; padding: 0 12px;
  background: var(--kohi-field);
  color: var(--kohi-text);
  border: 1px solid var(--kohi-field-bd);
  border-radius: 8px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  appearance: none; -webkit-appearance: none;
}
.kohi-field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--kohi-muted) 50%),
    linear-gradient(135deg, var(--kohi-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  padding-right: 32px; cursor: pointer;
}
.kohi-field input::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }
.kohi-field select:focus,
.kohi-field input:focus {
  outline: none; border-color: var(--kohi-field-bdf);
  box-shadow: 0 0 0 3px rgba(244, 194, 13, 0.22);
}

.kohi-btn {
  width: 100%; height: 48px; padding: 0 20px;
  background: var(--kohi-accent); color: var(--kohi-on-accent);
  border: none; border-radius: 4px;
  font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: 0.2px;
  text-transform: uppercase;
  cursor: pointer; transition: background .15s ease;
}
.kohi-btn:hover { background: var(--kohi-accent-hi); }
.kohi-btn:active { transform: translateY(1px); }
.kohi-btn.is-busy { opacity: .7; pointer-events: none; }

.kohi-strip__foot { margin-top: 12px; }
.kohi-promo-toggle {
  background: none; border: none; color: var(--kohi-muted);
  font-family: inherit; font-size: 13px; font-weight: 600; cursor: pointer; padding: 4px 0;
}
.kohi-promo-toggle:hover { color: var(--kohi-text); }
.kohi-promo { margin-top: 8px; }
.kohi-promo input {
  height: 42px; padding: 0 12px; min-width: 220px;
  background: var(--kohi-field); color: var(--kohi-text);
  border: 1px solid var(--kohi-field-bd); border-radius: 8px;
  font-family: inherit; font-size: 14px;
}

.kohi-errors {
  margin-top: 16px; padding: 12px 16px;
  background: rgba(255, 138, 106, 0.1);
  border: 1px solid rgba(255, 138, 106, 0.4);
  border-radius: 8px; color: var(--kohi-error); font-size: 14px; font-weight: 500;
}
.kohi-errors ul { margin: 0; padding-left: 18px; }

.kohi-mocknote {
  margin-top: 16px; padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px dashed var(--kohi-field-bd);
  border-radius: 8px; color: var(--kohi-muted); font-size: 13px;
}
.kohi-mocknote strong { color: var(--kohi-text); }
.kohi-mocknote code {
  display: block; margin-top: 8px; white-space: pre-wrap; word-break: break-word;
  color: var(--kohi-text); font-family: ui-monospace, Menlo, monospace; font-size: 12.5px;
}

@media (max-width: 760px) {
  .kohi-group { flex: 1 1 100%; flex-wrap: wrap; }
  .kohi-field--loc, .kohi-field--date, .kohi-field--time,
  .kohi-field--cat, .kohi-field--age, .kohi-field--search { flex: 1 1 100%; }
}

/* ===== Results / select page (step 2) ===== */
.kohi-page { background: #f4f3f0; color: #15120e; font-family: var(--kohi-font); min-height: 100vh; }

.kohi-topbar {
  background: #0d0d0d; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; flex-wrap: wrap;
}
.kohi-topbar__brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
/* !important: many WP themes force `img { height: auto !important; max-width: 100%
   !important; }` as a defensive responsive-image rule — that beats an unprotected
   height here outright (not just a specificity tie), rendering the logo at ~native
   2560x728 size instead of the intended 32px-tall mark. */
.kohi-logo--bar { height: 32px !important; width: auto !important; max-width: none !important;
  display: block !important; margin: 0 !important; }
.kohi-topbar__fallback { color: #fff; font-weight: 800; font-style: italic; text-transform: uppercase; }

.kohi-steps { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; flex-wrap: wrap;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.kohi-steps li { color: #6f6f6f; display: inline-flex; align-items: center; }
.kohi-steps .n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; background: #333; color: #bdbdbd;
  font-size: 11px; margin-right: 6px;
}
.kohi-steps li.is-current { color: #fff; }
.kohi-steps li.is-current .n { background: var(--kohi-accent); color: #141414; }
.kohi-steps li.is-done { color: #fff; }
.kohi-steps li.is-done .n { background: #fff; color: #141414; }
.kohi-steps a.kohi-fstep-link { color: inherit; text-decoration: none; display: inline-flex; align-items: center;
  cursor: pointer; }
.kohi-steps a.kohi-fstep-link:hover { color: var(--kohi-accent); }
.kohi-steps a.kohi-fstep-link:hover .n { background: var(--kohi-accent); color: #141414; }

.kohi-summary {
  background: #fff; border-bottom: 1px solid #e3e1da; padding: 14px 24px;
  display: flex; gap: 18px; align-items: baseline; flex-wrap: wrap;
}
.kohi-summary__route { font-size: 16px; font-weight: 500; }
.kohi-summary__route span { color: var(--kohi-accent-hi); margin: 0 4px; }
.kohi-summary__meta { color: #6b6b6b; font-size: 14px; }
.kohi-summary__edit { margin-left: auto; color: #15120e; font-weight: 700; font-size: 13px; }

.kohi-results-wrap { max-width: 1000px; margin: 0 auto; padding: 28px 24px 64px; }
.kohi-results-title {
  font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important;
  font-size: 28px !important; line-height: 1.15 !important; margin: 0 0 20px !important; letter-spacing: -0.5px !important;
}
.kohi-results { display: flex; flex-direction: column; gap: 18px; }

.kohi-card {
  display: grid; grid-template-columns: 300px 1fr 230px;
  background: #fff; border: 1px solid #e3e1da; border-radius: 14px; overflow: hidden;
}
.kohi-card__media { background: #e9e7e1; min-height: 210px; }
.kohi-card__media img { width: 100% !important; height: 100% !important; max-width: none !important;
  object-fit: cover !important; display: block !important; }
.kohi-card__media.is-empty { background:
  repeating-linear-gradient(45deg, #e9e7e1, #e9e7e1 10px, #e3e1da 10px, #e3e1da 20px); }
.kohi-card__body { padding: 22px 24px; }
.kohi-card__title {
  font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important;
  font-size: 22px !important; margin: 0 0 12px !important; line-height: 1.15 !important;
}
.kohi-card__specs { list-style: none; margin: 0 0 14px; padding: 0; color: #4a4a4a; font-size: 14px; }
.kohi-card__specs li { padding: 3px 0; }
.kohi-card__badge {
  display: inline-block; background: #e8f5e9; color: #1f7a33;
  font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 20px;
}
.kohi-card__badge--req { background: #fdf1d8; color: #8a6400; }
.kohi-card__badge--full { background: #fbe7e7; color: #a13a3a; }
.kohi-card__unavailable { flex: 1; display: flex; align-items: center; justify-content: center;
  color: #a13a3a; font-weight: 700; font-size: 14px; text-align: center; padding: 12px 0; }
.kohi-card__price {
  border-left: 1px solid #eee; padding: 22px 24px; background: #fafafa;
  display: flex; flex-direction: column; gap: 5px;
}
.kohi-card__rate { font-size: 20px; font-weight: 800; }
.kohi-card__rate span { font-size: 13px; font-weight: 500; color: #888; }
.kohi-card__days { font-size: 13px; color: #888; margin-bottom: 4px; }
.kohi-card__feeline { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; color: #666; }
.kohi-card__feeline span:last-child { white-space: nowrap; }
.kohi-card__total {
  display: flex; flex-direction: column; gap: 2px;
  margin-top: 10px; padding-top: 12px; border-top: 1px solid #eee;
}
.kohi-card__total span { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.kohi-card__total strong { font-size: 24px; }
.kohi-card__price .kohi-btn { margin-top: 12px; }
.kohi-btn--disabled, .kohi-btn--disabled:hover { background: #ddd; color: #8a8a8a; cursor: not-allowed; }

.kohi-empty { padding: 40px; text-align: center; color: #888; background: #fff;
  border: 1px solid #e3e1da; border-radius: 14px; }
.kohi-nextnote {
  margin-top: 24px; padding: 16px 18px; background: #fff8e1;
  border: 1px solid var(--kohi-accent); border-radius: 10px; font-size: 14px;
}
.kohi-mono { font-family: ui-monospace, Menlo, monospace; font-size: 12px; color: #8a7a3a;
  display: block; margin-top: 6px; word-break: break-all; }

@media (max-width: 760px) {
  .kohi-card { grid-template-columns: 1fr; }
  .kohi-card__price { border-left: none; border-top: 1px solid #eee; }
  .kohi-summary__edit { margin-left: 0; }
}

/* ===== Extras + details page (step 3) ===== */
.kohi-step3 {
  max-width: 1040px; margin: 0 auto; padding: 28px 24px 40px;
  /* align-items: stretch (grid default) — the aside needs to span the FULL row
     height (matching the taller main column), not shrink-wrap to the order box's
     own height, or there's no room left for it to actually pin while scrolling. */
  display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: stretch;
}
.kohi-step3__main { display: flex; flex-direction: column; gap: 22px; }
.kohi-step3-foot { max-width: 1040px; margin: 0 auto; padding: 0 24px 48px; }

.kohi-block { background: #fff; border: 1px solid #e3e1da; border-radius: 14px; padding: 20px 22px; }
.kohi-block h2 { font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important; font-size: 18px !important; line-height: 1.2 !important; margin: 0 0 12px !important; }

.kohi-veh { display: flex; gap: 16px; align-items: center; background: #fff;
  border: 1px solid #e3e1da; border-radius: 14px; padding: 16px; }
.kohi-veh img { width: 120px !important; height: 80px !important; max-width: none !important;
  object-fit: cover !important; border-radius: 8px !important; }
.kohi-veh h2 { font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important; font-size: 18px !important; line-height: 1.2 !important; margin: 0 0 4px !important; }
.kohi-veh p { margin: 0; color: #666; font-size: 13px; }

.kohi-opt { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid #f0efe9; }
.kohi-opt:last-child { border-bottom: none; }
.kohi-opt label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 15px; }
.kohi-opt input { width: 18px; height: 18px; accent-color: var(--kohi-accent-hi); }
.kohi-opt__price { font-weight: 700; font-size: 14px; }
.kohi-opt__desc { color: #888; font-size: 12px; width: 100%; margin-left: 28px; }

.kohi-form { display: flex; flex-direction: column; gap: 14px; }
.kohi-form__row { display: flex; gap: 14px; flex-wrap: wrap; }
.kohi-form label { display: flex; flex-direction: column; gap: 5px; flex: 1 1 200px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #777; }
/* !important throughout: WP's own global-styles-inline-css ties in specificity with
   our single-class selectors and can win on source order (same mechanism that broke
   headings/buttons elsewhere) — without it these inputs render with no visible
   border/background at all, and only show up where Chrome's autofill forces its own
   blue background on top. */
.kohi-form input, .kohi-form select {
  display: block !important; width: 100% !important; box-sizing: border-box !important;
  height: 44px !important; padding: 0 12px !important;
  border: 1px solid #cfccc4 !important; border-radius: 8px !important; background: #fff !important;
  font-family: inherit !important; font-size: 15px !important; font-weight: 400 !important; color: #15120e !important;
}
.kohi-form input:focus, .kohi-form select:focus {
  outline: none; border-color: var(--kohi-accent-hi); box-shadow: 0 0 0 3px rgba(244, 194, 13, 0.2);
}
.kohi-form input.is-invalid { border-color: #d4504a; box-shadow: 0 0 0 3px rgba(212, 80, 74, 0.15); }

/* The bare `hidden` attribute relies on the browser's low-specificity `[hidden]`
   UA rule, which a broad theme/Elementor `display:flex|block` rule can beat — same
   root cause as the other !important fixes here. Force it explicitly. */
.kohi-block[hidden] { display: none !important; }

/* position/top NOT !important here on purpose — flow.js's initStickySummary() takes
   over pin/unpin via inline styles once it runs (see that function for why: html/body
   overflow on the live theme breaks native sticky outright). `sticky` is just the
   pre-JS/no-JS fallback, and an !important here would out-rank the JS's own inline
   position:fixed, since !important external rules always beat inline styles. */
.kohi-ordersum { position: sticky; top: 20px; background: #fff; border: 1px solid #e3e1da;
  border-radius: 14px; padding: 20px; }
.kohi-ordersum h2 { font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important; font-size: 18px !important; line-height: 1.2 !important; margin: 0 0 14px !important; }
.kohi-ordersum__line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: #444; padding: 6px 0; }
.kohi-ordersum__line span:last-child { white-space: nowrap; font-weight: 500; }
.kohi-ordersum__total { display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 12px; border-top: 2px solid #15120e; }
.kohi-ordersum__total span { font-size: 13px; text-transform: uppercase; font-weight: 700; }
.kohi-ordersum__total strong { font-size: 23px; }
.kohi-ordersum__tax { font-size: 12px; color: #888; margin-top: 3px; }
.kohi-ordersum .kohi-btn { width: 100%; margin-top: 16px; }

@media (max-width: 860px) {
  .kohi-step3 { grid-template-columns: 1fr; }
  .kohi-ordersum { position: static; }
}

/* ===== Payment (step 4) ===== */
.kohi-payref {
  background: #15120e; color: #fff; border-radius: 14px; padding: 16px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.kohi-payref span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: #b8b3a8; }
.kohi-payref strong { font-size: 18px; font-style: italic; }
.kohi-pay__assure {
  background: #eef7ee; border: 1px solid #cfe6cf; color: #2c6b34;
  border-radius: 8px; padding: 10px 13px; font-size: 13px; margin: 0 0 18px;
}
.kohi-form .kohi-cardform__full {
  display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; flex: 0 0 auto;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #777;
}
.kohi-card-panel .kohi-btn { width: 100%; margin-top: 16px; }
.kohi-pay__secure { margin-top: 14px; font-size: 12px; color: #999; }
.kohi-pay__error { margin-top: 14px; padding: 14px 16px; border-radius: 10px; background: #fbe7e7; color: #a13a3a; font-size: 14px; line-height: 1.5; }
.kohi-pay__error a { color: inherit; text-decoration: underline; }
.kohi-payframe { width: 100%; min-height: 520px; border: 0; border-radius: 10px; background: #fff; display: block; }

/* ===== Confirmation (step 5) ===== */
.kohi-confirm { max-width: 620px; margin: 0 auto; padding: 48px 24px 64px; text-align: center; }
/* !important: WP themes commonly bundle `svg` into the same responsive-media reset
   as `img` (`max-width:100% !important; height:auto !important;`) — same failure
   mode that shrank the logo, just hitting an inline <svg> instead of an <img>. */
.kohi-confirm__check { width: 96px !important; height: 96px !important; max-width: none !important;
  margin: 0 auto 22px !important; display: block !important; }
.kohi-confirm__title { font-style: italic !important; font-weight: 800 !important; text-transform: uppercase !important; font-size: 32px !important; line-height: 1.15 !important; margin: 0 0 10px !important; letter-spacing: -0.5px !important; }
.kohi-confirm__ref { font-size: 16px; color: #444; margin: 0 0 6px; }
.kohi-confirm__ref strong { font-size: 20px; }
.kohi-confirm__email { color: #666; margin: 0 0 26px; }
.kohi-conf { text-align: left; }
.kohi-conf__row { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0;
  border-bottom: 1px solid #f0efe9; font-size: 14px; color: #555; }
.kohi-conf__row:last-child { border-bottom: none; }
.kohi-conf__row strong { color: #15120e; text-align: right; }
.kohi-conf__row--total { border-top: 2px solid #15120e; border-bottom: none; margin-top: 6px; padding-top: 12px; }
.kohi-conf__row--total strong { font-size: 20px; }
.kohi-confirm__note { color: #666; font-size: 14px; margin: 26px 0; line-height: 1.6; }
.kohi-confirm .kohi-btn { width: auto; min-width: 220px; }
.kohi-btn--ghost { background: transparent; color: #15120e; border: 2px solid #15120e; }
.kohi-btn--ghost:hover { background: #15120e; color: #fff; }

/* ===== Embeddable search widgets (3 variants) ===== */
.kohi-widget {
  background: var(--kohi-panel); border: 1px solid var(--kohi-field-bd);
  border-radius: var(--kohi-radius); padding: 16px; font-family: var(--kohi-font);
  backdrop-filter: blur(6px);
}
.kohi-widget .kohi-errors { width: 100%; margin-top: 8px; }

/* — skinny strip: one horizontal row — */
.kohi-widget--strip { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }
.kohi-widget--strip .w-loc { flex: 2 1 160px; }
.kohi-widget--strip .w-date { flex: 1 1 130px; }
.kohi-widget--strip .w-time { flex: 0 1 96px; }
.kohi-widget--strip .w-cat { flex: 2 1 160px; }
.kohi-widget--strip .w-age { flex: 1 1 110px; }
.kohi-widget--strip .w-search { flex: 1 1 180px; }
.kohi-widget--strip .w-promo { display: none; }
.kohi-widget--strip .kohi-btn { width: 100%; }
.kohi-widget--strip .kohi-errors { flex: 1 1 100%; }

/* — half box: compact 2-col card — */
.kohi-widget--box { max-width: 460px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px; }
.kohi-widget--box .w-loc { grid-column: 1 / -1; }
.kohi-widget--box .w-cat { grid-column: 1 / -1; }
.kohi-widget--box .w-promo { grid-column: 1 / -1; }
.kohi-widget--box .w-search { grid-column: 1 / -1; }
.kohi-widget--box .kohi-errors { grid-column: 1 / -1; }
.kohi-widget--box .kohi-btn { width: 100%; }

/* — full width: 4-col booking block — */
.kohi-widget--full { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px; }
.kohi-widget--full .w-loc { grid-column: span 2; }
.kohi-widget--full .w-cat { grid-column: span 2; }
/* Grid items can shrink below their content's needs unless given a floor — without
   this, the time column (1 of 4 equal fr tracks) squeezes narrower than a native
   time input needs and truncates "10:00 am" to "10:0". */
.kohi-widget--full .w-time { min-width: 130px; }
.kohi-widget--full .w-search { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.kohi-widget--full .w-search .kohi-btn { width: auto; min-width: 260px; height: 52px; }
.kohi-widget--full .kohi-errors { grid-column: 1 / -1; }

@media (max-width: 720px) {
  .kohi-widget--full { grid-template-columns: 1fr 1fr; }
  .kohi-widget--full .w-loc, .kohi-widget--full .w-cat { grid-column: span 2; }
  .kohi-widget--box { max-width: none; }
}

/* preview gallery chrome (not part of the embeddable widget) */
.kohi-demo { font-family: var(--kohi-font); background: #e9e7e2; min-height: 100vh; padding: 32px 24px 64px; }
.kohi-demo__head { max-width: 1100px; margin: 0 auto 28px; font-size: 12px; color: #777;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.kohi-demo__variant { max-width: 1100px; margin: 0 auto 40px; }
.kohi-demo__variant h3 { font-style: italic; font-weight: 800; text-transform: uppercase;
  color: #15120e; font-size: 18px; margin: 0 0 14px; }
.kohi-demo__variant h3 span { font-style: normal; font-weight: 500; text-transform: none;
  color: #888; font-size: 13px; margin-left: 6px; }

/* ===== Single-page flow (WP plugin) ===== */
.kohi-flow-embed { color: #15120e; font-family: var(--kohi-font); }
/* .kohi-results-wrap / .kohi-step3 keep their normal max-width (1000/1040px) here —
   restoring the centered-card look from the original design, per Jake's feedback. */
.kohi-flow-embed .kohi-summary { border-radius: 10px; border: 1px solid #e3e1da; margin-bottom: 20px; }
/* Header: steps + logo, both grouped and right-aligned; nothing on the left. */
.kohi-fheader { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-bottom: 24px; flex-wrap: wrap; }
.kohi-fheader__logo { display: inline-flex; flex: 0 0 auto; }
/* The source logo asset is white-only (built for the dark hero) — invert it here
   since the flow pages have a light background, or it disappears against it. */
.kohi-fheader__logo img { height: 26px; width: auto; display: block; filter: invert(1); }

.kohi-fsteps { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; flex-wrap: wrap;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.kohi-fsteps li { color: #9a9a9a; display: inline-flex; align-items: center; }
.kohi-fsteps .n { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px;
  border-radius: 50%; background: #dddbd4; color: #888; font-size: 11px; margin-right: 6px; }
.kohi-fsteps li.is-current { color: #15120e; }
.kohi-fsteps li.is-current .n { background: var(--kohi-accent); color: #141414; }
.kohi-fsteps li.is-done { color: #15120e; }
.kohi-fsteps li.is-done .n { background: #15120e; color: #fff; }
.kohi-fsteps a.kohi-fstep-link { color: inherit; text-decoration: none; display: inline-flex; align-items: center;
  cursor: pointer; }
.kohi-fsteps a.kohi-fstep-link:hover { color: var(--kohi-accent-hi); }
.kohi-fsteps a.kohi-fstep-link:hover .n { background: var(--kohi-accent-hi); }
