:root {
  --ebm-bg: #fffaf6;
  --ebm-cream: #fbf4ee;
  --ebm-card: #fff;
  --ebm-soft: #fff6f0;
  --ebm-orange: #7a3e13;
  --ebm-orange2: #ff6a2f;
  --ebm-peach: #fde9dd;
  --ebm-text: #191919;
  --ebm-muted: #6f6862;
  --ebm-line: #eee5dd;
  --ebm-green: #18a957;
  --ebm-shadow: 0 20px 70px rgba(41, 25, 15, 0.08);
  --ebm-shadow2: 0 12px 40px rgba(41, 25, 15, 0.07);
  --ebm-radius: 10px;
  --ebm-serif:
    "Cormorant Garamond", ui-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, serif;
  --ebm-sans:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
}

.elenya-bm-app {
  font-family: var(--ebm-sans);
  color: var(--ebm-text);
  background: linear-gradient(180deg, #fffaf6 0%, #fff 46%, #fffaf6 100%);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}
.elenya-bm-app * {
  box-sizing: border-box;
  color: var(--ebm-text);
}
.elenya-bm-app button,
.elenya-bm-app input,
.elenya-bm-app textarea,
.elenya-bm-app select {
  font: inherit;
}
.elenya-bm-app a {
  text-decoration: none;
  color: inherit;
}
/* .ebm-container {
  width: min(100% - 64px, 1440px);
  margin-inline: auto;
} */
.ebm-page-shell {
  overflow: hidden;
  background: #fff;
}
.ebm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.18s ease;
  white-space: nowrap;
}
/* .ebm-btn:hover {
  transform: translateY(-1px);
} */
.ebm-btn-primary,
.ebm-btn-primary-soft {
  color: #fff;
  background: var(--ebm-orange);
}
.ebm-btn-primary span {
  color: #fff;
}
.ebm-btn-outline {
  background: #fff;
  border: 1px solid rgba(242, 74, 29, 0.45);
  color: var(--ebm-orange);
}
.ebm-btn-dark {
  background: #050506;
  color: #fff;
}
.ebm-btn-ghost {
  background: #f8eee8;
  color: #1d1714;
}
/* .ebm-btn-wide {
  min-width: 360px;
} */
.ebm-text-link,
.ebm-side-card .ebm-text-link {
  border: 0;
  background: transparent;
  color: var(--ebm-orange);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

/* Optional global header/footer, hidden by default unless shortcode show_global="yes" */

.ebm-topbar {
  height: 36px;
  background: #fff;
  border-bottom: 1px solid var(--ebm-line);
  font-size: 13px;
}
.ebm-topbar-inner,
.ebm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.ebm-topbar-left,
.ebm-topbar-right,
.ebm-main-nav,
.ebm-header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.ebm-topbar a {
  color: #17120f;
}
.ebm-flag {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  background: #ee1b1b;
  color: #fff;
  border-radius: 2px;
  font-size: 10px;
}
.ebm-lang-btn,
.ebm-burger {
  border: 0;
  background: transparent;
  font-weight: 800;
}
.ebm-site-header {
  height: 94px;
  background: #fff;
  border-bottom: 1px solid var(--ebm-line);
}
.ebm-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.ebm-brand-leaf {
  color: var(--ebm-orange);
  font-size: 28px;
  transform: rotate(45deg);
}
.ebm-brand-text strong {
  display: block;
  font-family: var(--ebm-serif);
  font-size: 34px;
  letter-spacing: 0.08em;
  line-height: 0.9;
}
.ebm-brand-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #777;
  margin-top: 5px;
}
.ebm-main-nav a {
  font-weight: 800;
  font-size: 14px;
}
.ebm-main-nav .is-active {
  color: var(--ebm-orange);
  position: relative;
}
.ebm-main-nav .is-active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 2px;
  background: var(--ebm-orange);
}
.ebm-burger {
  display: none;
  font-size: 24px;
}

/* Hero */

