@font-face {
  font-family: "JumpZoneDisplay";
  src: url("../fonts/JumpZone001-Regular.otf") format("opentype");
  font-display: swap;
}

:root {
  --jz-red: #f30909;
  --jz-red-deep: #8f0000;
  --jz-dark: #0d0d0f;
  --jz-ink: #111113;
  --jz-white: #ffffff;
  --jz-muted: #b9b9bd;
  --jz-cyan: #65f5ff;
  --jz-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--jz-dark);
  color: var(--jz-white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

.jz-home,
.jz-header,
.jz-drawer,
.jz-footer {
  color: var(--jz-white);
}

body.jz-panel-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.jz-skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--jz-white);
  color: var(--jz-dark);
  padding: 10px 14px;
  font-weight: 800;
}

.jz-skip-link:focus {
  transform: translateY(0);
}

.jz-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.admin-bar .jz-header,
.admin-bar .jz-drawer {
  top: 32px;
}

.jz-logo {
  display: inline-flex;
  align-items: flex-start;
  margin: 18px 0 0 24px;
  width: clamp(116px, 12vw, 190px);
  pointer-events: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.58));
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.jz-past-hero .jz-logo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-22px);
}

.jz-logo img,
.custom-logo-link img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.jz-logo-image-transparent {
  aspect-ratio: 720 / 563;
}

.custom-logo-link {
  display: block;
  width: 100%;
}

.jz-header-actions {
  display: flex;
  margin-left: auto;
  pointer-events: auto;
}

.jz-top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: clamp(132px, 14vw, 188px);
  height: 88px;
  border: 0;
  border-radius: 0;
  background: var(--jz-red);
  color: var(--jz-white);
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: skew(-8deg);
  transition: background 180ms ease, transform 180ms ease;
}

.jz-top-button > * {
  transform: skew(8deg);
}

.jz-top-button:hover,
.jz-top-button:focus-visible,
.jz-top-button[aria-expanded="true"] {
  background: #ff1717;
}

.jz-top-button-park {
  background: var(--jz-red-deep);
}

.jz-top-icon {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.jz-burger {
  display: grid;
  gap: 5px;
  width: 34px;
}

.jz-burger span {
  display: block;
  height: 5px;
  background: currentColor;
}

.jz-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 58;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.jz-panel-open .jz-drawer-backdrop {
  visibility: visible;
  opacity: 1;
}

.jz-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 59;
  width: min(430px, 100vw);
  padding: 34px clamp(26px, 4vw, 54px);
  background: #111113;
  color: var(--jz-white);
  transform: translateX(104%);
  transition: transform 260ms ease;
  overflow-y: auto;
}

.jz-panel-open .jz-drawer {
  transform: translateX(0);
}

.jz-drawer-close {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  float: right;
  border: 0;
  background: transparent;
  color: var(--jz-red);
  cursor: pointer;
  font-weight: 800;
}

.jz-drawer-close span {
  font-size: 26px;
}

.jz-drawer-panel {
  clear: both;
  padding-top: 42px;
}

.jz-drawer-panel h2 {
  margin: 0 0 34px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(44px, 7vw, 62px);
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jz-drawer-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jz-drawer-list a {
  display: flex;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--jz-white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.jz-drawer-list a:hover,
.jz-drawer-list a:focus-visible {
  color: var(--jz-red);
}

.jz-drawer-cta {
  display: inline-flex;
  justify-content: center;
  min-width: 190px;
  margin-top: 32px;
  padding: 17px 22px;
  background: var(--jz-red);
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  text-decoration: none;
  text-transform: uppercase;
}

.jz-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
  padding: 130px 24px 80px;
  isolation: isolate;
}

.jz-hero-video,
.jz-hero-shade {
  position: absolute;
  inset: 0;
}

.jz-hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.jz-hero-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 52% 42%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.64));
}

.jz-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
}

.jz-hero-content::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: -1;
  width: min(820px, 94vw);
  height: min(420px, 44vw);
  content: "";
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 9, 9, 0.22), transparent 56%),
    radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0.58), transparent 64%);
  filter: blur(4px);
  transform: translate(-50%, -50%) skew(-8deg);
}

.jz-hero h1,
.jz-section-heading h2,
.jz-party h2,
.jz-photo-story h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jz-hero h1 {
  display: grid;
  gap: 2px;
  font-size: clamp(64px, 10vw, 152px);
  line-height: 0.86;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
  text-shadow:
    -4px 0 0 rgba(243, 9, 9, 0.72),
    5px 0 0 rgba(101, 245, 255, 0.52),
    0 18px 40px rgba(0, 0, 0, 0.72);
  transform: skew(-6deg);
}

.jz-hero h1 span {
  display: block;
}

.jz-hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.34);
  color: var(--jz-cyan) !important;
  -webkit-text-fill-color: var(--jz-cyan);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(15px, 1.5vw, 22px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.jz-hero-lead {
  max-width: 730px;
  margin: 24px auto 20px;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.jz-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 0;
  list-style: none;
}

.jz-hero-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.3);
  color: #f2f2f4;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.jz-hero-note {
  max-width: 520px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.72);
}

.jz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 176px;
  padding: 17px 28px;
  border: 0;
  border-radius: 0;
  background: var(--jz-red);
  color: var(--jz-white) !important;
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transform: skew(-8deg);
  box-shadow: 0 18px 42px rgba(243, 9, 9, 0.28);
}

.jz-button:hover,
.jz-button:focus-visible {
  background: #ff2020;
}

.jz-button-whatsapp,
.jz-drawer-cta-whatsapp {
  background: #17b85a;
  box-shadow: 0 18px 42px rgba(23, 184, 90, 0.3);
}

.jz-button-whatsapp:hover,
.jz-button-whatsapp:focus-visible,
.jz-drawer-cta-whatsapp:hover,
.jz-drawer-cta-whatsapp:focus-visible {
  background: #13cc62;
}

.jz-button-large {
  min-width: 230px;
  min-height: 66px;
}

.jz-light-ring {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(230px, 32vw, 540px);
  height: clamp(88px, 12vw, 190px);
  border: clamp(6px, 0.8vw, 12px) solid rgba(110, 248, 255, 0.88);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  filter: drop-shadow(0 0 14px rgba(101, 245, 255, 0.92));
  opacity: 0.82;
  pointer-events: none;
  animation: jz-ring-float 9s ease-in-out infinite;
}

.jz-light-ring-one {
  left: 7vw;
  bottom: 12vh;
  transform: rotate(-30deg);
}

.jz-light-ring-two {
  top: 20vh;
  right: 4vw;
  animation-delay: -3s;
  transform: rotate(18deg);
}

.jz-light-ring-three {
  left: 38vw;
  top: 38vh;
  width: clamp(140px, 18vw, 290px);
  height: clamp(60px, 8vw, 120px);
  animation-delay: -5.5s;
  transform: rotate(155deg);
}

@keyframes jz-ring-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 18px -16px;
  }
}

.jz-activities {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 130px) 24px clamp(90px, 11vw, 150px);
  background:
    radial-gradient(circle at 16% 32%, rgba(0, 0, 0, 0.86), transparent 23%),
    radial-gradient(circle at 20% 85%, rgba(238, 0, 110, 0.82), transparent 20%),
    linear-gradient(135deg, #ff0808 0%, #d60000 42%, #ff1010 100%);
}

.jz-activities::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.18), transparent 46%);
  pointer-events: none;
}

.jz-activities::after {
  position: absolute;
  right: -6vw;
  top: 8%;
  content: "JUMPZONE";
  color: rgba(255, 255, 255, 0.08);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(88px, 16vw, 250px);
  font-style: italic;
  line-height: 0.8;
  pointer-events: none;
  text-transform: uppercase;
  transform: skew(-8deg);
}

.jz-section-heading {
  position: relative;
  z-index: 1;
  max-width: var(--jz-max);
  margin: 0 auto clamp(44px, 6vw, 76px);
  text-align: center;
}

.jz-section-heading-light {
  color: var(--jz-white);
}

.jz-section-heading h2 {
  color: currentColor !important;
  font-size: clamp(48px, 7.4vw, 104px);
  line-height: 0.92;
}

.jz-section-heading p {
  margin: 20px auto 0;
  color: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
}

.jz-activity-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: var(--jz-max);
  margin: 0 auto;
}

.jz-activity-list {
  display: grid;
  gap: 18px;
}

.jz-activity-card {
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 112px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: rgba(45, 0, 0, 0.2);
  color: var(--jz-white);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.jz-activity-card:hover,
.jz-activity-card:focus-visible,
.jz-activity-card.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.34);
  transform: translateX(8px);
}

.jz-activity-card span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jz-activity-card small {
  max-width: 420px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.18;
}

.jz-activity-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  transform: rotate(0.8deg);
}

.jz-activity-media::before {
  position: absolute;
  inset: 20px -18px -20px 18px;
  z-index: -1;
  content: "";
  background: rgba(0, 0, 0, 0.45);
}

.jz-activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  opacity: 1;
  transition: opacity 160ms ease, transform 420ms ease;
}

.jz-activity-card:hover ~ .jz-activity-media img,
.jz-activity-media:hover img {
  transform: scale(1.025);
}

.jz-activity-media img.is-changing {
  opacity: 0.14;
}

.jz-photo-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  min-height: 760px;
  padding: clamp(88px, 11vw, 148px) max(24px, calc((100vw - var(--jz-max)) / 2));
  overflow: hidden;
  isolation: isolate;
  background: #050506;
}

.jz-photo-story::before,
.jz-photo-story::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.jz-photo-story::before {
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52) 46%, rgba(102, 0, 0, 0.58)),
    var(--jz-photo-story-bg);
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.jz-photo-story::after {
  z-index: -1;
  background:
    radial-gradient(circle at 14% 24%, rgba(101, 245, 255, 0.18), transparent 25%),
    radial-gradient(circle at 86% 58%, rgba(243, 9, 9, 0.44), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18), rgba(5, 5, 6, 0.9));
}

.jz-photo-story-copy {
  position: relative;
  z-index: 2;
  width: min(590px, 100%);
}

.jz-photo-story-copy > p {
  margin: 0 0 20px;
  color: var(--jz-cyan);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.62);
}

.jz-photo-story h2 {
  color: var(--jz-white);
  font-size: clamp(58px, 7.8vw, 118px);
  line-height: 0.88;
  text-shadow: 0 16px 0 rgba(0, 0, 0, 0.28), 0 30px 62px rgba(0, 0, 0, 0.72);
  transform: skew(-7deg);
}

