/* ── טסים להופעה — styles (Hebrew, RTL) ──────────────────────────────
 *
 * The page is dir="rtl". Two rules keep it that way without a mirrored
 * stylesheet:
 *   1. Use LOGICAL properties (inline-start/end, margin-inline, inset-inline)
 *      rather than left/right, so the layout follows the document direction.
 *   2. Anything that is inherently left-to-right — a price, a date, an IATA
 *      code, a code sample — carries .ltr / dir="ltr" and is isolated, so the
 *      bidi algorithm does not reorder it inside a Hebrew line.
 * ────────────────────────────────────────────────────────────────────── */
:root {
  --bg: #0d1017;
  --bg-2: #121722;
  --panel: #161c28;
  --panel-2: #1b2333;
  --line: #273040;
  --line-2: #313c50;
  --text: #e8ebf2;
  --muted: #93a0b4;
  --muted-2: #6b7688;
  --indigo: #7c6cff;
  --pink: #ff5c8a;
  --teal: #2dd4bf;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { color-scheme: dark; }

body {
  margin: 0;
  /* Hebrew first, then the Latin fallbacks. No webfont on purpose: the site
     is dependency-free and must render instantly with no external request. */
  font-family: "Heebo", "Assistant", "Rubik", "Arial Hebrew", "Noto Sans Hebrew",
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(124, 108, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at -5% 0%, rgba(45, 212, 191, 0.1), transparent 55%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); }

/* Latin/numeric runs inside Hebrew text: isolate so bidi leaves them alone.
   Deliberately NOT inline-block — that would stop the run wrapping with the
   sentence around it. Isolation is an inline-level concern. */
.ltr {
  unicode-bidi: isolate;
  direction: ltr;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px 64px; }

/* ── header ─────────────────────────────────────────────────────── */
.masthead { padding: 40px 0 22px; }
.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}
.masthead__brand .glyph { font-size: 18px; }
.masthead h1 {
  margin: 12px 0 6px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #fff 10%, var(--indigo) 55%, var(--pink) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.masthead p { margin: 0; color: var(--muted); max-width: 62ch; }

/* ── layout ─────────────────────────────────────────────────────── */
.app {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 900px) {
  .app { grid-template-columns: 1fr; }
}

/* ── controls panel ─────────────────────────────────────────────── */
.panel {
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.controls { position: sticky; top: 18px; }
.controls h2 {
  margin: 2px 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.field { margin-bottom: 18px; }
.field > label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--text);
}
.field .val {
  font-variant-numeric: tabular-nums;
  color: var(--teal);
  font-weight: 700;
}
.hint { font-size: 11.5px; color: var(--muted-2); margin-top: 6px; }

select,
.seg {
  width: 100%;
  font: inherit;
  color: var(--text);
}
select {
  appearance: none;
  background: var(--panel-2)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%2393a0b4' d='M2 4l4 4 4-4'/></svg>")
    no-repeat right 12px center;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 11px 34px 11px 12px;
  cursor: pointer;
}
select:focus,
input[type="text"]:focus,
input[type="range"]:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }

/* range sliders */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  /* 6px painted track inside a 32px touch strip: the element box IS the hit
   * area, and a 6px strip is ungrabbable on a touchscreen (the "glued"
   * sliders on mobile). Track drawn with background-size so it stays 6px. */
  height: 32px;
  background: linear-gradient(90deg, var(--indigo), var(--teal)) no-repeat center;
  background-size: 100% 6px;
  /* Vertical drag scrolls the page; horizontal drag moves the thumb. */
  touch-action: pan-y;
  outline-offset: 2px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--indigo);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--indigo);
}

/* ── combobox (artist, city) ─────────────────────────────────────
 *
 * A <select> can't be searched and, at 154 cities, can't be scanned either.
 * This is the replacement: a text input, a chevron, a clear "✕", and an
 * absolutely-positioned listbox. Every offset here is logical
 * (inset-inline-*, padding-inline-*), so the whole thing mirrors with the
 * document instead of needing an RTL copy. */
