:root {
  --dot-diving-navy: #001840;
  --dot-diving-blue: #075487;
  --dot-diving-teal: #0b72ae;
  --dot-diving-cyan: #16a7ba;
  --dot-diving-ink: #07324a;
  --dot-diving-muted: #617783;
  --dot-diving-border: #d5e3e8;
  --dot-diving-bg: #edf7f8;
  --dot-diving-white: #fff;
  --dot-diving-shadow: 0 16px 44px rgb(0 38 70 / 11%);
}

.dot-zb-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.dot-central-diving-app {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--dot-diving-ink);
  background:
    radial-gradient(circle at 90% 0, rgb(22 167 186 / 14%), transparent 32rem),
    var(--dot-diving-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.dot-central-diving-app,
.dot-central-diving-app * {
  box-sizing: border-box;
}

.dot-central-diving-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 18px auto;
  padding: 14px 18px;
  border: 1px solid #b8cee2;
  border-radius: 14px;
  color: #123f68;
  background: #f1f6fb;
  box-shadow: 0 10px 24px rgb(0 24 64 / 8%);
  font: 600 14px/1.45 Arial, sans-serif;
}

.dot-central-diving-intro strong,
.dot-central-diving-intro span {
  display: block;
}

.dot-central-diving-intro strong {
  margin-bottom: 3px;
  color: var(--dot-diving-navy);
}

.dot-central-diving-intro a,
.dot-central-diving-error a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--dot-diving-blue);
  font-weight: 700;
  text-decoration: none;
}

.dot-central-diving-error {
  max-width: 760px;
  margin: 40px auto;
  padding: 28px;
  border: 1px solid #efaaa6;
  border-radius: 16px;
  color: #852b27;
  background: #fff2f1;
  font: 16px/1.55 Arial, sans-serif;
}

.dot-diving-hero {
  position: relative;
  width: min(1040px, calc(100% - 32px));
  min-height: 180px;
  margin: 18px auto 0;
  display: grid;
  place-items: center start;
  overflow: hidden;
  color: #fff;
  background: var(--dot-diving-navy);
  border-radius: 28px;
  box-shadow: var(--dot-diving-shadow);
}

.dot-diving-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(0 24 64 / 90%) 0%, rgb(5 40 95 / 62%) 48%, rgb(13 101 168 / 12%) 100%);
}

.dot-diving-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dot-diving-hero__content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
}

.dot-diving-hero__content p {
  margin: 0 0 10px;
  color: #8bd4ff;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dot-diving-hero__content h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
}

.dot-diving-hero__content span {
  display: block;
  max-width: 620px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

.dot-diving-page {
  width: min(1040px, calc(100% - 32px));
  max-width: none;
  margin: 18px auto 0;
  padding: 0 0 calc(130px + env(safe-area-inset-bottom));
}

.dot-diving-intro,
.dot-diving-panel,
.dot-diving-summary {
  border: 1px solid var(--dot-diving-border);
  border-radius: 22px;
  background: var(--dot-diving-white);
  box-shadow: var(--dot-diving-shadow);
}

.dot-diving-intro {
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 32px);
}

.dot-diving-intro h2,
.dot-diving-intro p {
  margin-top: 0;
}

.dot-diving-intro p:last-child {
  margin-bottom: 0;
}

.dot-diving-layout {
  display: block;
}

.dot-diving-form {
  display: grid;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.dot-diving-progress {
  position: relative;
  z-index: 20;
  overflow: hidden;
  border: 1px solid var(--dot-diving-border);
  border-radius: 18px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 12px 30px rgb(0 24 64 / 11%);
  backdrop-filter: blur(12px);
}

.dot-diving-progress ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 10px;
  list-style: none;
}

.dot-diving-progress li {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 7px 10px;
  color: var(--dot-diving-muted);
  font-size: .83rem;
}

.dot-diving-progress li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 2px;
  height: 22px;
  content: "";
  background: #e0eaf2;
  transform: translateY(-50%);
}

.dot-diving-progress li > span {
  flex: 0 0 28px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #bfd1e0;
  border-radius: 50%;
  color: var(--dot-diving-muted);
  background: #fff;
  font-weight: 900;
}

.dot-diving-progress li > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dot-diving-progress li.is-active {
  color: var(--dot-diving-navy);
  background: #eef6fc;
}

