/* =====================================================================
   THE TRIP SEARCH BAR — the ski hero.

   One bar split into segments (Where · Arrival · Departure · Reserve) with
   panels that drop beneath it, and the row of trip parts under that. Laid
   out after the reference but squared off — softly rounded corners rather
   than a full pill — and in the ski pages' own navy, gold and warm white.

   Prefix .sks- throughout.
   ===================================================================== */

/* The hero clips its own corners, which would cut every panel off at its
   bottom edge. The background image and the scrim are both inset: 0, so there
   is nothing to spill once it stops clipping; the z-index keeps the open panel
   above the section that follows. */
.skl-hero--search { overflow: visible; z-index: 20; }

.sks { position: relative; z-index: 6; width: min(1060px, 100%); margin-inline: auto; text-align: left; }

/* Every panel, pane and badge in here is closed with the `hidden` attribute,
   and a class that sets `display` outranks what `hidden` means on its own. One
   rule so that never has to be remembered again. */
.sks [hidden] { display: none !important; }

/* ------------------------------- the card ---------------------------------
   Everything the bar offers sits in one white card: the three labelled
   fields, the search button, the row of trip parts and the line under it. */
.sks-card {
  padding: clamp(16px, 1.8vw, 24px) clamp(16px, 1.8vw, 26px) clamp(14px, 1.6vw, 20px);
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 22px 54px rgba(16, 28, 36, .3);
}

.sks-bar {
  display: grid;
  /* Dates gets the widest column: once both are chosen it holds the longest
     line on the bar ("Sep 19, 2026 → Sep 23, 2026"). */
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.15fr) minmax(0, .78fr) auto;
  align-items: end;
  gap: 14px;
}

/* A field is its label with its box under it. */
.sks-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; margin: 0; }
.sks-field__lab {
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--skl-gold, #BD830D);
}

