.jms-wrapper,
.jms-wrapper * {
  box-sizing: border-box;
  font-style: normal;
}

.jms-wrapper {
  --jms-bg: #f8f2ec;
  --jms-card: #F1EAE2;
  --jms-card-soft: #f6efe8;
  --jms-border: #E4D8C4;
  --jms-border-strong: #d6c2a5;
  --jms-brown: #5a341f;
  --jms-brown-dark: #3f2416;
  --jms-muted: #947a69;
  --jms-gold: #c8ab72;
  --jms-gold-dark: #9b7d48;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-style: normal;
  line-height: 1.45;
}

.jms-full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.jms-empty {
  width: 100%;
  margin: 0;
  padding: 24px 26px;
  border: 1px solid var(--jms-border);
  border-radius: 20px;
  background: var(--jms-card);
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
}

/* OFFERS / TABS */
.jms-offers-wrap {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.jms-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin: 0 0 clamp(30px, 3vw, 46px);
  padding: 0;
}

.jms-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid #b99983;
  border-radius: 999px;
  background: transparent;
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  box-shadow: none;
  transform: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.jms-tab:hover,
.jms-tab:focus-visible {
  border-color: var(--jms-brown);
  outline: none;
  transform: none;
}

.jms-tab.is-active {
  border-color: var(--jms-brown);
  background: var(--jms-brown);
  color: #FBF4D9;
}

.jms-tab-panel {
  display: none;
}

.jms-tab-panel.is-active {
  display: block;
}

.jms-cards-list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  width: 100%;
  margin: 0;
  padding: 0;
}

.jms-card {
  display: flex;
  align-items: stretch;
  gap: clamp(22px, 2.2vw, 36px);
  width: 100%;
  min-height: 306px;
  margin: 0;
  padding: clamp(20px, 1.9vw, 28px);
  border: 1px solid var(--jms-border);
  border-radius: 30px;
  background: var(--jms-card);
  overflow: hidden;
}

.jms-card--reverse {
  flex-direction: row-reverse;
}

.jms-card__media {
  flex: 0 0 48.5%;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #eadccf;
}

.jms-card__image,
.jms-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 264px;
  object-fit: cover;
  border-radius: 20px;
}

.jms-card__placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.35), transparent 30%),
    linear-gradient(135deg, #d8bea3, #8a654d 48%, #e6d4bf);
}

.jms-card__content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 2px 0 0;
}

.jms-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 22px;
  margin: 0 0 8px;
}

.jms-card__kicker {
  margin: 0;
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.jms-dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
}

.jms-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9c7ac;
}

.jms-dots span:first-child,
.jms-dots span:nth-child(2) {
  background: var(--jms-brown);
}

.jms-card h3 {
  margin: 0 0 20px;
  color: var(--jms-brown);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 31px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.jms-card__text {
  max-width: 100%;
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.02vw, 15px);
  font-weight: 400;
  line-height: 1.38;
}

.jms-card__text p,
.jms-card__text ul,
.jms-card__text ol {
  margin-top: 0;
  margin-bottom: 12px;
}

.jms-card__text > :last-child {
  margin-bottom: 0;
}

.jms-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 26px;
}

.jms-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: max-content;
}

.jms-card__price span {
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}

.jms-card__price strong {
  color: var(--jms-brown-dark);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(24px, 2vw, 28px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.jms-wrapper a.jms-button,
.jms-wrapper .jms-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--jms-gold-dark);
  border-radius: 999px;
  background: var(--jms-gold);
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: none;
  transform: none;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.jms-wrapper a.jms-button:hover,
.jms-wrapper a.jms-button:focus-visible,
.jms-wrapper .jms-button:hover,
.jms-wrapper .jms-button:focus-visible {
  border-color: var(--jms-brown-dark);
  background: var(--jms-brown-dark);
  color: #FBF4D9;
  outline: none;
  box-shadow: none;
  transform: none;
}

/* PRICE LIST */
.jms-price-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(54px, 6vw, 88px);
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.jms-price-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.jms-price-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin: 0 0 clamp(22px, 2.4vw, 32px);
  padding: 0;
}