.dot-diving-progress li.is-active > span {
  border-color: var(--dot-diving-blue);
  color: #fff;
  background: linear-gradient(135deg, var(--dot-diving-blue), var(--dot-diving-teal));
}

.dot-diving-progress li.is-complete > span {
  border-color: #219463;
  color: #fff;
  background: #219463;
}

.dot-diving-step[hidden] {
  display: none !important;
}

.dot-diving-panel {
  padding: clamp(18px, 3vw, 30px);
}

.dot-diving-section-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
}

.dot-diving-section-head > span {
  flex: 0 0 50px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--dot-diving-cyan), #078693);
  font-size: 1.3rem;
  font-weight: 900;
}

.dot-diving-section-head h2 {
  margin: 2px 0 4px;
  color: var(--dot-diving-navy);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.dot-diving-section-head p {
  margin: 0;
  color: var(--dot-diving-muted);
  line-height: 1.5;
}

.dot-diving-package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.dot-diving-package {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 32%) minmax(0, 1fr);
  grid-template-areas: "media body";
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--dot-diving-border);
  border-radius: 22px;
  background: #f8fbfc;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dot-diving-package:hover,
.dot-diving-package:focus-within {
  border-color: var(--dot-diving-blue);
  box-shadow: 0 16px 32px rgb(13 101 168 / 15%);
  transform: translateY(-2px);
}

.dot-diving-package:has(input:checked) {
  border-color: var(--dot-diving-cyan);
  box-shadow: 0 0 0 4px rgb(22 167 186 / 16%), 0 16px 32px rgb(7 84 135 / 15%);
}

.dot-diving-package > .dot-diving-package__radio {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.dot-diving-package__media {
  display: block;
  grid-area: media;
  min-height: 100%;
  overflow: hidden;
  background: #dce9f4;
}

.dot-diving-package__media img,
.dot-diving-package__media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dot-diving-package__body {
  display: flex;
  grid-area: body;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.dot-diving-package__body > strong {
  padding-left: 0;
  color: var(--dot-diving-navy);
  font-size: 1.08rem;
  line-height: 1.3;
}

.dot-diving-package__body small {
  color: var(--dot-diving-muted);
  line-height: 1.45;
}

.dot-diving-package__body small b {
  color: var(--dot-diving-ink);
}

.dot-diving-badge {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: #7d4e00;
  background: #fff2c7;
  font-size: .73rem;
  font-weight: 800;
}

.dot-diving-package--red .dot-diving-badge {
  color: #8d201c;
  background: #ffe4e1;
}

.dot-diving-package--blue .dot-diving-badge {
  color: #075b73;
  background: #dff6ff;
}

.dot-diving-price {
  margin-top: 4px;
  color: var(--dot-diving-blue);
  font-size: 1.32rem;
  font-weight: 900;
}

.dot-diving-package__days {
  max-width: 300px;
  margin-top: 5px;
  padding: 13px;
  border: 1px solid #cbdde9;
  border-radius: 13px;
  background: #f3f8fc;
}

.dot-diving-package__days select {
  min-height: 44px;
}

.dot-diving-package__fixed-days {
  align-self: flex-start;
  margin-top: 5px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #075b73;
  background: #dff6ff;
  font-size: .85rem;
  font-weight: 850;
}

.dot-diving-package__select {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--dot-diving-blue), var(--dot-diving-teal));
  box-shadow: 0 10px 24px rgb(7 84 135 / 22%);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  touch-action: manipulation;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.dot-diving-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dot-diving-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dot-diving-package-settings {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #f3f7fb;
}

.dot-diving-package-settings label,
.dot-diving-rental-settings label {
  max-width: 360px;
}

.dot-diving-rental-settings {
  margin-bottom: 18px;
  padding: 17px;
  border: 1px solid #d7e4ee;
  border-radius: 15px;
  background: #f3f7fb;
}

.dot-diving-form label {
  display: grid;
  gap: 7px;
  color: var(--dot-diving-ink);
  font-weight: 750;
  line-height: 1.35;
}

.dot-diving-form label small {
  color: var(--dot-diving-muted);
  font-weight: 500;
}

.dot-diving-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]),
.dot-diving-form select,
.dot-diving-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid #b8ccd2;
  border-radius: 11px;
  color: #18333d;
  background: #fff;
  font: inherit;
}