.ebm-hero {
  padding: 34px 0 50px;
  background: linear-gradient(110deg, #fffaf6 0%, #fff7f1 46%, #fff 100%);
  position: relative;
}
/* .ebm-hero:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 390px;
  height: 230px;
  background: radial-gradient(circle, rgba(242, 74, 29, 0.14), transparent 62%);
  opacity: 0.65;
  pointer-events: none;
} */
.ebm-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 0 42px;
}
.ebm-hero-copy {
  position: relative;
  z-index: 2;
}
.ebm-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  font-size: 14px !important;
  font-weight: 400 !important;
  cursor: pointer;
  margin-bottom: 30px;
}
.ebm-kicker {
  color: var(--ebm-orange);
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ebm-hero-title {
  font-family: var(--ebm-serif);
  font-size: 50px;
  line-height: 1.06;
  margin: 0 0 15px;
  font-weight: 500;
}
.ebm-hero-title span {
  color: var(--ebm-orange);
  font-weight: 500;
}
.ebm-hero-subline {
  max-width: 610px;
  line-height: 1.45;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 500;
}
.ebm-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin: 0 0 23px;
}
.ebm-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.ebm-hero-trust span svg {
  width: 20px;
  height: 20px;
  color: var(--ebm-orange);
  stroke-width: 1.7;
}
/* .ebm-hero-visual {
  height: 270px;
  position: relative;
  border-radius: 0 0 0 140px;
  overflow: visible;
}
.ebm-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 140px;
  filter: saturate(1.02);
  box-shadow: 0 16px 60px rgba(83, 57, 41, 0.08);
} */
.ebm-time-bubble {
  width: 165px;
  height: 165px;
  min-width: 165px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0px 20px 0 #7a3e1385;
  padding: 12px;
  text-align: center;
}
.ebm-time-bubble span {
  display: block;
  color: var(--ebm-orange);
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 9px;
}
.ebm-time-bubble strong {
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}
.ebm-result-mode .ebm-hero {
  padding-top: 30px;
}
.ebm-result-mode .ebm-kicker,
.ebm-result-mode .ebm-hero-trust,
.ebm-result-mode .ebm-hero-visual img {
  display: none;
}
.ebm-result-mode .ebm-hero-inner {
  grid-template-columns: 1fr 220px;
  min-height: 190px;
}
.ebm-result-mode .ebm-hero-visual {
  height: 170px;
  border-radius: 0;
  overflow: visible;
}
.ebm-result-mode .ebm-time-bubble {
  right: 30px;
  top: 10px;
}
.ebm-result-mode .ebm-hero-title span {
  color: inherit;
}

/* Stepper */

.ebm-stepper-wrap {
  position: relative;
  z-index: 5;
  margin-top: -40px;
}
.ebm-stepper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  background: #fff;
  /* border: 1px solid var(--ebm-line); */
  box-shadow: var(--ebm-shadow2);
  border-radius: 13px;
  padding: 24px 34px;
  .ebm-stepper-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    min-width: 0;
    .ebm-step-index {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }
    small {
      display: block;
      margin-top: 3px;
      color: #6d6761;
      font-size: 13px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 160px;
    }
    &.is-active {
      .ebm-step-index {
        background: var(--ebm-orange);
        color: #fff;
      }
      strong {
        color: #140c08;
      }
    }
    &.is-complete .ebm-step-index {
      background: var(--ebm-green);
      color: #fff;
    }
  }
}

/* Layout */

