@font-face {
  font-family: "Big Shoulders";
  src: url("fonts/BigShoulders-VariableFont.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --rn-bg: #080806;
  --rn-panel: #10100d;
  --rn-panel-soft: #15140f;
  --rn-line: rgba(222, 183, 118, .24);
  --rn-line-strong: rgba(222, 183, 118, .52);
  --rn-gold: #c6995b;
  --rn-gold-light: #e5c27f;
  --rn-hover: #e5c27f;
  --rn-text: #f7f1e8;
  --rn-muted: rgba(247, 241, 232, .66);
  --rn-green: #79c184;
  --rn-danger: #d96b5e;
  --rn-radius: 8px;
  --rn-font: "Big Shoulders", "Arial Narrow", system-ui, sans-serif;
}

.rn-home-configurator,
.rn-app,
.rn-tent-widget,
.rn-home-configurator *,
.rn-app *,
.rn-tent-widget * {
  box-sizing: border-box;
  font-family: var(--rn-font);
  letter-spacing: 0;
}

.rn-home-configurator {
  max-width: 1480px;
  margin: 28px auto;
  padding: 0 20px;
  color: var(--rn-text);
}

.rn-config-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 8px 18px 14px;
}

.rn-config-title {
  margin: 0;
  color: var(--rn-gold-light);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.rn-config-head p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--rn-gold-light);
  font-size: 15px;
  font-weight: 500;
}

.rn-config-head p span {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rn-gold-light);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.rn-home-panel {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr auto;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  background: #030303;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .36);
}

.rn-config-control,
.rn-button,
.rn-ghost-button {
  min-height: 66px;
  border-radius: var(--rn-radius);
}

.rn-config-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 14px;
  background: #070706;
  border: 1px solid rgba(255, 255, 255, .09);
  color: var(--rn-text);
}

.rn-control-icon,
.rn-button-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--rn-gold-light);
}

.rn-control-icon svg,
.rn-button-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rn-control-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
  flex: 1 1 auto;
}

.rn-control-copy > span {
  color: var(--rn-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rn-control-copy select,
.rn-control-copy strong {
  width: 100%;
  min-width: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--rn-text);
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0;
  margin: 0;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.12;
  outline: none;
  text-transform: uppercase;
}

.rn-control-copy select option {
  background: #080806;
  color: var(--rn-text);
}

.rn-duration-control {
  padding-right: 8px;
}

.rn-stepper {
  display: grid;
  grid-template-columns: 38px 38px;
  gap: 6px;
}

.rn-stepper button,
.rn-icon-button {
  border: 1px solid rgba(255, 255, 255, .12);
  background: #050505;
  color: var(--rn-text);
  border-radius: var(--rn-radius);
  cursor: pointer;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.rn-stepper button {
  display: grid;
  place-items: center;
  height: 38px;
  padding: 0;
}

.rn-stepper button:hover,
.rn-icon-button:hover {
  border-color: var(--rn-hover);
  color: var(--rn-hover);
  background: #080806;
}

.rn-button,
.rn-ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--rn-line-strong);
  background: #050505;
  color: var(--rn-text);
  padding: 0 20px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.rn-home-configurator button,
.rn-app button,
.rn-tent-widget button {
  appearance: none;
  background-image: none !important;
  box-shadow: none;
  text-decoration: none;
}

.rn-button > span,
.rn-ghost-button > span {
  min-width: 0;
  text-align: center;
}

.rn-button:hover,
.rn-ghost-button:hover {
  border-color: var(--rn-hover);
  color: var(--rn-hover);
  background: #080806;
  transform: translateY(-1px);
}

.rn-config-control:hover,
.rn-booking-form input:hover,
.rn-booking-form textarea:hover,
.rn-calendar-card:hover,
.rn-date-summary:hover,
.rn-panel:hover,
.rn-form-panel:hover {
  border-color: var(--rn-line-strong);
}

.rn-home-configurator :focus-visible,
.rn-app :focus-visible,
.rn-tent-widget :focus-visible {
  outline: 2px solid var(--rn-hover);
  outline-offset: 2px;
}

.rn-button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
}

