/* ─────────────────────────────────────────
   Base container
   ───────────────────────────────────────── */
.synext-msf {
  background: #0F0F10;
  border-radius: 18px;
  padding: 24px 28px 28px;
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.synext-msf h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
  color: #e5e7eb;
}

.synext-msf p {
  margin: 0 0 18px;
  color: #9ca3af;
  font-size: 0.95rem;
}

/* Progress (top small text “Schritt x von y”) */
.synext-msf__progress {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 8px;
}

/* Only the active step is visible */
.synext-msf__step {
  display: none;
}

.synext-msf__step.is-active {
  display: block;
}

/* ─────────────────────────────────────────
   Top badges (“Antwort innerhalb von 24 Stunden”…)
   ───────────────────────────────────────── */
.synext-msf__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 14px;
}

.synext-msf__badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #16a34a;
  background: #022c22;
  color: #bbf7d0;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   Lists of checkbox / radio “cards”
   ───────────────────────────────────────── */
.synext-msf__checkbox-list,
.synext-msf__radio-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

/* Card-like label */
.synext-msf__checkbox-list label,
.synext-msf__radio-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #4c4f54;
  background: #0F0F10;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    transform 0.05s ease;
}

.synext-msf__checkbox-list label:hover,
.synext-msf__radio-list label:hover {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.35);
  background: #0F0F10;
  transform: translateY(-1px);
}

/* Use :has so the whole card reacts when checked */
.synext-msf__checkbox-list label:has(input:checked),
.synext-msf__radio-list label:has(input:checked) {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.7);
  background: #022c22;
}

/* Hide the ugly native box, make our own */
.synext-msf__checkbox-list input[type="checkbox"],
.synext-msf__radio-list input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid #6b7280;
  background: transparent;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

/* Radio rounded */
.synext-msf__radio-list input[type="radio"] {
  border-radius: 999px;
}

/* Checked state */
.synext-msf__checkbox-list input[type="checkbox"]:checked,
.synext-msf__radio-list input[type="radio"]:checked {
  border-color: #16a34a;
  background: #16a34a;
}

.synext-msf__checkbox-list input[type="checkbox"]:checked::after,
.synext-msf__radio-list input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: #0F0F10;
}

/* ─────────────────────────────────────────
   Fields (textareas, inputs, selects)
   ───────────────────────────────────────── */
.synext-msf__field {
  margin-bottom: 18px;
}

.synext-msf__field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.synext-msf__field small {
  display: block;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 3px;
}

.synext-msf__field input[type="text"],
.synext-msf__field input[type="number"],
.synext-msf__field textarea,
.synext-msf__field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #4c4f54;
  background: #0F0F10;
  color: #f9fafb;
  padding: 10px 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.synext-msf__field input[type="text"]:focus,
.synext-msf__field input[type="number"]:focus,
.synext-msf__field textarea:focus,
.synext-msf__field select:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.5);
}

/* File inputs inherit dark style a bit */
.synext-msf__field input[type="file"] {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* Image preview areas */
/* Make main preview images smaller */
.synext-msf__image-preview img {
  width: 65% !important;
  max-width: 650px !important;
  border-radius: 18px;
  /* border: 1px solid #111827; */
  margin: 0 0 20px 0;
  display: block;
}

/* On mobile: full width */
@media (max-width: 640px) {
  .synext-msf__image-preview img {
    width: 100%;
    max-width: 100%;
  }
}

/* Summary box */
.synext-msf__summary {
  background: #0F0F10;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #4c4f54;
  font-size: 0.9rem;
  max-height: 360px;
  overflow-y: auto;
}

/* Status text under the form */
.synext-msf__status {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #9ca3af;
}

/* ─────────────────────────────────────────
   Navigation buttons
   ───────────────────────────────────────── */
.synext-msf__buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}

.synext-msf__buttons button {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #16a34a;
  background: transparent;
  color: #f9fafb;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.05s ease;
}

/* Primary (Weiter / Anfrage senden) */
.synext-msf__next,
.synext-msf__submit {
  margin-left: auto;
  background: #16a34a;
  color: #0F0F10;
  box-shadow: 0 0 0 1px rgba(22, 163, 74, 0.6);
}

.synext-msf__next:hover,
.synext-msf__submit:hover {
  background: #22c55e;
}

/* Secondary (Zurück) */
.synext-msf__prev {
  border-color: #374151;
  color: #e5e7eb;
  background: #0F0F10;
}

.synext-msf__prev:hover {
  border-color: #16a34a;
}

/* Disabled prev */
.synext-msf__prev[disabled] {
  opacity: 0.4;
  cursor: default;
  border-color: #4c4f54;
}

