/* ==========================================================================
   Schwarzwaldstrand Booking Plugin - Scoped Stylesheet
   Parent Container: .new_bookings
   All unused landing-page and theme-interfering styles (header, footer, nav,
   global body/h1-h4/a resets) have been completely removed.
   ========================================================================== */

/* Design Tokens & Container Scoping */
.new_bookings {
  --blue-900: #1d2420;
  --blue-800: #344238;
  --blue-700: #2e3b32;
  --blue-600: #344238;
  --blue-500: #4a5d4f;
  --yellow: #a27458;
  --yellow-deep: #8a6349;
  --ink: #1d2420;
  --ink-soft: #4a5650;
  --mist: #f1efe8;
  --sand: #e8e5dc;
  --cloud: #faf9f5;
  --line: rgba(29, 36, 32, 0.18);
  --white: #faf9f5;
  --shadow: 0 18px 50px rgba(29, 36, 32, 0.14);
  --radius: 4px;
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  position: relative;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.05rem;
  box-sizing: border-box;
  width: 100%;
}

.new_bookings *,
.new_bookings *::before,
.new_bookings *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.new_bookings img {
  max-width: 100%;
  height: auto;
  display: block;
}

.new_bookings a {
  color: inherit;
  text-decoration: none;
}

.new_bookings p {
  margin: 0 0 1em;
}

.new_bookings h1,
.new_bookings h2,
.new_bookings h3,
.new_bookings h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0 0 0.55em;
}

.new_bookings button,
.new_bookings input,
.new_bookings select,
.new_bookings textarea {
  font-family: var(--font-body);
}

.new_bookings [hidden] {
  display: none !important;
}

/* Language Switcher */
.new_bookings .lang-switcher,
.lang-switcher.new_bookings {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(29, 36, 32, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.new_bookings .lang-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  text-decoration: none;
}

.new_bookings .lang-link:hover,
.new_bookings .lang-link.is-active {
  color: var(--yellow);
}

.new_bookings .lang-divider {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.75rem;
  user-select: none;
}

/* Buttons */
.new_bookings .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 0.72rem 1.15rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.new_bookings .btn:hover {
  transform: translateY(-1px);
}

.new_bookings .btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
}

.new_bookings .btn-pill {
  border-radius: 999px;
}

.new_bookings .btn-white {
  background: var(--white);
  color: var(--blue-900);
  box-shadow: 0 8px 22px rgba(29, 36, 32, 0.12);
}

.new_bookings .btn-white:hover {
  background: rgba(255, 255, 255, 0.92);
}

.new_bookings .btn-yellow {
  background: var(--yellow);
  color: var(--blue-900);
  box-shadow: 0 8px 22px rgba(162, 116, 88, 0.28);
}

.new_bookings .btn-yellow:hover {
  background: var(--yellow-deep);
}

.new_bookings .btn-blue {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(52, 66, 56, 0.28);
}

.new_bookings .btn-blue:hover {
  background: var(--blue-900);
}

.new_bookings .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
}

.new_bookings .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.new_bookings .section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5.5rem 0 1rem;
}

.new_bookings .eyebrow {
  margin: 0 0 0.55rem;
  color: var(--blue-600);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   HERO SECTION & SLIDER
   ============================================ */
.new_bookings .hero {
  position: relative;
  min-height: max(640px, 100vh);
  min-height: max(640px, 100svh);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  --hero-lift: clamp(8rem, 22vh, 14rem);
  color: var(--white);
  overflow: visible;
}

.new_bookings .hero-media {
  position: absolute;
  inset: 0;
  background: #0e1611;
  overflow: hidden;
  border-radius: 0;
  z-index: 0;
}

.new_bookings .hero-slides {
  position: absolute;
  inset: 0;
}

.new_bookings .hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.new_bookings .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.new_bookings .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.new_bookings .hero-slide.is-active img {
  transform: scale(1.1);
  animation: heroDrift 14s ease-in-out infinite alternate;
}

.new_bookings .hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    linear-gradient(180deg, rgba(14, 22, 17, 0.35) 0%, rgba(14, 22, 17, 0.12) 35%, rgba(14, 22, 17, 0.78) 100%),
    linear-gradient(90deg, rgba(14, 22, 17, 0.55), transparent 55%);
}