.dot-diving-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dot-diving-form input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]):focus,
.dot-diving-form select:focus,
.dot-diving-form textarea:focus {
  border-color: var(--dot-diving-blue);
  outline: 3px solid rgb(36 126 194 / 18%);
}

.dot-diving-option-list {
  display: grid;
  gap: 11px;
}

.dot-diving-option-group {
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid #d8e5ef;
  border-radius: 17px;
  background: #f9fcff;
}

.dot-diving-option-group + .dot-diving-option-group {
  margin-top: 18px;
}

.dot-diving-option-group__head {
  margin-bottom: 16px;
}

.dot-diving-option-group__head h3 {
  margin: 0 0 5px;
  color: var(--dot-diving-navy);
  font-size: 1.18rem;
}

.dot-diving-option-group__head p,
.dot-diving-empty-options {
  margin: 0;
  color: var(--dot-diving-muted);
  line-height: 1.5;
}

.dot-diving-option {
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center;
  gap: 13px !important;
  padding: 14px 15px;
  border: 1px solid var(--dot-diving-border);
  border-radius: 14px;
  cursor: pointer;
  background: #fbfdff;
}

.dot-diving-option:has(input:checked) {
  border-color: var(--dot-diving-teal);
  background: #eef5fb;
}

.dot-diving-option input {
  width: 21px;
  height: 21px;
  min-height: 0;
  padding: 0;
  accent-color: var(--dot-diving-teal);
}

.dot-diving-option span {
  display: grid;
  gap: 3px;
}

.dot-diving-option > b {
  color: var(--dot-diving-blue);
  text-align: right;
  white-space: nowrap;
}

.dot-diving-check {
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start;
  gap: 10px !important;
  margin-top: 14px;
  font-weight: 600 !important;
}

.dot-diving-check input {
  width: 20px;
  height: 20px;
  min-height: 0;
  padding: 0;
  accent-color: var(--dot-diving-teal);
}

.dot-diving-final-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--dot-diving-navy), var(--dot-diving-blue));
  box-shadow: 0 12px 26px rgb(0 24 64 / 18%);
  font-weight: 800;
}

.dot-diving-final-total strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  white-space: nowrap;
}

.dot-diving-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.dot-diving-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dfe9f1;
}

.dot-diving-step-actions--end {
  justify-content: flex-end;
}

.dot-diving-data-block {
  margin-top: 18px;
  padding: clamp(17px, 3vw, 24px);
  border: 1px solid #d8e5ef;
  border-radius: 17px;
  background: #f9fcff;
}

.dot-diving-data-block + .dot-diving-data-block {
  margin-top: 16px;
}

.dot-diving-data-block__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.dot-diving-data-block__head > span {
  flex: 0 0 30px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--dot-diving-blue);
  background: #dfeff9;
  font-size: .86rem;
  font-weight: 900;
}

.dot-diving-data-block__head h3 {
  margin: 2px 0 4px;
  color: var(--dot-diving-navy);
  font-size: 1.16rem;
}

.dot-diving-data-block__head p {
  margin: 0;
  color: var(--dot-diving-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.dot-diving-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--dot-diving-blue), var(--dot-diving-teal));
  box-shadow: 0 10px 24px rgb(7 84 135 / 22%);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  touch-action: manipulation;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.dot-diving-button:disabled {
  cursor: wait;
  opacity: .6;
}

.dot-diving-button--light,
.dot-diving-button--secondary,
.dot-diving-button--link {
  color: var(--dot-diving-blue);
  background: #fff;
  border: 1px solid #9dbdce;
  box-shadow: none;
}

.dot-diving-button--link {
  text-decoration: none;
}

.dot-diving-package__select:hover,
.dot-diving-button:hover {
  filter: brightness(1.08);
  box-shadow: 0 13px 28px rgb(7 84 135 / 28%);
  transform: translateY(-1px);
}

.dot-diving-button--light:hover,
.dot-diving-button--secondary:hover,
.dot-diving-button--link:hover {
  color: #fff;
  background: var(--dot-diving-blue);
  border-color: var(--dot-diving-blue);
}