.jz-photo-story-points {
  display: grid;
  gap: 12px;
  max-width: 470px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.jz-photo-story-points li {
  padding: 13px 16px;
  border-left: 5px solid var(--jz-red);
  background: rgba(0, 0, 0, 0.42);
  color: var(--jz-white);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  line-height: 1.14;
  text-transform: uppercase;
}

.jz-photo-story-copy .jz-button {
  margin-top: 34px;
}

.jz-photo-stack {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.jz-photo-stack figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

.jz-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.jz-photo-stack figure:hover img {
  transform: scale(1.045);
}

.jz-photo-stack-main {
  top: 24px;
  right: 0;
  width: min(620px, 88%);
  height: 380px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transform: rotate(1.2deg);
}

.jz-photo-stack-small {
  width: 280px;
  height: 190px;
  border: 8px solid rgba(255, 255, 255, 0.08);
}

.jz-photo-stack-small-one {
  left: 0;
  bottom: 72px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  transform: rotate(-3deg);
}

.jz-photo-stack-small-two {
  right: 60px;
  bottom: 0;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transform: rotate(3deg);
}

.jz-party {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: 680px;
  background: var(--jz-white);
  color: #050506;
  overflow: hidden;
}

.jz-party-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 680px;
  padding: clamp(72px, 9vw, 118px) clamp(28px, 8vw, 120px);
  clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
  background:
    radial-gradient(circle at 12% 68%, rgba(255, 11, 11, 0.13), transparent 27%),
    #ffffff;
}

.jz-party-copy::before {
  position: absolute;
  left: -2vw;
  top: 8%;
  z-index: -1;
  content: "PARTY";
  color: rgba(243, 9, 9, 0.08);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(110px, 18vw, 280px);
  font-style: italic;
  line-height: 0.8;
  text-transform: uppercase;
  transform: skew(-9deg);
}

.jz-party h2 {
  max-width: 720px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
}

.jz-party h3 {
  margin: 34px 0 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jz-party p {
  max-width: 560px;
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.jz-party .jz-button {
  align-self: flex-start;
  margin-top: 22px;
}

.jz-party-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.jz-party-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(243, 9, 9, 0.16), rgba(0, 0, 0, 0.32)),
    radial-gradient(circle at 74% 20%, rgba(101, 245, 255, 0.24), transparent 25%);
  pointer-events: none;
}

.jz-party-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: jz-party-zoom 12s ease-in-out infinite alternate;
}

@keyframes jz-party-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

.jz-booking {
  position: relative;
  padding: clamp(82px, 10vw, 126px) 24px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 0, 0, 0.38), transparent 24%),
    linear-gradient(140deg, #070707 0%, #1a0101 52%, #0b0b0d 100%);
}

.jz-booking .jz-section-heading {
  margin-bottom: 38px;
}

.jz-bookly-shell {
  position: relative;
  max-width: 980px;
  min-height: 180px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.jz-bookly-preloader {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding: 18px 20px;
  border-left: 5px solid var(--jz-red);
  background:
    linear-gradient(90deg, rgba(243, 9, 9, 0.12), rgba(101, 245, 255, 0.08)),
    #111113;
  color: var(--jz-white);
  overflow: hidden;
}

.jz-bookly-preloader::after {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  content: "";
  background: linear-gradient(90deg, var(--jz-red), var(--jz-cyan), var(--jz-red));
  background-size: 200% 100%;
  animation: jz-bookly-loadbar 1.2s linear infinite;
}

.jz-bookly-preloader strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.jz-bookly-preloader span {
  color: #e7e7ea;
  font-weight: 800;
  line-height: 1.25;
}

.jz-bookly-shell.is-bookly-ready .jz-bookly-preloader {
  display: none;
}

@keyframes jz-bookly-loadbar {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}

.jz-bookly-placeholder {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 150px;
  border: 2px dashed rgba(243, 9, 9, 0.45);
  text-align: center;
}

.jz-bookly-placeholder strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-style: italic;
  text-transform: uppercase;
}

.jz-bookly-placeholder span {
  font-weight: 800;
}

.jz-floating-wa-mini {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 57;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34), 0 10px 26px rgba(37, 211, 102, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.jz-floating-wa-mini svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.jz-floating-wa-mini:hover,
.jz-floating-wa-mini:focus-visible {
  background: #1fbd5b;
  transform: translateY(-2px);
}

.jz-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 56;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 17, 19, 0.72);
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.jz-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.jz-back-to-top:hover,
.jz-back-to-top:focus-visible {
  border-color: rgba(243, 9, 9, 0.62);
  background: rgba(243, 9, 9, 0.86);
  outline: none;
}

.jz-back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jz-reservas-page {
  min-height: 100vh;
  background: #08080a;
  color: var(--jz-white);
}

.jz-reservas-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: end center;
  padding: 150px 24px 76px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.76)),
    var(--jz-reservas-bg);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.jz-reservas-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 14% 35%, rgba(23, 184, 90, 0.28), transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(243, 9, 9, 0.46), transparent 28%);
  mix-blend-mode: screen;
}

.jz-reservas-hero-inner {
  width: min(980px, 100%);
  text-align: center;
}

.jz-reservas-hero p {
  margin: 0 0 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(18px, 2.4vw, 30px);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.jz-reservas-hero h1 {
  margin: 0;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(76px, 14vw, 180px);
  font-style: italic;
  line-height: 0.82;
  text-transform: uppercase;
  transform: skew(-6deg);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.54);
}

.jz-reservas-hero span {
  display: block;
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.jz-reservas-panel {
  padding: clamp(64px, 8vw, 110px) 24px clamp(86px, 10vw, 130px);
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 9, 9, 0.32), transparent 24%),
    linear-gradient(140deg, #070707 0%, #1a0101 52%, #0b0b0d 100%);
}

.jz-reservas-panel .jz-bookly-shell {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 7px solid var(--jz-red);
  background:
    linear-gradient(145deg, rgba(23, 23, 26, 0.96), rgba(41, 0, 0, 0.94)),
    #111113;
  color: var(--jz-white);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.56), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.jz-reservas-page .bookly-css-root,
.jz-reservas-page .bookly-form,
.jz-reservas-page .bookly-form *,
.jz-reservas-page .bookly-box,
.jz-reservas-page .bookly-bold {
  color: #f7f7f8 !important;
}

.jz-reservas-page .bookly-form {
  border: 1px solid rgba(255, 255, 255, 0.11) !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(243, 9, 9, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34) !important;
}