.combo { position: relative; }
.combo__input {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  /* Room at the inline end for the ✕ and the chevron sitting on top. */
  padding: 11px 12px;
  padding-inline-end: 56px;
  cursor: pointer;
}
.combo__input::placeholder { color: var(--muted-2); }
.combo__input:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
  cursor: text;
}
.combo__toggle,
.combo__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}
/* display:flex above would otherwise beat the UA's [hidden] rule, and the ✕
   is hidden whenever nothing is chosen. */
.combo__toggle[hidden],
.combo__clear[hidden] { display: none; }
.combo__toggle { inset-inline-end: 6px; }
.combo__clear { inset-inline-end: 32px; font-size: 11px; }
.combo__toggle:hover,
.combo__clear:hover { color: var(--text); background: var(--line); }
.combo__toggle:focus-visible,
.combo__clear:focus-visible { outline: 2px solid var(--indigo); outline-offset: 1px; }
.combo__input[aria-expanded="true"] ~ .combo__toggle { transform: translateY(-50%) rotate(180deg); }

.combo__list {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 6px);
  z-index: 30;
  margin: 0;
  padding: 5px;
  list-style: none;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
.combo__list[hidden] { display: none; }
.combo__group {
  padding: 8px 10px 4px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
}
.combo__opt {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  cursor: pointer;
}
.combo__opt[data-active="1"] { background: var(--line); color: #fff; }
.combo__opt[aria-selected="true"] { color: var(--teal); font-weight: 700; }
.combo__opt[aria-selected="true"]::after { content: "✓"; font-size: 11px; }
.combo__optlabel { min-width: 0; }
.combo__optlabel .sep { color: var(--muted-2); }
.combo__optmeta {
  flex: none;
  font-size: 11px;
  color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.combo__empty { padding: 12px 10px; font-size: 13px; color: var(--muted-2); }

/* ── date range ─────────────────────────────────────────────────────
 *
 * Quick ranges first, exact dates under them: "the next three months" is the
 * common answer and the calendar is the refinement. Both rows are kept tight —
 * this is one filter among six in a 320px panel, not the centrepiece. */
.chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 7px; }
.chips button {
  font: inherit;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 10px;
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}
.chips button:hover:not(:disabled) { border-color: var(--indigo); color: var(--text); }
.chips button.active {
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.28), rgba(124, 108, 255, 0.1));
  border-color: var(--indigo);
  color: #fff;
  font-weight: 600;
}
/* A range with nothing in it under the current artist/city — same rule the
   pickers follow: don't offer a click that empties the page. */
.chips button:disabled {
  opacity: 0.32;
  cursor: default;
  border-style: dashed;
}
.chips button:focus-visible { outline: 2px solid var(--indigo); outline-offset: 1px; }

.daterange { display: flex; align-items: center; gap: 6px; }
.daterange input[type="date"] {
  flex: 1;
  min-width: 0;
  font: inherit;
  font-size: 12px;
  /* Empty reads as a quiet hint, filled reads as a value you chose. The class
     is set from JS — a date input has no ::placeholder to style. */
  color: var(--muted-2);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  /* The value is digits and separators only — no Hebrew — so an LTR field is
     the right reading order for it, and the calendar button follows. */
  direction: ltr;
  text-align: start;
}
.daterange input[type="date"].is-set { color: var(--text); font-weight: 600; border-color: var(--line-2); }
.daterange input[type="date"]:hover { border-color: var(--indigo); }
.daterange input[type="date"]:focus { outline: 2px solid var(--indigo); outline-offset: 1px; }
.daterange input[type="date"]::-webkit-calendar-picker-indicator {
  width: 13px;
  padding: 0;
  opacity: 0.45;
  filter: invert(0.8);
  cursor: pointer;
}
.daterange input[type="date"]:hover::-webkit-calendar-picker-indicator { opacity: 0.9; }
.daterange__sep { color: var(--muted-2); font-size: 12px; }

/* segmented control (stops) */
.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: transparent;
  padding: 0;
}
.seg button {
  font: inherit;
  color: var(--muted);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 9px 6px;
  cursor: pointer;
  transition: all 0.12s ease;
}
.seg button:hover { border-color: var(--indigo); color: var(--text); }
.seg button.active {
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.25), rgba(124, 108, 255, 0.1));
  border-color: var(--indigo);
  color: #fff;
  font-weight: 600;
}

.check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}
.check input { width: 16px; height: 16px; accent-color: var(--indigo); }