.jms-price-heading h2 {
  flex: 0 0 auto;
  margin: 0;
  color: var(--jms-gold-dark);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.jms-price-heading span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--jms-gold);
  opacity: 0.9;
}

.jms-price-desktop {
  width: 100%;
}

.jms-price-headrow {
  display: grid;
  grid-template-columns: 44% 14% 14% 14% 14%;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 18px;
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.jms-price-headrow span {
  display: block;
  text-align: center;
}

.jms-price-headrow span:first-child {
  text-align: left;
}

.jms-price-headrow--addons {
  grid-template-columns: 52% 16% 32%;
}

.jms-price-scroll {
  width: 100%;
  overflow-x: auto;
  border-radius: 10px;
  scrollbar-width: thin;
}

.jms-price-table {
  width: 100%;
  min-width: 980px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--jms-border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--jms-card);
  color: var(--jms-brown);
}

.jms-price-table td {
  border-right: 1px solid var(--jms-border);
  border-bottom: 1px solid var(--jms-border);
  background: var(--jms-card);
  vertical-align: middle;
}

.jms-price-table td:last-child {
  border-right: 0;
}

.jms-price-table tbody tr:last-child td {
  border-bottom: 0;
}

.jms-price-table td:first-child {
  width: 44%;
}

.jms-price-table td:not(:first-child) {
  width: 14%;
}

.jms-price-table td {
  min-height: 104px;
  padding: 26px 24px;
}