.new_bookings .hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 1.25rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.new_bookings .hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  max-width: 100%;
  margin-bottom: 0.85rem;
  color: var(--white);
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.new_bookings .hero-lead {
  max-width: min(54ch, 100%);
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 400;
}

.new_bookings .hero-footer {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0;
  margin-top: 0;
  margin-bottom: var(--hero-lift);
}

.new_bookings .hero-controls {
  position: absolute;
  right: max(1.25rem, calc((100% - 1180px) / 2 + 1rem));
  left: auto;
  bottom: calc(100% - 0.25rem);
  transform: translateY(-0.5rem);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.new_bookings .hero-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(14, 22, 17, 0.35);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_bookings .hero-nav:hover {
  background: rgba(162, 116, 88, 0.92);
  border-color: var(--yellow);
  color: var(--blue-900);
  transform: translateY(-1px);
}

.new_bookings .hero-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.new_bookings .hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s ease, background 0.25s ease, border-radius 0.25s ease;
}

.new_bookings .hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--yellow);
}

/* ============================================
   BOOKING BAR & FIELDS
   ============================================ */
.new_bookings .booking {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 5;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.new_bookings .booking-overlay {
  margin-top: 0;
}

.new_bookings .booking-bar-wrapper {
  position: relative;
  z-index: 90;
  width: 100%;
}

.new_bookings .booking-bar-wrapper svg {
  color: #000 !important;
}

.new_bookings .booking-note-on-hero {
  display: none;
}

.new_bookings .booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(210px, 1.6fr) minmax(80px, 0.68fr) minmax(85px, 0.72fr) minmax(85px, 0.72fr) minmax(135px, 1.05fr) auto;
  gap: 0.65rem;
  align-items: end;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(29, 36, 32, 0.14);
}

.new_bookings .booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.new_bookings .booking-field label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  height: 18px;
  line-height: 18px;
  margin: 0;
  white-space: nowrap;
  overflow: visible;
}

.new_bookings .field-label-text {
  flex-shrink: 0;
}

.new_bookings .booking-info-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #64748b;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  transition: color 0.18s ease, background-color 0.18s ease;
  flex-shrink: 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
}

.new_bookings .booking-info-trigger:hover,
.new_bookings .booking-info-trigger:focus-visible,
.new_bookings .booking-info-trigger.is-active {
  color: #1e3a2b;
  background-color: rgba(30, 58, 43, 0.08);
}

.new_bookings .booking-info-icon {
  width: 13px;
  height: 13px;
  display: block;
}

.new_bookings .booking-info-tooltip {
  position: absolute;
  bottom: calc(100% + 7px);
  right: -4px;
  width: max-content;
  max-width: 220px;
  background: #1b2820;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  visibility: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.18s ease;
  pointer-events: none;
  z-index: 200;
}

.new_bookings .booking-info-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 7px;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #1b2820 transparent transparent transparent;
}

.new_bookings .booking-info-trigger:hover .booking-info-tooltip,
.new_bookings .booking-info-trigger:focus-visible .booking-info-tooltip,
.new_bookings .booking-info-trigger.is-active .booking-info-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.new_bookings .booking-field-hint {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  color: #64748b;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.85;
}

.new_bookings .booking-field input,
.new_bookings .booking-field select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(29, 36, 32, 0.16);
  border-radius: 8px;
  padding: 0 0.85rem;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  background: #f8f7f4;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.new_bookings .booking-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23344238' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 1.85rem;
}

.new_bookings .booking-field input:focus,
.new_bookings .booking-field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(52, 66, 56, 0.14);
  background: #ffffff;
}

