html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

:root {
  --client-color: #000;
}

body {
  margin-bottom: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      color-mix(in srgb, var(--client-color) 45%, transparent),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 15%,
      color-mix(in srgb, var(--client-color) 22%, white),
      transparent 32%
    ),
    radial-gradient(
      circle at 70% 85%,
      color-mix(in srgb, var(--client-color) 30%, transparent),
      transparent 38%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--client-color) 10%, #f8fafc),
      #f8fafc 55%,
      color-mix(in srgb, var(--client-color) 14%, #eef2ff)
    );
  background-attachment: fixed;
}

.bg-wrapper::before {
  content: '';
  position: fixed;
  top: -250px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--client-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--client-color) 20%, transparent);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.bg-wrapper::after {
  content: '';
  position: fixed;
  bottom: -230px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--client-color) 12%, transparent);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.content-wrapper > main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 0 !important;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 100;
}

.navbar-brand-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-right: auto;
}

.navbar-language-buttons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.navbar-logo {
  flex-shrink: 0;
  max-width: 50px;
  height: 50px;
  object-fit: contain;
}

.navbar-brand-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
  white-space: nowrap;
}

.container {
  position: relative;
  z-index: 2;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


.card-body h1 .bi,
.card-body h2 .bi {
  margin-right: 0.5rem;
  color: var(--client-color);
}

.payment-page-shell {
  position: relative;
  z-index: 2;
}

.stay-column .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 1rem;
}

.stay-column .eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--client-color);
  border-radius: 999px;
}

.stay-title {
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #111827;
}

.intro {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.hotel-card,
.payment-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.hotel-card {
  padding: 1.25rem;
}

.hotel-card-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.property-logo {
  width: 52px;
  height: 52px;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--client-color) 22%, #ffffff);
  color: #111827;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-copy p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.property-copy h2 {
  margin: 0.15rem 0;
  font-size: 1.2rem;
  color: #111827;
}

.property-copy span {
  color: #4b5563;
  font-size: 0.9rem;
}