.jms-price-info strong,
.jms-mobile-price-card__name,
.jms-price-mobile-addon__title {
  display: block;
  margin: 0 0 8px;
  color: var(--jms-brown);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 1.28vw, 21px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.jms-price-info p,
.jms-mobile-price-card__desc,
.jms-price-mobile-addon__desc {
  max-width: 95%;
  margin: 0;
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(12px, 0.9vw, 13px);
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0.02em;
}

.jms-price-value {
  color: var(--jms-brown-dark);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(18px, 1.2vw, 20px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.jms-price-value strong {
  font: inherit;
  color: inherit;
}

.jms-price-empty {
  color: #d6c2a5;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.jms-price-table--addons {
  min-width: 840px;
}

.jms-price-table--addons td:first-child {
  width: 52%;
}

.jms-price-table--addons td:nth-child(2) {
  width: 16%;
}

.jms-price-table--addons td:nth-child(3) {
  width: 32%;
}

.jms-price-info--mobile {
  display: none;
}

.jms-price-addon-label {
  color: var(--jms-brown-dark);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.jms-price-mobile {
  display: none;
}

.jms-wrapper img {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .jms-card {
    gap: 22px;
    border-radius: 26px;
  }

  .jms-card__media {
    flex-basis: 47%;
  }

  .jms-card__text {
    line-height: 1.4;
  }

  .jms-price-table {
    min-width: 780px;
  }
}

@media (max-width: 900px) {
  .jms-tabs-nav {
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 26px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .jms-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .jms-tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 20px;
  }

  .jms-card,
  .jms-card--reverse {
    flex-direction: column;
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .jms-card__media {
    flex: 0 0 auto;
    width: 100%;
  }

  .jms-card__image,
  .jms-card__placeholder {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }

  .jms-card__content {
    padding: 4px 2px 0;
  }

  .jms-card__footer {
    align-items: center;
    margin-top: 24px;
  }
}

@media (max-width: 820px) {
  .jms-price-wrap {
    gap: 42px;
  }

  .jms-price-heading {
    margin-bottom: 16px;
  }

  .jms-price-desktop {
    display: none;
  }

  .jms-price-mobile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .jms-mobile-price-card,
  .jms-price-mobile-addon {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--jms-border);
    border-radius: 18px;
    background: var(--jms-card);
  }

  .jms-mobile-price-card__body,
  .jms-price-mobile-addon__body {
    padding: 18px 18px 14px;
  }

  .jms-mobile-price-card__name,
  .jms-price-mobile-addon__title {
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.15;
  }

  .jms-mobile-price-card__desc,
  .jms-price-mobile-addon__desc {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.48;
  }

  .jms-mobile-price-card__prices,
  .jms-price-mobile-addon__rows {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--jms-border);
  }

  .jms-mobile-price-row,
  .jms-price-mobile-addon__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 54px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--jms-border);
  }

  .jms-mobile-price-row:last-child,
  .jms-price-mobile-addon__row:last-child {
    border-bottom: 0;
  }

  .jms-mobile-price-row span,
  .jms-price-mobile-addon__label {
    color: var(--jms-muted);
    font-family: "Lato", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .jms-mobile-price-row strong,
  .jms-price-mobile-addon__price {
    color: var(--jms-brown-dark);
    font-family: "Lora", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    text-align: right;
  }

  .jms-mobile-price-row.is-empty strong,
  .jms-price-mobile-addon__row.is-empty .jms-price-mobile-addon__price {
    color: #d6c2a5;
    font-family: "Lato", Arial, sans-serif;
    letter-spacing: 0.18em;
  }

  .jms-price-mobile-addon__variant {
    color: var(--jms-brown-dark);
    font-family: "Lora", Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.22;
    text-align: right;
  }
}

@media (max-width: 620px) {
  .jms-card__topline {
    align-items: flex-start;
  }

  .jms-card h3 {
    margin-bottom: 14px;
    font-size: clamp(24px, 7vw, 30px);
  }

  .jms-card__text {
    font-size: 13px;
    line-height: 1.48;
  }

  .jms-card__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .jms-wrapper .jms-button,
  .jms-wrapper a.jms-button {
    width: 100%;
    min-height: 48px;
  }

  .jms-card__image,
  .jms-card__placeholder {
    min-height: 210px;
  }
}

@media (max-width: 420px) {
  .jms-card {
    padding: 12px;
    border-radius: 20px;
  }

  .jms-card__image,
  .jms-card__placeholder {
    min-height: 190px;
  }

  .jms-tab {
    min-height: 42px;
    padding: 0 17px;
    font-size: 12px;
  }

  .jms-mobile-price-card__body,
  .jms-price-mobile-addon__body {
    padding: 16px 15px 12px;
  }

  .jms-mobile-price-row,
  .jms-price-mobile-addon__row {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Tab transitions */
.jms-tabs-panels {
  position: relative;
}

.jms-tab {
  will-change: background-color, color, border-color;
}

.jms-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.jms-tab-panel.is-active {
  display: block;
  animation: jmsPanelReveal 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.jms-tab-panel.is-leaving {
  display: block;
  pointer-events: none;
  animation: jmsPanelHide 0.18s ease both;
}

@keyframes jmsPanelReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes jmsPanelHide {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jms-tab-panel.is-active,
  .jms-tab-panel.is-leaving {
    animation: none;
  }
}

/* Stable tab panel animation */
.jms-tabs-panels.is-switching {
  overflow: hidden;
  transition: min-height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.jms-tab-panel.is-preparing {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
}

.jms-tab-panel.is-leaving {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  width: 100%;
  pointer-events: none;
  animation: jmsPanelHideV61 0.2s ease both;
}

.jms-tab-panel.is-active {
  animation: jmsPanelRevealV61 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes jmsPanelRevealV61 {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jmsPanelHideV61 {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .jms-tabs-panels.is-switching {
    transition: none;
  }

  .jms-tab-panel.is-active,
  .jms-tab-panel.is-leaving {
    animation: none;
  }
}

/* Premium carousel */
.jms-carousel-wrap {
  padding: 0;
  margin: 0;
}

.jms-carousel-wrap .jms-carousel-tabs {
  justify-content: center;
  margin-bottom: clamp(30px, 3vw, 38px);
}

.jms-carousel-wrap .jms-tab {
  min-height: 48px;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 500;
}

.jms-carousel-panels {
  width: 100%;
}

.jms-carousel {
  width: 100%;
  margin: 0;
  padding: 0;
}

.jms-carousel__viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
}

.jms-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  will-change: transform;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.jms-carousel-card {
  position: relative;
  flex: 0 0 calc((100% - 16px) / 3);
  min-height: clamp(390px, 38vw, 438px);
  overflow: hidden;
  border-radius: 26px;
  background: #d8c8b9;
  color: #FBF4D9;
  isolation: isolate;
  transition: border-radius 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.jms-carousel-card.is-slot-left,
.jms-carousel-card--left-shape {
  border-top-left-radius: clamp(130px, 16vw, 185px);
}

.jms-carousel-card.is-slot-right,
.jms-carousel-card--right-shape {
  border-top-right-radius: clamp(130px, 16vw, 185px);
}

.jms-carousel-card__image,
.jms-carousel-card__image--placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.jms-carousel-card__image--placeholder {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,0.2), transparent 30%),
    linear-gradient(135deg, #d8bea3, #8a654d 52%, #e6d4bf);
}

.jms-carousel-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(35, 18, 10, 0) 0%, rgba(35, 18, 10, 0.22) 32%, rgba(35, 18, 10, 0.86) 100%),
    linear-gradient(90deg, rgba(35, 18, 10, 0.26) 0%, rgba(35, 18, 10, 0.04) 55%, rgba(35, 18, 10, 0.18) 100%);
}

.jms-carousel-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: inherit;
  padding: clamp(22px, 2vw, 30px);
}

.jms-carousel-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}

.jms-carousel-card__kicker {
  max-width: calc(100% - 48px);
  margin: 0;
  color: rgba(251, 244, 217, 0.78);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.jms-carousel-dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
}

.jms-carousel-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(251, 244, 217, 0.48);
}

.jms-carousel-dots span:first-child,
.jms-carousel-dots span:nth-child(2) {
  background: #FBF4D9;
}

.jms-carousel-card h3 {
  margin: 0 0 22px;
  color: #FBF4D9;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(25px, 2.25vw, 32px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.jms-carousel-card__description {
  display: -webkit-box;
  min-height: 64px;
  margin: 0;
  overflow: hidden;
  color: rgba(251, 244, 217, 0.9);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 400;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.jms-carousel-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
}

.jms-carousel-card__price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 84px;
}

.jms-carousel-card__price span {
  color: rgba(251, 244, 217, 0.88);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1;
}

.jms-carousel-card__price strong {
  color: #FBF4D9;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(25px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.jms-carousel-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--jms-gold-dark);
  border-radius: 999px;
  background: var(--jms-gold);
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.jms-carousel-card__button:hover,
.jms-carousel-card__button:focus-visible {
  border-color: var(--jms-brown-dark);
  background: var(--jms-brown-dark);
  color: #FBF4D9;
  outline: none;
}

.jms-carousel__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: clamp(26px, 3vw, 38px) 0 0;
}

.jms-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  padding: 0;
  border: 1px solid #b99983;
  border-radius: 50%;
  background: transparent;
  color: var(--jms-brown);
  font-family: "Lato", Arial, sans-serif;
  font-size: 31px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.jms-carousel__arrow span {
  display: block;
  transform: translateY(-2px);
}

.jms-carousel__arrow:hover,
.jms-carousel__arrow:focus-visible {
  border-color: var(--jms-brown);
  background: var(--jms-brown);
  color: #FBF4D9;
  outline: none;
}

.jms-carousel__arrow.is-disabled,
.jms-carousel__arrow:disabled {
  border-color: #d9cbbb;
  color: #d0c0b0;
  cursor: default;
  opacity: 1;
}

.jms-carousel__arrow.is-disabled:hover,
.jms-carousel__arrow:disabled:hover {
  background: transparent;
  color: #d0c0b0;
}

@media (max-width: 1020px) {
  .jms-carousel-card__footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .jms-carousel-card__button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .jms-carousel-wrap .jms-carousel-tabs {
    justify-content: flex-start;
  }

  .jms-carousel-card {
    flex-basis: calc((100% - 8px) / 2);
    min-height: 410px;
  }
}

@media (max-width: 640px) {
  .jms-carousel-card,
  .jms-carousel-card.is-slot-left,
  .jms-carousel-card.is-slot-right,
  .jms-carousel-card--left-shape,
  .jms-carousel-card--right-shape {
    flex-basis: 100%;
    min-height: 430px;
    border-radius: 34px;
    border-top-left-radius: 120px;
  }

  .jms-carousel-card__content {
    padding: 24px;
  }

  .jms-carousel-card__description {
    min-height: 58px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .jms-carousel-card,
  .jms-carousel-card.is-slot-left,
  .jms-carousel-card.is-slot-right,
  .jms-carousel-card--left-shape,
  .jms-carousel-card--right-shape {
    min-height: 415px;
    border-radius: 28px;
    border-top-left-radius: 105px;
  }

  .jms-carousel-card__content {
    padding: 20px;
  }

  .jms-carousel-card__topline {
    align-items: flex-start;
  }

  .jms-carousel-card__kicker {
    font-size: 11px;
  }

  .jms-carousel-card h3 {
    margin-bottom: 16px;
    font-size: 26px;
  }

  .jms-carousel-card__footer {
    margin-top: 20px;
  }
}

/* Mobile tabs */
@media (max-width: 640px) {
  .jms-wrapper .jms-tabs-nav,
  .jms-wrapper.jms-carousel-wrap .jms-carousel-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-bottom: 22px;
    overflow: visible;
    padding: 0;
  }

  .jms-wrapper .jms-tab,
  .jms-wrapper.jms-carousel-wrap .jms-tab {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.12;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.035em;
  }

  .jms-wrapper .jms-card__text,
  .jms-wrapper .jms-carousel-card__description,
  .jms-wrapper .jms-price-info p,
  .jms-wrapper .jms-mobile-price-card__desc {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 360px) {
  .jms-wrapper .jms-tabs-nav,
  .jms-wrapper.jms-carousel-wrap .jms-carousel-tabs {
    grid-template-columns: 1fr;
  }
}


/* Carousel arrows and light typography */
.jms-carousel-card,
.jms-carousel-card h3,
.jms-carousel-card__kicker,
.jms-carousel-card__description,
.jms-carousel-card__price span,
.jms-carousel-card__price strong,
.jms-carousel-dots span:first-child,
.jms-carousel-dots span:nth-child(2) {
  color: #FBF4D9;
}

.jms-carousel-dots span:first-child,
.jms-carousel-dots span:nth-child(2) {
  background: #FBF4D9;
}

.jms-carousel-card__button:hover,
.jms-carousel-card__button:focus-visible,
.jms-wrapper a.jms-button:hover,
.jms-wrapper a.jms-button:focus-visible,
.jms-wrapper .jms-button:hover,
.jms-wrapper .jms-button:focus-visible,
.jms-tab.is-active {
  color: #FBF4D9;
}

.jms-carousel__arrow {
  position: relative;
  width: 49px;
  height: 49px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.jms-carousel__arrow span {
  display: none;
}

.jms-carousel__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 49px;
  height: 49px;
  background-image: url('../images/arrow-right.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 49px 49px;
  transform-origin: 50% 50%;
  transition: opacity 0.18s ease;
}

.jms-carousel__arrow--prev::before {
  transform: none;
}

.jms-carousel__arrow--next::before {
  transform: none;
}

.jms-carousel__arrow--prev.is-disabled::before,
.jms-carousel__arrow--prev:disabled::before {
  background-image: url('../images/arrow-left-disabled.webp');
  transform: none;
}

.jms-carousel__arrow--next.is-disabled::before,
.jms-carousel__arrow--next:disabled::before {
  background-image: url('../images/arrow-left-disabled.webp');
  transform: none;
}

.jms-carousel__arrow:hover,
.jms-carousel__arrow:focus-visible,
.jms-carousel__arrow.is-disabled:hover,
.jms-carousel__arrow:disabled:hover {
  border: 0;
  background: transparent;
  color: transparent;
  outline: none;
}

.jms-carousel__arrow:not(:disabled):hover::before,
.jms-carousel__arrow:not(.is-disabled):focus-visible::before {
  opacity: 0.92;
}

/* Carousel card sizing and explicit arrow states */
.jms-wrapper,
.jms-wrapper *,
.jms-wrapper *::before,
.jms-wrapper *::after {
  font-style: normal !important;
}

.jms-carousel-card {
  min-height: clamp(540px, 47vw, 588px);
}

.jms-carousel-card__description {
  font-weight: 300;
}

.jms-carousel__arrow::before {
  background-image: url('../images/arrow-right.webp');
  transform: none;
  transition: opacity 0.18s ease;
}

.jms-carousel__arrow--prev::before {
  background-image: url('../images/arrow-left.webp');
  transform: none;
}

.jms-carousel__arrow--next::before {
  background-image: url('../images/arrow-right.webp');
  transform: none;
}

.jms-carousel__arrow--prev.is-disabled::before,
.jms-carousel__arrow--prev:disabled::before {
  background-image: url('../images/arrow-left-disabled.webp');
  transform: none;
}

.jms-carousel__arrow--next.is-disabled::before,
.jms-carousel__arrow--next:disabled::before {
  background-image: url('../images/arrow-right-disabled.webp');
  transform: none;
}

@media (max-width: 900px) {
  .jms-carousel-card {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .jms-carousel-card,
  .jms-carousel-card.is-slot-left,
  .jms-carousel-card.is-slot-right,
  .jms-carousel-card--left-shape,
  .jms-carousel-card--right-shape {
    min-height: 570px;
  }
}

@media (max-width: 420px) {
  .jms-carousel-card,
  .jms-carousel-card.is-slot-left,
  .jms-carousel-card.is-slot-right,
  .jms-carousel-card--left-shape,
  .jms-carousel-card--right-shape {
    min-height: 555px;
  }
}

/* Price list with 30 / 60 / 90 / 120 min variants */
.jms-price-headrow:not(.jms-price-headrow--addons) {
  grid-template-columns: 44% 14% 14% 14% 14%;
}

.jms-price-table:not(.jms-price-table--addons) td:first-child {
  width: 44%;
}

.jms-price-table:not(.jms-price-table--addons) td:not(:first-child) {
  width: 14%;
}

.jms-price-table:not(.jms-price-table--addons) {
  min-width: 980px;
}

@media (max-width: 820px) {
  .jms-mobile-price-card__prices {
    border-top: 1px solid var(--jms-border);
  }

  .jms-mobile-price-row {
    min-height: 52px;
  }
}

/* Dynamic pressure scale, adaptive price columns and footer CTA */
.jms-dots span:first-child,
.jms-dots span:nth-child(2),
.jms-carousel-dots span:first-child,
.jms-carousel-dots span:nth-child(2) {
  background: #d9c7ac;
}

.jms-dots .jms-dot.is-active {
  background: var(--jms-brown);
}

.jms-carousel-dots .jms-dot.is-active {
  background: #FBF4D9;
}

.jms-price-dots {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 0 0 auto;
}

.jms-price-dots .jms-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9c7ac;
}

.jms-price-dots .jms-dot.is-active {
  background: var(--jms-brown);
}

.jms-price-title-line,
.jms-mobile-price-card__titleline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  margin: 0 0 8px;
}

.jms-price-title-line strong,
.jms-mobile-price-card__titleline .jms-mobile-price-card__name {
  margin-bottom: 0;
}

.jms-price-title-line .jms-price-dots,
.jms-mobile-price-card__titleline .jms-price-dots {
  padding-top: 5px;
}

.jms-price-footer {
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 4vw, 56px);
  width: 100%;
  margin: clamp(10px, 1vw, 18px) 0 0;
  padding: 0;
}

.jms-price-footer__note {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  color: var(--jms-brown-dark);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.35;
}

.jms-price-footer__note .jms-price-dots {
  flex: 0 0 auto;
}

.jms-price-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.jms-price-footer__bottom p {
  margin: 0;
  color: var(--jms-muted);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.45;
}

.jms-price-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: min(100%, 330px);
  min-height: 62px;
  padding: 0 34px;
  border: 1px solid var(--jms-brown-dark);
  border-radius: 999px;
  background: var(--jms-brown);
  color: #FBF4D9;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.jms-price-footer__button:hover,
.jms-price-footer__button:focus-visible {
  border-color: var(--jms-gold-dark);
  background: var(--jms-gold);
  color: var(--jms-brown-dark);
  outline: none;
}

@media (max-width: 820px) {
  .jms-price-footer {
    gap: 26px;
    margin-top: 2px;
  }

  .jms-price-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .jms-price-footer__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }

  .jms-price-footer__note {
    align-items: flex-start;
    gap: 12px;
  }

  .jms-mobile-price-card__titleline {
    align-items: center;
  }
}