.ebm-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
  padding: 42px 0 30px;
  width: 100%;
}
.ebm-main-card,
.ebm-side-card,
.ebm-filter-card,
.ebm-provider-card {
  background: #fff;
  /* border: 1px solid rgba(234, 222, 212, 0.85); */
  border-radius: var(--ebm-radius);
  box-shadow: var(--ebm-shadow2);
}
.ebm-main-card {
  padding: 20px 22px;
}
.ebm-step-panel {
  display: none;
}
.ebm-step-panel.is-active {
  display: block;
}
.ebm-section-head {
  margin-bottom: 26px;
}
.ebm-section-head h2 {
  font-family: var(--ebm-serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.ebm-section-head p {
  margin: 0;
  font-size: 15px;
}
.ebm-subtitle {
  font-size: 15px;
  margin: 24px 0 12px;
}
.ebm-subtitle span {
  font-weight: 400;
  color: var(--ebm-muted);
}

/* Cards */

.ebm-goal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ebm-option-card,
.ebm-preference-card,
.ebm-priority-card,
.ebm-time-card,
.ebm-city-card,
.ebm-radius-card,
.ebm-region-card,
.ebm-day-chip,
.ebm-budget-btn,
.ebm-wish-chip {
  position: relative;
  border: 1px solid var(--ebm-line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.16s ease;
}
.ebm-option-card {
  min-height: 150px;
  padding: 28px 18px 22px;
  text-align: center;
  .ebm-line-icon {
    display: block;
    color: var(--ebm-orange);
    font-size: 32px;
    line-height: 1;
    margin-bottom: 13px;
    font-weight: 400;
    img {
      width: 46px;
      height: 46px;
    }
  }
}

.ebm-option-card strong,
.ebm-preference-card strong,
.ebm-priority-card strong,
.ebm-time-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.ebm-option-card small,
.ebm-preference-card small,
.ebm-priority-card small,
.ebm-time-card small {
  display: block;
  color: #382f2a;
  font-size: 13px;
  line-height: 1.35;
}
.ebm-checkmark {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ebm-orange);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.ebm-select-card.is-selected,
.ebm-day-chip.is-selected,
.ebm-budget-btn.is-selected,
.ebm-wish-chip.is-selected,
.ebm-radius-card.is-selected,
.ebm-region-card.is-selected,
.ebm-city-card.is-selected {
  border-color: var(--ebm-orange) !important;
  background: linear-gradient(180deg, #fffaf7, #fff3ed);
  box-shadow: 0 15px 42px rgba(242, 74, 29, 0.07);
}
.is-selected > .ebm-checkmark {
  display: flex;
}
.ebm-other-field {
  display: none;
  margin-top: 18px;
}
.ebm-other-field.is-visible {
  display: block;
}
.ebm-other-field span,
.ebm-notes strong {
  display: block;
  margin-bottom: 9px;
  font-weight: 800;
}
.ebm-other-field input,
.ebm-location-search input,
.ebm-notes textarea,
.ebm-inquiry-form input,
.ebm-inquiry-form textarea,
.ebm-filter-card select {
  width: 100%;
  border: 1px solid var(--ebm-line);
  border-radius: 12px;
  padding: 15px 18px;
  background: #fff;
  color: #1d1714;
}
.ebm-panel-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  .ebm-btn-primary {
    min-width: 260px;
    &:hover {
      background: #191919;
    }
  }
}
.ebm-single-right {
  justify-content: center;
}

/* Step 2 */

.ebm-question-block {
  border: 1px solid var(--ebm-line);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 18px;
  background: #fff;
}
.ebm-block-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 16px;
}
.ebm-block-title > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3ed;
  color: var(--ebm-orange);
  font-size: 32px;
}
.ebm-block-title strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
/* .ebm-block-title small {
  color: #4c443f;
} */
.ebm-three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ebm-preference-card {
  /* min-height: 88px; */
  padding: 22px;
  text-align: center;
  display: flex;
  gap: 20px;
  .ebm-line-icon {
    display: block;
    color: var(--ebm-orange);
    font-size: 48px;
    line-height: 40px;
    font-weight: 400;
  }
}
.ebm-priority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ebm-priority-card {
  min-height: 86px;
  padding: 18px 14px;
  text-align: left;
  display: flex;
  gap: 13px;
  align-items: center;
  .ebm-line-icon {
    font-size: 24px;
    margin: 0;
    img {
      width: 38px;
      height: 30px;
    }
  }
}
.ebm-budget-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.ebm-budget-btn {
  padding: 15px 10px;
  font-weight: 900;
  text-align: center;
}
.ebm-wish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ebm-wish-chip {
  padding: 13px 15px;
  text-align: left;
}
.ebm-wish-chip:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1px solid #d6d0cb;
  border-radius: 3px;
  margin-right: 9px;
  vertical-align: -1px;
}
.ebm-wish-chip.is-selected:before {
  background: var(--ebm-orange);
  border-color: var(--ebm-orange);
  box-shadow: inset 0 0 0 3px #fff;
}

/* Step 3 */

.ebm-location-search {
  position: relative;
  margin-bottom: 22px;
}
.ebm-location-search span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ebm-orange);
  font-size: 22px;
}
.ebm-location-search input {
  padding-left: 52px;
  padding-right: 52px;
}
.ebm-location-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff3ed;
  border-radius: 50%;
  color: var(--ebm-orange);
  cursor: pointer;
}
.ebm-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.ebm-city-card {
  overflow: hidden;
  text-align: left;
  padding: 0;
}
.ebm-city-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}
.ebm-city-card strong {
  display: block;
  margin: 12px 12px 2px;
}
.ebm-city-card small {
  display: block;
  color: #5c554e;
  margin: 0 12px 14px;
}
.ebm-region-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--ebm-line);
  border-radius: 13px;
  overflow: hidden;
}
.ebm-region-card {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ebm-line);
  padding: 17px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ebm-region-card:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.ebm-region-card span {
  color: var(--ebm-orange);
  margin-right: 10px;
}
.ebm-radius-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ebm-radius-card {
  padding: 17px 10px;
  text-align: center;
}
.ebm-radius-card strong {
  display: block;
}
.ebm-radius-card small {
  display: block;
  color: #514943;
}
.ebm-detect-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff7f2;
  border: 1px solid var(--ebm-line);
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
}
.ebm-detect-location strong {
  display: block;
}
.ebm-detect-location small {
  color: #5a504a;
}