/* Small bounce on click */
.synext-msf__buttons button:active {
  transform: translateY(1px);
}

/* ─────────────────────────────────────────
   Responsive tweaks
   ───────────────────────────────────────── */
@media (max-width: 640px) {
  .synext-msf {
    padding: 18px 10px 20px 10px;
  }
  .synext-msf__field {
    width: 95%;
  }

  .synext-msf__buttons {
    flex-direction: row;
    gap: 10px;
  }

  .synext-msf__buttons button {
    flex: 1 1 auto;
    text-align: center;
  }
  /* .synext-msf__landing-screen{
    padding: 16px 5px;
  }
  .synext-msf__company-screen {
  padding: 16px 5px;
  } */
}

/* Logo upload preview – small thumbnail */
#wd_logo_preview img,
#wd_company_logo_preview img,
#wd_shop_logo_preview img,
#wd_booking_logo_preview img {
  max-width: 160px !important;
  max-height: 160px !important;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #4c4f54;
  background: #0f172a;
  padding: 8px;
  display: block;
  margin-top: 10px;
}

.synext-msf__summary-row {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.synext-msf__summary-label {
  font-weight: 600;
  color: #e5e7eb;
  margin-right: 4px;
}

.synext-msf__summary-value {
  color: #d1d5db;
}

/* ─────────────────────────────────────────
   Split layout: form (left) + preview (right)
   ───────────────────────────────────────── */
.synext-msf__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.10fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: flex-start;
}

.synext-msf__layout-form {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .synext-msf__layout {
    grid-template-columns: 1fr;
  }
  .synext-msf__landing-preview {
    order: 1; /* preview on top on mobile */
  }
}

/* ─────────────────────────────────────────
   Landing Onepager wireframe
   ───────────────────────────────────────── */
.synext-msf__landing-preview {
  justify-self: flex-end;
}

.synext-msf__landing-screen {
  /* background: radial-gradient(circle at top, #4c4f54 0, #0F0F10 55%); */
  background: radial-gradient(circle at top, #0F0F10 0, #0F0F10 55%);
  border-radius: 26px;
  padding: 16px 14px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  border: 1px solid #4c4f54;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.synext-msf__landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.synext-msf__landing-logo {
  min-width: 80px;
  min-height: 32px;
  border-radius: 999px;
  background: #0F0F10;
  border: 1px dashed #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9ca3af;
  overflow: hidden;
}

.synext-msf__landing-logo img {
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
}

.synext-msf__landing-nav {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
  color: #6b7280;
}

.synext-msf__landing-nav span {
  padding: 2px 6px;
  border-radius: 999px;
  background: #0F0F10;
  border: 1px solid transparent;
}

.synext-msf__landing-nav span.is-active {
  border-color: #16a34a;
  color: #e5e7eb;
}

.synext-msf__landing-section-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.synext-msf__landing-section {
  border-radius: 10px;
  padding: 7px 8px;
  background: #0F0F10;
  border: 1px solid #4c4f54;
}

.synext-msf__landing-section--hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
}

.synext-msf__landing-hero-text h3 {
  font-size: 0.8rem;
  margin: 0 0 4px;
  color: #4c4f54;
}

.synext-msf__company-hero-text h3 {
    color: #e5e7eb !important;
}
.synext-msf__landing-hero-text p {
  font-size: 0.7rem;
  margin: 0;
  color: #9ca3af;
}

.synext-msf__landing-hero-media {
  border-radius: 8px;
  background: #0F0F10;
  border: 1px dashed #374151;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.synext-msf__landing-hero-media img {
  max-width: 100%;
  border-radius: 8px;
  opacity: 0.85;
}

.synext-msf__landing-section-title {
  font-size: 0.7rem;
  color: #e5e7eb;
  margin-bottom: 3px;
}

.synext-msf__landing-section-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.synext-msf__landing-line {
  height: 3px;
  border-radius: 999px;
  background: #4c4f54;
}

.synext-msf__landing-line.is-short {
  width: 60%;
}


.synext-msf__field--custom-sections {
  margin-top: 18px;
}

.synext-msf__label--small {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: #9ca3af;
}

.synext-msf__custom-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 8px;
}

.synext-msf__custom-section {
  display: flex;
  gap: 6px;
  align-items: center;
}

.synext-msf__custom-section input[type="text"] {
  flex: 1;
}

.synext-msf__custom-remove {
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #4c4f54;
  /* width: 28px;
  height: 28px; */
  line-height: 1;
  font-size: 16px;
  cursor: pointer;
  padding: 10px 20px;
}