.new_bookings .booking-field input:hover,
.new_bookings .booking-field select:hover {
  border-color: rgba(29, 36, 32, 0.32);
}

.new_bookings .date-picker-wrap {
  position: relative;
  width: 100%;
}

.new_bookings .date-picker-wrap input.date-input {
  cursor: pointer;
  padding-right: 2.2rem;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  caret-color: transparent;
}

.new_bookings .date-picker-wrap input.date-input:focus,
.new_bookings .date-picker-wrap input.date-input:active {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(52, 66, 56, 0.14);
}

.new_bookings .date-picker-wrap .date-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 0.95rem;
  opacity: 0.65;
}

/* Pets Field & Details Popover */
.new_bookings .booking-field-pets {
  position: relative;
  min-width: 0;
}

.new_bookings .pet-select-wrapper {
  position: relative;
  width: 100%;
}

.new_bookings .pet-details-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(29, 36, 32, 0.18);
  padding: 0.95rem 1.1rem;
  z-index: 60;
  animation: petPanelDrop 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.new_bookings .pet-details-inner {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.new_bookings .pet-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.new_bookings .pet-panel-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-900);
}

.new_bookings .pet-max-tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.new_bookings .pet-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f1efe8;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 6px;
}

.new_bookings .pet-counter-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue-900);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: all 0.15s ease;
}

.new_bookings .pet-counter-btn:hover:not(:disabled) {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.new_bookings .pet-counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.new_bookings .pet-counter-val {
  min-width: 18px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-900);
}

.new_bookings .pet-charges-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  background: rgba(162, 116, 88, 0.08);
  border: 1px solid rgba(162, 116, 88, 0.22);
  border-radius: 8px;
}

.new_bookings .pet-charge-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.new_bookings .pet-charge-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.new_bookings .pet-charge-calc {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.new_bookings .pet-charge-total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--yellow-deep);
}

.new_bookings .pet-panel-actions {
  display: flex;
  justify-content: flex-end;
}

.new_bookings .pet-panel-done-btn {
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-800);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.new_bookings .pet-panel-done-btn:hover {
  background: var(--blue-900);
}

/* Book Multiple Toggle Switch */
.new_bookings .booking-field-multiple {
  position: relative;
}

.new_bookings .toggle-switch-wrapper {
  position: relative;
  width: 100%;
}

.new_bookings .toggle-switch {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(29, 36, 32, 0.16);
  border-radius: 8px;
  background: #f8f7f4;
  padding: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.new_bookings .toggle-switch:focus-visible {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(52, 66, 56, 0.15);
}

.new_bookings .toggle-switch:hover {
  border-color: rgba(29, 36, 32, 0.32);
}

.new_bookings .toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
  user-select: none;
}

.new_bookings .toggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: color 0.22s ease;
}

.new_bookings .toggle-label-no {
  color: var(--ink);
}

.new_bookings .toggle-label-yes {
  color: #94a3b8;
}

.new_bookings .toggle-slider-pill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.06);
  z-index: 1;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.24s ease;
}

.new_bookings .toggle-switch.is-yes .toggle-slider-pill {
  transform: translateX(100%);
  background: var(--blue-800);
}

.new_bookings .toggle-switch.is-yes .toggle-label-no {
  color: #94a3b8;
}

.new_bookings .toggle-switch.is-yes .toggle-label-yes {
  color: #ffffff;
}

.new_bookings .booking-multiple-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue-700);
  background: rgba(52, 66, 56, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-left: 0.75rem;
  vertical-align: middle;
}

/* Submit Search Button */
.new_bookings .booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: auto;
  min-width: 125px;
  height: 48px;
  padding: 0 1.5rem;
  margin: 0;
  align-self: end;
  background: var(--blue-800);
  color: #ffffff !important;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(52, 66, 56, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.new_bookings .booking-submit svg {
  flex-shrink: 0;
  color: #ffffff !important;
  transition: transform 0.2s ease;
}

.new_bookings .booking-submit:hover {
  background: #232d26;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(52, 66, 56, 0.35);
}