.sks-box {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--skl-line, #E3E9EC);
  /* Squared off rather than a pill, the way the rest of the ski pages are. */
  border-radius: 12px;
  background: #F6F8F9;
  font: inherit;
  font-size: .95rem;
  text-align: left;
  color: var(--skl-muted, #5f7380);
  cursor: pointer;
  transition: border-color .18s var(--skl-ease, ease), background-color .18s var(--skl-ease, ease);
}
.sks-box:hover { border-color: #C6D3D9; background: #F1F5F7; }
.sks-box[aria-expanded="true"] { border-color: var(--skl-navy, #2e4755); background: #FFFFFF; }
.sks-box:focus-visible { outline: 2px solid var(--skl-gold, #BD830D); outline-offset: 2px; }
.sks-box__ic { flex: none; display: grid; place-items: center; width: 22px; height: 22px; color: var(--skl-navy, #2e4755); }
.sks-box__ic svg { width: 21px; height: 21px; }
.sks-box__val { min-width: 0; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
/* Set values read in the page's own ink, so a chosen field looks chosen. */
.sks-box.is-set { color: var(--skl-navy, #2e4755); font-weight: 600; }
.sks-box__val--range { display: flex; align-items: center; gap: 9px; min-width: 0; }
/* If the two dates still do not fit, the second one ends in "…" rather than
   being cut through a letter. */
.sks-box__val--range > span { min-width: 0; white-space: nowrap; }
.sks-box__val--range > span:last-child { overflow: hidden; text-overflow: ellipsis; }
.sks-box__to { flex: none; font-style: normal; color: var(--skl-muted, #5f7380); }
/* The line under the label is what the segment holds once it is chosen. */
.sks-seg__txt small { font-size: .82rem; color: var(--skl-muted, #5f7380); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sks-seg.is-set .sks-seg__txt small { color: var(--skl-ink, #1f3441); font-weight: 600; }

.sks-split { flex: none; width: 1px; margin: 10px 0; background: var(--skl-line, #E3E9EC); }

/* The booking button: "Book Now" with a caret beside it that opens the other
   way to go — reserve it now and settle it with the team later. Square
   shouldered and the same height as the fields. */
.sks-cta {
  position: relative;
  /* Its own layer, above the row of trip parts that follows it. Without this
     the hover lift below (a transform) makes a new stacking context, the
     menu's z-index is trapped inside it, and the chips paint over the menu. */
  z-index: 30;
  flex: none;
  display: inline-flex;
  align-items: stretch;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(189, 131, 13, .28);
  transition: transform .2s var(--skl-ease, ease), box-shadow .2s var(--skl-ease, ease);
}
.sks-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(189, 131, 13, .34); }
/* While the menu is open the button holds still, so the menu does not
   shift under the pointer as it moves between the two. */
.sks-cta.is-open,
.sks-cta.is-open:hover { transform: none; box-shadow: 0 8px 20px rgba(189, 131, 13, .28); }

.sks-go,
.sks-go__more {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 56px;
  border: 0;
  background: var(--skl-gold, #BD830D);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color .2s var(--skl-ease, ease);
}
.sks-go { min-width: 150px; padding: 0 22px; border-radius: 12px 0 0 12px; }
.sks-go svg { width: 18px; height: 18px; }
/* A hairline between the two halves, so the caret reads as its own button. */
.sks-go__more { width: 46px; padding: 0; border-radius: 0 12px 12px 0; box-shadow: inset 1px 0 0 rgba(255, 255, 255, .28); }
.sks-go__more svg { width: 16px; height: 16px; transition: transform .2s var(--skl-ease, ease); }
.sks-go__more[aria-expanded="true"] svg { transform: rotate(180deg); }
.sks-go:hover,
.sks-go__more:hover,
.sks-go__more[aria-expanded="true"] { background: #a8740b; }
.sks-go:focus-visible,
.sks-go__more:focus-visible { outline: 2px solid #FFFFFF; outline-offset: -4px; }

/* The two ways to book, dropped under the button. */
.sks-cta__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  right: 0;
  width: min(320px, 78vw);
  overflow: hidden;
  border: 1px solid var(--skl-line, #E3E9EC);
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 20px 44px rgba(16, 28, 36, .22);
}
.sks-cta__menu[hidden] { display: none; }
.sks-cta__menu button {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 13px 16px 13px 12px;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s var(--skl-ease, ease);
}
.sks-cta__menu button + button { border-top: 1px solid var(--skl-line, #E3E9EC); }
.sks-cta__menu button:hover { background: #F1F5F7; }
.sks-cta__menu button:focus-visible { outline: 2px solid var(--skl-gold, #BD830D); outline-offset: -3px; }
.sks-cta__menu b { display: block; font-size: .95rem; font-weight: 700; color: var(--skl-navy, #2e4755); }
.sks-cta__menu small { display: block; margin-top: 2px; font-size: .82rem; line-height: 1.45; color: var(--skl-muted, #5f7380); }
.sks-cta__txt { min-width: 0; }
/* The tick marks the way the main button is set to book. */
.sks-cta__tick {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid var(--skl-line, #E3E9EC);
  border-radius: 50%;
  color: transparent;
  transition: background-color .18s var(--skl-ease, ease), border-color .18s var(--skl-ease, ease);
}
.sks-cta__tick svg { width: 12px; height: 12px; }
.sks-cta__menu button.is-on { background: #FBF6EA; }
.sks-cta__menu button.is-on .sks-cta__tick { border-color: var(--skl-gold, #BD830D); background: var(--skl-gold, #BD830D); color: #FFFFFF; }

/* ---- the main button turning over to its new word ---- */
.sks-go { perspective: 400px; }
.sks-go__label { display: inline-block; backface-visibility: hidden; }
.sks-go.is-flipping .sks-go__label { animation: sks-flip .36s var(--skl-ease, ease); }
@keyframes sks-flip {
  0%   { transform: rotateX(0); opacity: 1; }
  45%  { transform: rotateX(90deg); opacity: .2; }
  55%  { transform: rotateX(-90deg); opacity: .2; }
  100% { transform: rotateX(0); opacity: 1; }
}

/* ---- what is still missing ---- */
.sks-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 9px 14px;
  border: 1px solid #F0D9A8;
  border-radius: 10px;
  background: #FBF3E1;
  font-size: .86rem;
  font-weight: 600;
  color: #7A5608;
}
.sks-msg::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v4M12 16h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}
.sks-box.is-missing { border-color: var(--skl-gold, #BD830D); box-shadow: 0 0 0 3px rgba(189, 131, 13, .18); }
.sks-box.is-nudged { animation: sks-nudge .42s var(--skl-ease, ease); }
@keyframes sks-nudge {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@media (prefers-reduced-motion: reduce) {
  .sks-go.is-flipping .sks-go__label,
  .sks-box.is-nudged { animation: none; }
}

/* -------------------------------- the panels -------------------------------- */
.sks-pop {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 8;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 14px;
  background: #FFFFFF;
  box-shadow: 0 26px 60px rgba(16, 28, 36, .32);
  color: var(--skl-ink, #1f3441);
}
.sks-pop[hidden] { display: none; }
.sks-pop__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.sks-pop__head h3 { margin: 0; font-size: 1.15rem; font-weight: 700; color: var(--skl-navy, #2e4755); }
.sks-pop__head button { display: grid; place-items: center; width: 32px; height: 32px; border: 0; border-radius: 50%; background: #F2F6F8; color: var(--skl-ink, #1f3441); cursor: pointer; }
.sks-pop__head button svg { width: 17px; height: 17px; }
.sks-pop__head button:hover { background: #E3EBEF; }

/* ---- where: tabs, areas, places ---- */
.sks-tabs { display: flex; gap: 26px; border-bottom: 1px solid var(--skl-line, #E3E9EC); margin-bottom: 16px; }
.sks-tab {
  position: relative;
  padding: 0 0 10px;
  border: 0;
  background: none;
  font: inherit;
  font-size: .98rem;
  font-weight: 700;
  color: var(--skl-muted, #5f7380);
  cursor: pointer;
}
.sks-tab.is-on { color: var(--skl-navy, #2e4755); }
.sks-tab.is-on::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--skl-gold, #BD830D); }

.sks-where { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(16px, 2.4vw, 34px); }
.sks-where[hidden] { display: none; }
.sks-areas { display: flex; flex-direction: column; gap: 4px; margin: 0; padding: 0 clamp(14px, 2vw, 26px) 0 0; list-style: none; border-right: 1px solid var(--skl-line, #E3E9EC); max-height: 300px; overflow-y: auto; scrollbar-width: none; }
.sks-areas::-webkit-scrollbar { display: none; }
.sks-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: none;
  font: inherit;
  font-size: .95rem;
  font-weight: 700;
  text-align: left;
  color: var(--skl-muted, #5f7380);
  cursor: pointer;
}
.sks-area svg { width: 14px; height: 14px; opacity: 0; }
.sks-area:hover { color: var(--skl-navy, #2e4755); }
.sks-area.is-on { background: var(--skl-navy, #2e4755); color: #FFFFFF; }
.sks-area.is-on svg { opacity: 1; color: var(--skl-gold, #BD830D); }

.sks-places ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; max-height: 300px; overflow-y: auto; scrollbar-width: none; }
.sks-places ul::-webkit-scrollbar { display: none; }
.sks-places button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: none;
  font: inherit;
  font-size: .98rem;
  text-align: left;
  color: var(--skl-muted, #5f7380);
  cursor: pointer;
}
.sks-places button:hover { background: #F2F6F8; color: var(--skl-navy, #2e4755); }
.sks-places button.is-on { color: var(--skl-navy, #2e4755); font-weight: 700; }

/* ---- dates: two months and the arrival window ---- */
.sks-dates { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: clamp(16px, 2.2vw, 30px); }
.sks-cals { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 30px); padding: 14px; border: 1px solid var(--skl-line, #E3E9EC); border-radius: 10px; }
.sks-cal__nav {
  position: absolute;
  top: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: none;
  color: var(--skl-navy, #2e4755);
  cursor: pointer;
}
.sks-cal__nav svg { width: 17px; height: 17px; }
.sks-cal__nav:hover { background: #F2F6F8; }
.sks-cal__nav[disabled] { opacity: .3; cursor: default; }
.sks-cal__nav--prev { left: 10px; }
.sks-cal__nav--next { right: 10px; }

.sks-cal__title { margin: 0 0 10px; font-size: 1rem; font-weight: 700; text-align: center; color: var(--skl-navy, #2e4755); }
.sks-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 2px; }
.sks-grid__dow { padding: 6px 0; font-size: .74rem; font-weight: 700; text-align: center; color: var(--skl-muted, #5f7380); }
.sks-day {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  font: inherit;
  font-size: .88rem;
  color: var(--skl-ink, #1f3441);
  cursor: pointer;
}
.sks-day[disabled] { color: #C3CDD3; cursor: default; }
.sks-day--pad { visibility: hidden; }
.sks-day:not([disabled]):hover { background: #EAF3F6; border-radius: 50%; }
/* The nights between the two chosen days. */
.sks-day.is-between { background: #EAF3F6; }
.sks-day.is-start, .sks-day.is-end { background: var(--skl-navy, #2e4755); color: #FFFFFF; border-radius: 50%; }
.sks-day.is-start.is-between, .sks-day.is-end.is-between { border-radius: 50%; }

.sks-when h4 { margin: 0 0 10px; font-size: 1rem; font-weight: 700; color: var(--skl-navy, #2e4755); }
.sks-when__field { display: block; margin-bottom: 12px; }
.sks-when__field select {
  width: 100%;
  padding: 11px 12px;
  border: 1.5px solid var(--skl-line, #E3E9EC);
  border-radius: 8px;
  background: #FFFFFF;
  font: inherit;
  font-size: .92rem;
  color: var(--skl-ink, #1f3441);
}
.sks-when__note { margin: 0 0 10px; font-size: .8rem; line-height: 1.6; color: var(--skl-muted, #5f7380); }

/* ------------------------------ the trip parts ------------------------------ */
.sks-parts { position: relative; display: flex; align-items: center; gap: 6px; margin-top: 16px; }
.sks-parts__track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}
.sks-parts__track::-webkit-scrollbar { display: none; }
.sks-parts__nav {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--skl-navy, #2e4755);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 28, 36, .2);
}
.sks-parts__nav svg { width: 16px; height: 16px; }
.sks-parts__nav[disabled] { opacity: 0; pointer-events: none; }

/* The chips live on the white card now, so they are outlined rather than
   glassy: plain until they are opened or hold something. */
.sks-chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1.5px solid var(--skl-line, #E3E9EC);
  border-radius: 999px;
  background: #FFFFFF;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  color: var(--skl-navy, #2e4755);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .2s var(--skl-ease, ease), color .2s var(--skl-ease, ease), border-color .2s var(--skl-ease, ease);
}
.sks-chip__ic { color: var(--skl-navy, #2e4755); }
.sks-chip__ic svg { display: block; width: 17px; height: 17px; }
.sks-chip:hover { border-color: #C6D3D9; background: #F6F8F9; }
/* The one that is open reads as the chosen tab. */
.sks-chip[aria-expanded="true"] { background: var(--skl-navy, #2e4755); border-color: var(--skl-navy, #2e4755); color: #FFFFFF; }
.sks-chip[aria-expanded="true"] .sks-chip__ic { color: #FFFFFF; }
/* How many of that part are already in the trip. */
.sks-chip__n { display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px; background: var(--skl-gold, #BD830D); font-size: .7rem; font-style: normal; font-weight: 800; color: #FFFFFF; }
/* `display: grid` would otherwise beat the hidden attribute and show a 0. */
.sks-chip__n[hidden] { display: none; }
.sks-chip.is-on { border-color: var(--skl-gold, #BD830D); }

/* ---- the line under the row ---- */
.sks-more {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin: 14px 0 0;
  font-size: .86rem;
  color: var(--skl-muted, #5f7380);
}
.sks-more__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #F2F6F8;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--skl-navy, #2e4755);
}
.sks-more__tag svg { width: 13px; height: 13px; }

/* ------------------------------- who is coming ------------------------------ */
.sks-guests { margin: 0; padding: 0; list-style: none; }
.sks-guests__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 2px; border-bottom: 1px solid var(--skl-line, #E3E9EC); }
.sks-guests__row:last-child { border-bottom: 0; }
.sks-guests__txt b { display: block; font-size: .96rem; color: var(--skl-navy, #2e4755); }
.sks-guests__txt small { display: block; margin-top: 2px; font-size: .8rem; color: var(--skl-muted, #5f7380); }
.sks-step--wide { gap: 6px; }
.sks-step--wide b { min-width: 26px; text-align: center; }

/* ------------------------------- the pickers ------------------------------- */
.sks-list { max-height: 360px; margin: 0; padding: 0; list-style: none; overflow-y: auto; scrollbar-width: none; }
.sks-list::-webkit-scrollbar { display: none; }
.sks-row { display: grid; grid-template-columns: 62px minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 10px 2px; border-bottom: 1px solid var(--skl-line, #E3E9EC); }
.sks-row:last-child { border-bottom: 0; }
.sks-row__img { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: #EAF3F6; }
.sks-row__img img { width: 100%; height: 100%; object-fit: cover; }
.sks-row__img--ic { display: grid; place-items: center; color: var(--skl-navy, #2e4755); }
.sks-row__img--ic svg { width: 26px; height: 26px; }
.sks-row__txt { min-width: 0; }
.sks-row__txt b { display: block; font-size: .95rem; color: var(--skl-navy, #2e4755); }
.sks-row__txt small { display: block; margin-top: 2px; font-size: .8rem; color: var(--skl-muted, #5f7380); }
.sks-row__buy { display: flex; align-items: center; gap: 12px; }
.sks-row__price { font-size: .9rem; font-weight: 700; text-align: right; color: var(--skl-navy, #2e4755); }
.sks-row__price small { display: block; font-size: .7rem; font-weight: 400; color: var(--skl-muted, #5f7380); }
.sks-row__price em { font-style: normal; font-size: .82rem; font-weight: 600; color: var(--skl-muted, #5f7380); }

.sks-add {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1.5px solid var(--skl-navy, #2e4755);
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--skl-navy, #2e4755);
  cursor: pointer;
}
.sks-add:hover { background: var(--skl-navy, #2e4755); color: #FFFFFF; }
.sks-step { display: inline-flex; align-items: center; gap: 4px; }
.sks-step[hidden] { display: none; }
.sks-step button { display: grid; place-items: center; width: 30px; height: 30px; border: 1.5px solid var(--skl-line, #E3E9EC); border-radius: 7px; background: #FFFFFF; font: inherit; font-size: 1rem; color: var(--skl-navy, #2e4755); cursor: pointer; }
.sks-step button:hover { border-color: var(--skl-navy, #2e4755); }
.sks-step b { min-width: 22px; text-align: center; font-size: .95rem; }

/* -------------------------------- responsive -------------------------------- */
@media (max-width: 900px) {
  .sks-card { border-radius: 18px; }
  /* Destination over the full width, then dates and guests side by side with
     the button, so the bar never squeezes a field down to nothing. */
  .sks-bar { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; }
  .sks-field:first-child { grid-column: 1 / -1; }
  .sks-dates { grid-template-columns: minmax(0, 1fr); }
  .sks-cals { grid-template-columns: minmax(0, 1fr); }
  /* One month at a time on a narrow screen; the script hides the second. */
  .sks-cal[data-sks-cal="1"] { display: none; }
  .sks-where { grid-template-columns: minmax(0, 1fr); }
  .sks-areas { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--skl-line, #E3E9EC); padding: 0 0 10px; max-height: none; }
  .sks-area { white-space: nowrap; }
}
@media (max-width: 560px) {
  /* One field per line, the button full width under them. */
  .sks-bar { grid-template-columns: minmax(0, 1fr); }
  .sks-cta { width: 100%; }
  .sks-go { flex: 1 1 auto; min-width: 0; }
  .sks-row { grid-template-columns: 46px minmax(0, 1fr); }
  .sks-row__buy { grid-column: 1 / -1; justify-content: space-between; }
  .sks-pop { padding: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .sks-parts__track { scroll-behavior: auto; }
}