.jz-reservas-page .bookly-form .bookly-box,
.jz-reservas-page .bookly-form .bookly-row,
.jz-reservas-page .bookly-form .bookly-js-chain-item,
.jz-reservas-page .bookly-form .bookly-service-step,
.jz-reservas-page .bookly-form .bookly-details-step,
.jz-reservas-page .bookly-form .bookly-cart-step {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.jz-reservas-page .bookly-form label,
.jz-reservas-page .bookly-form .bookly-label,
.jz-reservas-page .bookly-form .bookly-form-group > label {
  color: #ff6a32 !important;
  font-weight: 900 !important;
  letter-spacing: 0;
}

.jz-reservas-page .bookly-form input,
.jz-reservas-page .bookly-form select,
.jz-reservas-page .bookly-form textarea {
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: #ffffff !important;
  color: #111113 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18) !important;
}

.jz-reservas-page .bookly-form input::placeholder,
.jz-reservas-page .bookly-form textarea::placeholder {
  color: rgba(17, 17, 19, 0.58) !important;
}

.jz-reservas-page .bookly-form option {
  color: #111113 !important;
  background: #ffffff !important;
}

.jz-reservas-page .bookly-form .picker,
.jz-reservas-page .bookly-form .picker *,
.jz-reservas-page .bookly-form .picker__holder,
.jz-reservas-page .bookly-form .picker__holder *,
.jz-reservas-page .bookly-form .picker__box,
.jz-reservas-page .bookly-form .picker__box *,
.jz-reservas-page .bookly-form .bookly-calendar,
.jz-reservas-page .bookly-form .bookly-calendar *,
.jz-reservas-page .bookly-form .bookly-date-picker,
.jz-reservas-page .bookly-form .bookly-date-picker *,
.jz-reservas-page .bookly-form .bookly-js-datepicker,
.jz-reservas-page .bookly-form .bookly-js-datepicker *,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar *,
.jz-reservas-page .bookly-form .bookly-columnizer,
.jz-reservas-page .bookly-form .bookly-columnizer * {
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .picker__holder,
.jz-reservas-page .bookly-form .picker__box,
.jz-reservas-page .bookly-form .bookly-calendar,
.jz-reservas-page .bookly-form .bookly-date-picker,
.jz-reservas-page .bookly-form .bookly-js-datepicker,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar,
.jz-reservas-page .bookly-form .bookly-columnizer-wrap,
.jz-reservas-page .bookly-form .bookly-columnizer {
  background: #ffffff !important;
}

.jz-reservas-page .bookly-form .picker__day--selected,
.jz-reservas-page .bookly-form .picker__day--highlighted,
.jz-reservas-page .bookly-form .picker__day--infocus:hover,
.jz-reservas-page .bookly-form .bookly-calendar .active,
.jz-reservas-page .bookly-form .bookly-js-datepicker .active,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar .active,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [aria-selected="true"],
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-day,
.jz-reservas-page .bookly-form .bookly-schedule-date {
  background: #ff5b35 !important;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
}

.jz-reservas-page .bookly-form .iti,
.jz-reservas-page .bookly-form .intl-tel-input {
  --iti-selected-country-arrow-padding: 86px;
  --iti-dropdown-bg: #ffffff;
  --iti-dialcode-color: #5f6068;
  display: block !important;
  width: 100% !important;
}

.jz-reservas-page .bookly-form .iti input,
.jz-reservas-page .bookly-form .intl-tel-input input,
.jz-reservas-page .bookly-form input[type="tel"] {
  padding-left: 86px !important;
}

.jz-reservas-page .bookly-form .iti__country-container {
  width: 76px !important;
}

.jz-reservas-page .bookly-form .iti__selected-country,
.jz-reservas-page .bookly-form .iti__selected-country * {
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .iti__selected-country {
  width: 76px !important;
  justify-content: center !important;
}

.jz-reservas-page .bookly-form .iti__selected-country-primary {
  padding-right: 8px !important;
  padding-left: 10px !important;
}

.jz-reservas-page .bookly-form .iti__selected-flag,
.jz-reservas-page .bookly-form .intl-tel-input .selected-flag {
  width: 58px !important;
  background: rgba(255, 255, 255, 0.74) !important;
}

.jz-reservas-page .bookly-form .iti__country-list,
.jz-reservas-page .bookly-form .country-list,
.jz-reservas-page .bookly-form .iti__dropdown-content,
body .iti--container .iti__dropdown-content,
body .iti--container .iti__country-list {
  z-index: 999999 !important;
  width: min(360px, calc(100vw - 32px)) !important;
  min-width: 300px !important;
  border: 1px solid rgba(255, 91, 53, 0.7) !important;
  background: #ffffff !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36) !important;
}

.jz-reservas-page .bookly-form .iti__country-list *,
.jz-reservas-page .bookly-form .country-list *,
.jz-reservas-page .bookly-form .iti__dropdown-content *,
body .iti--container .iti__dropdown-content *,
body .iti--container .iti__country-list *,
.jz-reservas-page .bookly-form .iti__country,
.jz-reservas-page .bookly-form .country,
.jz-reservas-page .bookly-form .iti__country-name,
.jz-reservas-page .bookly-form .country-name,
.jz-reservas-page .bookly-form .iti__dial-code,
.jz-reservas-page .bookly-form .dial-code {
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .iti__dial-code,
.jz-reservas-page .bookly-form .dial-code {
  color: #5f6068 !important;
  -webkit-text-fill-color: #5f6068;
}

.jz-reservas-page .bookly-form .iti__search-input,
.jz-reservas-page .bookly-form .search-box,
.jz-reservas-page .bookly-form .country-list input,
body .iti--container .iti__search-input {
  background: #ffffff !important;
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .iti__country:hover,
.jz-reservas-page .bookly-form .country:hover,
.jz-reservas-page .bookly-form .iti__highlight,
.jz-reservas-page .bookly-form .highlight,
body .iti--container .iti__country:hover,
body .iti--container .iti__highlight {
  background: #ffe3dd !important;
}

.jz-reservas-page .bookly-form .bookly-columnizer-wrap {
  border-radius: 10px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour {
  border-color: rgba(17, 17, 19, 0.18) !important;
  background: #ffffff !important;
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour span,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .bookly-time-main,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .ladda-label {
  color: #111113 !important;
  -webkit-text-fill-color: #111113;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active {
  border-color: #ff5b35 !important;
  color: #ff5b35 !important;
  -webkit-text-fill-color: #ff5b35;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover span,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active span {
  color: #ff5b35 !important;
  -webkit-text-fill-color: #ff5b35;
}

.jz-reservas-page .bookly-form .bookly-checkbox-group {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 0 12px;
  align-items: start;
  line-height: 1.4 !important;
}

.jz-reservas-page .bookly-form .bookly-checkbox-group > input[type="checkbox"] {
  grid-column: 1;
}

.jz-reservas-page .bookly-form .bookly-checkbox-group > label.bookly-square {
  grid-column: 1;
  float: none !important;
  margin: 0 !important;
}

.jz-reservas-page .bookly-form .bookly-checkbox-group > label:not(.bookly-square) {
  grid-column: 2;
  margin: 0 !important;
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
  font-weight: 800 !important;
  line-height: 1.4 !important;
}

.jz-reservas-page .bookly-progress-tracker,
.jz-reservas-page .bookly-stepper {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.jz-reservas-page .bookly-progress-tracker > div,
.jz-reservas-page .bookly-stepper > div {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.jz-reservas-page .bookly-step-active,
.jz-reservas-page .bookly-progress-tracker .active,
.jz-reservas-page .bookly-js-step-active {
  color: #ff3b22 !important;
  text-shadow: 0 0 18px rgba(243, 9, 9, 0.34);
}

.jz-reservas-page .bookly-form .bookly-label-error,
.jz-reservas-page .bookly-form .bookly-js-error,
.jz-reservas-page .bookly-form .bookly-error {
  color: #ff6a32 !important;
}

.jz-reservas-page .bookly-form .bookly-price,
.jz-reservas-page .bookly-form [class*="price"],
.jz-reservas-page .bookly-form [class*="Price"] {
  color: #ffd166 !important;
  font-weight: 900 !important;
}

.jz-reservas-page .bookly-form a:not(.bookly-btn) {
  color: #ff3030 !important;
  -webkit-text-fill-color: #ff3030;
  font-weight: 900 !important;
}

.jz-reservas-page .bookly-form .bookly-time-step,
.jz-reservas-page .bookly-form .bookly-columnizer-wrap,
.jz-reservas-page .bookly-form .bookly-columnizer,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 9, 9, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(26, 18, 20, 0.96), rgba(15, 15, 18, 0.96)) !important;
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
}

.jz-reservas-page .bookly-form .bookly-columnizer-wrap {
  padding: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px;
}

.jz-reservas-page .bookly-form .bookly-columnizer,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
  min-height: 0 !important;
}

.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar,
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar > div,
.jz-reservas-page .bookly-form .bookly-js-datepicker,
.jz-reservas-page .bookly-form .bookly-date-picker,
.jz-reservas-page .bookly-form .bookly-calendar {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
}

.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar *,
.jz-reservas-page .bookly-form .bookly-js-datepicker *,
.jz-reservas-page .bookly-form .bookly-date-picker *,
.jz-reservas-page .bookly-form .bookly-calendar * {
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
}

.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [aria-disabled="true"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="disabled"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="outside"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="empty"] {
  opacity: 0.4;
}

.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [aria-selected="true"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="selected"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="active"],
.jz-reservas-page .bookly-form .bookly-js-datepicker-calendar button:hover,
.jz-reservas-page .bookly-form .picker__day--selected,
.jz-reservas-page .bookly-form .picker__day--highlighted,
.jz-reservas-page .bookly-form .bookly-calendar .active,
.jz-reservas-page .bookly-form .bookly-js-datepicker .active {
  background: #ff5b35 !important;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-day,
.jz-reservas-page .bookly-form .bookly-schedule-date {
  border: 0 !important;
  background: #ff5b35 !important;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
  box-shadow: 0 14px 32px rgba(243, 9, 9, 0.24);
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
  box-shadow: none !important;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour span,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .bookly-time-main,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .bookly-time-additional,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .ladda-label {
  color: #f7f7f8 !important;
  -webkit-text-fill-color: #f7f7f8;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour .bookly-hour-icon {
  outline-color: rgba(255, 255, 255, 0.46) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:focus {
  border-color: #ff5b35 !important;
  background: rgba(255, 91, 53, 0.18) !important;
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
}

.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover span,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active span,
.jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:focus span {
  color: var(--jz-white) !important;
  -webkit-text-fill-color: var(--jz-white);
}

.jz-reservas-page .bookly-btn,
.jz-reservas-page button.bookly-btn,
.jz-reservas-page .bookly-next-step,
.jz-reservas-page .bookly-js-next-step,
.jz-reservas-page .bookly-repeat-step {
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--jz-red) !important;
  color: var(--jz-white) !important;
  font-family: Impact, "Arial Black", sans-serif !important;
  font-style: italic;
  text-transform: uppercase;
}

.jz-reservas-page .bookly-btn:hover,
.jz-reservas-page button.bookly-btn:hover,
.jz-reservas-page .bookly-next-step:hover,
.jz-reservas-page .bookly-js-next-step:hover {
  background: #ff2020 !important;
}

.jz-reservas-page .bookly-form img {
  cursor: zoom-in;
}

body.jz-image-modal-open {
  overflow: hidden;
}

.jz-image-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.jz-image-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.jz-image-modal__frame {
  position: relative;
  display: grid;
  max-width: min(1280px, 98vw);
  max-height: 96vh;
}

.jz-image-modal__image {
  width: min(1180px, 96vw);
  max-width: 100%;
  max-height: 94vh;
  object-fit: contain;
  background: #111113;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62), 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.jz-image-modal__close {
  position: absolute;
  top: -16px;
  right: -16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--jz-red);
  color: var(--jz-white);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(243, 9, 9, 0.32);
}

.jz-image-modal__close:hover,
.jz-image-modal__close:focus-visible {
  background: #ff2020;
}

.jz-footer {
  background: #111113;
  color: var(--jz-white);
}

.jz-footer-inner {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(220px, 0.9fr) minmax(170px, 230px);
  gap: clamp(46px, 8vw, 128px);
  max-width: var(--jz-max);
  margin: 0 auto;
  padding: clamp(74px, 8vw, 106px) 24px clamp(72px, 8vw, 96px);
}

.jz-footer h2 {
  margin: 0 0 22px;
  color: var(--jz-white) !important;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 25px;
  font-style: italic;
  text-transform: uppercase;
}

.jz-footer ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jz-footer-column {
  min-width: 0;
}

.jz-footer a {
  color: #a8a8ad;
  text-decoration: none;
}

.jz-footer a:hover,
.jz-footer a:focus-visible {
  color: var(--jz-white);
}

.jz-footer-logo {
  align-self: start;
  justify-self: end;
  width: min(260px, 42vw);
  padding: 10px;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.44));
}

.jz-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.jz-social-link {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--jz-white) !important;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.jz-social-link:hover,
.jz-social-link:focus-visible {
  border-color: rgba(243, 9, 9, 0.76);
  background: var(--jz-red);
  transform: translateY(-2px);
}

.jz-social-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jz-social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.jz-footer-bottom {
  max-width: var(--jz-max);
  margin: 0 auto;
  padding: 30px 24px 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9a9ad;
}

.jz-footer-legal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px clamp(18px, 4vw, 48px);
  align-items: start;
}

.jz-footer-legal a,
.jz-footer-legal span {
  color: #b8b8bd;
  font-size: 16px;
  line-height: 1.45;
}

.jz-footer-legal a:hover,
.jz-footer-legal a:focus-visible {
  color: var(--jz-white);
}

.jz-footer-legal .jz-footer-designer {
  color: rgba(236, 199, 118, 0.82);
  font-size: 15px;
}

.jz-footer-legal .jz-footer-designer:hover,
.jz-footer-legal .jz-footer-designer:focus-visible {
  color: #ffd36f;
}

.jz-info-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 83% 10%, rgba(243, 9, 9, 0.34), transparent 28%),
    radial-gradient(circle at 12% 58%, rgba(101, 245, 255, 0.16), transparent 26%),
    #08080a;
  color: var(--jz-white);
}

.jz-info-hero {
  position: relative;
  display: grid;
  min-height: 680px;
  place-items: center;
  padding: 150px 24px 90px;
  overflow: hidden;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.38) 56%, rgba(128, 0, 0, 0.56)),
    var(--jz-info-hero-bg);
  background-position: center;
  background-size: cover;
}

.jz-info-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 68%, rgba(8, 8, 10, 0.96)),
    radial-gradient(circle at 76% 22%, rgba(243, 9, 9, 0.42), transparent 28%);
}

.jz-info-hero-inner {
  width: min(940px, 100%);
  margin-inline: auto;
  text-align: center;
}

.jz-info-kicker {
  margin: 0 0 18px;
  color: var(--jz-cyan);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(17px, 2vw, 25px);
  font-style: italic;
  letter-spacing: 0;
  text-transform: uppercase;
}

.jz-info-hero h1,
.jz-info-copy h2,
.jz-contact-panel h2,
.jz-price-card h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.jz-info-hero h1 {
  color: var(--jz-white);
  font-size: clamp(64px, 9.2vw, 132px);
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.6);
  transform: skew(-6deg);
}

.jz-info-hero p:not(.jz-info-kicker) {
  max-width: 760px;
  margin: 28px auto 0;
  color: #f4f4f5;
  font-size: clamp(19px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.64);
}

.jz-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}