.dot-diving-package__select:active,
.dot-diving-button:active {
  transform: translateY(0);
}

.dot-diving-package__select:focus-visible,
.dot-diving-button:focus-visible,
.dot-diving-dialog__head button:focus-visible {
  outline: 3px solid rgb(22 167 186 / 45%);
  outline-offset: 3px;
}

.dot-diving-dialog {
  width: min(600px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  padding: 0;
  overflow: auto;
  color: var(--dot-diving-ink);
  background: #fff;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgb(0 24 64 / 42%);
}

.dot-diving-dialog::backdrop {
  background: rgb(0 24 64 / 68%);
  backdrop-filter: blur(4px);
}

.dot-diving-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 118px;
  padding: 22px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0%, rgb(22 167 186 / 34%), transparent 44%),
    linear-gradient(135deg, #00385f, var(--dot-diving-blue));
}

.dot-diving-dialog__head p,
.dot-diving-dialog__head h2 {
  margin: 0;
}

.dot-diving-dialog__head p {
  margin-bottom: 7px;
  color: #a8e4ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dot-diving-dialog__head h2 {
  max-width: 440px;
  color: #fff !important;
  font-size: clamp(1.35rem, 5vw, 1.85rem);
  font-weight: 850;
  line-height: 1.18;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 1px rgb(0 25 53 / 24%);
}

.dot-diving-dialog__head button {
  display: grid;
  flex: none;
  width: 46px;
  height: 46px;
  min-height: 0;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgb(255 255 255 / 12%);
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.dot-diving-dialog__prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px;
  background: #f6fafc;
}

.dot-diving-dialog__prices > div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-width: 0;
  padding: 14px 15px;
  background: #fff;
  border: 1px solid #dce8ee;
  border-radius: 14px;
}

.dot-diving-dialog__prices > div > strong {
  color: var(--dot-diving-navy);
  font-size: 1.05rem;
  line-height: 1.25;
  text-align: left;
}

.dot-diving-dialog__prices > div > span {
  color: var(--dot-diving-muted);
  font-size: .84rem;
  font-weight: 750;
}

.dot-diving-dialog__discount {
  color: #087f6b;
  background: #effaf7 !important;
  border-color: #bfe7dd !important;
}

.dot-diving-dialog__discount > span,
.dot-diving-dialog__discount > strong {
  color: #087f6b !important;
}

.dot-diving-dialog__discount[hidden] {
  display: none !important;
}

.dot-diving-dialog__prices > .dot-diving-dialog__total {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin: 2px 0 0;
  padding: 17px 18px;
  background: linear-gradient(135deg, #e9f6fb, #f2fbfa);
  border: 1px solid #b8dce6;
  font-weight: 900;
}

.dot-diving-dialog__total strong {
  color: #087d8f;
  font-size: clamp(1.7rem, 7vw, 2.45rem) !important;
  text-align: right !important;
}

.dot-diving-dialog__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px 20px;
  background: #fff;
  border-top: 1px solid #e0eaef;
}