.synext-msf__btn-add-section {
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px dashed #16a34a;
  background: transparent;
  color: #d1fae5;
  cursor: pointer;
}


/* ─────────────────────────────────────────
   Unternehmenswebsite preview slider
   ───────────────────────────────────────── */
.synext-msf__company-preview {
  justify-self: flex-end;
}

.synext-msf__company-screen {
  background: radial-gradient(circle at top, #0F0F10 0, #0F0F10 55%);
  border-radius: 26px;
  padding: 14px 14px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  border: 1px solid #4c4f54;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.synext-msf__company-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.synext-msf__company-logo {
  min-width: 86px;
  min-height: 32px;
  border-radius: 999px;
  background: #0F0F10;
  border: 1px dashed #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #9ca3af;
  overflow: hidden;
}

.synext-msf__company-logo img {
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
}

.synext-msf__company-langs {
  display: flex;
  gap: 4px;
  font-size: 0.65rem;
}

.synext-msf__company-langs span {
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #0F0F10;
  color: #6b7280;
}

.synext-msf__company-langs span.is-active {
  border-color: #16a34a;
  color: #e5e7eb;
}

.synext-msf__company-slider {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.synext-msf__company-slides {
  display: flex;
  gap: 10px;
}

.synext-msf__company-slide {
  min-width: 100%;
  scroll-snap-align: start;
  border-radius: 12px;
  background: #0F0F10;
  border: 1px solid #4c4f54;
  padding: 8px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.synext-msf__company-page-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.45);
  color: #bbf7d0;
}

.synext-msf__company-page-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6px;
}

.synext-msf__company-hero {
  border-radius: 8px;
  background: #0F0F10;
  border: 1px dashed #374151;
  min-height: 48px;
}

.synext-msf__company-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Custom pages & "add page" button (reuse styles from sections) */
.synext-msf__field--company-custom-pages {
  margin-top: 14px;
}

.synext-msf__btn-add-page {
  margin-top: 4px;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px dashed #16a34a;
  background: transparent;
  color: #d1fae5;
  cursor: pointer;
}
/* Container with arrows and slide window */
.synext-msf__company-slider {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 26px; /* fixed arrow cols + flexible center */
  align-items: stretch;
  gap: 6px;
  margin-top: 10px;
}

.synext-msf__company-slides-window {
  overflow: hidden;
  border-radius: 14px;
  min-width: 0;   /* important: allows slides to shrink instead of pushing into arrows */
}

/* Slides strip */
.synext-msf__company-slides {
  display: flex;
  transition: transform 0.3s ease;
}

/* Each slide fills 100% width of the window */
.synext-msf__company-slide {
  flex: 0 0 100%;
  padding: 8px 10px 10px;
  background: #0F0F10;
  border: 1px solid #4c4f54;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Existing styling you already had can stay */
.synext-msf__company-page-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.5);
  color: #bbf7d0;
}

.synext-msf__company-page-body {
  border-radius: 10px;
  background: #0F0F10;
  padding: 8px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6px;
}

.synext-msf__company-hero {
  border-radius: 8px;
  background: #0F0F10;
  border: 1px dashed #374151;
  min-height: 50px;
}

.synext-msf__company-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Arrows */
.synext-msf__company-arrow {
  width: 26px;
  border-radius: 999px;
  /* border: 1px solid #374151; */
  border: none !important;
  background: #0F0F10;
  color: #e5e7eb;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* font-size: 30px; */
}
button.synext-msf__company-arrow{
  font-size: 30px !important;
}

.synext-msf__company-arrow:hover, .synext-msf__company-arrow:active {
  background: none;
}


.synext-msf__company-arrow--prev {
  justify-self: flex-start;
}

.synext-msf__company-arrow--next {
  justify-self: flex-end;
}