@media (max-width: 420px) {
  .jms-price-title-line,
  .jms-mobile-price-card__titleline {
    gap: 10px;
  }

  .jms-price-footer__note {
    font-size: 13px;
  }
}

/* Booksy official widget bridge */
#jms-booksy-hidden,
#mbs-booksy-hidden {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Pressure scale */
.jms-dots .jms-dot,
.jms-price-dots .jms-dot {
  background: #d9c7ac;
}

.jms-carousel-dots .jms-dot {
  background: rgba(251, 244, 217, 0.48);
}

.jms-dots .jms-dot.is-active,
.jms-price-dots .jms-dot.is-active {
  background: var(--jms-brown);
}

.jms-carousel-dots .jms-dot.is-active {
  background: #FBF4D9;
}

.jms-dots .jms-dot.is-half,
.jms-price-dots .jms-dot.is-half {
  background: linear-gradient(90deg, var(--jms-brown) 0 50%, #d9c7ac 50% 100%);
}

.jms-carousel-dots .jms-dot.is-half {
  background: linear-gradient(90deg, #FBF4D9 0 50%, rgba(251, 244, 217, 0.48) 50% 100%);
}



/* Booksy fallback */
.jms-booksy-fallback[hidden] {
  display: none;
}

.jms-booksy-fallback {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Lato", Arial, sans-serif;
}

.jms-booksy-fallback__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 14, 0.62);
  backdrop-filter: blur(6px);
}