.dot-diving-dialog__actions button {
  min-height: 54px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.dot-diving-dialog__actions .dot-diving-dialog__primary {
  color: #fff;
  background: linear-gradient(135deg, var(--dot-diving-blue), var(--dot-diving-teal));
  border: 0;
  box-shadow: 0 10px 22px rgb(7 84 135 / 20%);
}

.dot-diving-dialog__actions .dot-diving-dialog__secondary {
  color: var(--dot-diving-blue);
  background: #eef7fb;
  border: 1px solid #9cc9dc;
}

.dot-diving-dialog__actions .dot-diving-dialog__change {
  grid-column: 1 / -1;
  min-height: 42px;
  padding: 7px 12px;
  color: #526b78;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dot-diving-dialog__actions .dot-diving-dialog__primary:hover,
.dot-diving-dialog__actions .dot-diving-dialog__secondary:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.dot-diving-dialog__actions .dot-diving-dialog__change:hover {
  color: var(--dot-diving-blue);
  background: #f2f7f9;
}

.dot-diving-message {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.dot-diving-message.is-visible {
  display: block;
}

.dot-diving-message.is-working {
  color: #75520a;
  background: #fff7dc;
}

.dot-diving-message.is-success {
  color: #165f3d;
  background: #e9f9ef;
}

.dot-diving-message.is-error {
  color: #852b27;
  background: #fff0ef;
}

.dot-diving-step-message {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #efaaa6;
  border-radius: 12px;
  color: #852b27;
  background: #fff0ef;
  font-weight: 750;
  line-height: 1.45;
}

.dot-diving-summary {
  position: static;
  margin-top: 22px;
  padding: 22px;
  box-shadow: none;
}

.dot-diving-summary h2 {
  margin: 0 0 17px;
  color: var(--dot-diving-navy);
}

.dot-diving-summary [data-diving-summary] {
  display: grid;
  gap: 9px;
}

.dot-diving-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e2ecef;
  color: var(--dot-diving-muted);
  font-size: .9rem;
}

.dot-diving-summary__row span:last-child {
  flex: 0 0 auto;
  color: var(--dot-diving-ink);
  font-weight: 700;
  text-align: right;
}

.dot-diving-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 11px;
  padding-top: 16px;
  border-top: 2px solid var(--dot-diving-navy);
}

.dot-diving-summary__total strong {
  color: var(--dot-diving-blue);
  font-size: 1.55rem;
}

.dot-diving-summary > small {
  color: var(--dot-diving-muted);
  line-height: 1.4;
}

.dot-diving-form.is-try-dive #diverDataPanel {
  opacity: .7;
}

@media (max-width: 760px) {
  .dot-central-diving-intro {
    align-items: flex-start;
    flex-direction: column;
    margin: 12px;
  }

  .dot-central-diving-intro a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .dot-diving-hero {
    width: min(1040px, calc(100% - 20px));
    min-height: 160px;
    margin-top: 10px;
    border-radius: 20px;
  }

  .dot-diving-hero::after {
    background: linear-gradient(95deg, rgb(0 24 64 / 96%) 0%, rgb(7 84 135 / 78%) 72%, rgb(13 101 168 / 28%) 100%);
  }

  .dot-diving-hero__content {
    width: 100%;
    margin: 0;
    padding: 24px 20px;
  }

  .dot-diving-page {
    width: min(1040px, calc(100% - 20px));
    margin-top: 10px;
  }

  .dot-diving-package-grid,
  .dot-diving-grid,
  .dot-diving-grid--three {
    grid-template-columns: 1fr;
  }

  .dot-diving-package {
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "body";
  }

  .dot-diving-package__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .dot-diving-option {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .dot-diving-option > b {
    grid-column: 2;
    text-align: left;
  }

  .dot-diving-actions {
    display: grid;
    justify-content: stretch;
  }

  .dot-diving-step-actions {
    display: grid;
  }

  .dot-diving-final-total {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .dot-diving-button {
    width: 100%;
  }

  .dot-diving-dialog__head,
  .dot-diving-dialog__prices {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dot-diving-dialog__head {
    min-height: 104px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .dot-diving-dialog__prices {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .dot-diving-dialog__actions {
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .dot-diving-panel,
  .dot-diving-intro,
  .dot-diving-summary {
    border-radius: 15px;
  }

  .dot-diving-panel {
    padding: 15px;
  }

  .dot-diving-progress {
    border-radius: 14px;
  }

  .dot-diving-progress ol {
    padding: 6px;
  }

  .dot-diving-progress li {
    gap: 0;
    min-height: 40px;
    padding: 5px 3px;
  }

  .dot-diving-progress li > strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .dot-diving-progress li > span {
    flex-basis: 28px;
  }

  .dot-diving-data-block {
    padding: 14px;
  }

  .dot-diving-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 20px;
  }

  .dot-diving-dialog__head {
    gap: 12px;
    min-height: 96px;
    padding: 16px;
  }

  .dot-diving-dialog__head h2 {
    font-size: 1.28rem;
  }

  .dot-diving-dialog__head button {
    width: 42px;
    height: 42px;
  }

  .dot-diving-dialog__prices {
    gap: 8px;
    padding: 12px;
  }

  .dot-diving-dialog__prices > div {
    padding: 12px;
  }

  .dot-diving-dialog__prices > .dot-diving-dialog__total {
    padding: 14px;
  }

  .dot-diving-dialog__actions {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .dot-diving-dialog__actions .dot-diving-dialog__change {
    grid-column: auto;
  }
}
