.reservation-confirmation-zone {
  display: grid;
  gap: 12px;
  margin: 3px 0 18px;
}

.reservation-consent {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  margin: 0;
  padding: 13px 14px;
  color: #51483f;
  border: 1px solid #e2d7ca;
  border-radius: 12px;
  background: #fcfaf6;
  font-size: 13px;
  line-height: 1.52;
  text-align: left;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.reservation-consent:hover {
  border-color: #cebda9;
  background: #fffdf9;
}

.reservation-consent:focus-within {
  border-color: #a82328;
  box-shadow: 0 0 0 3px rgba(168, 35, 40, .1);
}

.reservation-consent input[type="checkbox"] {
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 3px;
  box-shadow: none !important;
  accent-color: #a82328;
  cursor: pointer;
}

.reservation-consent input[type="checkbox"]:focus {
  box-shadow: none !important;
  outline: 2px solid rgba(168, 35, 40, .28);
  outline-offset: 2px;
}

.reservation-consent span {
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
}

.reservation-data-consent {
  color: #62584f;
  background: #f8f4ee;
}

.reservation-guarantee {
  position: relative;
  margin: 2px 0 0;
  padding: 18px 19px 17px 58px;
  overflow: hidden;
  color: #554536;
  border: 1px solid #d8bf8e;
  border-radius: 14px;
  background: linear-gradient(145deg, #fffaf0, #fff5e2);
}

.reservation-guarantee::before {
  content: "✓";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid #9a2429;
  border-radius: 50%;
  color: #9a2429;
  background: rgba(255, 255, 255, .7);
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.reservation-guarantee > strong {
  display: block;
  margin: 0 0 7px;
  color: #2b2119;
  font-size: 15px;
  line-height: 1.35;
}

.reservation-guarantee p {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
}

.reservation-guarantee b {
  color: #2f251d;
}

.reservation-guarantee-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 7px;
  margin-top: 11px !important;
}

.reservation-guarantee a {
  color: #8d1f24;
  font-weight: 850;
  text-underline-offset: 2px;
}

.reservation-guarantee a:hover {
  color: #641419;
}

.reservation-legal-consents {
  display: grid;
  gap: 10px;
}

.reservation-legal-consent {
  padding: 14px;
  border-left: 3px solid #c5a978;
  background: #fffdf9;
}

.reservation-submit-row {
  display: grid;
  gap: 10px;
}

.reservation-submit-row .reservation-submit-button {
  width: 100%;
  height: auto;
  min-height: 58px;
  display: grid;
  gap: 3px;
  justify-items: center;
  padding: 12px 20px;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

.reservation-submit-button > span {
  font-size: 15px;
  font-weight: 900;
}

.reservation-submit-button > small {
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.reservation-submit-row .reservation-status:not(:empty) {
  padding: 11px 13px;
  border-radius: 10px;
  background: #f8f3ec;
}

.reservation-submit-row .reservation-status.is-error:not(:empty) {
  background: #fff0f0;
}

.reservation-submit-row .reservation-status.is-success:not(:empty) {
  background: #edf7f0;
}

@media (max-width: 620px) {
  .reservation-confirmation-zone {
    gap: 10px;
    margin-bottom: 15px;
  }

  .reservation-consent,
  .reservation-legal-consent {
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .reservation-guarantee {
    padding: 15px 13px 14px 49px;
  }

  .reservation-guarantee::before {
    top: 15px;
    left: 13px;
    width: 23px;
    height: 23px;
  }

  .reservation-guarantee > strong {
    font-size: 14px;
  }

  .reservation-guarantee p {
    font-size: 12px;
    line-height: 1.55;
  }

  .reservation-guarantee-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .reservation-guarantee-links > span {
    display: none;
  }

  .reservation-submit-row .reservation-submit-button {
    min-height: 60px;
    padding: 12px 14px;
  }

  .reservation-submit-button > span {
    font-size: 14px;
  }
}