/* Step 4 */

.ebm-availability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.ebm-timeofday-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ebm-time-card {
  padding: 19px;
  text-align: left;
  min-height: 88px;
}
.ebm-time-card > span:not(.ebm-checkmark) {
  color: var(--ebm-orange);
  font-size: 22px;
  display: block;
  margin-bottom: 8px;
}
.ebm-date-input {
  display: none;
  margin-top: 12px;
  border: 1px solid var(--ebm-line);
  padding: 14px;
  border-radius: 12px;
}
.ebm-date-input.is-visible {
  display: block;
}
.ebm-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.ebm-day-chip {
  padding: 15px 8px;
  text-align: center;
}
.ebm-day-chip strong {
  display: block;
}
.ebm-day-chip small {
  font-size: 12px;
  color: #514943;
}
.ebm-flex-slider {
  display: grid;
  grid-template-columns: 180px 1fr 130px;
  gap: 18px;
  align-items: center;
  margin: 24px 0 20px;
}
.ebm-flex-slider strong {
  display: block;
}
.ebm-flex-slider span {
  font-size: 12px;
  color: #4e4741;
}
.ebm-flex-slider input,
.ebm-filter-card input[type="range"] {
  width: 100%;
  accent-color: var(--ebm-orange);
}
.ebm-notes {
  display: block;
  position: relative;
}
.ebm-notes textarea {
  min-height: 86px;
  resize: vertical;
}
.ebm-notes small {
  position: absolute;
  right: 13px;
  bottom: 10px;
  color: #777;
}

/* Sidebar */

.ebm-sidebar {
  display: grid;
  gap: 18px;
}
.ebm-side-card {
  padding: 24px 20px;
}
.ebm-side-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
}
.ebm-summary-list {
  display: grid;
  gap: 0;
}
.ebm-summary-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ebm-line);
  &:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.ebm-summary-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ebm-orange);
  font-size: 18px;
}
.ebm-summary-icon svg path,
.ebm-summary-icon svg circle {
  width: 18px;
  height: 18px;
  stroke: #191919 !important;
  /* fill: #191919; */
}
.ebm-summary-item.is-done .ebm-summary-icon {
  color: var(--ebm-green);
  border: 1px solid var(--ebm-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.ebm-summary-item.is-active .ebm-summary-icon svg path,
.ebm-summary-item.is-active .ebm-summary-icon svg circle {
  stroke: var(--ebm-orange) !important;
}
.ebm-summary-item strong {
  display: block;
  font-size: 14px;
}
.ebm-summary-item small {
  display: block;
  margin-top: 3px;
  color: #554c46;
  font-size: 13px;
}
.ebm-benefit-card {
  background: linear-gradient(145deg, #fff6f1, #fff0e8);
  box-shadow: none;
  border: 1px solid var(--ebm-line);
}
.ebm-summary-card {
  background: #fffaf6;
  box-shadow: none;
  border: 1px solid var(--ebm-line);
}

.ebm-proof-card {
  background: #fffcfa;
  box-shadow: none;
  border: 1px solid var(--ebm-line);
}
.ebm-benefit-card p {
  margin: 0 0 20px;
  color: #2a211d;
  line-height: 1.55;
  font-size: 15px;
}
.ebm-benefit-list {
  display: grid;
  gap: 14px;
}
.ebm-benefit-list span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
}
.ebm-benefit-list span:before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f89a7a;
  color: #fff;
  font-size: 11px;
  flex: none;
}
.ebm-proof-card {
  text-align: center;
}
.ebm-avatar-row {
  display: flex;
  justify-content: center;
  margin: 14px 0 12px;
}
.ebm-avatar-row span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /* margin-left: -6px; */
  background: linear-gradient(135deg, #a9795b, #f3ceb3);
  border: 2px solid #fff;
}
.ebm-avatar-row span:nth-child(2n) {
  background: linear-gradient(135deg, #4d352e, #d5a07c);
}
.ebm-stars {
  color: #ffad19;
  font-weight: 900;
}
.ebm-stars strong {
  color: var(--ebm-orange);
  margin-left: 8px;
  font-weight: 600;
}
.ebm-proof-card p {
  margin: 7px 0 0;
  font-size: 15px;
}
.ebm-score-card {
  text-align: center;
}
.ebm-score-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 6px auto 14px;
  background: conic-gradient(var(--ebm-orange) 0 352deg, #ffd9ca 352deg 360deg);
  display: grid;
  place-items: center;
}
.ebm-score-circle > div {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}
.ebm-score-circle strong {
  font-size: 52px;
  line-height: 0.9;
}
.ebm-score-circle strong span {
  font-size: 28px;
  color: var(--ebm-orange);
}
.ebm-score-circle small {
  display: block;
  font-size: 13px;
  margin-top: 6px;
}
.ebm-next-list {
  display: grid;
  gap: 8px;
}
.ebm-next-list div {
  display: flex;
  gap: 13px;
  border-bottom: 1px solid var(--ebm-line);
  padding: 10px 0;
}
.ebm-next-list div:last-child {
  border-bottom: 0;
}
.ebm-next-list span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ebm-orange);
  background: #fff3ed;
  flex: none;
}
.ebm-restart-card p {
  margin: 6px 0 14px;
  color: #4a403b;
}