.date-strip {
  margin-top: 1rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 0.85rem;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.date-block span,
.date-block small {
  color: #6b7280;
  font-size: 0.78rem;
}

.date-block strong {
  font-size: 1.5rem;
  line-height: 1;
  color: #111827;
}

.nights-line {
  text-align: center;
  color: #374151;
  font-size: 0.85rem;
}

.nights-line i {
  display: block;
  width: 58px;
  height: 2px;
  margin: 0.4rem auto 0;
  background: var(--client-color);
}

.room-row {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px dashed #d1d5db;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.room-icon,
.guest-count i {
  color: var(--client-color);
}

.room-name span,
.room-name small,
.guest-count span {
  display: block;
  color: #6b7280;
  font-size: 0.85rem;
}

.room-name strong,
.guest-count strong {
  color: #111827;
}

.payment-card {
  padding: 1.2rem;
  position: sticky;
  top: 1rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea580c;
}

.pay-heading {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.8rem;
}

.pay-heading span {
  color: #374151;
  font-weight: 600;
}

.pay-heading small {
  display: block;
  color: #6b7280;
}

.pay-heading strong {
  font-size: 2rem;
  line-height: 1;
  color: #111827;
}

.pay-heading sup,
.pay-heading strong span {
  font-size: 1rem;
}

.deadline,
.trust-line {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.deadline i,
.trust-line i {
  color: var(--client-color);
}

.deadline span {
  display: block;
  color: #6b7280;
  font-size: 0.8rem;
}

.deadline strong {
  color: #111827;
  font-size: 0.9rem;
}

.price-breakdown {
  margin-top: 1rem;
}

.price-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
  color: #374151;
}

.price-total {
  border-top: 1px solid #d1d5db;
  padding-top: 0.5rem;
}

.price-total strong {
  font-size: 1.2rem;
  color: #111827;
}

.widget-placeholder {
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 0.75rem;
  border: 1px dashed #9ca3af;
  background: #f9fafb;
}

.widget-placeholder span,
.widget-placeholder small,
.booking-tax-note,
.trust-line span {
  display: block;
  color: #4b5563;
  font-size: 0.85rem;
}

.trust-line span strong {
  display: block;
  color: #111827;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');

.payment-page {
  --brand: var(--client-color);
  --brand-dark: color-mix(in srgb, var(--client-color) 78%, #000);
  --ink: #17212b;
  --muted: #66717f;
  --line: #e7e8eb;
  --paper: #fff;
  --warm: color-mix(in srgb, var(--brand) 8%, #f6f5f2);
  --warm-strong: color-mix(in srgb, var(--brand) 14%, #f2f1ee);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 0 22px;
  background: radial-gradient(circle at 8% 8%, color-mix(in srgb, var(--brand) 11%, transparent), transparent 28%), linear-gradient(145deg, var(--warm) 0%, var(--warm-strong) 100%);
  font-family: "DM Sans", sans-serif;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
  opacity: .55;
}

.ambient-one {
  width: 360px;
  height: 360px;
  right: -170px;
  top: 130px;
  background: color-mix(in srgb, var(--brand) 13%, transparent);
}

.ambient-two {
  width: 240px;
  height: 240px;
  left: -130px;
  bottom: 60px;
  background: color-mix(in srgb, var(--brand) 18%, #d7e7e1);
}

.topbar {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(23, 33, 43, .09);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  display: block;
  max-width: 150px;
  max-height: 48px;
  object-fit: contain;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--brand) 30%, transparent);
}

.brand-word {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.7px;
}

.brand-structure {
  margin-left: .5rem;
  padding-left: .75rem;
  border-left: 1px solid color-mix(in srgb, var(--brand) 25%, #cbd5e1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  max-width: 320px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.checkout-shell {
  position: relative;
  z-index: 1;
  padding-top: 66px;
  padding-bottom: 42px;
  max-width: 1180px;
}

.stay-column {
  padding-top: 14px;
}

.eyebrow {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.payment-page h1 {
  margin: 17px 0 16px;
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
  letter-spacing: -3.2px;
  font-weight: 600;
  max-width: 700px;
}

.payment-page h1 em {
  color: var(--brand);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.intro {
  max-width: 590px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 34px;
}

.hotel-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 25px;
  box-shadow: 0 22px 60px rgba(22, 30, 40, .08);
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.hotel-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.property-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #18232d;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  letter-spacing: 1px;
}

.property-copy {
  flex: 1;
  min-width: 0;
}

.property-copy p,
.property-copy h2 {
  margin: 0;
}

.property-copy p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #9298a0;
  font-weight: 700;
}

.property-copy h2 {
  font-size: 20px;
  letter-spacing: -.4px;
  margin: 2px 0 3px;
}

.property-copy span {
  color: var(--muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-code {
  padding: 7px 10px;
  border-radius: 8px;
  background: #f0effb;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  cursor: pointer;
}

.booking-item + .booking-item {
  border-top: 8px solid var(--warm);
}

.date-strip {
  padding: 26px 31px;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  align-items: center;
  background: linear-gradient(90deg, #fcfcfc, #f8f7ff, #fcfcfc);
}

.date-block > span {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1.2px;
  color: #9298a0;
  font-weight: 700;
  display: block;
}

.date-block strong {
  font-size: 43px;
  line-height: 1;
  letter-spacing: -2px;
  display: inline-block;
  margin: 7px 0 2px;
}

.date-block div {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
}

.date-block small {
  font-size: 11px;
  color: #9aa0a8;
}

.nights-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #8d949d;
  font-size: 11px;
}

.nights-line i {
  width: 100%;
  height: 1px;
  display: block;
  background: #d8d9de;
  position: relative;
}

.nights-line i::before,
.nights-line i::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--brand);
  background: white;
  border-radius: 50%;
}

.nights-line i::before { left: 0; }
.nights-line i::after { right: 0; }

.room-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 24px;
  border-top: 1px solid var(--line);
}

.room-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #f0effb;
  color: var(--brand);
}

.room-name {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-name span {
  font-size: 10px;
  color: #9298a0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .8px;
}

.room-name strong { font-size: 14px; }
.room-name small { font-size: 11px; color: #8b929a; }

.guest-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #69727c;
  font-size: 12px;
}

.guest-count strong { color: var(--ink); }

.support-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 25px 4px 0;
  color: var(--muted);
}

.support-row > i { width: 19px; color: var(--brand); }
.support-row div { display: flex; flex-direction: column; font-size: 12px; }
.support-row strong { color: var(--ink); font-size: 12px; }

.payment-card {
  background: #fff;
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(26, 31, 38, .13);
  border: 1px solid rgba(255, 255, 255, .9);
}

.status-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  background: #fff7df;
  color: #a66c00;
  padding: 7px 11px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .8px;
}

.status-pill span {
  width: 6px;
  height: 6px;
  background: #e5a524;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fcedbb;
}

.pay-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin: 22px 0;
}

.pay-heading > div { display: flex; flex-direction: column; }
.pay-heading > div span { font-size: 13px; font-weight: 700; }
.pay-heading small { color: #9aa0a8; font-size: 10px; }
.pay-heading > strong { font-size: 36px; letter-spacing: -1.7px; line-height: 1; }
.pay-heading sup { font-size: 15px; top: -.8em; }
.pay-heading > strong span { font-size: 22px; }

.deadline {
  background: #f6f5fe;
  border: 1px solid #e6e3fb;
  color: var(--brand-dark);
  border-radius: 13px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.deadline div { display: flex; flex-direction: column; }
.deadline span { font-size: 10px; color: #8d86c2; text-transform: uppercase; font-weight: 700; letter-spacing: .7px; }
.deadline strong { font-size: 12px; }

.price-breakdown {
  margin: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}

.price-breakdown > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--muted);
}

.price-breakdown strong { color: var(--ink); font-weight: 600; }
.price-breakdown .price-total { border-top: 1px dashed #d9dadd; padding: 15px 0 17px; margin: 16px 0 0; font-size: 14px; color: var(--ink); }
.price-total strong { font-size: 17px; }

.widget-placeholder {
  border: 1px dashed #c8cad0;
  background: #fafafa;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 3px;
}

.widget-placeholder span { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--brand); }
.widget-placeholder strong { font-size: 12px; }
.widget-placeholder small { font-size: 10px; color: #9298a0; }

.pay-button {
  margin-top: 14px;
  border: 0;
  width: 100%;
  border-radius: 14px;
  padding: 16px 20px;
  background: var(--brand);
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--brand) 28%, transparent);
  transition: .2s ease;
}

.pay-button:hover { background: var(--brand-dark); transform: translateY(-1px); }
.pay-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 25%, white); outline-offset: 3px; }
.pay-button span:last-child { font-size: 20px; line-height: 0; }