/* ── results ────────────────────────────────────────────────────── */
.results-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
#summary { color: var(--muted); font-size: 14.5px; }
#summary strong { color: var(--text); }
.sortbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sortbox select { width: auto; padding: 8px 30px 8px 10px; }

/* "how are these prices calculated" — the numbers on the cards are estimates,
   so the method is on the page rather than implied by a badge. */
.howto {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  margin-bottom: 16px;
  font-size: 13px;
}
.howto > summary {
  cursor: pointer;
  padding: 11px 14px;
  font-weight: 600;
  color: var(--muted);
  list-style-position: inside;
}
.howto > summary:hover { color: var(--text); }
.howto[open] > summary { border-bottom: 1px solid var(--line); color: var(--text); }
.howto__body { padding: 12px 14px 14px; color: var(--muted); line-height: 1.6; }
.howto__body ul { margin: 0 0 10px; padding-inline-start: 20px; }
.howto__body li { margin-bottom: 6px; }
.howto__body strong { color: var(--text); }
.howto__body p { margin: 0; font-size: 12px; color: var(--muted-2); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

/* concert card */
.concert {
  position: relative;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--accent, var(--indigo));
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.concert:hover { transform: translateY(-2px); border-color: var(--line-2); }
.concert.is-hidden { opacity: 0.62; }

.concert__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.concert__artist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}
.concert__artist .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
.concert__when { text-align: end; line-height: 1.25; }
.concert__when .date { display: block; font-weight: 600; font-size: 13.5px; }
.concert__when .away { font-size: 11.5px; color: var(--muted-2); }