.rn-home-submit {
  min-width: 178px;
  text-align: center;
}

.rn-app {
  min-height: 100vh;
  padding: 26px;
  background: var(--rn-bg);
  color: var(--rn-text);
}

.rn-steps {
  max-width: 1480px;
  margin: 0 auto 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.rn-steps button {
  appearance: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--rn-radius);
  color: var(--rn-muted);
  background: #070706;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.rn-steps button:hover,
.rn-steps .is-active {
  border-color: var(--rn-hover);
  color: var(--rn-text);
  background: #12100c;
}

.rn-steps .is-done {
  border-color: var(--rn-line);
  color: var(--rn-gold-light);
}

.rn-booking-shell {
  max-width: 1480px;
  margin: 0 auto;
}

.rn-booking-header,
.rn-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.rn-eyebrow {
  margin: 0 0 6px;
  color: var(--rn-gold-light);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.rn-booking-header h1,
.rn-section-head h2,
.rn-complete h1 {
  margin: 0;
  color: var(--rn-text);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.rn-live-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  background: var(--rn-line);
}

.rn-live-summary div {
  min-width: 0;
  display: grid;
  gap: 3px;
  padding: 13px 15px;
  background: #070706;
}

.rn-live-summary span {
  color: var(--rn-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.rn-live-summary strong {
  overflow: hidden;
  color: var(--rn-text);
  font-size: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rn-summary-select {
  width: 100%;
  min-width: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: var(--rn-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  outline: none;
  text-transform: uppercase;
}

.rn-summary-select option {
  background: #080806;
  color: var(--rn-text);
}

.rn-mini-stepper {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 6px;
}

.rn-mini-stepper strong {
  min-width: 0;
  text-align: center;
}

.rn-mini-stepper button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  background: #050505;
  color: var(--rn-text);
  padding: 0;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}

.rn-mini-stepper button:hover {
  border-color: var(--rn-hover) !important;
  background: #080806 !important;
  background-image: none !important;
  color: var(--rn-hover) !important;
}

.rn-step-panel {
  display: none;
}

.rn-step-panel.is-active {
  display: block;
}

.rn-calendar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.rn-calendar-card,
.rn-date-summary,
.rn-panel,
.rn-form-panel {
  background: var(--rn-panel);
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
}

.rn-calendar-card {
  padding: 16px;
}

.rn-calendar-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rn-calendar-toolbar strong {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.rn-icon-button {
  width: 42px;
  height: 42px;
  line-height: 1;
}

.rn-calendar-weekdays,
.rn-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.rn-calendar-weekdays {
  margin-bottom: 8px;
}

.rn-calendar-weekdays span {
  color: var(--rn-muted);
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.rn-calendar-empty,
.rn-calendar-day {
  min-height: 56px;
}

.rn-calendar-day {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--rn-radius);
  background: #070706;
  color: var(--rn-text);
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
}

.rn-calendar-day:hover {
  border-color: var(--rn-hover);
}

.rn-calendar-day.is-range {
  border-color: rgba(229, 194, 127, .45);
  background: #1a160f;
}

.rn-calendar-day.is-selected {
  border-color: var(--rn-hover);
  background: var(--rn-gold);
  color: #050505;
}

.rn-calendar-day.is-disabled {
  opacity: .28;
  cursor: not-allowed;
}

.rn-date-summary,
.rn-summary,
.rn-form-panel {
  padding: 18px;
}

.rn-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--rn-muted);
  font-size: 16px;
  font-weight: 700;
}

.rn-summary-row strong {
  color: var(--rn-text);
  text-align: right;
}

.rn-date-summary .rn-button {
  width: 100%;
  margin-top: 20px;
}

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

.rn-tent-card {
  overflow: hidden;
  background: var(--rn-panel);
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  transition: border-color .18s ease, transform .18s ease;
}

.rn-tent-card:hover {
  border-color: var(--rn-line-strong);
  transform: translateY(-2px);
}

.rn-tent-card.is-unavailable {
  opacity: .52;
}

.rn-tent-image {
  position: relative;
  height: 234px;
  background: #111;
  overflow: hidden;
}

.rn-tent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rn-tent-image:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .82));
}

.rn-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  border: 1px solid var(--rn-line-strong);
  border-radius: var(--rn-radius);
  padding: 8px 10px;
  background: rgba(5, 5, 5, .86);
  color: var(--rn-gold-light);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rn-card-body {
  padding: 16px;
}

.rn-card-title {
  margin: 0 0 8px;
  color: var(--rn-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.rn-card-meta {
  color: var(--rn-muted);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.rn-benefits {
  display: grid;
  gap: 7px;
  min-height: 104px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--rn-muted);
  font-size: 15px;
  font-weight: 700;
}

.rn-benefits li:before {
  content: "✓";
  color: var(--rn-gold-light);
  margin-right: 8px;
}

.rn-card-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.rn-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr);
  gap: 10px;
  margin-top: 14px;
}

.rn-price {
  color: var(--rn-text);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.rn-price small {
  color: var(--rn-muted);
  font-size: 14px;
  font-weight: 700;
}

.rn-price em {
  display: block;
  margin-top: 5px;
  color: var(--rn-gold-light);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.rn-availability {
  border: 1px solid rgba(121, 193, 132, .35);
  border-radius: var(--rn-radius);
  padding: 8px 10px;
  color: var(--rn-green);
  background: rgba(121, 193, 132, .08);
  font-size: 14px;
  font-weight: 800;
}

.rn-availability.is-bad {
  border-color: rgba(217, 107, 94, .35);
  color: var(--rn-danger);
  background: rgba(217, 107, 94, .08);
}

.rn-select-tent {
  width: 100%;
}

.rn-gallery-button {
  min-height: 54px;
  padding: 0 14px;
  font-size: 17px;
}

.rn-tent-widget {
  max-width: 1480px;
  margin: 28px auto;
  padding: 0 20px;
  color: var(--rn-text);
}

.rn-tent-widget-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 14px;
}

.rn-tent-widget-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 3);
  gap: 14px;
  overflow-x: hidden;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.rn-tent-widget-track::-webkit-scrollbar {
  display: none;
}

.rn-tent-widget .rn-tent-card,
.rn-tent-widget .rn-empty,
.rn-tent-widget .rn-error {
  scroll-snap-align: start;
}

.rn-widget-nav {
  width: 46px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rn-line-strong) !important;
  border-radius: var(--rn-radius);
  background: #050505 !important;
  background-image: none !important;
  color: var(--rn-text) !important;
  padding: 0;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transform: none !important;
}