.terms {
  text-align: center;
  color: #a0a4aa;
  font-size: 9px;
  line-height: 1.5;
  margin: 11px 20px 17px;
}

.terms a { text-decoration: underline; }

.trust-line {
  border-top: 1px solid var(--line);
  padding-top: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: #737b84;
}

.trust-line span { display: flex; flex-direction: column; font-size: 9px; }
.trust-line strong { font-size: 10px; color: var(--ink); }

.footer-row {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: #989da3;
  font-size: 10px;
  padding: 13px 0 28px;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 50;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  background: #17212b;
  color: #fff;
  padding: 10px 15px;
  border-radius: 999px;
  font-size: 12px;
  transition: .2s ease;
}

.copy-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 991.98px) {
  .checkout-shell { padding-top: 42px; }
  .stay-column { padding-top: 0; }
  .payment-card { max-width: 650px; }
}

@media (max-width: 575.98px) {
  .payment-page { padding: 0 14px; }
  .topbar { height: 78px; }
  .secure-note { font-size: 0; }
  .brand-structure { display: none; }
  .checkout-shell { padding-top: 31px; }
  .eyebrow { font-size: 10px; }
  .payment-page h1 { letter-spacing: -2.2px; font-size: 42px; }
  .intro { font-size: 15px; }
  .hotel-card-top { padding: 18px; }
  .property-logo { width: 46px; height: 46px; }
  .property-copy h2 { font-size: 17px; }
  .property-copy span { max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .booking-code { display: none; }
  .date-strip { grid-template-columns: 1fr 78px 1fr; padding: 22px 19px; }
  .date-block strong { font-size: 35px; }
  .nights-line { font-size: 10px; }
  .room-row { padding: 17px 18px; }
  .guest-count { align-items: flex-start; }
  .guest-count span { display: flex; flex-direction: column; }
  .payment-card { padding: 23px 19px; border-radius: 22px; }
  .pay-heading > strong { font-size: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

}