.jz-info-section {
  width: min(var(--jz-max), calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

.jz-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.jz-info-copy {
  max-width: 720px;
}

.jz-info-copy-wide {
  max-width: 900px;
}

.jz-info-copy h2 {
  color: var(--jz-white);
  font-size: clamp(44px, 6.4vw, 88px);
}

.jz-info-copy p:not(.jz-info-kicker) {
  margin: 26px 0 0;
  color: #dedee2;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.42;
}

.jz-contact-panel {
  padding: clamp(26px, 4vw, 40px);
  border-top: 6px solid var(--jz-red);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(12, 12, 14, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.jz-contact-panel h2 {
  color: var(--jz-white);
  font-size: clamp(34px, 4.4vw, 56px);
}

.jz-contact-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.jz-contact-list li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.jz-contact-list span {
  color: var(--jz-cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.jz-contact-list a,
.jz-contact-list strong {
  color: var(--jz-white);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.jz-about-page .jz-info-section {
  width: min(1100px, calc(100% - 48px));
}

.jz-about-hero {
  background-position: center 48%;
}

.jz-about-hero .jz-info-hero-inner {
  width: min(980px, 100%);
}

.jz-about-hero h1 {
  width: min(900px, 100%);
  margin-inline: auto;
  font-size: clamp(58px, 8.5vw, 118px);
}

.jz-about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: stretch;
}

.jz-about-grid .jz-info-copy {
  max-width: none;
  align-self: center;
}

.jz-about-grid .jz-info-copy h2 {
  max-width: 720px;
  font-size: clamp(42px, 5.6vw, 76px);
}

.jz-about-grid .jz-info-copy p:not(.jz-info-kicker) {
  max-width: 680px;
}

.jz-about-grid .jz-contact-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.jz-info-section-map {
  padding-top: 0;
}

.jz-about-map-copy {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.jz-about-map-copy h2 {
  max-width: 880px;
  margin-inline: auto;
  font-size: clamp(42px, 5.8vw, 78px);
}

.jz-map-frame {
  height: clamp(360px, 50vw, 560px);
  margin-top: 34px;
  border: 8px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.42);
}

.jz-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.jz-map-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--jz-white);
  font-weight: 900;
  text-decoration-color: var(--jz-red);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.jz-price-grid,
.jz-salas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.jz-price-card,
.jz-sala-card {
  min-height: 260px;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #111113;
}

.jz-price-card-featured {
  border-color: rgba(243, 9, 9, 0.8);
  background:
    linear-gradient(150deg, rgba(243, 9, 9, 0.4), rgba(20, 20, 22, 0.96)),
    #111113;
}

.jz-price-card span,
.jz-sala-card span {
  display: inline-flex;
  color: var(--jz-cyan);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 19px;
  font-style: italic;
  text-transform: uppercase;
}

.jz-price-card h2 {
  margin-top: 18px;
  color: var(--jz-white);
  font-size: clamp(34px, 4.6vw, 58px);
}

.jz-price-card p,
.jz-sala-card p {
  color: #dddddf;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.jz-price-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  text-decoration-color: var(--jz-red);
  text-decoration-thickness: 3px;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.jz-price-page {
  overflow: hidden;
}

.jz-price-banner {
  width: 100%;
  height: clamp(150px, 24vw, 310px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  background: #08080a;
}

.jz-price-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jz-price-plans-section {
  scroll-margin-top: 96px;
}

.jz-price-section-heading {
  max-width: 900px;
  margin: 0 auto clamp(38px, 6vw, 64px);
  text-align: center;
}

.jz-price-section-heading h2,
.jz-group-rate h2,
.jz-birthday-rate h2,
.jz-price-important h2,
.jz-price-poster-copy h2,
.jz-price-safety-heading h2 {
  margin: 0;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.jz-price-section-heading h2 {
  font-size: clamp(46px, 6.4vw, 86px);
}

.jz-price-section-heading > p:last-child,
.jz-price-poster-copy > p:last-child,
.jz-price-safety-heading > p:last-child {
  color: #d8d8dc;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.45;
}

.jz-price-primary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.jz-price-plan {
  min-height: 380px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 7px solid #f0c900;
  background:
    radial-gradient(circle at 84% 2%, rgba(240, 201, 0, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(34, 34, 37, 0.98), rgba(12, 12, 14, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.jz-price-plan-special {
  border-top-color: var(--jz-red);
  background:
    radial-gradient(circle at 84% 2%, rgba(243, 9, 9, 0.32), transparent 34%),
    linear-gradient(145deg, rgba(55, 4, 7, 0.98), rgba(12, 12, 14, 0.98));
}

.jz-price-plan-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.jz-price-label {
  display: inline-flex;
  padding: 8px 12px;
  background: #f0c900;
  color: #111113;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.jz-price-plan-special .jz-price-label {
  background: var(--jz-red);
  color: #ffffff;
}

.jz-price-amount {
  flex: 0 0 auto;
  color: #ffd000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(72px, 9vw, 118px);
  font-style: italic;
  line-height: 0.72;
}

.jz-price-amount small {
  font-size: 0.42em;
}

.jz-price-plan h3 {
  margin: 38px 0 8px;
  color: #ffffff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-style: italic;
  line-height: 0.94;
  text-transform: uppercase;
}

.jz-price-plan .jz-price-duration {
  margin: 0 0 22px;
  color: #ff6a32;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 24px;
  font-style: italic;
  text-transform: uppercase;
}

.jz-price-plan > p:last-child {
  margin-bottom: 0;
  color: #dedee1;
  font-weight: 700;
  line-height: 1.45;
}

.jz-group-rate {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(243, 9, 9, 0.36), transparent 48%),
    #111113;
}

.jz-group-rate h2 {
  font-size: clamp(38px, 5vw, 66px);
}

.jz-group-rate-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.16);
}

.jz-group-rate-list > div {
  min-width: 0;
  padding: 22px 16px;
  background: #171719;
  text-align: center;
}

.jz-group-rate-list dt {
  min-height: 38px;
  color: #d7d7da;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.jz-group-rate-list dd {
  margin: 10px 0 0;
  color: #ffd000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(38px, 4.6vw, 58px);
  font-style: italic;
  line-height: 1;
}

.jz-group-rate-list small {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.jz-text-link {
  display: inline-flex;
  margin-top: 22px;
  color: #ffffff;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  font-style: italic;
  text-decoration-color: var(--jz-red);
  text-decoration-thickness: 3px;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.jz-birthday-rate {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  margin-top: 22px;
  border: 1px solid rgba(243, 9, 9, 0.62);
  background:
    radial-gradient(circle at 80% 14%, rgba(243, 9, 9, 0.26), transparent 30%),
    #0f0f11;
}

.jz-birthday-rate-main,
.jz-birthday-includes {
  padding: clamp(28px, 5vw, 54px);
}

.jz-birthday-rate-main {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.jz-birthday-rate h2 {
  font-size: clamp(46px, 6.4vw, 84px);
}

.jz-birthday-rate-main > p:not(.jz-info-kicker) {
  max-width: 680px;
  color: #dedee1;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.jz-birthday-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.jz-birthday-prices > div {
  padding: 18px;
  border-left: 5px solid var(--jz-red);
  background: rgba(255, 255, 255, 0.06);
}

.jz-birthday-prices span,
.jz-birthday-prices small {
  display: block;
  color: #d8d8dc;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.jz-birthday-prices strong {
  display: block;
  margin: 8px 0 4px;
  color: #ffd000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(44px, 5vw, 62px);
  font-style: italic;
  line-height: 1;
}

.jz-birthday-includes h3 {
  margin: 0 0 22px;
  color: #ffd000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.jz-birthday-includes ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jz-birthday-includes li {
  position: relative;
  padding-left: 26px;
  color: #ffffff;
  font-weight: 800;
}

.jz-birthday-includes li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: #ff6a32;
  content: "\2713";
  font-weight: 900;
}

.jz-birthday-includes p {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #dedee1;
  line-height: 1.45;
}

.jz-birthday-includes p strong {
  color: #ffd000;
}

.jz-price-important {
  margin-top: 22px;
  padding: clamp(26px, 4vw, 40px);
  border: 2px solid #ffd000;
  background: #211b00;
}

.jz-price-important h2 {
  color: #ffd000;
  font-size: clamp(34px, 4.4vw, 54px);
}

.jz-price-important ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.jz-price-important li {
  padding-left: 18px;
  border-left: 4px solid #ffd000;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.4;
}

.jz-price-poster-section,
.jz-price-safety-section {
  width: min(var(--jz-max), calc(100% - 48px));
  margin-inline: auto;
  padding: clamp(64px, 8vw, 112px) 0;
}

.jz-price-poster-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(420px, 1.3fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.jz-price-poster-copy {
  position: sticky;
  top: 120px;
}

.jz-price-poster-copy h2,
.jz-price-safety-heading h2 {
  font-size: clamp(46px, 6vw, 80px);
}

.jz-poster-button,
.jz-safety-poster-button {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #111113;
  cursor: zoom-in;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.jz-poster-button {
  max-width: 720px;
  justify-self: end;
}

.jz-poster-button img,
.jz-safety-poster-button img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.jz-poster-button:hover img,
.jz-poster-button:focus-visible img,
.jz-safety-poster-button:hover img,
.jz-safety-poster-button:focus-visible img {
  transform: scale(1.012);
}

.jz-poster-button:focus-visible,
.jz-safety-poster-button:focus-visible {
  outline: 3px solid #ffd000;
  outline-offset: 5px;
}

.jz-price-safety-section {
  padding-top: 0;
}

.jz-price-safety-heading {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}

.jz-price-safety-media {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.jz-safety-poster-button img,
.jz-price-welcome-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jz-price-welcome-art {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.jz-price-banner-bottom {
  margin-top: clamp(10px, 3vw, 36px);
}

.jz-salas-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(34px, 5vw, 56px);
}

.jz-salas-page .jz-info-section {
  padding-top: clamp(58px, 7vw, 94px);
}

.jz-salas-hero {
  background-position: center 38%;
}

.jz-salas-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.jz-salas-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.jz-salas-steps article {
  min-height: 188px;
  padding: 22px;
  border-top: 5px solid var(--jz-red);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(18, 18, 20, 0.92);
}

.jz-salas-steps span {
  display: block;
  color: rgba(255, 255, 255, 0.24);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 44px;
  font-style: italic;
  line-height: 0.9;
}

.jz-salas-steps strong {
  display: block;
  margin-top: 18px;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.jz-salas-steps p {
  margin: 12px 0 0;
  color: #d6d6da;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.jz-sala-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, #171719, #0b0b0d);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.jz-sala-card::before {
  position: absolute;
  right: -18px;
  top: -12px;
  content: "JZ";
  color: rgba(243, 9, 9, 0.12);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 110px;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.jz-sala-card:hover,
.jz-sala-card:focus-within {
  border-color: rgba(243, 9, 9, 0.72);
  background:
    linear-gradient(155deg, rgba(243, 9, 9, 0.2), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, #19191c, #0b0b0d);
  transform: translateY(-6px);
}

.jz-sala-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.jz-sala-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 22px;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(25px, 2.8vw, 34px);
  font-style: italic;
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.jz-sala-card em {
  color: #f2f2f3;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.jz-sala-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.jz-sala-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #dddddf;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
}

.jz-sala-card li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  content: "";
  background: var(--jz-red);
  transform: skew(-8deg);
}

.jz-sala-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 24px;
  color: var(--jz-white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 16px;
  font-style: italic;
  text-decoration-color: var(--jz-red);
  text-decoration-thickness: 3px;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.jz-generic-page {
  min-height: 70vh;
  padding: 150px 24px 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(243, 9, 9, 0.34), transparent 26%),
    #101012;
}

.jz-content-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
  background: #fff;
  color: #111;
}

.jz-content-card h1 {
  margin-top: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(42px, 7vw, 82px);
  font-style: italic;
  line-height: 0.95;
  text-transform: uppercase;
}

.jz-entry-content {
  font-size: 18px;
}

.jz-entry-content h2,
.jz-entry-content h3 {
  margin: 34px 0 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
}

.jz-entry-content h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.jz-entry-content h3 {
  font-size: clamp(22px, 3vw, 30px);
}

.jz-entry-content p,
.jz-entry-content li {
  color: #202024;
  line-height: 1.7;
}

.jz-entry-content ul,
.jz-entry-content ol {
  padding-left: 1.25em;
}

.jz-entry-content a {
  color: var(--jz-red);
  font-weight: 800;
}

@media (max-width: 900px) {
  .admin-bar .jz-header,
  .admin-bar .jz-drawer {
    top: 46px;
  }

  .jz-top-button {
    min-width: 96px;
    height: 70px;
    gap: 7px;
    font-size: 14px;
  }

  .jz-top-button[data-panel-open="menu"] span:last-child {
    display: none;
  }

  .jz-top-icon {
    font-size: 22px;
  }

  .jz-burger {
    width: 27px;
  }

  .jz-burger span {
    height: 4px;
  }

  .jz-logo {
    width: 108px;
    margin: 16px 0 0 16px;
  }

  .jz-activity-grid,
  .jz-photo-story,
  .jz-party,
  .jz-salas-intro,
  .jz-footer-inner {
    grid-template-columns: 1fr;
  }

  .jz-party-copy,
  .jz-party-media {
    min-height: auto;
  }

  .jz-party-copy {
    clip-path: none;
    padding-right: 28px;
  }

  .jz-party-media {
    min-height: 380px;
  }

  .jz-photo-story {
    min-height: auto;
    padding: 76px 24px 90px;
  }

  .jz-photo-story h2 {
    font-size: clamp(50px, 10vw, 84px);
  }

  .jz-photo-stack {
    min-height: 480px;
    margin-top: 10px;
  }

  .jz-salas-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jz-footer-logo {
    justify-self: start;
  }

  .jz-footer-bottom {
    padding-top: 26px;
  }

  .jz-footer-legal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .jz-info-grid,
  .jz-about-grid,
  .jz-price-grid,
  .jz-salas-grid {
    grid-template-columns: 1fr;
  }

  .jz-about-grid .jz-contact-panel {
    min-height: auto;
  }

  .jz-info-hero {
    min-height: 620px;
    padding-top: 128px;
  }

  .jz-info-hero h1 {
    width: min(430px, calc(100vw + 20px));
    margin-inline: auto;
    font-size: clamp(46px, 13.4vw, 64px);
    overflow-wrap: normal;
    transform: skew(-6deg) scaleX(0.82);
    transform-origin: center;
  }

  .jz-price-hero h1,
  .jz-salas-hero h1 {
    width: min(390px, calc(100vw - 36px));
    text-align: center;
    transform: skew(-6deg) scaleX(0.9);
    transform-origin: center center;
  }

  .jz-info-section {
    width: min(100% - 32px, var(--jz-max));
  }

  .jz-about-page .jz-info-section {
    width: min(100% - 32px, 1100px);
  }

  .jz-price-primary-grid,
  .jz-group-rate,
  .jz-birthday-rate,
  .jz-price-poster-section,
  .jz-price-safety-media {
    grid-template-columns: 1fr;
  }

  .jz-group-rate-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jz-birthday-rate-main {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .jz-price-important ul {
    grid-template-columns: 1fr;
  }

  .jz-price-poster-section,
  .jz-price-safety-section {
    width: min(100% - 32px, var(--jz-max));
  }

  .jz-price-poster-copy {
    position: static;
    max-width: 760px;
    text-align: center;
  }

  .jz-poster-button {
    max-width: 680px;
    justify-self: center;
  }

  .jz-price-welcome-art {
    max-height: 560px;
  }
}

@media (max-width: 640px) {
  .jz-header-actions {
    position: fixed;
    top: 0;
    right: 0;
    width: 164px;
    margin-left: 0;
    justify-content: flex-end;
  }

  .jz-top-button {
    flex: 0 0 82px;
    min-width: 82px;
    height: 62px;
    padding: 0 12px;
  }

  .jz-top-button-park {
    order: 2;
  }

  .jz-top-button:not(.jz-top-button-park) {
    order: 1;
  }

  .jz-price-banner {
    height: 128px;
  }

  .jz-price-banner img {
    object-position: center;
  }

  .jz-price-section-heading h2,
  .jz-group-rate h2,
  .jz-birthday-rate h2,
  .jz-price-poster-copy h2,
  .jz-price-safety-heading h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .jz-price-primary-grid {
    gap: 14px;
  }

  .jz-price-plan {
    min-height: 0;
    padding: 24px 20px;
  }

  .jz-price-plan-top {
    gap: 12px;
  }

  .jz-price-label {
    max-width: 138px;
    font-size: 15px;
    line-height: 1.05;
    text-align: center;
  }

  .jz-price-amount {
    font-size: 68px;
  }

  .jz-price-plan h3 {
    margin-top: 30px;
    font-size: 38px;
  }

  .jz-price-plan .jz-price-duration {
    font-size: 20px;
  }

  .jz-group-rate,
  .jz-birthday-rate-main,
  .jz-birthday-includes,
  .jz-price-important {
    padding: 24px 20px;
  }

  .jz-group-rate-list {
    grid-template-columns: 1fr;
  }

  .jz-group-rate-list dt {
    min-height: 0;
  }

  .jz-birthday-prices {
    gap: 8px;
  }

  .jz-birthday-prices > div {
    padding: 14px 12px;
  }

  .jz-birthday-prices strong {
    font-size: 42px;
  }

  .jz-price-poster-section,
  .jz-price-safety-section {
    width: min(100% - 24px, var(--jz-max));
  }

  .jz-price-poster-section {
    gap: 26px;
  }

  .jz-price-safety-heading {
    margin-bottom: 24px;
  }

  .jz-price-welcome-art {
    max-height: 390px;
  }

  .jz-top-button span:last-child {
    display: none;
  }

  .jz-logo {
    width: 92px;
  }

  .jz-hero {
    min-height: 760px;
    padding-inline: 10px;
  }

  .jz-hero-content {
    width: 100%;
    transform: translateY(-28px);
  }

  .jz-hero h1 {
    width: min(430px, calc(100vw - 12px));
    margin-inline: auto;
    font-size: clamp(62px, 17vw, 72px);
    font-weight: 900;
    line-height: 0.84;
    transform: skew(-6deg) scaleX(0.92);
    transform-origin: center;
  }

  .jz-hero h1 span {
    white-space: nowrap;
  }

  .jz-hero-kicker {
    min-height: 30px;
    margin-bottom: 14px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .jz-hero-lead {
    max-width: 310px;
    margin-top: 18px;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .jz-hero-tags {
    max-width: 330px;
    gap: 7px;
    margin-bottom: 28px;
  }

  .jz-hero-tags li {
    padding: 8px 10px;
    font-size: 11px;
  }

  .jz-info-hero p:not(.jz-info-kicker) {
    max-width: min(318px, calc(100vw - 54px));
    font-size: 18px;
  }

  .jz-price-hero h1,
  .jz-salas-hero h1 {
    width: min(344px, calc(100vw - 42px));
    font-size: clamp(43px, 12vw, 56px);
    line-height: 0.9;
    transform: skew(-6deg) scaleX(0.94);
  }

  .jz-about-hero h1 {
    width: min(360px, calc(100vw - 28px));
    font-size: clamp(46px, 13vw, 58px);
    transform: skew(-6deg) scaleX(0.92);
  }

  .jz-about-grid .jz-info-copy h2,
  .jz-about-map-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .jz-contact-panel {
    padding: 24px 20px;
  }

  .jz-photo-story {
    padding: 66px 16px 74px;
  }

  .jz-photo-story h2 {
    width: min(430px, calc(100vw + 20px));
    font-size: clamp(46px, 13.4vw, 62px);
    transform: skew(-7deg) scaleX(0.86);
    transform-origin: left center;
  }

  .jz-photo-story-points {
    max-width: 330px;
  }

  .jz-photo-story-points li {
    padding: 11px 13px;
    font-size: 16px;
  }

  .jz-photo-stack {
    min-height: 390px;
  }

  .jz-photo-stack-main {
    top: 8px;
    left: 0;
    right: auto;
    width: 100%;
    height: 240px;
  }

  .jz-photo-stack-small {
    width: 48%;
    height: 138px;
    border-width: 5px;
  }

  .jz-photo-stack-small-one {
    left: 0;
    bottom: 16px;
  }

  .jz-photo-stack-small-two {
    right: 0;
    bottom: 0;
  }

  .jz-info-actions {
    gap: 12px;
  }

  .jz-info-actions .jz-button {
    min-width: 132px;
    padding-inline: 16px;
  }

  .jz-salas-steps {
    grid-template-columns: 1fr;
  }

  .jz-salas-steps article {
    min-height: 132px;
    padding: 18px;
  }

  .jz-sala-card {
    min-height: 270px;
  }

  .jz-light-ring-two {
    right: -18vw;
  }

  .jz-activity-card {
    padding: 20px;
  }

  .jz-activity-card:hover,
  .jz-activity-card:focus-visible,
  .jz-activity-card.is-active {
    transform: translateX(0);
  }

  .jz-section-heading h2,
  .jz-party h2 {
    overflow-wrap: anywhere;
  }

  .jz-section-heading h2 {
    font-size: 40px;
  }

  .jz-bookly-shell {
    padding: 14px 10px;
  }

  .jz-reservas-panel {
    padding-right: 10px;
    padding-left: 10px;
  }

  .jz-reservas-page .bookly-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px !important;
    overflow-x: hidden !important;
  }

  .jz-reservas-page .bookly-form,
  .jz-reservas-page .bookly-form * {
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .jz-reservas-page .bookly-form *,
  .jz-reservas-page .bookly-form .bookly-box,
  .jz-reservas-page .bookly-form .bookly-row,
  .jz-reservas-page .bookly-form .bookly-js-chain-item {
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .jz-reservas-page .bookly-form input,
  .jz-reservas-page .bookly-form select,
  .jz-reservas-page .bookly-form textarea {
    width: 100% !important;
    min-height: 46px;
  }

  .jz-reservas-page .bookly-progress-tracker,
  .jz-reservas-page .bookly-stepper {
    font-size: 12px !important;
    line-height: 1.2 !important;
  }

  .jz-reservas-page .bookly-form .bookly-nav-steps {
    display: grid !important;
    gap: 10px;
    justify-content: stretch !important;
  }

  .jz-reservas-page .bookly-form .bookly-columnizer-wrap {
    padding: 12px !important;
    overflow-x: hidden !important;
  }

  .jz-reservas-page .bookly-form .bookly-columnizer {
    white-space: normal !important;
  }

  .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100% !important;
  }

  .jz-reservas-page .bookly-form .bookly-columnizer .bookly-column {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 !important;
  }

  .jz-reservas-page .bookly-form .bookly-columnizer .bookly-day,
  .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour {
    height: auto;
    min-height: 44px;
    padding: 10px 8px;
  }

  .jz-reservas-page .bookly-form .bookly-btn,
  .jz-reservas-page .bookly-form .bookly-next-step,
  .jz-reservas-page .bookly-form .bookly-js-next-step {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    float: none !important;
    justify-content: center !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .jz-floating-wa-mini {
    right: 14px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .jz-back-to-top {
    right: 16px;
    bottom: 78px;
    width: 40px;
    height: 40px;
  }

  .jz-image-modal {
    padding: 14px;
  }

  .jz-image-modal__close {
    top: -10px;
    right: -10px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .jz-footer-legal {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jz-party-media img {
    animation: none;
  }
}

/* WooCommerce cart polish for reservations. */
body.woocommerce-cart,
body.page-id-8243 {
  background:
    radial-gradient(circle at 82% 12%, rgba(243, 9, 9, 0.22), transparent 25%),
    linear-gradient(145deg, #070707 0%, #1a0101 52%, #0b0b0d 100%);
}

body.woocommerce-cart .entry-content,
body.page-id-8243 .entry-content {
  color: #ffffff;
}

body.woocommerce-cart .jz-cart-intro,
body.page-id-8243 .jz-cart-intro {
  width: min(1120px, calc(100vw - 36px));
  margin: 54px auto 24px;
  padding: 0;
}

body.woocommerce-cart .jz-cart-intro h1,
body.page-id-8243 .jz-cart-intro h1 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

body.woocommerce-cart .jz-cart-intro p,
body.page-id-8243 .jz-cart-intro p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  font-weight: 700;
}

body.woocommerce-cart .wc-block-cart,
body.page-id-8243 .wc-block-cart,
body.woocommerce-cart .wp-block-woocommerce-cart,
body.page-id-8243 .wp-block-woocommerce-cart {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto 78px;
}

body.woocommerce-cart .wc-block-components-sidebar-layout,
body.page-id-8243 .wc-block-components-sidebar-layout {
  gap: 24px;
}

body.woocommerce-cart .wc-block-cart__main,
body.page-id-8243 .wc-block-cart__main,
body.woocommerce-cart .wc-block-components-sidebar,
body.page-id-8243 .wc-block-components-sidebar,
body.woocommerce-cart .wc-block-cart__empty-cart__title,
body.page-id-8243 .wc-block-cart__empty-cart__title {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 6px solid #f30909;
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 9, 9, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(35, 24, 27, 0.98), rgba(12, 12, 14, 0.98));
  color: #ffffff;
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42);
}

body.woocommerce-cart .wc-block-cart__main,
body.page-id-8243 .wc-block-cart__main,
body.woocommerce-cart .wc-block-components-sidebar,
body.page-id-8243 .wc-block-components-sidebar {
  padding: clamp(18px, 3vw, 28px);
}

body.woocommerce-cart .wc-block-components-product-image,
body.page-id-8243 .wc-block-components-product-image,
body.woocommerce-cart .wc-block-cart-item__image,
body.page-id-8243 .wc-block-cart-item__image,
body.woocommerce-cart .product-thumbnail,
body.page-id-8243 .product-thumbnail,
body.woocommerce-cart .wp-block-woocommerce-product-collection,
body.page-id-8243 .wp-block-woocommerce-product-collection {
  display: none !important;
}

body.woocommerce-cart .wc-block-cart-item__wrap,
body.page-id-8243 .wc-block-cart-item__wrap {
  padding-left: 0 !important;
}

body.woocommerce-cart .wc-block-cart-item__product,
body.page-id-8243 .wc-block-cart-item__product {
  padding-left: 0 !important;
}

body.woocommerce-cart .wc-block-components-product-name,
body.page-id-8243 .wc-block-components-product-name,
body.woocommerce-cart .wc-block-components-order-summary-item__description,
body.page-id-8243 .wc-block-components-order-summary-item__description {
  color: #ffffff !important;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-product-metadata,
body.page-id-8243 .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-details,
body.page-id-8243 .wc-block-components-product-details {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

body.woocommerce-cart .wc-block-cart-item__product,
body.page-id-8243 .wc-block-cart-item__product,
body.woocommerce-cart .wc-block-components-product-metadata,
body.page-id-8243 .wc-block-components-product-metadata,
body.woocommerce-cart .wc-block-components-product-details,
body.page-id-8243 .wc-block-components-product-details {
  width: 100%;
  max-width: none;
}

body.woocommerce-cart .wc-block-components-product-details,
body.page-id-8243 .wc-block-components-product-details {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

body.woocommerce-cart .wc-block-components-product-details li,
body.page-id-8243 .wc-block-components-product-details li {
  display: grid;
  grid-template-columns: minmax(112px, 150px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
}

body.woocommerce-cart .wc-block-components-product-details__name,
body.page-id-8243 .wc-block-components-product-details__name {
  color: #ff6a32;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-product-details__value,
body.page-id-8243 .wc-block-components-product-details__value {
  color: #ffffff;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.woocommerce-cart table.shop_table.cart,
body.page-id-8243 table.shop_table.cart {
  table-layout: auto;
}

body.woocommerce-cart table.shop_table.cart td.product-name,
body.page-id-8243 table.shop_table.cart td.product-name {
  width: 72%;
  min-width: 420px;
}

body.woocommerce-cart table.shop_table.cart td.product-subtotal,
body.page-id-8243 table.shop_table.cart td.product-subtotal,
body.woocommerce-cart table.shop_table.cart th.product-subtotal,
body.page-id-8243 table.shop_table.cart th.product-subtotal {
  width: 22%;
  text-align: right;
}

body.woocommerce-cart table.shop_table.cart td.product-name .variation,
body.page-id-8243 table.shop_table.cart td.product-name .variation,
body.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta,
body.page-id-8243 table.shop_table.cart td.product-name .wc-item-meta {
  display: block;
  width: min(100%, 620px);
  max-width: 620px;
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  line-height: 1.58;
}

body.woocommerce-cart table.shop_table.cart td.product-name .variation dt,
body.page-id-8243 table.shop_table.cart td.product-name .variation dt,
body.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta-label,
body.page-id-8243 table.shop_table.cart td.product-name .wc-item-meta-label {
  float: none;
  display: block;
  width: auto;
  margin: 0 0 8px;
  color: #ff6a32;
  font-weight: 900;
}

body.woocommerce-cart table.shop_table.cart td.product-name .variation dd,
body.page-id-8243 table.shop_table.cart td.product-name .variation dd,
body.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta li,
body.page-id-8243 table.shop_table.cart td.product-name .wc-item-meta li {
  float: none;
  display: block;
  margin: 0;
  color: #ffffff;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.woocommerce-cart table.shop_table.cart td.product-name .variation dd p,
body.page-id-8243 table.shop_table.cart td.product-name .variation dd p,
body.woocommerce-cart table.shop_table.cart td.product-name .wc-item-meta li p,
body.page-id-8243 table.shop_table.cart td.product-name .wc-item-meta li p {
  margin: 0;
  white-space: pre-line;
}

body.woocommerce-cart .wc-block-components-quantity-selector,
body.page-id-8243 .wc-block-components-quantity-selector {
  display: none !important;
}

body.woocommerce-cart .wc-block-components-totals-wrapper,
body.page-id-8243 .wc-block-components-totals-wrapper,
body.woocommerce-cart .wc-block-components-totals-item,
body.page-id-8243 .wc-block-components-totals-item,
body.woocommerce-cart .wc-block-cart-items,
body.page-id-8243 .wc-block-cart-items,
body.woocommerce-cart .wc-block-cart-items th,
body.page-id-8243 .wc-block-cart-items th,
body.woocommerce-cart .wc-block-cart-items td,
body.page-id-8243 .wc-block-cart-items td {
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}

body.woocommerce-cart .wc-block-components-totals-item__label,
body.page-id-8243 .wc-block-components-totals-item__label,
body.woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.page-id-8243 .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-totals-item__value,
body.page-id-8243 .wc-block-components-totals-item__value,
body.woocommerce-cart .wc-block-components-formatted-money-amount,
body.page-id-8243 .wc-block-components-formatted-money-amount {
  color: #ffd166 !important;
  font-weight: 900;
}

body.woocommerce-cart .wc-block-components-button,
body.page-id-8243 .wc-block-components-button,
body.woocommerce-cart .wc-block-cart__submit-button,
body.page-id-8243 .wc-block-cart__submit-button,
body.woocommerce-cart .jz-cart-reserve-button .wp-block-button__link,
body.page-id-8243 .jz-cart-reserve-button .wp-block-button__link {
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(135deg, #ff1717, #b90000) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(243, 9, 9, 0.28);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

body.woocommerce-cart .wc-block-components-button:hover,
body.page-id-8243 .wc-block-components-button:hover,
body.woocommerce-cart .jz-cart-reserve-button .wp-block-button__link:hover,
body.page-id-8243 .jz-cart-reserve-button .wp-block-button__link:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

body.woocommerce-cart .wc-block-components-text-input input,
body.page-id-8243 .wc-block-components-text-input input {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: #ffffff !important;
  color: #111113 !important;
}

body.woocommerce-cart .wc-block-components-order-summary .wc-block-components-order-summary-item,
body.page-id-8243 .wc-block-components-order-summary .wc-block-components-order-summary-item {
  border-color: rgba(255, 255, 255, 0.14) !important;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title,
body.page-id-8243 .wc-block-cart__empty-cart__title {
  width: min(760px, calc(100vw - 36px));
  margin: 54px auto 18px !important;
  padding: 34px 22px;
  font-size: clamp(28px, 4vw, 44px);
}

@media (max-width: 780px) {
  body.woocommerce-cart .jz-generic-page,
  body.page-id-8243 .jz-generic-page {
    padding: 116px 10px 68px;
    overflow-x: hidden;
  }

  body.woocommerce-cart .jz-content-card,
  body.page-id-8243 .jz-content-card {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    color: #ffffff;
  }

  body.woocommerce-cart .jz-content-card > h1,
  body.page-id-8243 .jz-content-card > h1 {
    display: none;
  }

  body.woocommerce-cart .jz-entry-content,
  body.page-id-8243 .jz-entry-content {
    font-size: 16px;
  }

  body.woocommerce-cart .jz-cart-intro,
  body.page-id-8243 .jz-cart-intro {
    width: min(100%, 430px);
    margin: 18px auto 18px;
    padding: 0 2px;
    text-align: center;
  }

  body.woocommerce-cart .jz-cart-intro h1,
  body.page-id-8243 .jz-cart-intro h1 {
    margin-bottom: 10px;
    font-size: clamp(34px, 12vw, 48px);
    line-height: 0.92;
  }

  body.woocommerce-cart .jz-cart-intro p,
  body.page-id-8243 .jz-cart-intro p {
    max-width: 360px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.45;
  }

  body.woocommerce-cart .wc-block-cart,
  body.page-id-8243 .wc-block-cart,
  body.woocommerce-cart .wp-block-woocommerce-cart,
  body.page-id-8243 .wp-block-woocommerce-cart {
    width: min(100%, 430px) !important;
    max-width: 430px;
    margin: 0 auto 54px;
    box-sizing: border-box;
    overflow: visible;
  }

  body.woocommerce-cart .wc-block-components-sidebar-layout,
  body.page-id-8243 .wc-block-components-sidebar-layout {
    display: grid !important;
    width: 100% !important;
    margin: 0 auto !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main,
  body.page-id-8243 .wc-block-components-sidebar-layout .wc-block-components-main,
  body.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-sidebar,
  body.page-id-8243 .wc-block-components-sidebar-layout .wc-block-components-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    box-sizing: border-box;
  }

  body.woocommerce-cart .wc-block-components-sidebar,
  body.page-id-8243 .wc-block-components-sidebar {
    position: static !important;
  }

  body.woocommerce-cart .wc-block-cart__main,
  body.page-id-8243 .wc-block-cart__main,
  body.woocommerce-cart .wc-block-components-sidebar,
  body.page-id-8243 .wc-block-components-sidebar {
    width: 100% !important;
    padding: 14px !important;
    border-top-width: 5px;
  }

  body.woocommerce-cart .wc-block-cart-items,
  body.page-id-8243 .wc-block-cart-items,
  body.woocommerce-cart .wc-block-cart-items tbody,
  body.page-id-8243 .wc-block-cart-items tbody {
    display: block;
    width: 100% !important;
    margin: 0;
    border: 0 !important;
  }

  body.woocommerce-cart .wc-block-cart-items thead,
  body.page-id-8243 .wc-block-cart-items thead {
    display: none !important;
  }

  body.woocommerce-cart .wc-block-cart-items tr,
  body.page-id-8243 .wc-block-cart-items tr {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    box-sizing: border-box;
  }

  body.woocommerce-cart .wc-block-cart-items td,
  body.page-id-8243 .wc-block-cart-items td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
    border: 0 !important;
    text-align: left !important;
    box-sizing: border-box;
  }

  body.woocommerce-cart .wc-block-cart-item__product,
  body.page-id-8243 .wc-block-cart-item__product,
  body.woocommerce-cart .wc-block-cart-item__wrap,
  body.page-id-8243 .wc-block-cart-item__wrap {
    display: block;
    width: 100% !important;
    max-width: 100%;
    padding: 0 !important;
  }

  body.woocommerce-cart .wc-block-components-product-name,
  body.page-id-8243 .wc-block-components-product-name {
    display: block;
    font-size: 18px;
    line-height: 1.08;
  }

  body.woocommerce-cart .wc-block-components-product-metadata,
  body.page-id-8243 .wc-block-components-product-metadata {
    font-size: 13px;
    line-height: 1.45;
  }

  body.woocommerce-cart .wc-block-components-product-details,
  body.page-id-8243 .wc-block-components-product-details {
    margin-top: 10px;
    padding: 12px;
    gap: 7px;
  }

  body.woocommerce-cart .wc-block-components-product-details li,
  body.page-id-8243 .wc-block-components-product-details li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.woocommerce-cart .wc-block-components-product-details__name,
  body.page-id-8243 .wc-block-components-product-details__name {
    font-size: 12px;
    line-height: 1.2;
    text-transform: uppercase;
  }

  body.woocommerce-cart .wc-block-components-product-details__value,
  body.page-id-8243 .wc-block-components-product-details__value {
    font-size: 13px;
    line-height: 1.45;
  }

  body.woocommerce-cart .wc-block-cart-item__total,
  body.page-id-8243 .wc-block-cart-item__total {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
    text-align: right !important;
  }

  body.woocommerce-cart .wc-block-cart-item__total::before,
  body.page-id-8243 .wc-block-cart-item__total::before {
    content: "Total";
    color: rgba(255, 255, 255, 0.78);
    font-weight: 900;
    text-transform: uppercase;
  }

  body.woocommerce-cart .wc-block-cart-item__remove-link,
  body.page-id-8243 .wc-block-cart-item__remove-link {
    margin-top: 10px;
    color: #ff6a32 !important;
    font-weight: 900;
  }

  body.woocommerce-cart .wc-block-components-sidebar .wc-block-components-totals-wrapper,
  body.page-id-8243 .wc-block-components-sidebar .wc-block-components-totals-wrapper {
    padding: 12px 0 !important;
  }

  body.woocommerce-cart .wc-block-components-totals-item,
  body.page-id-8243 .wc-block-components-totals-item {
    gap: 10px;
    align-items: flex-start;
  }

  body.woocommerce-cart .wc-block-components-totals-item__label,
  body.page-id-8243 .wc-block-components-totals-item__label {
    flex: 1 1 auto;
    min-width: 0;
  }

  body.woocommerce-cart .wc-block-components-totals-item__value,
  body.page-id-8243 .wc-block-components-totals-item__value {
    flex: 0 0 auto;
    text-align: right;
  }

  body.woocommerce-cart .wc-block-components-button,
  body.page-id-8243 .wc-block-components-button,
  body.woocommerce-cart .wc-block-cart__submit-button,
  body.page-id-8243 .wc-block-cart__submit-button,
  body.woocommerce-cart .jz-cart-reserve-button .wp-block-button__link,
  body.page-id-8243 .jz-cart-reserve-button .wp-block-button__link {
    display: flex !important;
    width: 100% !important;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
    font-size: 16px;
    line-height: 1.05;
    text-align: center;
  }

  body.woocommerce-cart .wp-block-woocommerce-proceed-to-checkout-block,
  body.page-id-8243 .wp-block-woocommerce-proceed-to-checkout-block {
    margin-top: 14px;
  }

  body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-heading-block,
  body.page-id-8243 .wp-block-woocommerce-cart-order-summary-heading-block {
    text-align: center;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block,
  body.page-id-8243 .wp-block-woocommerce-empty-cart-block {
    width: min(100%, 430px);
    margin: 0 auto;
    text-align: center;
  }

  body.woocommerce-cart .wc-block-cart__empty-cart__title,
  body.page-id-8243 .wc-block-cart__empty-cart__title {
    width: 100%;
    margin: 18px auto 14px !important;
    padding: 24px 12px;
    overflow: hidden;
    font-size: clamp(23px, 7.4vw, 30px);
    line-height: 1.05;
    box-sizing: border-box;
    text-wrap: balance;
  }

  body.woocommerce-cart .wp-block-woocommerce-empty-cart-block p,
  body.page-id-8243 .wp-block-woocommerce-empty-cart-block p {
    max-width: 330px;
    margin: 0 auto 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
  }

  body.woocommerce-cart .wp-block-buttons,
  body.page-id-8243 .wp-block-buttons,
  body.woocommerce-cart .wp-block-button,
  body.page-id-8243 .wp-block-button {
    width: 100%;
  }

  body.woocommerce-cart table.shop_table.cart td.product-name,
  body.page-id-8243 table.shop_table.cart td.product-name {
    min-width: 0;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table.cart,
  body.page-id-8243 table.shop_table.cart,
  body.woocommerce-cart table.shop_table.cart tbody,
  body.page-id-8243 table.shop_table.cart tbody,
  body.woocommerce-cart table.shop_table.cart tr,
  body.page-id-8243 table.shop_table.cart tr,
  body.woocommerce-cart table.shop_table.cart td,
  body.page-id-8243 table.shop_table.cart td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  body.woocommerce-cart table.shop_table.cart thead,
  body.page-id-8243 table.shop_table.cart thead {
    display: none;
  }

  body.woocommerce-cart table.shop_table.cart tr,
  body.page-id-8243 table.shop_table.cart tr {
    margin-bottom: 12px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
  }

  body.woocommerce-cart table.shop_table.cart td,
  body.page-id-8243 table.shop_table.cart td {
    padding: 0 0 10px !important;
    text-align: left !important;
  }
}

@media (max-width: 420px) {
  body.woocommerce-cart .jz-generic-page,
  body.page-id-8243 .jz-generic-page {
    padding-right: 8px;
    padding-left: 8px;
  }

  body.woocommerce-cart .wc-block-cart,
  body.page-id-8243 .wc-block-cart,
  body.woocommerce-cart .wp-block-woocommerce-cart,
  body.page-id-8243 .wp-block-woocommerce-cart,
  body.woocommerce-cart .jz-cart-intro,
  body.page-id-8243 .jz-cart-intro {
    width: min(100%, 390px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final scoped reservation contrast pass. */
html body .jz-reservas-page .bookly-form,
html body .jz-reservas-page .bookly-form .bookly-service-step,
html body .jz-reservas-page .bookly-form .bookly-extras-step,
html body .jz-reservas-page .bookly-form .bookly-extra-step,
html body .jz-reservas-page .bookly-form .bookly-js-extras,
html body .jz-reservas-page .bookly-form .bookly-extra,
html body .jz-reservas-page .bookly-form .bookly-extra-row,
html body .jz-reservas-page .bookly-form .bookly-extras-item,
html body .jz-reservas-page .bookly-form .bookly-time-step,
html body .jz-reservas-page .bookly-form .bookly-details-step,
html body .jz-reservas-page .bookly-form .bookly-cart-step,
html body .jz-reservas-page .bookly-form .bookly-box,
html body .jz-reservas-page .bookly-form .bookly-row,
html body .jz-reservas-page .bookly-form .bookly-js-chain-item,
html body .jz-reservas-page .bookly-form .bookly-columnizer-wrap,
html body .jz-reservas-page .bookly-form .bookly-columnizer,
html body .jz-reservas-page .bookly-form .bookly-columnizer > div,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen > div,
html body .jz-reservas-page .bookly-form .bookly-time-step > div:not(.bookly-nav-steps) {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background-color: #171113 !important;
  background-image:
    radial-gradient(circle at 18% 0%, rgba(243, 9, 9, 0.2), transparent 34%),
    linear-gradient(145deg, rgba(35, 24, 27, 0.98), rgba(12, 12, 14, 0.98)) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .jz-reservas-page .bookly-form .bookly-time-step .bookly-box,
html body .jz-reservas-page .bookly-form .bookly-time-step .bookly-row,
html body .jz-reservas-page .bookly-form .bookly-time-step .bookly-columnizer-wrap {
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.4) !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-step *,
html body .jz-reservas-page .bookly-form .bookly-extra-step *,
html body .jz-reservas-page .bookly-form .bookly-js-extras *,
html body .jz-reservas-page .bookly-form .bookly-extra *,
html body .jz-reservas-page .bookly-form .bookly-extra-row *,
html body .jz-reservas-page .bookly-form .bookly-extras-item * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.36);
}

html body .jz-reservas-page .bookly-form .bookly-extras-step .bookly-price,
html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-price,
html body .jz-reservas-page .bookly-form .bookly-js-extras [class*="price"],
html body .jz-reservas-page .bookly-form .bookly-extra [class*="price"],
html body .jz-reservas-page .bookly-form .bookly-extras-item [class*="price"] {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.38);
}

html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar > *,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar table,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar thead,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar tbody,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar tr,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar th,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar td,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar button,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker,
html body .jz-reservas-page .bookly-form .bookly-date-picker,
html body .jz-reservas-page .bookly-form .bookly-calendar {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background-color: #171113 !important;
  background-image: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar *,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar span,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar a,
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar button *,
html body .jz-reservas-page .bookly-form .bookly-calendar *,
html body .jz-reservas-page .bookly-form .bookly-date-picker * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [aria-disabled="true"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="disabled"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="outside"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="empty"] {
  color: rgba(255, 255, 255, 0.55) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55) !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [aria-selected="true"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="selected"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar [class*="active"],
html body .jz-reservas-page .bookly-form .bookly-js-datepicker-calendar button:hover,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-day,
html body .jz-reservas-page .bookly-form .bookly-schedule-date {
  border-color: #ff5b35 !important;
  background-color: #ff5b35 !important;
  background-image: linear-gradient(135deg, #ff673b, #f30909) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour,
html body .jz-reservas-page .bookly-form .bookly-columnizer button.bookly-hour,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour > *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour span {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  background-image: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-additional {
  display: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:focus,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.bookly-hour-active,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.bookly-hour-selected,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[class*="active"],
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[class*="selected"],
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[aria-selected="true"],
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[aria-pressed="true"] {
  border-color: #ff5b35 !important;
  background-color: rgba(255, 91, 53, 0.24) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:hover *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:focus *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour:active *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.bookly-hour-active *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.bookly-hour-selected *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[class*="active"] *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[class*="selected"] *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[aria-selected="true"] *,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour[aria-pressed="true"] * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form input:not([type="checkbox"]):not([type="radio"]),
html body .jz-reservas-page .bookly-form select,
html body .jz-reservas-page .bookly-form textarea,
html body .jz-reservas-page .bookly-form option {
  background-color: #ffffff !important;
  background-image: none !important;
  color: #111113 !important;
  -webkit-text-fill-color: #111113 !important;
}

html body .jz-reservas-page .bookly-form input::placeholder,
html body .jz-reservas-page .bookly-form textarea::placeholder {
  color: rgba(17, 17, 19, 0.62) !important;
  -webkit-text-fill-color: rgba(17, 17, 19, 0.62) !important;
}

html body .jz-reservas-page .bookly-form .iti,
html body .jz-reservas-page .bookly-form .intl-tel-input {
  width: 100% !important;
}

html body .jz-reservas-page .bookly-form .iti input,
html body .jz-reservas-page .bookly-form .intl-tel-input input,
html body .jz-reservas-page .bookly-form input[type="tel"] {
  padding-left: 102px !important;
  text-indent: 0 !important;
}

html body .jz-reservas-page .bookly-form .iti__country-container,
html body .jz-reservas-page .bookly-form .iti__selected-country,
html body .jz-reservas-page .bookly-form .intl-tel-input .selected-flag {
  width: 92px !important;
  min-width: 92px !important;
}

html body .jz-reservas-page .bookly-form .iti__selected-country *,
html body .jz-reservas-page .bookly-form .iti__dropdown-content *,
html body .jz-reservas-page .bookly-form .iti__country-list *,
body .iti--container .iti__dropdown-content *,
body .iti--container .iti__country-list * {
  color: #111113 !important;
  -webkit-text-fill-color: #111113 !important;
}

@media (max-width: 640px) {
  html body .jz-reservas-page .bookly-form .bookly-columnizer-wrap,
  html body .jz-reservas-page .bookly-form .bookly-columnizer,
  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour,
  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-day {
    min-width: 0 !important;
    min-height: 46px !important;
    white-space: normal !important;
  }

  html body .jz-reservas-page .bookly-form .iti input,
  html body .jz-reservas-page .bookly-form .intl-tel-input input,
  html body .jz-reservas-page .bookly-form input[type="tel"] {
    padding-left: 96px !important;
  }
}

/* Reservation extras, slot calendar, and explicit time confirmation. */
html body .jz-reservas-page .bookly-form .bookly-extra-step,
html body .jz-reservas-page .bookly-form .bookly-js-extras-container,
html body .jz-reservas-page .bookly-form .bookly-extras-item,
html body .jz-reservas-page .bookly-form .bookly-extras-thumb {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background-color: #171113 !important;
  background-image:
    radial-gradient(circle at 12% 0%, rgba(243, 9, 9, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(37, 25, 27, 0.98), rgba(13, 13, 16, 0.98)) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-item {
  margin-bottom: 14px !important;
  padding: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 10px !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28) !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 92px;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 8px !important;
  cursor: pointer;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb.bookly-extras-selected {
  border-color: #ff5b35 !important;
  background-image:
    radial-gradient(circle at 18% 0%, rgba(255, 91, 53, 0.34), transparent 42%),
    linear-gradient(145deg, rgba(62, 23, 19, 0.98), rgba(18, 13, 15, 0.98)) !important;
  box-shadow: 0 18px 48px rgba(243, 9, 9, 0.22) !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb img {
  width: 96px !important;
  height: 96px !important;
  max-width: 30vw !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  margin: 0 !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36) !important;
}

html body .jz-reservas-page .bookly-form .extra-widget-title,
html body .jz-reservas-page .bookly-form .extra-widget-duration,
html body .jz-reservas-page .bookly-form .bookly-extras-total-price,
html body .jz-reservas-page .bookly-form .bookly-extras-summary,
html body .jz-reservas-page .bookly-form .bookly-extras-summary * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .extra-widget-title {
  display: block;
  margin-bottom: 6px;
  font-size: 18px !important;
  font-weight: 900 !important;
}

html body .jz-reservas-page .bookly-form .extra-widget-price,
html body .jz-reservas-page .bookly-form .bookly-extras-total-price {
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
  font-weight: 900 !important;
}

html body .jz-reservas-page .bookly-form .bookly-slot-calendar,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar *,
html body .jz-reservas-page .bookly-form [class*="bookly-slot-calendar"] {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background-color: #171113 !important;
  background-image: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar button,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [role="button"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="day"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="date"] {
  min-width: 34px;
  min-height: 34px;
  border-radius: 6px !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-disabled="true"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="disabled"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="outside"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="empty"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"] {
  position: relative !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.035) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.28) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.28) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  filter: saturate(0.18);
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-disabled="true"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="disabled"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="outside"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="empty"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"] * {
  color: rgba(255, 255, 255, 0.28) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.28) !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-disabled="true"]::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-disabled="true"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="disabled"]::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="disabled"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="outside"]::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="outside"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-disabled="true"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="disabled"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="outside"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-selected="true"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="selected"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="active"],
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-date-selected,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar button:hover {
  background-color: #ff5b35 !important;
  background-image: linear-gradient(135deg, #ff673b, #f30909) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-date-selected {
  position: relative;
  z-index: 2;
  border: 2px solid #ffffff !important;
  box-shadow: 0 0 0 3px rgba(243, 9, 9, 0.34), 0 10px 24px rgba(243, 9, 9, 0.38) !important;
  font-weight: 900 !important;
  transform: scale(1.06);
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-date-selected *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [aria-selected="true"] *,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="selected"] * {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]:not(.jz-bookly-unavailable-date),
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]:not(.jz-bookly-unavailable-date) {
  border-color: transparent !important;
  background-color: transparent !important;
  filter: none !important;
  cursor: default !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]:not(.jz-bookly-unavailable-date)::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="pointer-events-none"]:not(.jz-bookly-unavailable-date)::after,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]:not(.jz-bookly-unavailable-date)::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="opacity-50"]:not(.jz-bookly-unavailable-date)::after {
  content: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date {
  position: relative !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.035) !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.28) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.28) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  filter: saturate(0.18) !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date * {
  color: rgba(255, 255, 255, 0.28) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.28) !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date {
  border-color: rgba(255, 23, 23, 0.42) !important;
  background-color: rgba(255, 23, 23, 0.1) !important;
  filter: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date::before,
html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar .jz-bookly-unavailable-date::after {
  width: 26px;
  height: 3px;
  background: #ff1717 !important;
  box-shadow: 0 0 10px rgba(255, 23, 23, 0.55);
}

html body .jz-reservas-page .bookly-form .bookly-columnizer.jz-bookly-flat-columnizer {
  position: relative !important;
  left: auto !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  transform: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .jz-bookly-original-screen-hidden {
  display: none !important;
}

html body .jz-reservas-page .bookly-form .jz-bookly-flat-slots {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

html body .jz-reservas-page .bookly-form .jz-bookly-flat-slots .bookly-day {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  margin: 0 !important;
}

html body .jz-reservas-page .bookly-form .jz-bookly-flat-slots .bookly-hour {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

html body .jz-reservas-page .bookly-form .bookly-time-prev,
html body .jz-reservas-page .bookly-form .bookly-time-next,
html body .jz-reservas-page .bookly-form .jz-bookly-more-hours {
  display: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.booked {
  position: relative !important;
  border-color: rgba(255, 23, 23, 0.48) !important;
  background-color: rgba(255, 23, 23, 0.12) !important;
  cursor: not-allowed !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.booked .bookly-hour-icon span {
  position: relative !important;
  display: inline-block !important;
  width: 22px !important;
  height: 22px !important;
  border: 0 !important;
  background: transparent !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.booked .bookly-hour-icon span::before,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.booked .bookly-hour-icon span::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 22px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: #ff1717 !important;
  box-shadow: 0 0 10px rgba(255, 23, 23, 0.5) !important;
  transform: translate(-50%, -50%) rotate(45deg) !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.booked .bookly-hour-icon span::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.jz-bookly-hour-selected,
html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour.jz-bookly-hour-selected * {
  border-color: #ff5b35 !important;
  background-color: #ff5b35 !important;
  background-image: linear-gradient(135deg, #ff673b, #f30909) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

html body .jz-reservas-page .bookly-form .jz-bookly-time-confirm {
  margin-left: 10px !important;
  min-width: 150px !important;
}

html body .jz-reservas-page .bookly-form .jz-bookly-time-confirm[disabled] {
  opacity: 0.48 !important;
  cursor: not-allowed !important;
  filter: grayscale(0.25);
}

html body .jz-reservas-page .bookly-form .jz-bookly-more-hours {
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb > div {
  display: grid !important;
  min-width: 0 !important;
  gap: 5px !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb span,
html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-title,
html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-duration,
html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-price {
  display: block !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  line-height: 1.22 !important;
}

html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-js-extras-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px !important;
  align-items: stretch;
  width: 100% !important;
}

html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-js-extras-container > .bookly-box:not(.bookly-extras-item) {
  grid-column: 1 / -1;
}

html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-extras-item,
html body .jz-reservas-page .bookly-form .bookly-js-extras-container .bookly-extras-item {
  display: flex !important;
  flex-direction: column;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
}

html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-extras-thumb,
html body .jz-reservas-page .bookly-form .bookly-js-extras-container .bookly-extras-thumb {
  grid-template-columns: 104px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 16px !important;
  height: 100%;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb > div {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "title price"
    "duration duration";
  column-gap: 12px !important;
  row-gap: 8px !important;
  align-items: start;
  align-content: start;
  width: 100% !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-title {
  grid-area: title;
  min-width: 0 !important;
  margin: 0 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1.18 !important;
  overflow-wrap: anywhere !important;
  text-align: left !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-price {
  grid-area: price;
  justify-self: end;
  align-self: start;
  display: inline-flex !important;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px !important;
  border: 1px solid rgba(255, 209, 102, 0.42);
  border-radius: 6px;
  background: rgba(255, 209, 102, 0.12);
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-align: right !important;
  text-shadow: none !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-thumb .extra-widget-duration {
  grid-area: duration;
  margin-top: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.74) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  text-align: left !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-count-controls {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

html body .jz-reservas-page .bookly-form .bookly-extras-item > div:not(.bookly-extras-thumb) {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px !important;
}

html body .jz-reservas-page .bookly-form .bookly-extras-total-price {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin: 0 !important;
  padding: 5px 10px !important;
  border: 1px solid rgba(255, 209, 102, 0.38);
  border-radius: 6px;
  background: rgba(255, 209, 102, 0.1);
  color: #ffd166 !important;
  -webkit-text-fill-color: #ffd166 !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

html body .jz-reservas-page .bookly-form button.jz-bookly-action-loading,
html body .jz-reservas-page .bookly-form .bookly-js-mobile-next-step.jz-bookly-loading {
  position: relative !important;
  pointer-events: none;
  cursor: wait !important;
}

html body .jz-reservas-page .bookly-form button.jz-bookly-action-loading .ladda-label,
html body .jz-reservas-page .bookly-form .bookly-js-mobile-next-step.jz-bookly-loading .ladda-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-right: 32px;
  opacity: 1 !important;
  letter-spacing: 0 !important;
}

html body .jz-reservas-page .bookly-form button.jz-bookly-action-loading::after,
html body .jz-reservas-page .bookly-form .bookly-js-mobile-next-step.jz-bookly-loading::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-top-color: #ffffff;
  border-radius: 50%;
  content: "";
  animation: jz-bookly-spin 0.7s linear infinite;
}

@keyframes jz-bookly-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-js-extras-container {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-extra-step .bookly-extras-item,
  html body .jz-reservas-page .bookly-form .bookly-js-extras-container .bookly-extras-item {
    width: 100% !important;
    padding: 10px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-extras-thumb {
    grid-template-columns: 76px minmax(0, 1fr) !important;
    gap: 11px !important;
    min-height: 0 !important;
    padding: 10px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-extras-thumb img {
    width: 76px !important;
    height: 76px !important;
    max-width: 76px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-extras-thumb > div {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "title"
      "price"
      "duration" !important;
    gap: 6px !important;
  }

  html body .jz-reservas-page .bookly-form .extra-widget-title {
    margin-bottom: 0 !important;
    font-size: 15px !important;
    line-height: 1.22 !important;
  }

  html body .jz-reservas-page .bookly-form .extra-widget-price {
    justify-self: start !important;
    min-height: 28px;
    padding: 5px 8px !important;
    font-size: 14px !important;
  }

  html body .jz-reservas-page .bookly-form .extra-widget-duration {
    font-size: 13px !important;
    line-height: 1.2 !important;
  }

  html body .jz-reservas-page .bookly-form .jz-bookly-time-confirm {
    width: 100% !important;
    margin: 10px 0 0 !important;
  }
}

@media (max-width: 640px) {
  html body .jz-reservas-page .jz-reservas-panel {
    padding-right: 6px;
    padding-left: 6px;
  }

  html body .jz-reservas-page .jz-bookly-shell {
    padding-right: 6px;
    padding-left: 6px;
  }

  html body .jz-reservas-page .bookly-form {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-time-step {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-slot-calendar,
  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar {
    display: block !important;
    width: min(calc(100vw - 36px), 354px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 auto 18px !important;
    box-sizing: border-box !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar > *,
  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar > * > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar button,
  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [role="button"],
  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="day"],
  html body .jz-reservas-page .bookly-form .bookly-js-slot-calendar [class*="date"] {
    min-height: 38px !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer-wrap {
    width: min(calc(100vw - 36px), 354px) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer {
    width: 100% !important;
    max-width: 100% !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-time-screen {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    justify-items: stretch !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-column {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-hour,
  html body .jz-reservas-page .bookly-form .bookly-columnizer .bookly-day {
    width: 100% !important;
    min-height: 50px !important;
    margin: 0 0 8px !important;
    box-sizing: border-box !important;
  }

  html body .jz-reservas-page .bookly-form .jz-bookly-flat-slots .bookly-hour,
  html body .jz-reservas-page .bookly-form .jz-bookly-flat-slots .bookly-day {
    margin: 0 !important;
  }
}