.concert__place { margin-bottom: 14px; }
.concert__place .city { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.concert__place .venue { font-size: 13px; color: var(--muted); }

.concert__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.metric { background: var(--panel); padding: 11px 12px; }
.metric__label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted-2);
  margin-bottom: 3px;
}
.metric__value { font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.metric__value.accent { color: var(--teal); }
.metric__sub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.metric__sub .route { font-weight: 600; color: var(--text); }
.metric__sub .plane { color: var(--indigo); }
.metric__sub .sep { color: var(--muted-2); margin-inline: 4px; }
.metric__sub .local { color: var(--teal); font-weight: 600; }
.metric__sub .muted { color: var(--muted-2); }
.metric__sub .flight-dates { display: block; margin-top: 3px; font-size: 11px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
.metric__sub .alt-note { display: block; margin-top: 3px; font-size: 10.5px; font-weight: 600; color: var(--teal); }
.metric__sub .per-head { display: block; margin-top: 3px; font-size: 11px; color: var(--muted-2); }

/* clickable flight / ticket metrics (jump straight to search / buy) */
a.metric.is-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.12s ease;
}
a.metric.is-link:hover { background: var(--panel-2); }
a.metric.is-link:focus-visible { outline: 2px solid var(--indigo); outline-offset: -2px; }
.metric__go { display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; }
a.metric__go { text-decoration: none; }
a.metric__go:hover { text-decoration: underline; }
.metric--ticket .compare { margin-top: 5px; font-size: 11px; color: var(--muted-2); }
.metric--ticket .compare a { color: var(--muted); text-decoration: none; border-bottom: 1px dotted var(--line-2); }
.metric--ticket .compare a:hover { color: var(--teal); border-bottom-color: var(--teal); }
.metric--flight .metric__go { color: var(--indigo); }
.metric--ticket .metric__go { color: var(--teal); }
.metric--stay .metric__go { color: var(--pink); }
a.metric.is-link:hover .metric__go { text-decoration: underline; }
/* trip total spans the full width beneath the four cost/info boxes */
.metric--total { grid-column: 1 / -1; }

/* "comes to you" — artist playing your own city, no flight needed */
.concert.is-local {
  border-color: color-mix(in srgb, var(--teal) 55%, var(--line));
  box-shadow: var(--shadow), 0 0 0 1px rgba(45, 212, 191, 0.28) inset;
}
.local-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  color: #08110f;
  background: linear-gradient(180deg, #4fe0c8, var(--teal));
  border-radius: 999px;
  padding: 3px 11px;
  margin-bottom: 11px;
}

/* availability badges */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.tone-ok { background: rgba(47, 191, 113, 0.14); color: #57d493; border-color: rgba(47, 191, 113, 0.35); }
.tone-warn { background: rgba(224, 161, 58, 0.14); color: #edb95c; border-color: rgba(224, 161, 58, 0.35); }
.tone-hot { background: rgba(249, 115, 98, 0.15); color: #ff8a7a; border-color: rgba(249, 115, 98, 0.38); }
.tone-gone { background: rgba(224, 85, 107, 0.14); color: #ff7d92; border-color: rgba(224, 85, 107, 0.4); }

/* action buttons (monetised outbound links) */
.concert__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.action {
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 8px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  transition: all 0.12s ease;
}
.action--flight {
  color: #fff;
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.9), rgba(124, 108, 255, 0.7));
  border-color: transparent;
}
.action--flight:hover { filter: brightness(1.08); }
.action--ticket { color: var(--text); background: var(--panel-2); }
.action--ticket:hover { border-color: var(--teal); color: #fff; }
.action--nofly {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 8px;
  border-radius: 9px;
  border: 1px dashed color-mix(in srgb, var(--teal) 45%, var(--line-2));
  color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
  cursor: default;
}

.concert__hidden-note {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--muted-2);
  border-top: 1px dashed var(--line-2);
  padding-top: 8px;
}

/* hidden / near-miss block */
.hidden-block { margin-top: 26px; }
.hidden-block > summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 13.5px;
  padding: 10px 0;
  list-style: none;
}
.hidden-block > summary::-webkit-details-marker { display: none; }
.hidden-block > summary::before { content: "◂ "; color: var(--pink); }
.hidden-block[open] > summary::before { content: "▾ "; }
.hidden-list { margin-top: 14px; }
.hidden-list .grid, .hidden-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }

/* empty state */
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--muted);
}
.empty__emoji { font-size: 40px; margin-bottom: 10px; }
.empty h3 { margin: 0 0 6px; color: var(--text); }
.empty p { margin: 0 auto; max-width: 46ch; font-size: 14px; }
.empty__clear {
  margin-top: 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 9px 16px;
  cursor: pointer;
}
.empty__clear:hover { border-color: var(--teal); color: #fff; }
.empty__clear:focus-visible { outline: 2px solid var(--indigo); outline-offset: 2px; }

/* footer / disclaimer */
.foot {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12.5px;
}
.foot strong { color: var(--muted); }
.foot .sources { margin-top: 8px; }
.foot code { background: var(--panel-2); padding: 1px 6px; border-radius: 5px; color: var(--muted); }

/* ── mobile overrides (placed last so they win over the base rules) ─── */
@media (max-width: 900px) {
  /* Don't pin the filter panel — pinned, it scrolls over the results. */
  .controls { position: static; top: auto; }
  /* Stack the summary and the Sort by control so both stay reachable. */
  .results-head { flex-direction: column; align-items: stretch; gap: 10px; }
  .sortbox { justify-content: space-between; }
  .sortbox select { flex: 1; }
  /* One card per row — no horizontal overflow on a phone. */
  .grid,
  .hidden-list,
  .hidden-list .grid { grid-template-columns: 1fr; }
}


/* ── fare provenance tags ────────────────────────────────────────── */
.fare-tag {
  display: inline-block;
  margin-inline-start: 0.4em;
  padding: 0.05em 0.5em;
  border-radius: 999px;
  font-size: 0.78em;
  font-weight: 600;
  vertical-align: baseline;
}
.fare-tag--real {
  color: #7ee2a8;
  background: rgba(46, 160, 90, 0.18);
  border: 1px solid rgba(126, 226, 168, 0.35);
}
.fare-tag--est {
  color: #e8c47a;
  background: rgba(200, 150, 40, 0.16);
  border: 1px solid rgba(232, 196, 122, 0.35);
}

/* Agency packages (Israeli package builders) — real seller-published offers. */
.agency-pkgs {
  margin-block-start: 10px;
  padding-block-start: 8px;
  border-block-start: 1px dashed rgba(128, 128, 128, 0.35);
  font-size: 0.85rem;
  line-height: 1.6;
}
.agency-pkgs__label {
  font-weight: 600;
  margin-inline-end: 4px;
}
.agency-pkgs__offer {
  white-space: nowrap;
}