/* .synext-msf__company-slide {
  flex: 0 0 100%;
  padding: 10px 12px 12px;
  background: #020617;
  border: 1px solid #111827;
  display: flex;
  flex-direction: column;
  gap: 10px;
} */
 .synext-msf__company-slide {
  flex: 0 0 96%;      /* a little narrower than the window */
  max-width: 96%;
  margin: 0 auto;     /* center inside the window */
  box-sizing: border-box;

  padding: 10px 12px 12px;
  background: #0F0F10;
  border: 1px solid #4c4f54;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.synext-msf__company-page-body {
  border-radius: 12px;
  background: #0F0F10;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* container for the small sections */
.synext-msf__company-subsections {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.synext-msf__company-sub {
  padding: 4px 6px;
  border-radius: 8px;
  background: #0F0F10;
  border: 1px solid #4c4f54;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.synext-msf__company-sub-title {
  font-size: 0.7rem;
  color: #e5e7eb;
}


/* === FINAL OVERRIDES FOR COMPANY SLIDER LAYOUT === */

/* 1) Slider grid: fixed-arrow columns + flexible center */
.synext-msf__company-slider {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 26px; /* arrows + center window */
  align-items: stretch;
  gap: 6px;
  margin-top: 10px;
}

/* 2) Center window must be allowed to shrink */
.synext-msf__company-slides-window {
  overflow: hidden;
  border-radius: 14px;
  min-width: 0; /* IMPORTANT: prevents slide content from pushing into arrow area */
}

/* 3) Slides strip */
.synext-msf__company-slides {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0;
  transition: transform 0.3s ease;
}

/* 4) Each slide = full window width, but inner content is narrower */
.synext-msf__company-slide {
  flex: 0 0 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 12px 12px;

  display: flex;
  flex-direction: column;
  align-items: center;  /* center inner blocks horizontally */
  gap: 10px;
}

/* Inner “card” blocks inside slide – make them narrower than full width */
.synext-msf__company-hero-wrap,
.synext-msf__company-page-body {
  width: 92%;
  max-width: 92%;
}

/* 5) Arrow buttons – narrow but fixed width, so card never sits underneath */
.synext-msf__company-arrow {
  width: 26px;
  min-width: 26px;
  border-radius: 999px;
  border: 1px solid #374151;
  background: #0F0F10;
  color: #e5e7eb;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Per-page sections (Unternehmenswebsite – Technik & Design) */
.synext-msf__page-card {
  border-radius: 12px;
  border: 1px solid #4c4f54;
  background: #0F0F10;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.synext-msf__page-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 6px;
}

.synext-msf__page-section-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}

/* reuse look of "Add section" / "Add page" buttons */
.synext-msf__btn-add-page-section {
  margin-top: 2px;
  padding: 4px 10px;
  font-size: 0.8rem;
  border-radius: 999px;
  border: 1px dashed #16a34a;
  background: transparent;
  color: #d1fae5;
  cursor: pointer;
}

/* remove button in each page-section row reuses general custom-remove but with smaller width */
.synext-msf__page-section-remove {
  border-radius: 999px;
  border: 1px solid #4b5563;
  background: #4c4f54;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 10px;
}

/* Adjust top spacing for landingpage notes field */
.synext-msf__field--landing-notes, .synext-msf__field--company-notes {
  margin-top: 16px !important;   /* you can increase/decrease as needed */
}

/* Preferred color scheme (Landingpage) */
.synext-msf__field--colors {
  margin-top: 1.5rem;
}

.synext-msf__color-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 0.75rem;
}

.synext-msf__color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.synext-msf__color-thumb img {
  display: block;
  width: 160px;
  max-width: 100%;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.synext-msf__color-radio {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.synext-msf__color-radio input[type="radio"] {
  margin: 0;
}

.synext-msf__field--colors-note {
  margin-top: 1rem;
}

/* Fix vertical alignment for checkbox & radio text */
.synext-msf__checkbox-list label,
.synext-msf__radio-list label {
  align-items: center !important;      /* ensure vertical centering */
  line-height: 1.2 !important;         /* reduce excess text height */
}

.synext-msf__checkbox-list label span,
.synext-msf__radio-list label span {
  display: flex;
  align-items: center;
}

/* Extra fine-tuning for checkbox element itself */
.synext-msf__checkbox-list input[type="checkbox"],
.synext-msf__radio-list input[type="radio"] {
  margin: -3px 5px;                    /* subtle lift to align visually */
}


/* ─────────────────────────────────────────
   Sticky live preview (desktop only)
   ───────────────────────────────────────── */
@media (min-width: 900px) {
  .synext-msf__landing-preview,
  .synext-msf__company-preview,
  .synext-msf__booking-preview,
  .synext-msf__shop-preview {
    position: sticky;
    top: 46px;          /* distance from top while scrolling */
    align-self: flex-start;
  }
}



.synext-msf__wireframe-nav {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
  color: #6b7280;
}

.synext-msf__wireframe-nav span {
  padding: 2px 6px;
  border-radius: 999px;
  background: #0F0F10;
  border: 1px solid transparent;
}

.synext-msf__wireframe-nav span.is-active {
  border-color: #16a34a;
  color: #e5e7eb;
}


@media (max-width: 640px) {
  
  .synext-msf__landing-screen{
    padding: 16px 5px !important;
  }
  .synext-msf__company-screen {
  padding: 16px 5px !important;
  }
}