/* Results */

.ebm-result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.ebm-success-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--ebm-green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ebm-green);
  font-weight: 900;
  font-size: 28px;
  flex: none;
}
.ebm-result-topline > div:nth-child(2) {
  margin-right: auto;
}
.ebm-result-topline h2 {
  font-family: var(--ebm-serif);
  font-size: 27px;
  margin: 0 0 5px;
}
.ebm-result-topline p {
  margin: 0;
  color: #504742;
}
.ebm-save-results {
  border: 1px solid rgba(242, 74, 29, 0.35);
  background: #fff;
  border-radius: 10px;
  padding: 13px 24px;
  font-weight: 900;
  cursor: pointer;
}
.ebm-results-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
}
.ebm-filter-card {
  padding: 24px;
  border-radius: 16px;
  position: sticky;
  top: 24px;
}
.ebm-filter-card h3 {
  margin: 0 0 18px;
  font-size: 19px;
}
.ebm-filter-card h4 {
  margin: 22px 0 12px;
  font-size: 14px;
}
.ebm-filter-card label {
  display: block;
  font-weight: 800;
  font-size: 13px;
}
.ebm-filter-card select {
  margin-top: 9px;
  padding: 12px;
}
.ebm-filter-options {
  display: grid;
  gap: 12px;
}
.ebm-filter-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
}
.ebm-filter-check input {
  accent-color: var(--ebm-orange);
}
.ebm-more-filter,
.ebm-reset-filter {
  border: 0;
  background: transparent;
  color: var(--ebm-orange);
  font-weight: 800;
  cursor: pointer;
  margin-top: 12px;
}
.ebm-mini-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ebm-mini-chips button {
  border: 1px solid var(--ebm-line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.ebm-mini-chips button.is-active {
  border-color: var(--ebm-orange);
  color: var(--ebm-orange);
}
.ebm-rating-filter {
  display: grid;
  gap: 8px;
}
.ebm-rating-filter button {
  border: 0;
  background: #fff;
  color: #ffad19;
  text-align: left;
  cursor: pointer;
}
.ebm-rating-filter span {
  color: #382f2a;
}
.ebm-switch-row {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.ebm-switch-row input {
  display: none;
}
.ebm-switch-row span {
  position: relative;
  width: 46px;
  height: 26px;
  background: #ddd;
  border-radius: 99px;
}
.ebm-switch-row span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.15s;
}
.ebm-switch-row input:checked + span {
  background: var(--ebm-orange);
}
.ebm-switch-row input:checked + span:before {
  left: 23px;
}
.ebm-range-line {
  display: flex;
  justify-content: space-between;
  color: #514943;
  font-size: 12px;
  margin-top: 6px;
}
.ebm-provider-area {
  min-width: 0;
}
.ebm-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}
.ebm-filter-chip {
  border: 1px solid var(--ebm-line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(41, 25, 15, 0.05);
}
.ebm-filter-chip:first-child:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #15a85c;
  margin-right: 8px;
}
.ebm-provider-list {
  display: grid;
  gap: 14px;
}
.ebm-provider-card {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  border-radius: 16px;
  min-height: 210px;
}
.ebm-provider-image {
  position: relative;
  min-height: 210px;
}
.ebm-provider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ebm-top-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--ebm-orange);
  color: #fff;
  padding: 10px 15px;
  border-radius: 0 0 12px 0;
  font-weight: 900;
  font-size: 13px;
}
.ebm-fav-btn {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: 23px;
  color: #9c8072;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}
.ebm-fav-btn.is-active {
  color: var(--ebm-orange);
}
.ebm-provider-body {
  padding: 22px 22px 20px 0;
  display: grid;
}
.ebm-provider-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.ebm-provider-head h3 {
  font-size: 25px;
  margin: 0 0 5px;
  letter-spacing: -0.03em;
}
.ebm-verified {
  color: #0e91ff;
  font-size: 16px;
}
.ebm-cats {
  color: #514943;
  font-size: 14px;
}
.ebm-location-line {
  margin-top: 12px;
  color: #6a625d;
  font-size: 13px;
}
.ebm-rating-line {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.ebm-rating-line span:first-child {
  color: #ffad19;
  letter-spacing: 1px;
}
.ebm-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.ebm-tag {
  background: #f8eee8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #7a3a20;
}
.ebm-tag.is-green {
  background: #e9f7ed;
  color: #246a39;
}
.ebm-provider-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}
.ebm-price {
  font-size: 16px;
  text-align: right;
}
.ebm-price strong {
  font-size: 22px;
  margin-left: 4px;
}
.ebm-card-buttons {
  display: flex;
  gap: 14px;
  flex: 1;
}
.ebm-card-buttons .ebm-btn {
  width: 50%;
  padding: 12px 17px;
}
.ebm-load-more {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: #fff;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(41, 25, 15, 0.06);
  cursor: pointer;
}
.ebm-loading,
.ebm-no-results {
  background: #fff;
  border: 1px solid var(--ebm-line);
  border-radius: 16px;
  padding: 24px;
  color: #554c46;
}
.ebm-filter-mobile-btn {
  display: none;
}

/* Trust and progress */

.ebm-trust-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  background: #fffbf6;
  border: 1px solid var(--ebm-line);
  border-radius: 10px;
  margin-bottom: 24px;
  padding: 20px 22px;
  width: 100%;
  /* box-shadow: 0 12px 28px rgba(41, 25, 15, 0.04); */
}
.ebm-trust-bar .ebm-trust-bar-item {
  display: flex;
  /* align-items: center;  */
  gap: 12px;

  /* border-right: 1px solid var(--ebm-line); */
}
.ebm-trust-bar-item-inner {
  flex: 1;
}
/* .ebm-trust-bar div:last-child {
  border-right: 0;
} */
.ebm-trust-bar span {
  font-size: 27px;
  color: var(--ebm-orange);
  flex: none;
}
.ebm-trust-bar svg {
  width: 32px;
  height: 32px;
  stroke: var(--ebm-orange) !important;
}
.ebm-trust-bar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}
.ebm-trust-bar small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
}
.ebm-bottom-progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: #fffbf6;
  border: 1px solid var(--ebm-line);
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 36px;
  width: 100%;
}
.ebm-progress-left {
  display: flex;
  align-items: center;
  gap: 18px;
}
.ebm-progress-left > span {
  font-size: 60px;
  color: var(--ebm-orange);
  line-height: 50px;
}
.ebm-progress-left strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
}
.ebm-progress-left small {
  color: #413832;
}
.ebm-progress-right {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 430px;
}
.ebm-progress-right strong {
  font-weight: 600;
  font-size: 16px;
}
.ebm-progress-track {
  height: 7px;
  background: #e6e4e3;
  border-radius: 999px;
  flex: 1;
  overflow: hidden;
}
.ebm-progress-track span {
  display: block;
  height: 100%;
  width: 20%;
  background: var(--ebm-orange);
  border-radius: 999px;
  transition: 0.25s ease;
}
.ebm-progress-right em {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
}
.ebm-mobile-sticky {
  display: none;
}