.rn-widget-nav:hover,
.rn-widget-nav:focus,
.rn-widget-nav:active {
  border-color: var(--rn-hover) !important;
  background: #080806 !important;
  background-image: none !important;
  color: var(--rn-hover) !important;
  box-shadow: inset 0 0 0 1px var(--rn-hover) !important;
}

.rn-crossbar-choice {
  margin: 0 0 16px;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  background: #070706;
}

.rn-crossbar-choice label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--rn-text);
  cursor: pointer;
}

.rn-crossbar-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--rn-gold);
}

.rn-crossbar-choice span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.rn-crossbar-choice strong {
  margin-left: auto;
  color: var(--rn-gold-light);
  font-size: 17px;
  font-weight: 600;
}

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

.rn-addon-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  background: var(--rn-panel);
  color: var(--rn-text);
  transition: border-color .18s ease, transform .18s ease;
}

.rn-addon-card:hover,
.rn-addon-card:has(input:checked) {
  border-color: var(--rn-hover);
}

.rn-addon-card.is-unavailable {
  opacity: .58;
}

.rn-addon-select {
  position: relative;
  display: grid;
  grid-template-rows: 180px 1fr;
  min-height: 100%;
  color: inherit;
  cursor: pointer;
}

.rn-addon-card.is-unavailable .rn-addon-select {
  cursor: not-allowed;
}