.jms-booksy-fallback__card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(145, 123, 108, 0.26);
  border-radius: 30px;
  background: #f5eee5;
  box-shadow: 0 28px 90px rgba(36, 21, 14, 0.28);
  color: var(--jms-brown-dark);
  text-align: left;
}

.jms-booksy-fallback__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(81, 49, 30, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--jms-brown-dark);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.jms-booksy-fallback__eyebrow {
  margin: 0 0 10px;
  color: var(--jms-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jms-booksy-fallback h3 {
  margin: 0 0 12px;
  color: var(--jms-brown-dark);
  font-family: "Lora", Georgia, serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 500;
  line-height: 1.1;
}

.jms-booksy-fallback__message {
  margin: 0;
  color: var(--jms-muted);
  font-size: 16px;
  line-height: 1.55;
}

.jms-booksy-fallback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.jms-booksy-fallback__button,
.jms-booksy-fallback__retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.jms-booksy-fallback__button {
  border: 1px solid var(--jms-brown-dark);
  background: var(--jms-brown);
  color: #FBF4D9;
}

.jms-booksy-fallback__retry {
  border: 1px solid rgba(81, 49, 30, 0.18);
  background: transparent;
  color: var(--jms-brown-dark);
}

@media (max-width: 560px) {
  .jms-booksy-fallback {
    align-items: flex-end;
    padding: 14px;
  }

  .jms-booksy-fallback__card {
    border-radius: 24px;
  }

  .jms-booksy-fallback__actions,
  .jms-booksy-fallback__button,
  .jms-booksy-fallback__retry {
    width: 100%;
  }
}