/* Modal */

.ebm-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
.ebm-modal.is-open {
  display: block;
}
.ebm-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 12, 9, 0.52);
  backdrop-filter: blur(6px);
}
.ebm-modal-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  width: min(560px, calc(100% - 32px));
  margin: 9vh auto;
  padding: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}
.ebm-modal-close {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff2ed;
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}
.ebm-inquiry-form {
  display: grid;
  gap: 13px;
}
.ebm-inquiry-form h3 {
  font-family: var(--ebm-serif);
  font-size: 28px;
  margin: 0;
}
.ebm-inquiry-form p {
  margin: 0 0 8px;
  color: #554c46;
}
.ebm-inquiry-form textarea {
  min-height: 120px;
}
.ebm-toast {
  position: fixed;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  background: #101517;
  color: white;
  padding: 13px 18px;
  border-radius: 999px;
  z-index: 999999;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  font-weight: 800;
  opacity: 0;
  transition: 0.2s ease;
}
.ebm-toast.is-visible {
  opacity: 1;
  bottom: 104px;
}

@media (max-width: 1200px) {
  .ebm-goal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ebm-content-grid {
    grid-template-columns: 1fr;
  }
  .ebm-sidebar {
    grid-template-columns: repeat(3, 1fr);
  }
  .ebm-results-layout {
    grid-template-columns: 220px 1fr;
  }
  .ebm-trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }
  /* .ebm-trust-bar div:nth-child(3) {
    border-right: 0;
  } */
  /* .ebm-trust-bar div:nth-child(n + 4) {
    border-top: 1px solid var(--ebm-line);
  } */
}
@media (max-width: 991px) {
  .ebm-stepper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .ebm-hero-inner,
  .ebm-result-mode .ebm-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ebm-hero-title {
    font-size: 38px;
  }
  .ebm-hero-subline {
    font-size: 15px;
  }
  .ebm-hero-trust {
    gap: 13px;
    font-size: 12px;
  }
  .ebm-content-grid {
    padding-top: 24px;
  }
  /* .ebm-main-card {
    padding: 20px;
    border-radius: 16px;
  } */
  .ebm-sidebar {
    grid-template-columns: 1fr;
  }
  .ebm-goal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ebm-option-card {
    min-height: 128px;
    padding: 22px 12px;
  }
  .ebm-three-grid,
  .ebm-priority-grid,
  .ebm-budget-row,
  .ebm-wish-grid,
  .ebm-city-grid,
  .ebm-radius-grid,
  .ebm-availability-grid,
  .ebm-timeofday-grid,
  .ebm-days-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ebm-region-grid {
    grid-template-columns: 1fr;
  }
  .ebm-region-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--ebm-line);
  }
  .ebm-region-card:last-child {
    border-bottom: 0;
  }
  .ebm-flex-slider {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ebm-panel-actions {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), #fff);
    padding-top: 12px;
    z-index: 12;
  }
  .ebm-btn-wide,
  .ebm-panel-actions .ebm-btn {
    width: 100%;
    min-width: 0;
  }
  .ebm-results-layout {
    grid-template-columns: 1fr;
  }
  .ebm-filter-card {
    position: static;
    display: none;
  }
  .ebm-filter-card.is-open {
    display: block;
  }
  .ebm-filter-mobile-btn {
    display: inline-flex;
    margin-bottom: 12px;
  }
  .ebm-provider-card {
    grid-template-columns: 1fr;
  }
  .ebm-provider-image {
    height: 210px;
  }
  .ebm-provider-body {
    padding: 20px;
  }
  .ebm-provider-actions {
    display: block;
  }
  .ebm-card-buttons {
    margin-top: 15px;
  }
  .ebm-result-topline {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .ebm-save-results {
    width: 100%;
  }
  /* .ebm-trust-bar {
    grid-template-columns: 1fr;
  }
  .ebm-trust-bar div {
    border-right: 0 !important;
    border-top: 1px solid var(--ebm-line);
  } */
  /* .ebm-trust-bar div:first-child {
    border-top: 0;
  } */
  .ebm-bottom-progress {
    display: block;
  }
  .ebm-progress-right {
    min-width: 0;
    margin-top: 18px;
  }
  .ebm-mobile-sticky {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #101517;
    color: #fff;
    z-index: 9990;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 6px 9px;
  }
  .ebm-mobile-sticky a {
    text-align: center;
    font-size: 11px;
    color: #d9d7d4;
  }
  .ebm-mobile-sticky span {
    display: block;
    font-size: 20px;
    margin-bottom: 3px;
    color: var(--ebm-orange);
  }
  .elenya-bm-app {
    padding-bottom: 68px;
  }
}
@media (max-width: 767px) {
  .ebm-stepper {
    grid-template-columns: repeat(2, 1fr);
  }
  .ebm-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    .ebm-time-bubble {
      margin-bottom: 10px;
    }
  }
  .ebm-trust-bar {
    grid-template-columns: 2fr;
  }
}
@media (max-width: 576px) {
  .ebm-stepper {
    grid-template-columns: repeat(1, 1fr);
  }
  .ebm-trust-bar {
    grid-template-columns: 1fr;
  }
  .ebm-hero-title {
    font-size: 32px;
  }
  /* .ebm-section-head h2 {
    font-size: 26px;
  } */
  .ebm-goal-grid,
  .ebm-three-grid,
  .ebm-priority-grid,
  .ebm-budget-row,
  .ebm-wish-grid,
  .ebm-city-grid,
  .ebm-radius-grid,
  .ebm-availability-grid,
  .ebm-timeofday-grid,
  .ebm-days-grid {
    grid-template-columns: 1fr;
  }
  .ebm-card-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }
  .ebm-card-buttons .ebm-btn {
    width: 100%;
  }
  .ebm-provider-head {
    display: block;
  }
  .ebm-price {
    text-align: left;
    margin-bottom: 12px;
  }
  .ebm-progress-right {
    display: block;
  }
  .ebm-progress-track {
    margin: 12px 0;
  }
  .ebm-proof-card h3 {
    font-size: 17px;
  }
  .ebm-result-topline h2 {
    font-size: 23px;
  }
}