.rn-addon-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rn-addon-check {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rn-line-strong);
  border-radius: var(--rn-radius);
  background: #050505;
}

.rn-addon-card input:checked + .rn-addon-check {
  background: var(--rn-gold);
  border-color: var(--rn-hover);
}

.rn-addon-card input:checked + .rn-addon-check:after {
  content: "✓";
  display: block;
  color: #050505;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-1px);
}

.rn-addon-image {
  background: #111;
}

.rn-addon-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rn-addon-placeholder {
  background: linear-gradient(135deg, #080806, #2a2115);
}

.rn-addon-copy {
  display: grid;
  gap: 8px;
  padding: 15px;
}

.rn-addon-copy strong {
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
}

.rn-addon-copy em {
  color: var(--rn-muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.rn-addon-copy b {
  color: var(--rn-gold-light);
  font-size: 18px;
  font-weight: 700;
}

.rn-addon-stock {
  color: var(--rn-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.rn-addon-card.is-unavailable .rn-addon-stock {
  color: var(--rn-danger);
}

.rn-addon-gallery-button {
  min-height: 42px;
  margin: 0 15px 15px;
  padding: 0 14px;
  font-size: 16px;
}

.rn-addon-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.rn-final-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.rn-total {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  color: var(--rn-text);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
}

.rn-total small {
  color: var(--rn-muted);
  font-size: 15px;
  font-weight: 700;
}

.rn-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rn-booking-form textarea,
.rn-booking-form button,
.rn-booking-form .rn-error {
  grid-column: 1 / -1;
}

.rn-booking-form input,
.rn-booking-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: var(--rn-radius);
  background: #060605;
  color: var(--rn-text);
  padding: 0 16px;
  font-size: 18px;
  font-weight: 700;
  outline: none;
}

.rn-booking-form textarea {
  min-height: 118px;
  padding-top: 14px;
  resize: vertical;
}

.rn-booking-form input::placeholder,
.rn-booking-form textarea::placeholder {
  color: rgba(247, 241, 232, .46);
}

.rn-booking-form input:focus,
.rn-booking-form textarea:focus {
  border-color: var(--rn-hover);
}

.rn-empty,
.rn-error {
  grid-column: 1 / -1;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  padding: 20px;
  background: var(--rn-panel);
  color: var(--rn-muted);
  font-size: 18px;
  font-weight: 800;
}

.rn-error {
  border-color: rgba(217, 107, 94, .45);
  color: #f2b1aa;
}

.rn-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.rn-complete {
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  text-align: center;
}

.rn-complete > div {
  max-width: 760px;
}

.rn-complete-logo {
  width: 112px;
  height: auto;
  display: block;
  margin: 0 auto 26px;
}

.rn-complete p {
  margin: 12px auto;
  color: var(--rn-muted);
  font-size: 23px;
  font-weight: 700;
}

.rn-complete .rn-complete-main {
  color: var(--rn-text);
}

.rn-complete strong {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  padding: 0 18px;
  background: #070706;
  color: var(--rn-gold-light);
  font-size: 21px;
  font-weight: 700;
}

.rn-lightbox {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .88);
}

.rn-lightbox-inner {
  position: relative;
  width: min(1100px, 94vw);
  max-height: 90vh;
  display: grid;
  gap: 12px;
}

.rn-lightbox img {
  width: 100%;
  height: min(78vh, 760px);
  object-fit: cover;
  border: 1px solid var(--rn-line);
  border-radius: var(--rn-radius);
  background: #050505;
}

.rn-lightbox-close,
.rn-lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  align-items: center;
  justify-items: center;
  border: 1px solid var(--rn-line-strong);
  border-radius: var(--rn-radius);
  background: #050505;
  background-image: none !important;
  color: var(--rn-text);
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.rn-lightbox-close {
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  font-size: 28px;
}

.rn-lightbox-nav {
  top: 50%;
  width: 46px;
  height: 64px;
  transform: translateY(-50%);
  font-size: 38px;
}

.rn-lightbox-prev {
  left: 12px;
}

.rn-lightbox-next {
  right: 12px;
}

.rn-lightbox-close:hover,
.rn-lightbox-nav:hover {
  border-color: var(--rn-hover) !important;
  background: #080806 !important;
  background-image: none !important;
  color: var(--rn-hover) !important;
}

.rn-lightbox-caption {
  color: var(--rn-text);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.rn-lightbox-caption span {
  color: var(--rn-muted);
}

.rn-home-configurator,
.rn-app,
.rn-tent-widget {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.rn-home-configurator .rn-config-title,
.rn-app .rn-booking-header h1,
.rn-app .rn-section-head h2,
.rn-app .rn-complete h1 {
  font-weight: 700;
  line-height: 1.12;
}

.rn-home-configurator .rn-button,
.rn-home-configurator .rn-ghost-button,
.rn-app .rn-button,
.rn-app .rn-ghost-button,
.rn-tent-widget .rn-button,
.rn-tent-widget .rn-ghost-button,
.rn-app .rn-card-title,
.rn-tent-widget .rn-card-title,
.rn-app .rn-price,
.rn-tent-widget .rn-price,
.rn-app .rn-total,
.rn-app .rn-steps button {
  font-weight: 700;
}

.rn-home-configurator .rn-control-copy select,
.rn-home-configurator .rn-control-copy strong,
.rn-app .rn-live-summary strong,
.rn-app .rn-summary-select,
.rn-app .rn-calendar-day,
.rn-app .rn-calendar-toolbar strong {
  font-weight: 700;
}

.rn-app .rn-calendar-day:hover,
.rn-app .rn-calendar-day:focus,
.rn-app .rn-calendar-day:active {
  border-color: var(--rn-hover) !important;
  background: #12100c !important;
  background-image: none !important;
  color: var(--rn-hover) !important;
  box-shadow: inset 0 0 0 1px var(--rn-hover) !important;
}

.rn-app .rn-calendar-day.is-selected,
.rn-app .rn-calendar-day.is-selected:hover,
.rn-app .rn-calendar-day.is-selected:focus {
  border-color: var(--rn-hover) !important;
  background: var(--rn-gold) !important;
  background-image: none !important;
  color: #050505 !important;
}

@media (max-width: 1180px) {
  .rn-home-panel,
  .rn-calendar-layout,
  .rn-final-layout {
    grid-template-columns: 1fr;
  }

  .rn-home-submit {
    width: 100%;
  }

  .rn-tent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rn-live-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rn-app {
    padding: 16px 12px;
    background: var(--rn-bg) !important;
  }

  .rn-home-configurator {
    margin: 18px auto;
    padding: 0 12px;
  }

  .rn-home-panel {
    gap: 10px;
    padding: 12px;
    background: #030303 !important;
    border-color: var(--rn-line);
  }

  .rn-config-head {
    display: grid;
    gap: 8px;
    padding: 6px 8px 12px;
  }

  .rn-config-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .rn-config-head p {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.25;
  }

  .rn-config-control {
    width: 100%;
    min-height: 64px;
    padding: 12px;
    background: #070706 !important;
  }

  .rn-control-copy > span {
    font-size: 12px;
  }

  .rn-control-copy select,
  .rn-control-copy strong {
    min-height: 30px;
    height: auto;
    font-size: 22px;
    line-height: 1.1;
  }

  .rn-stepper {
    grid-template-columns: 40px 40px;
  }

  .rn-stepper button {
    height: 40px;
  }

  .rn-home-submit {
    min-height: 64px;
    min-width: 0;
    width: 100%;
    justify-content: center !important;
    padding: 0 20px;
    font-size: 20px;
    text-align: center;
  }

  .rn-booking-header,
  .rn-section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
  }

  .rn-booking-header h1,
  .rn-section-head h2,
  .rn-complete h1 {
    font-size: 34px;
  }

  .rn-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 14px;
  }

  .rn-steps button {
    min-height: 48px;
    padding: 0 7px;
    background: #070706 !important;
    font-size: 14px;
    line-height: 1.05;
    text-align: center;
  }

  .rn-live-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rn-live-summary div {
    padding: 11px 12px;
  }

  .rn-live-summary div:nth-child(3),
  .rn-live-summary div:nth-child(4),
  .rn-live-summary div:nth-child(5),
  .rn-live-summary div:nth-child(6) {
    grid-column: 1 / -1;
  }

  .rn-live-summary strong,
  .rn-summary-select {
    font-size: 16px;
    white-space: normal;
  }

  .rn-mini-stepper {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    width: 100%;
    max-width: 360px;
  }

  .rn-calendar-card,
  .rn-date-summary,
  .rn-summary,
  .rn-form-panel {
    padding: 14px;
  }

  .rn-addon-grid {
    grid-template-columns: 1fr;
  }

  .rn-addon-select {
    grid-template-rows: 160px 1fr;
  }

  .rn-addon-actions .rn-button {
    width: 100%;
  }

  .rn-lightbox {
    padding: 14px;
  }

  .rn-lightbox-inner {
    width: 100%;
    max-height: 88vh;
  }

  .rn-lightbox img {
    height: min(72vh, 620px);
    object-fit: contain;
  }

  .rn-calendar-toolbar strong {
    font-size: 23px;
  }

  .rn-calendar-weekdays span {
    font-size: 13px;
  }

  .rn-tent-grid,
  .rn-booking-form {
    grid-template-columns: 1fr;
  }

  .rn-tent-widget {
    margin: 20px auto;
    padding: 0 12px;
  }

  .rn-tent-widget-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rn-tent-widget-track {
    grid-auto-columns: 82%;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .rn-tent-widget .rn-widget-nav {
    display: none;
  }

  .rn-tent-widget .rn-tent-image {
    height: 160px;
  }

  .rn-tent-widget .rn-card-body {
    padding: 10px;
  }

  .rn-tent-widget .rn-card-title {
    font-size: 18px;
  }

  .rn-tent-widget .rn-card-meta,
  .rn-tent-widget .rn-benefits {
    font-size: 12px;
  }

  .rn-tent-widget .rn-benefits {
    min-height: 0;
  }

  .rn-tent-widget .rn-card-footer,
  .rn-tent-widget .rn-card-actions {
    grid-template-columns: 1fr;
  }

  .rn-tent-widget .rn-price em,
  .rn-tent-widget .rn-availability {
    display: none;
  }

  .rn-tent-widget .rn-price {
    font-size: 22px;
  }

  .rn-tent-widget .rn-button,
  .rn-tent-widget .rn-ghost-button {
    min-height: 48px;
    padding: 0 10px;
    font-size: 15px;
  }

  .rn-calendar-day,
  .rn-calendar-empty {
    min-height: 42px;
  }

  .rn-calendar-grid,
  .rn-calendar-weekdays {
    gap: 4px;
  }

  .rn-calendar-day {
    font-size: 18px;
  }

  .rn-date-summary .rn-button,
  .rn-booking-form .rn-button {
    width: 100%;
    justify-content: center !important;
    text-align: center;
  }

  .rn-tent-image {
    height: 220px;
  }

  .rn-card-body {
    padding: 14px;
  }

  .rn-card-footer {
    grid-template-columns: 1fr;
  }

  .rn-card-actions {
    grid-template-columns: 1fr;
  }

  .rn-crossbar-choice label {
    min-height: 0;
    flex-wrap: wrap;
    padding: 12px;
  }

  .rn-crossbar-choice strong {
    margin-left: 30px;
  }

  .rn-summary-row {
    align-items: flex-start;
  }

  .rn-booking-form input,
  .rn-booking-form textarea {
    font-size: 17px;
  }
}