.new_bookings .booking-submit:hover svg {
  transform: scale(1.1);
}

.new_bookings .booking-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(52, 66, 56, 0.2);
}

/* ============================================
   INTERACTIVE AVAILABILITY CALENDAR POPOVER
   ============================================ */
.new_bookings .cal-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(14, 22, 17, 0.25);
  padding: 1.25rem 1.4rem;
  z-index: 120;
  animation: cal-drop 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.new_bookings .cal-popover,
.new_bookings .cal-popover * {
  -webkit-tap-highlight-color: transparent !important;
}

.new_bookings .cal-popover button:focus,
.new_bookings .cal-popover button:focus-visible {
  outline: none !important;
}

.new_bookings .cal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.new_bookings .cal-legend {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.new_bookings .cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-900);
}

.new_bookings .cal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.new_bookings .cal-dot.cal-green {
  background: #2e7d32;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.25);
}

.new_bookings .cal-dot.cal-amber {
  background: #e6a23c;
  box-shadow: 0 0 0 2px rgba(230, 162, 60, 0.25);
}

.new_bookings .cal-dot.cal-red {
  background: #d32f2f;
  box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.25);
}

.new_bookings .cal-legend-minstay {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(52, 66, 56, 0.08);
  color: var(--blue-800);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(52, 66, 56, 0.2);
  user-select: none;
  -webkit-user-select: none;
}

.new_bookings .cal-property-tabs {
  display: flex;
  align-items: center;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 3px;
  margin-bottom: 0.85rem;
}

.new_bookings .cal-prop-tab {
  flex: 1;
  text-align: center;
  background: none;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-900);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.new_bookings .cal-prop-tab:hover:not(.is-active) {
  background: rgba(52, 66, 56, 0.08);
}

.new_bookings .cal-prop-tab.is-active {
  background: var(--blue-800);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(14, 22, 17, 0.15);
}

.new_bookings .cal-close-btn {
  background: rgba(29, 36, 32, 0.08);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--blue-900);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new_bookings .cal-close-btn:hover {
  background: rgba(29, 36, 32, 0.16);
  transform: rotate(90deg);
}

.new_bookings .cal-months-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.new_bookings .cal-month {
  display: flex;
  flex-direction: column;
}

.new_bookings .cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.new_bookings .cal-month-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-900);
  margin: 0;
}

.new_bookings .cal-nav-btn {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--blue-900);
  transition: background 0.15s, border-color 0.15s;
}

.new_bookings .cal-nav-btn:hover:not(:disabled) {
  background: var(--sand);
  border-color: var(--blue-600);
}

.new_bookings .cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.new_bookings .cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.new_bookings .cal-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.new_bookings .cal-day-cell {
  position: relative;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.15s;
}

.new_bookings .cal-day-empty {
  cursor: default;
}

.new_bookings .cal-day-past {
  color: #a0a7a2;
  cursor: not-allowed;
  opacity: 0.35;
}

.new_bookings .cal-day-avail {
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
  border: 1px solid rgba(46, 125, 50, 0.25);
}

.new_bookings .cal-day-avail:hover {
  background: rgba(46, 125, 50, 0.28);
  border-color: #2e7d32;
}

.new_bookings .cal-day-partial {
  background: rgba(230, 162, 60, 0.13);
  color: #8c5600;
  border: 1px solid rgba(230, 162, 60, 0.38);
}

.new_bookings .cal-day-partial:hover {
  background: rgba(230, 162, 60, 0.25);
  border-color: #e6a23c;
}

.new_bookings .cal-day-partial::before {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e6a23c;
}

.new_bookings .cal-day-cell .cal-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  background: #19231c;
  color: #f5f6f4;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.76rem;
  line-height: 1.4;
  box-shadow: 0 10px 28px rgba(10, 16, 12, 0.4);
  pointer-events: none;
  z-index: 100;
  white-space: nowrap;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.new_bookings .cal-day-cell .cal-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #19231c transparent transparent transparent;
}