/* Markup compatibility aliases */

.ebm-segmented {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}
.ebm-chip-select {
  position: relative;
  border: 1px solid var(--ebm-line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.16s ease;
  padding: 10px;
  font-weight: 600;
  font-size: 14px !important;
  text-align: center;
}
.ebm-chip-select.is-selected {
  border-color: var(--ebm-orange) !important;
  background: linear-gradient(180deg, #fffaf7, #fff3ed);
  box-shadow: 0 15px 42px rgba(242, 74, 29, 0.07);
  color: var(--ebm-orange);
}
.ebm-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ebm-checkbox-chip {
  position: relative;
  border: 1px solid var(--ebm-line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.16s ease;
  padding: 10px 15px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  strong {
    font-size: 14px !important;
    font-weight: 500 !important;
  }
}
.ebm-checkbox-chip span {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #d6d0cb;
  border-radius: 3px;
  margin-right: 9px;
  margin-top: 3px;  
}
.ebm-checkbox-chip.is-selected {
  border-color: var(--ebm-orange) !important;
  background: linear-gradient(180deg, #fffaf7, #fff3ed);
  box-shadow: 0 15px 42px rgba(242, 74, 29, 0.07);
}
.ebm-checkbox-chip.is-selected span {
  background: var(--ebm-orange);
  border-color: var(--ebm-orange);
  box-shadow: inset 0 0 0 3px #fff;
}
.ebm-priority-card > span:not(.ebm-checkmark) {
  color: var(--ebm-orange);
  font-size: 24px;
  line-height: 1;
  flex: none;
}
.ebm-search-box {
  position: relative;
  margin-bottom: 22px;
}
.ebm-search-box > span {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ebm-orange);
  font-size: 22px;
}
.ebm-search-box input {
  width: 100%;
  border: 1px solid var(--ebm-line);
  border-radius: 12px;
  padding: 15px 52px;
  background: #fff;
  color: #1d1714;
}
.ebm-search-box button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  background: #fff3ed;
  border-radius: 50%;
  color: var(--ebm-orange);
  cursor: pointer;
}
.ebm-suggestions {
  display: none;
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid var(--ebm-line);
  border-radius: 12px;
  box-shadow: var(--ebm-shadow2);
  overflow: hidden;
}
.ebm-suggestions.is-open {
  display: block;
}
.ebm-suggestions button {
  position: static;
  transform: none;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 0;
  text-align: left;
  padding: 12px 16px;
  color: var(--ebm-text);
}
.ebm-region-grid button {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ebm-line);
  background: #fff;
  padding: 17px 18px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.ebm-region-grid button:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.ebm-region-grid button.is-selected {
  background: #fff3ed;
  color: var(--ebm-orange);
}
.ebm-small-muted {
  margin: 0 0 12px;
  color: #5a514b;
}
.ebm-location-permission {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff7f2;
  border: 1px solid var(--ebm-line);
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
}
.ebm-location-permission > span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ebm-orange);
  flex: none;
}
.ebm-location-permission strong {
  display: block;
}
.ebm-location-permission small {
  color: #5a504a;
}
.ebm-radius-grid .ebm-chip-select strong {
  display: block;
}
.ebm-radius-grid .ebm-chip-select small {
  display: block;
  color: #514943;
  font-weight: 500;
}
.ebm-city-card.is-selected {
  border-color: var(--ebm-orange) !important;
  background: #fff3ed;
}
.ebm-city-card.is-selected strong {
  color: var(--ebm-orange);
}

@media (max-width: 900px) {
  .ebm-segmented,
  .ebm-chip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ebm-location-permission {
    align-items: flex-start;
    display: grid;
    grid-template-columns: auto 1fr;
  }
  .ebm-location-permission .ebm-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
  .ebm-region-grid button:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--ebm-line);
  }
  .ebm-region-grid button:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .ebm-segmented,
  .ebm-chip-grid {
    grid-template-columns: 1fr;
  }
}

#elenya-beauty-match {
  width: 100%;
}

#beauty-match {
  background-repeat: no-repeat;

  background-size: cover;
}

/* .ebm-hero-visual {
  display: flex;

  align-items: end;

  justify-content: end;
} */