.new_bookings .cal-day-cell:hover .cal-tooltip {
  display: block;
  animation: cal-tooltip-pop 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.new_bookings .cal-day-unavail {
  background: rgba(211, 47, 47, 0.09);
  color: #b71c1c;
  border: 1px solid rgba(211, 47, 47, 0.24);
  cursor: not-allowed;
  position: relative;
}

.new_bookings .cal-day-unavail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: #e57373;
  transform: rotate(-18deg);
  opacity: 0.8;
}

.new_bookings .cal-day-selected {
  background: var(--blue-700) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-color: var(--blue-800) !important;
}

.new_bookings .cal-day-in-range {
  background: rgba(52, 66, 56, 0.16) !important;
  color: var(--blue-900) !important;
  border-radius: 0;
}

.new_bookings .cal-day-min-invalid {
  opacity: 0.45;
  cursor: not-allowed;
  border-style: dashed;
}

.new_bookings .cal-bottombar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.new_bookings .cal-instruction {
  color: var(--blue-900);
  font-weight: 600;
}

/* ============================================
   BOOK DIRECT SECTION
   ============================================ */
.new_bookings .book-direct {
  padding: 4rem 0;
  background: transparent;
}

.new_bookings .book-direct-inner {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

.new_bookings .bd-top {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
}

.new_bookings .bd-heading {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #5a89a9;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0 0 0.5rem;
}

.new_bookings .bd-subheading {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5a89a9;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.new_bookings .bd-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  color: #333;
  line-height: 1.65;
  margin: 0 0 0.7rem;
}

.new_bookings .btn-bd {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: #75af8f;
  background: transparent;
  border: 1px solid #75af8f;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.new_bookings .btn-bd:hover {
  background: #75af8f;
  color: #fff;
}

.new_bookings .bd-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.new_bookings .bd-col-heading {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 29px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #5a89a9;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.new_bookings .bd-notes-list {
  padding-left: 1.2rem;
  margin: 0;
}

.new_bookings .bd-notes-list li {
  font-family: 'Lora', Georgia, serif;
  font-size: 19px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 0.4rem;
  list-style: disc;
}

/* ============================================
   PRICING & APPROACH SECTION
   ============================================ */
.new_bookings .pricing-section {
  background: #fff;
  padding: 4rem 0;
}

.new_bookings .pricing-inner {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.new_bookings .pricing-row-top,
.new_bookings .pricing-row-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.new_bookings .pricing-card {
  border: 1px solid #dde4e8;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.new_bookings .pricing-card-header {
  background: #5A89A9;
  padding: 0.9rem 1rem 0.75rem;
  text-align: center;
}

.new_bookings .pricing-card-title {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.new_bookings .pricing-card-sub {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.82rem;
  color: #ffffff;
  margin: 0;
  font-style: italic;
}

.new_bookings .pricing-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.new_bookings .pricing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.new_bookings .pricing-card:hover .pricing-card-img img {
  transform: scale(1.04);
}

.new_bookings .pricing-list {
  padding: 1rem 1rem 1rem 1.6rem;
  margin: 0;
  list-style: disc;
  flex: 1;
}

.new_bookings .pricing-list li {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.87rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.new_bookings .pricing-approach {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.new_bookings .approach-heading {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #5a89a9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.85rem;
}

.new_bookings .approach-body {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.87rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.55rem;
}

.new_bookings .approach-body strong {
  font-weight: 700;
  color: #222;
}

/* ============================================
   CONTACT US SECTION
   ============================================ */
.new_bookings .contact-section {
  background: #fff;
  padding: 4rem 0;
}

.new_bookings .contact-inner {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.new_bookings .contact-heading {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 29px;
  font-weight: 300;
  color: #5a89a9;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.new_bookings .contact-intro {
  font-family: 'Lora', Georgia, serif;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.new_bookings .contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.new_bookings .contact-line {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  color: #333;
  line-height: 1.75;
  margin: 0;
}

.new_bookings .contact-whatsapp {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  color: #4caf50;
  text-decoration: none;
  line-height: 1.75;
  transition: color 0.2s ease;
}

.new_bookings .contact-whatsapp:hover {
  color: #388e3c;
  text-decoration: underline;
}

.new_bookings .contact-right {
  width: 100%;
}

.new_bookings .contact-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

/* ============================================
   TOAST NOTIFICATION & REVEAL ANIMATIONS
   ============================================ */
.new_bookings .toast,
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: var(--blue-900, #1d2420);
  color: var(--white, #faf9f5);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(29, 36, 32, 0.14);
  font-family: var(--font-body, "Inter", sans-serif);
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.new_bookings .toast.show,
.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.new_bookings .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.new_bookings .reveal.in,
.new_bookings .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.new_bookings .delay-1 {
  transition-delay: 0.1s;
}

.new_bookings .delay-2 {
  transition-delay: 0.2s;
}

.new_bookings .delay-3 {
  transition-delay: 0.3s;
}

/* Keyframe Animations */
@keyframes heroDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes petPanelDrop {
  from {
    opacity: 0;
    transform: translate(-50%, -6px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes cal-drop {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cal-tooltip-pop {
  from {
    opacity: 0;
    transform: translate(-50%, 3px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* ============================================
   RESPONSIVE MEDIA QUERIES (Scoped)
   ============================================ */
@media (max-width: 1080px) {
  .new_bookings .booking-form {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .new_bookings .booking-field-date {
    grid-column: 1 / -1;
  }

  .new_bookings .booking-field-adults,
  .new_bookings .booking-field-children,
  .new_bookings .booking-field-dogs {
    grid-column: span 1;
  }

  .new_bookings .booking-field-multiple {
    grid-column: span 2;
  }

  .new_bookings .booking-submit {
    grid-column: span 1;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .new_bookings .booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .new_bookings .booking-field-date {
    grid-column: 1 / -1;
  }

  .new_bookings .booking-field-multiple {
    grid-column: 1 / -1;
  }

  .new_bookings .booking-submit {
    grid-column: 1 / -1;
    width: 100%;
  }

  .new_bookings .hero {
    --hero-lift: clamp(5.5rem, 16vh, 9rem);
  }

  .new_bookings .hero-content {
    margin-left: 1rem;
    padding-bottom: 1rem;
  }

  .new_bookings .hero-controls {
    right: 1.25rem;
    bottom: calc(100% - 0.15rem);
  }

  .new_bookings .hero-footer {
    padding-bottom: 0;
  }
}

@media (max-width: 900px) {
  .new_bookings .pricing-row-top,
  .new_bookings .pricing-row-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .new_bookings .pricing-approach {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .new_bookings .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .new_bookings .contact-heading {
    font-size: 22px;
  }
}

@media (max-width: 720px) {
  .new_bookings .cal-months-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .new_bookings .lang-switcher {
    top: 0.85rem;
    right: 0.85rem;
    padding: 0.32rem 0.65rem;
  }

  .new_bookings .booking-form {
    grid-template-columns: 1fr;
  }

  .new_bookings .pet-details-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }

  .new_bookings .hero-title {
    white-space: normal;
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .new_bookings .hero-lead {
    max-width: 36ch;
  }

  .new_bookings .hero-controls {
    right: 1rem;
    bottom: calc(100% + 0.15rem);
  }

  .new_bookings .hero {
    --hero-lift: clamp(4.5rem, 14vh, 7rem);
  }

  .new_bookings .hero-content {
    padding-bottom: 0.85rem;
  }

  .new_bookings .hero-footer {
    padding-bottom: 0;
  }

  .new_bookings .hero-nav {
    width: 38px;
    height: 38px;
  }

  .new_bookings .bd-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .new_bookings .bd-heading {
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .new_bookings .pricing-row-top,
  .new_bookings .pricing-row-bottom {
    grid-template-columns: 1fr;
  }
}