:root {
  --green: #004638;
  --green-deep: #06241e;
  --gold: #f5b528;
  --cream: #f7f3eb;
  --ink: #10241f;
  --muted: #52615d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 45px rgba(4, 28, 24, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #f7f8f6;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  content: "";
  inset: 0;
  pointer-events: none;
}

body::before {
  display: none;
}

body::after {
  display: none;
}

main {
  position: relative;
  z-index: 1;
}

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

button,
input { font: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  color: #ffffff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(100%, 1440px);
  margin: 0 auto;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(12, 34, 30, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 318px;
}

.brand-mark {
  position: relative;
  width: 86px;
  height: 59px;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  inset: 10px 0 0 0;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: skewX(-28deg) rotate(-8deg);
}

.brand-mark::after {
  inset: 28px 8px 7px 8px;
  opacity: 0.9;
}

.brand-copy {
  display: grid;
  line-height: 0.9;
}

.brand-book {
  font-size: 42px;
  font-weight: 800;
}

.brand-montenegro {
  margin-top: 4px;
  color: var(--gold);
  font-size: 23px;
  letter-spacing: 5.3px;
}

.brand-tagline {
  margin-top: 5px;
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.4vw, 42px);
  flex: 1;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a { white-space: nowrap; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.wishlist {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wishlist span {
  font-size: 33px;
  line-height: 0;
}

.language,
.menu-toggle {
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.site-header.is-scrolled .language,
.site-header.menu-open .language {
  border-left-color: rgba(16, 36, 31, 0.12);
}

.language span {
  font-size: 26px;
  font-weight: 400;
}

.menu-toggle {
  display: grid;
  gap: 7px;
  width: 31px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(680px, 100vh, 860px);
  color: #ffffff;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: #06372f;
}

.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.06) contrast(1.08) saturate(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 46, 38, 0.78) 0%, rgba(0, 46, 38, 0.48) 34%, rgba(0, 46, 38, 0.16) 62%, rgba(0, 31, 27, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 20, 17, 0.34) 0%, rgba(0, 70, 56, 0.08) 54%, rgba(0, 44, 36, 0.54) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 264px;
  gap: 46px;
  align-items: center;
  width: min(calc(100% - 72px), 1440px);
  min-height: clamp(680px, 100vh, 860px);
  margin: 0 auto;
  padding: 112px 0 58px;
}

.hero-content { max-width: 760px; }

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(58px, 4.85vw, 74px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.32);
}

.hero-script {
  margin: 0 0 15px;
  color: var(--gold);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(42px, 4.1vw, 63px);
  line-height: 0.95;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 46, 39, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.hero-mini-trust div {
  padding: 8px 15px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-mini-trust div:first-child { border-left: 0; }

.hero-mini-trust strong,
.hero-mini-trust span {
  display: block;
}

.hero-mini-trust strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
}

.hero-mini-trust span {
  margin-top: 2px;
  font-size: 11px;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 214px;
  align-items: center;
  width: min(660px, 100%);
  min-height: 70px;
  padding: 8px 10px 8px 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  box-shadow: 0 26px 62px rgba(0, 24, 20, 0.28), 0 8px 20px rgba(0, 0, 0, 0.13);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.search-panel:focus-within,
.search-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 76px rgba(0, 24, 20, 0.33), 0 10px 26px rgba(0, 0, 0, 0.16);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 0 20px;
}

.field-icon {
  color: #0d332b;
  font-size: 31px;
}

.field-title,
.field-help { display: block; }

.search-input {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.search-input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.field-help {
  margin-top: 5px;
  color: #65706c;
  font-size: 12px;
}

.search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.search-button span { font-size: 23px; }

.category-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  margin-top: 19px;
}

.category-pills a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 9px;
  color: #101d19;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 9px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  font-size: 13px;
  font-weight: 700;
}

.category-pills span { font-size: 19px; }

.steps-card {
  align-self: start;
  margin-top: 0;
  padding: 17px 17px 18px;
  color: #ffffff;
  background: linear-gradient(160deg, rgba(4, 50, 41, 0.95), rgba(3, 31, 27, 0.95));
  border: 1px solid rgba(245, 181, 40, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.steps-card h2 {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.1;
}

.steps-card h2 span { color: var(--gold); }

.steps-card > p {
  margin: 0 0 16px;
  font-size: 13px;
}

.steps-card ol {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0 0 20px;
  list-style: none;
  border-bottom: 1px solid var(--line);
}

.steps-card li {
  display: grid;
  grid-template-columns: 32px 34px 1fr;
  align-items: center;
  gap: 10px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #08261f;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(245, 181, 40, 0.26);
  font-size: 18px;
  font-weight: 900;
}

.step-icon { font-size: 29px; }

.steps-card strong,
.steps-card small { display: block; }

.steps-card strong { font-size: 12px; }

.steps-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 10.5px;
}

.cancel-note {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 16px;
}

.cancel-note > span:first-child {
  color: var(--gold);
  font-size: 30px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: calc(100% - 60px);
  margin: -28px auto 0;
  padding: 8px 20px;
  color: #ffffff;
  background: linear-gradient(90deg, #004638, #073e34);
  border: 1px solid rgba(245, 181, 40, 0.16);
  border-radius: 13px;
  box-shadow: 0 16px 34px rgba(4, 30, 26, 0.24);
  position: relative;
  z-index: 2;
}

.trust-bar div {
  display: grid;
  grid-template-columns: 39px 1fr;
  column-gap: 11px;
  align-items: center;
  min-height: 24px;
  padding: 0 13px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-bar div:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-bar span {
  grid-row: span 2;
  color: var(--gold);
  font-size: 28px;
}

.trust-bar strong,
.trust-bar small { display: block; }

.trust-bar strong { font-size: 12px; }

.trust-bar small {
  margin-top: 2px;
  font-size: 11px;
}

.page-shell {
  width: 100%;
  margin: 0 auto 34px;
  background: #f7f8f6;
  box-shadow: none;
}

.popular-section {
  width: min(calc(100% - 72px), 1440px);
  margin: 0 auto;
  padding: 26px 60px 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2 {
  position: relative;
  margin: 0;
  color: #0c332b;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.section-heading h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 58px;
  height: 3px;
  background: var(--gold);
}

.section-heading a {
  color: #0b332b;
  font-size: 14px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 306px));
  gap: 19px;
  justify-content: center;
  align-items: stretch;
}

.experience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(8, 46, 38, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(20, 38, 32, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 181, 40, 0.28);
  box-shadow: 0 22px 48px rgba(20, 38, 32, 0.19);
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
}

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

.card-image::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.44));
}

.badge,
.rating,
.card-image button {
  position: absolute;
  z-index: 1;
}

.badge {
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  color: #ffffff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
}

.green { background: #438c34; }
.gold { background: #ef9800; }
.blue { background: #1680c2; }
.red { background: #cc2445; }

.card-image button {
  top: 10px;
  right: 13px;
  color: #ffffff;
  background: transparent;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.rating {
  left: 13px;
  bottom: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.rating::first-letter { color: var(--gold); }

.card-body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}

.card-body h3 {
  min-height: 40px;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.card-body p {
  margin: 7px 0;
  color: #172823;
  font-size: 13px;
}

.card-footer {
  position: static;
  margin-top: auto;
  padding-top: 8px;
  text-align: right;
  font-size: 14px;
}

.card-footer span,
.card-footer small { display: block; }

.card-footer strong { font-size: 21px; }

.card-footer small {
  margin-top: 2px;
  font-size: 12px;
}

.reserve-link {
  display: grid;
  place-items: center;
  height: 29px;
  margin-top: 12px;
  color: #ffffff;
  background: var(--green);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.reserve-link:hover,
.search-button:hover {
  background: #00372d;
  box-shadow: 0 10px 22px rgba(0, 55, 45, 0.22);
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: calc(100% - 60px);
  margin: 0 auto 18px;
  padding: 15px 42px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(8, 46, 38, 0.08);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -5px 28px rgba(20, 38, 32, 0.08);
}

.stats div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 0 29px;
  border-left: 1px solid #d8d6ce;
}

.stats div:first-child { border-left: 0; }

.stats span {
  grid-row: span 2;
  font-size: 43px;
}

.stats strong,
.stats small { display: block; }

.stats strong { font-size: 22px; }
.stats small { font-size: 14px; }

@media (max-width: 1180px) {
  .site-header {
    padding: 0 22px;
  }

  .header-inner { gap: 18px; }

  .brand { min-width: 244px; }
  .brand-mark { width: 62px; }
  .brand-book { font-size: 32px; }

  .brand-montenegro {
    font-size: 17px;
    letter-spacing: 4px;
  }

  .main-nav {
    gap: 18px;
    font-size: 12px;
  }

  .wishlist { font-size: 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 48px), 980px);
    padding: 118px 42px 42px;
  }

  .hero-content { max-width: 760px; }

  .steps-card {
    width: min(420px, 100%);
    margin: 0;
  }

  .trust-bar,
  .stats {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 18px;
  }

  .popular-section { padding-right: 42px; padding-left: 42px; }

  .experience-grid { grid-template-columns: repeat(2, minmax(0, 330px)); }
}

@media (max-width: 760px) {
  body {
    background: #f7faf8;
  }

  .site-header {
    height: 76px;
    padding: 12px 16px;
  }

  .header-inner { width: 100%; }

  .brand { min-width: 0; }

  .brand-mark {
    width: 48px;
    height: 42px;
  }

  .brand-book { font-size: 24px; }

  .brand-montenegro {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .brand-tagline,
  .language,
  .wishlist { display: none; }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 20px 22px;
    color: var(--ink);
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  }

  .site-header.menu-open .main-nav { display: flex; }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #ece8df;
  }

  .header-actions { margin-left: auto; }

  .hero { min-height: auto; }

  .page-shell {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }

  .hero-inner {
    width: 100%;
    min-height: 720px;
    padding: 112px 16px 28px;
  }

  .hero h1 { font-size: 40px; }
  .hero-script { font-size: 42px; }
  .hero-subtitle { font-size: 18px; }

  .hero-mini-trust {
    width: 100%;
  }

  .hero-mini-trust div {
    flex: 1 1 33.333%;
    min-width: 0;
    padding: 8px 9px;
  }

  .hero-mini-trust strong { font-size: 12px; }
  .hero-mini-trust span { font-size: 10px; }

  .search-panel {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .search-field {
    min-height: 58px;
    padding: 0 8px;
  }

  .search-button { width: 100%; }

  .category-pills {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .category-pills::-webkit-scrollbar { display: none; }

  .category-pills a {
    flex: 0 0 auto;
    min-height: 36px;
    font-size: 13px;
  }

  .steps-card { padding: 22px 18px; }

  .trust-bar,
  .popular-section {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .trust-bar {
    max-width: calc(100% - 32px);
    margin-top: 0;
    border-radius: 12px;
  }

  .trust-bar,
  .experience-grid,
  .stats { grid-template-columns: 1fr; }

  .trust-bar div,
  .stats div {
    padding: 13px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .trust-bar div:first-child,
  .stats div:first-child { border-top: 0; }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats {
    max-width: calc(100% - 32px);
    margin: 0 16px 18px;
    padding: 12px 20px;
  }
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    justify-content: stretch;
    overflow-x: hidden;
  }

  .experience-card {
    width: 100%;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(20, 38, 32, 0.14);
  }

  .experience-card:active {
    transform: scale(0.99);
    transition-duration: 0.12s;
  }

  .experience-card:focus-visible {
    outline: 3px solid rgba(245, 181, 40, 0.82);
    outline-offset: 3px;
  }

  .card-image {
    aspect-ratio: auto;
    height: clamp(230px, 62vw, 280px);
  }

  .card-image img {
    width: 100%;
    object-fit: cover;
  }

  .badge {
    top: 14px;
    left: 14px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .card-image button {
    top: 12px;
    right: 14px;
    min-width: 44px;
    min-height: 44px;
  }

  .rating {
    left: 16px;
    bottom: 15px;
    font-size: 15px;
  }

  .card-body {
    padding: 20px;
    gap: 2px;
  }

  .card-body h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 21px;
    line-height: 1.22;
  }

  .card-body p {
    margin: 6px 0;
    font-size: 15px;
  }

  .card-footer {
    padding-top: 16px;
    font-size: 15px;
  }

  .card-footer strong {
    font-size: 28px;
  }

  .card-footer small {
    font-size: 13px;
  }

  .reserve-link {
    min-height: 46px;
    margin-top: 16px;
    width: 100%;
    font-size: 13px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg img {
    object-fit: cover;
  }

  .hero-inner {
    min-height: 720px;
    padding-top: 132px;
    padding-bottom: 32px;
    align-content: start;
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .hero-bg img {
    object-position: 58% 60%;
  }
}

@media (min-width: 431px) and (max-width: 768px) {
  .hero-bg img {
    object-position: 58% 63%;
  }
}

.experience-page {
  background: #f7faf8;
}

.experience-page::before,
.experience-page::after {
  display: none;
}

.rafting-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: #ffffff;
  background: var(--green-deep);
}

.rafting-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.96) contrast(1.08) saturate(1.08);
  transform: scale(1.05);
}

.rafting-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.36) 44%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 34, 28, 0.08) 0%, rgba(0, 28, 24, 0.5) 100%);
}

.rafting-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  width: min(calc(100% - 72px), 1440px);
  min-height: 440px;
  margin: 0 auto;
  padding: 94px 0 24px;
}

.rafting-hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  color: #ffffff;
  background: #0e7a55;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.rafting-hero h1 {
  margin: 14px 0 8px;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
}

.rafting-hero p {
  max-width: 680px;
  margin: 0;
  font-size: 19px;
  line-height: 1.38;
}

.rafting-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  font-weight: 700;
}

.rafting-meta span:last-child {
  color: #ffffff;
}

.rafting-meta span:last-child::first-letter {
  color: var(--gold);
}

.rafting-hero-info {
  display: grid;
  grid-template-columns: 128px repeat(3, max-content);
  align-items: center;
  gap: 0;
  width: fit-content;
  margin-top: 20px;
  background: rgba(0, 20, 17, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.rafting-hero-info > div {
  min-height: 64px;
  padding: 12px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.rafting-hero-info > div:first-child {
  border-left: 0;
}

.rafting-hero-info span[aria-hidden="true"] {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 28px;
}

.rafting-price small,
.rafting-price span {
  display: block;
  font-size: 12px;
}

.rafting-price strong {
  display: block;
  font-size: 34px;
  line-height: 0.9;
}

.video-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  min-height: 58px;
  padding: 0 23px;
  color: #10241f;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  font-weight: 800;
}

.video-button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
}

.experience-shell {
  width: min(calc(100% - 72px), 1440px);
  margin: 0 auto;
  padding: 22px 0 36px;
}

.rafting-section {
  margin-bottom: 24px;
}

.rafting-section h2 {
  position: relative;
  margin: 0 0 20px;
  color: #0c332b;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.rafting-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.rafting-trust-row article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 82px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(20, 38, 32, 0.07);
}

.rafting-trust-row span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #5e3b00;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.44);
  border-radius: 50%;
  font-size: 19px;
}

.rafting-trust-row strong {
  color: #0c332b;
  font-size: 15px;
  line-height: 1.18;
}

.rafting-trust-row small {
  color: #445651;
  font-size: 12px;
  line-height: 1.25;
}

.rafting-section h2::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -9px;
  width: 32px;
  height: 3px;
  background: #0d6c4e;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.booking-flow-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  padding: 12px 14px;
  overflow-x: auto;
  color: #17352d;
  background: linear-gradient(135deg, #f8fbf5, #eef7ed);
  border: 1px solid rgba(13, 108, 78, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 38, 32, 0.08);
}

.booking-flow-strip strong,
.booking-flow-strip span {
  white-space: nowrap;
}

.booking-flow-strip strong {
  margin-right: 4px;
  color: #0d4a38;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.booking-flow-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #31443e;
  font-size: 13px;
  font-weight: 800;
}

.booking-flow-strip b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: #0d6c4e;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 410px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 9px;
  box-shadow: 0 16px 40px rgba(20, 38, 32, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 108, 78, 0.82);
  box-shadow: 0 24px 52px rgba(20, 38, 32, 0.19);
}

.program-card.featured {
  border-color: rgba(245, 181, 40, 0.75);
}

.program-card img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: center;
}

.program-ribbon {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 8px 13px;
  color: #10241f;
  background: var(--gold);
  border-radius: 0 0 8px 0;
  font-size: 11px;
  font-weight: 900;
}

.gift {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #bd7900;
  background: #fff6df;
  border: 1px solid rgba(245, 181, 40, 0.45);
  border-radius: 50%;
  font-size: 23px;
}

.program-body {
  flex: 1;
  padding: 10px 14px;
}

.program-body h3 {
  margin: 0 0 7px;
  font-size: 16px;
  line-height: 1.2;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  min-height: 21px;
  padding: 0 8px;
  color: #0d4a38;
  background: #dff4e7;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.program-body ul {
  display: grid;
  gap: 5px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.program-body li {
  color: #182d27;
  font-size: 12px;
  line-height: 1.18;
}

.gift-note {
  margin: 7px 0 0;
  padding: 6px 9px;
  color: #5e3b00;
  background: #fff7e5;
  border: 1px solid rgba(245, 181, 40, 0.45);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.24;
}

.program-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding: 13px;
  background: #fbfdf9;
  border-top: 1px solid rgba(10, 55, 45, 0.1);
}

.program-pricing {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  width: 100%;
}

.program-footer span,
.program-footer small {
  display: block;
}

.program-footer strong {
  font-size: 24px;
  line-height: 0.95;
}

.program-footer small {
  color: #53645f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.price-stack strong {
  display: block;
  margin: 1px 0;
}

.program-footer em {
  display: grid;
  gap: 1px;
  min-width: 98px;
  padding: 7px 10px;
  color: #5e3b00;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.48);
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
  white-space: nowrap;
}

.program-footer em strong {
  display: block;
  color: #3d2800;
  font-size: 16px;
}

.choose-program-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  color: #ffffff;
  background: #0d6c4e;
  border: 1px solid rgba(13, 108, 78, 0.38);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(13, 108, 78, 0.2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choose-program-badge b {
  color: inherit;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.program-card:hover .choose-program-badge {
  background: #084d38;
  box-shadow: 0 13px 28px rgba(13, 108, 78, 0.28);
}

.program-card:hover .choose-program-badge b {
  transform: translateX(3px);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.included-grid div {
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 9px;
  min-height: 104px;
  padding: 18px 12px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 9px;
  box-shadow: 0 12px 28px rgba(20, 38, 32, 0.06);
  font-size: 14px;
  text-align: center;
}

.included-grid div:first-child {
  border-left: 1px solid rgba(10, 55, 45, 0.11);
}

.included-grid span {
  color: var(--green);
  font-size: 30px;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.location-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.location-copy p {
  max-width: 680px;
  margin: 0;
  color: #263b35;
  font-size: 17px;
  line-height: 1.55;
}

.location-point-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 8px;
  padding: 12px 14px;
  background: #f7fbf7;
  border: 1px solid rgba(13, 108, 78, 0.16);
  border-radius: 8px;
}

.location-point-card > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.location-point-card strong,
.location-point-card small {
  display: block;
}

.location-point-card strong {
  color: #0c332b;
  font-size: 13px;
}

.location-point-card small {
  color: #0d6c4e;
  font-size: 16px;
  font-weight: 900;
}

.location-map-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 70, 56, 0.92), rgba(13, 108, 78, 0.72)),
    radial-gradient(circle at 24% 28%, rgba(248, 183, 42, 0.42) 0 8px, transparent 9px),
    linear-gradient(45deg, transparent 0 46%, rgba(255, 255, 255, 0.22) 47% 49%, transparent 50%),
    #0d6c4e;
  border-radius: 9px;
  box-shadow: 0 18px 42px rgba(20, 38, 32, 0.14);
}

.location-map-card > span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #0c332b;
  background: var(--gold);
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.location-map-card strong,
.location-map-card small,
.location-map-card b {
  position: relative;
  display: block;
}

.location-map-card strong {
  font-size: 25px;
  line-height: 1.08;
}

.location-map-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.location-map-card b {
  width: fit-content;
  margin-top: 18px;
  padding: 11px 13px;
  color: #10241f;
  background: var(--gold);
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.split-sections {
  display: grid;
  grid-template-columns: 0.88fr 1.7fr;
  gap: 28px;
  align-items: start;
}

.timeline {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  content: "";
  top: 10px;
  bottom: 10px;
  left: 10px;
  width: 2px;
  background: #0d6c4e;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 30px 1fr;
  column-gap: 16px;
  padding-left: 0;
}

.timeline li::before {
  display: none;
}

.timeline time {
  grid-row: span 2;
  padding-top: 3px;
  color: #0d6c4e;
  font-weight: 900;
}

.timeline li > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #0d6c4e;
  background: #ffffff;
  border: 2px solid #0d6c4e;
  border-radius: 50%;
  font-size: 13px;
}

.timeline strong {
  font-size: 14px;
}

.timeline small {
  margin-top: 2px;
  color: #2b3d38;
  font-size: 13px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.68fr 0.68fr;
  gap: 8px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item,
.gallery-item img,
.more-photos {
  width: 100%;
  height: 142px;
  padding: 0;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-item {
  background: transparent;
}

.gallery-item img {
  display: block;
  height: 100%;
}

.gallery-item:hover img,
.more-photos:hover {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.gallery-main {
  grid-row: span 2;
  height: 292px !important;
}

.more-photos {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.more-photos::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(0, 20, 17, 0.58);
}

.more-photos strong,
.more-photos span {
  position: relative;
  z-index: 1;
  display: block;
}

.more-photos strong {
  font-size: 28px;
}

.review-row {
  display: grid;
  grid-template-columns: 1fr 0.95fr 0.9fr;
  gap: 34px;
  align-items: end;
}

.review-card,
.season-card {
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(20, 38, 32, 0.06);
}

.review-card {
  min-height: 104px;
  padding: 15px 17px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-card h3 {
  margin: 8px 0 7px;
  font-size: 15px;
}

.review-card p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
}

.review-card small {
  color: #445651;
}

.rafting-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 28px;
}

.rafting-stats div {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 102px;
  padding: 10px;
  text-align: center;
  border-left: 1px solid rgba(10, 55, 45, 0.1);
}

.rafting-stats div:first-child {
  border-left: 0;
}

.rafting-stats span {
  color: var(--green);
  font-size: 33px;
}

.rafting-stats strong {
  font-size: 22px;
}

.rafting-stats small {
  font-size: 13px;
}

.season-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 136px;
  padding: 20px;
}

.season-card strong,
.season-card span {
  display: block;
}

.season-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.season-card > span {
  color: var(--green);
  font-size: 48px;
}

.season-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.season-facts div {
  min-height: 68px;
  padding: 10px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.09);
  border-radius: 8px;
}

.season-facts small,
.season-facts b {
  display: block;
}

.season-facts small {
  color: #53645f;
  font-size: 11px;
  line-height: 1.2;
}

.season-facts b {
  margin-top: 6px;
  color: #0c332b;
  font-size: 16px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 500px;
  gap: 30px;
  align-items: center;
  padding: 28px 32px;
  background:
    linear-gradient(90deg, rgba(255, 252, 244, 0.98), rgba(240, 250, 244, 0.92)),
    #ffffff;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(20, 38, 32, 0.08);
}

.final-cta h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.final-cta p {
  margin: 0 0 18px;
  font-size: 16px;
}

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cta-benefits span {
  padding-right: 20px;
  border-right: 1px solid rgba(10, 55, 45, 0.14);
  font-size: 14px;
  line-height: 1.35;
}

.cta-benefits span:last-child {
  border-right: 0;
}

.final-cta > a {
  display: grid;
  place-items: center;
  min-height: 82px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 70, 56, 0.22);
  font-size: 23px;
  font-weight: 900;
}

.gallery-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(0, 12, 10, 0.92);
}

.gallery-lightbox.is-open {
  display: grid;
}

.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gallery-lightbox button {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
}

.final-cta > a:hover {
  background: #00372d;
}

@media (max-width: 1180px) {
  .rafting-hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .video-button {
    width: fit-content;
  }

  .rafting-hero-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
  }

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

  .program-card {
    min-height: 410px;
  }

  .rafting-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-section {
    grid-template-columns: 1fr;
  }

  .included-grid div:nth-child(3n+1) {
    border-left: 1px solid rgba(10, 55, 45, 0.11);
  }

  .split-sections,
  .review-row,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .rafting-stats {
    margin-bottom: 0;
  }

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

@media (max-width: 760px) {
  .rafting-hero {
    min-height: auto;
  }

  .rafting-hero-inner,
  .experience-shell {
    width: calc(100% - 32px);
  }

  .rafting-hero-inner {
    min-height: 570px;
    padding: 100px 0 24px;
  }

  .rafting-hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.02;
    overflow-wrap: break-word;
  }

  .rafting-hero p {
    font-size: 17px;
  }

  .rafting-section h2 {
    font-size: 18px;
    line-height: 1.25;
    overflow-wrap: break-word;
  }

  .rafting-meta {
    gap: 12px;
  }

  .rafting-meta span {
    width: 100%;
  }

  .rafting-hero-info {
    grid-template-columns: 1fr;
  }

  .rafting-hero-info > div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .rafting-hero-info > div:first-child {
    border-top: 0;
  }

  .video-button {
    width: 100%;
    justify-content: center;
    min-width: 0;
    text-align: center;
  }

  .program-grid,
  .rafting-trust-row,
  .included-grid,
  .gallery-grid,
  .rafting-stats,
  .cta-benefits {
    grid-template-columns: 1fr;
  }

  .program-grid {
    gap: 20px;
  }

  .program-card {
    height: auto;
    min-height: auto;
  }

  .program-card img {
    height: 142px;
  }

  .program-footer {
    gap: 11px;
  }

  .included-grid div,
  .included-grid div:nth-child(3n+1) {
    border-top: 0;
    border-left: 1px solid rgba(10, 55, 45, 0.11);
  }

  .included-grid div:first-child {
    border-top: 0;
  }

  .location-point-card {
    width: 100%;
  }

  .location-map-card {
    min-height: 220px;
  }

  .timeline li {
    grid-template-columns: 62px 28px 1fr;
    column-gap: 12px;
  }

  .gallery-main,
  .gallery-item,
  .gallery-item img,
  .more-photos {
    height: 210px !important;
  }

  .season-facts {
    grid-template-columns: 1fr;
  }

  .review-row {
    gap: 24px;
  }

  .rafting-stats div {
    border-top: 1px solid rgba(10, 55, 45, 0.1);
    border-left: 0;
  }

  .rafting-stats div:first-child {
    border-top: 0;
  }

  .final-cta {
    padding: 24px 18px;
  }

  .cta-benefits span {
    padding: 0;
    border-right: 0;
  }

  .final-cta > a {
    min-height: 64px;
    font-size: 17px;
  }
}

.booking-page {
  color: var(--ink);
  background: #f7faf8;
}

.booking-main {
  min-height: 100vh;
  padding-top: 74px;
}

.booking-hero {
  display: grid;
  align-items: end;
  min-height: 150px;
  padding: 24px max(18px, calc((100vw - 1280px) / 2)) 20px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 36, 30, 0.94), rgba(0, 70, 56, 0.78)),
    url("/static/images/rafting/hero.png") center 46% / cover no-repeat;
}

.booking-hero > div {
  width: min(100%, 820px);
}

.booking-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 8px;
  color: #10241f;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.booking-hero h1 {
  margin: 8px 0 6px;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
}

.booking-hero p {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.booking-shell {
  width: min(calc(100% - 36px), 1280px);
  margin: 0 auto;
  padding: 12px 0 28px;
}

.booking-step-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 38, 32, 0.06);
  color: var(--green);
}

.booking-steps span,
.booking-section-head > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--green);
  background: #edf6f0;
  border: 1px solid rgba(0, 70, 56, 0.18);
  border-radius: 50%;
  font-weight: 900;
}

.booking-steps .active {
  color: #ffffff;
  background: var(--green);
  border: 2px solid var(--gold);
}

.booking-steps .active span {
  color: var(--gold);
  background: #10241f;
  border-color: var(--gold);
}

.booking-steps .is-complete {
  color: #0c332b;
  background: #f3fbf5;
  border-color: rgba(0, 70, 56, 0.2);
}

.booking-steps .is-complete span {
  color: #ffffff;
  background: var(--green);
}

.booking-steps strong {
  font-size: 13px;
}

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

.booking-form-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  grid-template-areas:
    "program program"
    "date time"
    "date people"
    "info info";
  gap: 12px;
}

.booking-card,
.booking-summary-card,
.checkout-card {
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(20, 38, 32, 0.08);
}

.booking-card {
  padding: 16px;
  align-self: start;
}

.booking-section-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-section-head h2 {
  margin: 0 0 2px;
  color: #0c332b;
  font-size: 18px;
  line-height: 1.2;
}

.booking-section-head p {
  margin: 0;
  color: #53645f;
  font-size: 12px;
}

.booking-program-summary {
  grid-column: 1 / -1;
  grid-area: program;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto auto auto;
  gap: 14px;
  align-items: center;
}

.booking-program-summary img {
  width: 88px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.booking-program-summary h2 {
  margin: 0 0 2px;
  color: #0c332b;
  font-size: 18px;
}

.booking-program-summary p {
  margin: 0;
  color: #53645f;
  font-size: 13px;
}

.booking-program-summary > strong {
  color: #0c332b;
  font-size: 22px;
}

.booking-program-summary > em {
  color: #5e3b00;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.booking-program-summary a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #5e3b00;
  background: #fff2cf;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

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

.booking-program {
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 16px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.13);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-program:hover,
.booking-program.is-selected {
  border-color: rgba(245, 181, 40, 0.9);
  box-shadow: 0 14px 30px rgba(20, 38, 32, 0.11);
  transform: translateY(-2px);
}

.booking-program.is-selected {
  background: linear-gradient(180deg, #ffffff, #fffaf0);
}

.booking-program strong {
  color: #0c332b;
  font-size: 16px;
}

.booking-program span {
  color: #53645f;
}

.booking-program b {
  font-size: 26px;
}

.booking-program em {
  width: fit-content;
  padding: 6px 10px;
  color: #5e3b00;
  background: #fff2cf;
  border-radius: 999px;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.booking-calendar {
  max-width: 440px;
}

.booking-form-column > .booking-card:nth-of-type(2) {
  grid-area: date;
}

.booking-form-column > .booking-card:nth-of-type(3) {
  grid-area: time;
}

.booking-form-column > .booking-card:nth-of-type(4) {
  grid-area: people;
}

.calendar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px 8px 0 0;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.07em;
}

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

.calendar-weekdays {
  padding: 6px 6px 4px;
  background: #f4f8f5;
  border-right: 1px solid rgba(10, 55, 45, 0.1);
  border-left: 1px solid rgba(10, 55, 45, 0.1);
}

.calendar-weekdays span {
  color: #53645f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.calendar-days {
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.calendar-days button,
.booking-time-grid button {
  min-height: 32px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
}

.calendar-days button:hover,
.calendar-days button.is-selected,
.booking-time-grid button:hover,
.booking-time-grid button.is-selected {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.booking-counters {
  display: grid;
  gap: 8px;
}

.booking-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
}

.booking-counter strong,
.booking-counter span {
  display: block;
}

.booking-counter span {
  margin-top: 1px;
  color: #53645f;
  font-size: 12px;
}

.counter-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.counter-control button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.counter-control output {
  min-width: 28px;
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  grid-area: info;
  gap: 10px;
}

.booking-info-grid div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2px 10px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.11);
  border-radius: 8px;
}

.booking-info-grid span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #5e3b00;
  background: #fff2cf;
  border-radius: 50%;
}

.booking-info-grid strong,
.booking-info-grid small {
  display: block;
}

.booking-info-grid small {
  color: #53645f;
  font-size: 12px;
}

.booking-summary {
  position: sticky;
  top: 86px;
}

.booking-summary-card {
  padding: 16px;
}

.summary-label {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-summary-card h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.summary-list {
  display: grid;
  gap: 6px;
  margin: 0 0 12px;
}

.summary-list div,
.summary-price div,
.summary-total div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.summary-list div {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(10, 55, 45, 0.09);
}

.summary-list dt,
.summary-price span,
.summary-total span {
  color: #53645f;
  font-size: 13px;
}

.summary-list dd {
  margin: 0;
  color: #0c332b;
  font-weight: 900;
  text-align: right;
  font-size: 13px;
}

.summary-price {
  display: grid;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(10, 55, 45, 0.12);
  border-bottom: 1px solid rgba(10, 55, 45, 0.12);
}

.summary-price h3 {
  margin: 0 0 2px;
  font-size: 14px;
}

.summary-total {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.summary-total div:first-child {
  align-items: center;
  padding: 10px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
}

.summary-total div:first-child span {
  color: rgba(255, 255, 255, 0.86);
}

.summary-total div:first-child strong {
  font-size: 22px;
}

.summary-remaining span {
  color: #0d6c4e;
  font-size: 16px;
  font-weight: 900;
}

.summary-total div:nth-child(2) strong,
.summary-total div:nth-child(3) strong {
  color: #5e3b00;
}

.booking-cta {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 70, 56, 0.22);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.booking-cta:hover {
  background: #00372d;
}

.checkout-placeholder {
  display: grid;
  place-items: center;
  padding: 110px 18px 40px;
}

.checkout-card {
  width: min(100%, 620px);
  padding: 32px;
}

.checkout-card h1 {
  margin: 14px 0 10px;
  color: #0c332b;
  font-size: 34px;
}

.checkout-card p {
  margin: 0 0 18px;
  color: #53645f;
  line-height: 1.5;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 365px;
  grid-template-areas: "payment summary";
  gap: 18px;
  align-items: start;
}

.checkout-payment-column {
  grid-area: payment;
}

.checkout-summary {
  grid-area: summary;
}

.checkout-payment-card {
  padding: 22px;
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.payment-tabs button {
  min-height: 44px;
  color: #0c332b;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.14);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.payment-tabs button.is-selected {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.payment-form {
  display: grid;
  gap: 14px;
}

.card-fields {
  display: grid;
  gap: 12px;
}

.payment-form label,
.payment-placeholder {
  display: grid;
  gap: 7px;
}

.payment-form label span {
  color: #0c332b;
  font-size: 13px;
  font-weight: 900;
}

.payment-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.18);
  border-radius: 8px;
  font: inherit;
}

.payment-form input:focus {
  outline: 3px solid rgba(245, 181, 40, 0.28);
  border-color: var(--gold);
}

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

.payment-security {
  margin: 0;
  color: #53645f;
  font-size: 13px;
  line-height: 1.45;
}

.payment-placeholder {
  padding: 18px;
  background: #fbfdfb;
  border: 1px dashed rgba(0, 70, 56, 0.26);
  border-radius: 8px;
}

.payment-placeholder strong {
  color: #0c332b;
  font-size: 18px;
}

.payment-placeholder p {
  margin: 0;
  color: #53645f;
}

.checkout-pay-now {
  display: grid;
  gap: 4px;
  margin: 12px 0;
  padding: 16px;
  color: #ffffff;
  background: var(--green);
  border: 2px solid var(--gold);
  border-radius: 8px;
}

.checkout-pay-now span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.checkout-pay-now strong {
  font-size: 38px;
  line-height: 1;
}

.checkout-pay-now small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.checkout-totals div:first-child {
  color: var(--ink);
  background: transparent;
  padding: 0;
}

.checkout-totals div:first-child span {
  color: #53645f;
}

.checkout-totals div:first-child strong {
  color: #5e3b00;
  font-size: 18px;
}

.checkout-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.checkout-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 10px;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
}

.checkout-trust span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.checkout-trust strong {
  color: #0c332b;
  font-size: 13px;
}

.checkout-secondary {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #0c332b;
  background: #fff2cf;
  border-radius: 8px;
  font-weight: 900;
}

.confirmation-main {
  display: grid;
  place-items: center;
  padding: 120px 18px 40px;
}

.confirmation-card {
  width: min(100%, 660px);
}

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

  .booking-form-column {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .booking-program-summary,
  .booking-form-column > .booking-card:nth-of-type(2),
  .booking-form-column > .booking-card:nth-of-type(3),
  .booking-form-column > .booking-card:nth-of-type(4),
  .booking-info-grid {
    grid-area: auto;
  }

  .booking-summary {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "summary"
      "payment";
  }
}

@media (max-width: 760px) {
  .booking-main {
    padding-top: 76px;
  }

  .booking-hero {
    min-height: 300px;
    padding: 28px 16px 24px;
  }

  .booking-hero h1 {
    font-size: 38px;
  }

  .booking-hero p {
    font-size: 16px;
  }

  .booking-shell {
    width: calc(100% - 32px);
  }

  .booking-steps,
  .booking-program-grid,
  .booking-time-grid,
  .booking-info-grid,
  .payment-tabs,
  .checkout-trust {
    grid-template-columns: 1fr;
  }

  .booking-program-summary {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .booking-program-summary img {
    width: 72px;
    height: 54px;
  }

  .booking-program-summary > strong,
  .booking-program-summary > em,
  .booking-program-summary a {
    grid-column: 2;
    justify-self: start;
  }

  .booking-steps li {
    min-height: 56px;
  }

  .booking-card,
  .booking-summary-card,
  .checkout-card {
    padding: 18px;
  }

  .booking-section-head h2 {
    font-size: 19px;
  }

  .booking-counter {
    align-items: flex-start;
    flex-direction: column;
  }

  .counter-control {
    width: 100%;
    justify-content: space-between;
  }

  .counter-control output {
    flex: 1;
  }

  .booking-cta {
    min-height: 64px;
    font-size: 16px;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .checkout-main {
    padding-bottom: 92px;
  }

  .checkout-submit {
    position: fixed;
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 20;
    width: auto;
    margin: 0;
  }
}

.partner-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(245, 181, 40, 0.16), transparent 34%),
    linear-gradient(180deg, #f7faf8 0%, #eef5f1 100%);
}

.partner-page::before,
.partner-page::after {
  display: none;
}

.partner-login-main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 28px 16px;
}

.partner-login-card,
.partner-card,
.partner-kpis article {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 47, 40, 0.1);
}

.partner-login-card {
  width: min(100%, 440px);
  padding: 30px;
}

.partner-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #0c332b;
}

.partner-brand .brand-mark {
  flex: 0 0 auto;
  width: 58px;
  height: 42px;
}

.partner-brand-copy {
  display: grid;
  gap: 3px;
}

.partner-brand-copy strong {
  font-size: 20px;
  line-height: 1;
}

.partner-brand-copy small {
  color: #5e3b00;
  font-size: 13px;
  font-weight: 800;
}

.partner-eyebrow {
  margin: 28px 0 8px;
  color: #5e3b00;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-login-card h1,
.partner-dashboard-hero h1,
.partner-card h2 {
  margin: 0;
  color: #0c332b;
}

.partner-login-card h1 {
  font-size: 31px;
  line-height: 1.05;
}

.partner-login-copy {
  margin: 10px 0 20px;
  color: #53645f;
  line-height: 1.45;
}

.partner-login-error {
  margin-bottom: 14px;
  padding: 11px 12px;
  color: #7a1f1f;
  background: #fff0f0;
  border: 1px solid rgba(180, 28, 28, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.partner-login-form {
  display: grid;
  gap: 14px;
}

.partner-login-form label {
  display: grid;
  gap: 7px;
}

.partner-login-form span {
  color: #0c332b;
  font-size: 13px;
  font-weight: 900;
}

.partner-login-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.18);
  border-radius: 8px;
}

.partner-login-form input:focus {
  outline: 3px solid rgba(245, 181, 40, 0.28);
  border-color: var(--gold);
}

.partner-login-form button,
.partner-refresh,
.partner-actions button,
.partner-finance button,
.partner-primary-action,
.partner-export-actions button {
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.partner-login-form button {
  margin-top: 4px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  letter-spacing: 0.04em;
}

.partner-topbar {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 12px max(18px, calc((100vw - 1320px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 55, 45, 0.1);
  box-shadow: 0 10px 28px rgba(13, 47, 40, 0.08);
  backdrop-filter: blur(12px);
}

.partner-topbar-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.partner-topbar-meta span {
  padding: 8px 12px;
  color: #5e3b00;
  background: #fff2cf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.partner-topbar-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.partner-refresh {
  padding: 0 14px;
  color: #0c332b;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.58);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.partner-dashboard {
  width: min(calc(100% - 36px), 1320px);
  margin: 0 auto;
  padding: 24px 0 34px;
}

.partner-dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
  padding: 19px 22px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(0, 70, 56, 0.94), rgba(0, 70, 56, 0.72)),
    url("/static/images/rafting/hero.png") center 50% / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(13, 47, 40, 0.16);
}

.partner-dashboard-hero .partner-eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
}

.partner-dashboard-hero h1 {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.partner-dashboard-hero p {
  max-width: 420px;
  margin: 0;
  line-height: 1.45;
}

.partner-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.partner-kpis article {
  display: grid;
  gap: 4px;
  padding: 18px;
}

.partner-kpis strong {
  color: #0c332b;
  font-size: 34px;
  line-height: 1;
}

.partner-kpis span {
  color: #53645f;
  font-weight: 800;
}

.partner-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  align-items: start;
}

.partner-card {
  padding: 18px;
}

.partner-today-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.55fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

.partner-today-card .partner-eyebrow {
  margin: 0 0 8px;
}

.partner-today-card h2 {
  margin: 0;
  color: #0c332b;
  font-size: 28px;
  line-height: 1;
}

.partner-today-programs,
.partner-today-stats {
  display: grid;
  gap: 8px;
}

.partner-today-programs {
  margin-top: 16px;
}

.partner-today-programs span,
.partner-today-stats span,
.partner-search span {
  color: #53645f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-today-programs strong {
  color: #0c332b;
}

.partner-today-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-today-stats div {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.partner-today-stats strong {
  color: #0c332b;
  font-size: 21px;
}

.partner-primary-action {
  align-self: stretch;
  padding: 0 22px;
  color: #ffffff;
  background: var(--green);
  border: 0;
  letter-spacing: 0.03em;
}

.partner-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.partner-card h2 {
  font-size: 19px;
}

.partner-card-head p {
  max-width: 620px;
  margin: 6px 0 0;
  color: #53645f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.partner-card-head > span {
  color: #5e3b00;
  font-size: 12px;
  font-weight: 900;
}

.partner-count-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.62);
  border-radius: 999px;
}

.partner-reservation-table {
  display: grid;
  gap: 8px;
}

.partner-urgent-alert,
.partner-active-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
}

.partner-urgent-alert {
  color: #5e3b00;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.62);
}

.partner-urgent-alert strong,
.partner-active-filter strong {
  font-weight: 900;
}

.partner-urgent-alert button,
.partner-active-filter button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.partner-urgent-alert button {
  color: #ffffff;
  background: #004638;
  border: 0;
}

.partner-active-filter {
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
  font-size: 13px;
}

.partner-active-filter button {
  color: #0c332b;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.14);
}

.partner-search {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.partner-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.16);
  border-radius: 8px;
  font: inherit;
}

.partner-search input:focus {
  outline: 3px solid rgba(245, 181, 40, 0.25);
  border-color: var(--gold);
}

.partner-table-row {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1.18fr 0.56fr 0.54fr 0.7fr 1.42fr;
  gap: 8px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.09);
  border-radius: 8px;
  font-size: 13px;
}

.partner-table-row > * {
  min-width: 0;
}

.partner-table-row[data-reservation] {
  cursor: pointer;
}

.partner-table-row.is-expanded {
  background: #ffffff;
  border-color: rgba(245, 181, 40, 0.52);
  box-shadow: 0 14px 30px rgba(13, 47, 40, 0.08);
}

.partner-table-head {
  min-height: 42px;
  color: #53645f;
  background: #f0f6f2;
  font-size: 12px;
  font-weight: 900;
}

.partner-guest {
  display: flex;
  align-items: center;
  gap: 9px;
}

.partner-guest-avatar {
  display: inline-grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #004638;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.partner-guest-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.partner-guest strong {
  color: #0c332b;
}

.partner-guest small {
  color: #61726d;
  font-size: 11px;
  font-weight: 800;
}

.partner-guest small a {
  color: #004638;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.partner-date-cell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.partner-priority {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.partner-priority.is-today {
  color: #7a1f1f;
  background: #ffe4b8;
  border: 1px solid rgba(216, 91, 91, 0.28);
}

.partner-priority.is-tomorrow {
  color: #5e3b00;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.48);
}

.partner-priority.is-later {
  color: #0b4a24;
  background: #dff5e7;
  border: 1px solid #bde8cb;
}

.partner-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.partner-status.is-pending {
  color: #5e3b00;
  background: #fff2cf;
}

.partner-status.is-confirmed {
  color: #0b4a24;
  background: #dff5e7;
}

.partner-status.is-deposit {
  color: #123c77;
  background: #e6f0ff;
  border-color: rgba(18, 60, 119, 0.15);
}

.partner-status.is-arrived {
  color: #4b2477;
  background: #f0e7ff;
  border-color: rgba(75, 36, 119, 0.15);
}

.partner-status.is-finished {
  color: #0c332b;
  background: #eef5f1;
  border-color: rgba(10, 55, 45, 0.12);
}

.partner-status.is-rejected,
.partner-status.is-cancelled {
  color: #7a1f1f;
  background: #ffe8e8;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.partner-actions button,
.partner-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 9px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.partner-actions a {
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
}

.partner-actions a[href^="https://wa.me"] {
  color: #0b4a24;
  background: #dff5e7;
  border-color: #bde8cb;
}

.partner-actions [data-action="accept"],
.partner-actions [data-action="confirm"],
.partner-actions [data-action="arrive"],
.partner-actions [data-action="finish"] {
  color: #ffffff;
  background: #004638;
}

.partner-actions [data-action="reject"],
.partner-actions [data-action="cancel"] {
  color: #7a1f1f;
  background: #ffe8e8;
  border: 1px solid rgba(216, 91, 91, 0.24);
}

.partner-actions [data-action="toggle-details"],
.partner-actions [data-action="open-details"],
.partner-actions [data-open-reservation] {
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
}

.partner-detail-panel {
  grid-column: 1 / -1;
  padding: 14px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.09);
  border-radius: 8px;
}

.partner-detail-panel dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0 0 13px;
}

.partner-detail-panel div {
  display: grid;
  gap: 3px;
}

.partner-detail-panel dt {
  color: #61726d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-detail-panel dd {
  margin: 0;
  color: #0c332b;
  font-weight: 800;
}

.partner-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  color: #ffffff;
  background: var(--green);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.partner-side-panel {
  display: grid;
  gap: 14px;
}

.partner-mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.partner-mini-calendar span {
  color: #53645f;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.partner-mini-calendar button,
.partner-mini-calendar em {
  min-height: 34px;
  border-radius: 8px;
}

.partner-mini-calendar button {
  position: relative;
  display: grid;
  place-items: center;
  color: #0c332b;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.12);
  cursor: pointer;
  font-weight: 800;
}

.partner-mini-calendar button small {
  position: absolute;
  right: 4px;
  bottom: 3px;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  color: #0c332b;
  background: #ffffff;
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
}

.partner-mini-calendar .has-bookings {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.partner-mini-calendar .is-free {
  color: #0b4a24;
  background: #dff5e7;
  border-color: #bde8cb;
}

.partner-mini-calendar .is-closed {
  color: #7a1f1f;
  background: #ffe8e8;
  border-color: #f5c9c9;
}

.partner-mini-calendar button.is-selected {
  outline: 3px solid rgba(245, 181, 40, 0.35);
  border-color: var(--gold);
  box-shadow: inset 0 0 0 2px #ffffff;
  transform: translateY(-1px);
}

.partner-calendar-legend {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}

.partner-calendar-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #53645f;
  font-size: 13px;
  font-weight: 800;
}

.partner-calendar-legend i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.partner-calendar-legend .has-bookings { background: var(--green); }
.partner-calendar-legend .is-free { background: #72c98b; }
.partner-calendar-legend .is-closed { background: #d85b5b; }

.partner-finance dl {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
}

.partner-finance dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(10, 55, 45, 0.09);
}

.partner-finance dt {
  color: #53645f;
}

.partner-finance dd {
  margin: 0;
  color: #0c332b;
  font-weight: 900;
}

.partner-finance-payout dd {
  color: #5e3b00;
  font-size: 20px;
}

.partner-finance button {
  width: 100%;
  padding: 0 12px;
  color: #0c332b;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.5);
  font-size: 12px;
}

.partner-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partner-list li {
  display: flex;
  gap: 9px;
  padding: 9px 0 9px 13px;
  color: #53645f;
  border-left: 3px solid var(--gold);
  font-size: 14px;
}

.partner-list li span {
  flex: 0 0 auto;
}

.partner-modal[hidden] {
  display: none;
}

.partner-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.partner-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 28, 23, 0.48);
  backdrop-filter: blur(6px);
}

.partner-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(13, 47, 40, 0.24);
}

.partner-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.partner-modal-head .partner-eyebrow {
  margin: 0 0 8px;
}

.partner-modal-head h2 {
  margin: 0;
  color: #0c332b;
}

.partner-modal-head button {
  width: 38px;
  height: 38px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.partner-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
}

.partner-modal-grid div {
  display: grid;
  gap: 4px;
  padding: 11px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.partner-modal-grid dt {
  color: #61726d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.partner-modal-grid dd {
  margin: 0;
  color: #0c332b;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.partner-modal-grid a {
  color: #0c332b;
  font-weight: 900;
}

.partner-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.partner-export-actions button {
  padding: 0 14px;
  color: #0c332b;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.5);
}

.partner-guest-list {
  display: grid;
  gap: 10px;
}

.partner-guest-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 90px 74px 92px minmax(130px, auto);
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.partner-guest-list time,
.partner-guest-list strong,
.partner-guest-list b {
  color: #0c332b;
  font-weight: 900;
}

.partner-guest-list a {
  color: #0c332b;
  font-weight: 900;
}

.is-modal-open {
  overflow: hidden;
}

.partner-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  padding: 12px 14px;
  color: #0c332b;
  background: #fff2cf;
  border: 1px solid rgba(245, 181, 40, 0.62);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(13, 47, 40, 0.14);
  font-size: 14px;
  font-weight: 900;
}

.admin-dashboard {
  width: min(calc(100% - 36px), 1440px);
  scroll-behavior: smooth;
}

.admin-page {
  overflow-x: hidden;
}

.admin-topbar-meta {
  position: relative;
}

.admin-notifications {
  position: relative;
}

.admin-bell-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #0c332b;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.14);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(13, 47, 40, 0.06);
}

.admin-bell-button[aria-expanded="true"] {
  border-color: rgba(10, 55, 45, 0.28);
  box-shadow: 0 12px 28px rgba(13, 47, 40, 0.12);
}

.admin-bell-button b {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: #ffffff;
  background: #c43b3b;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.admin-notification-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  gap: 8px;
  width: min(340px, calc(100vw - 32px));
  padding: 12px;
  color: #0c332b;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(13, 47, 40, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.admin-notification-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.admin-notification-menu[hidden] {
  display: none;
}

.admin-notification-menu strong {
  font-size: 13px;
}

.admin-notification-menu article {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.admin-notification-menu span {
  font-size: 13px;
  font-weight: 900;
}

.admin-notification-menu p {
  margin: 0;
  color: #53645f;
  font-size: 12px;
  font-weight: 800;
}

.admin-dashboard-hero {
  min-height: auto;
  margin-bottom: 10px;
  padding: 13px 18px;
  background:
    linear-gradient(90deg, rgba(0, 70, 56, 0.95), rgba(0, 70, 56, 0.66)),
    url("/static/images/home-hero.jpg") center 45% / cover no-repeat;
}

.admin-dashboard-hero h1 {
  font-size: 30px;
}

.admin-dashboard-hero p {
  max-width: 560px;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: -2px 0 10px;
}

.admin-quick-actions button,
.admin-quick-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: #0c332b;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(13, 47, 40, 0.06);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.admin-quick-actions button:first-child {
  color: #ffffff;
  background: #003d31;
  border-color: #003d31;
}

.admin-quick-actions button:hover,
.admin-quick-actions a:hover {
  color: #ffffff;
  background: #0c332b;
  border-color: #0c332b;
}

.admin-kpis {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-kpis strong {
  font-size: 25px;
}

.admin-control-center {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-control-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.admin-control-card {
  display: grid;
  gap: 8px;
  min-height: 94px;
  padding: 14px;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-left: 5px solid rgba(10, 55, 45, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(13, 47, 40, 0.06);
}

.admin-control-card span {
  color: #53645f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-control-card strong {
  color: #0c332b;
  font-size: 21px;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.admin-control-card.is-pending { border-left-color: #f5b528; }
.admin-control-card.is-confirmed { border-left-color: #22a45a; }
.admin-control-card.is-deposit { border-left-color: #2f80ed; }
.admin-control-card.is-payout { border-left-color: #004638; }
.admin-control-card.is-refund { border-left-color: #6b7280; }

.admin-today-overview {
  display: grid;
  grid-template-columns: minmax(170px, 0.22fr) minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 70, 56, 0.96), rgba(9, 90, 72, 0.9)),
    #004638;
  color: #ffffff;
  border-color: rgba(245, 181, 40, 0.32);
  box-shadow: 0 20px 46px rgba(13, 47, 40, 0.18);
}

.admin-today-overview .partner-eyebrow,
.admin-today-overview h2 {
  color: #ffffff;
}

.admin-today-overview h2 {
  font-size: 30px;
}

.admin-today-overview dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.admin-today-overview div {
  min-width: 0;
}

.admin-today-overview dl div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.admin-today-overview dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
}

.admin-today-overview dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.admin-next-departure {
  display: grid;
  gap: 5px;
  min-height: 164px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(245, 181, 40, 0.45);
  border-radius: 8px;
  box-shadow: inset 4px 0 0 #f5b528;
}

.admin-next-departure span,
.admin-next-departure p,
.admin-next-departure small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.admin-next-departure span {
  font-size: 11px;
}

.admin-next-departure time {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.admin-next-departure strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
}

.admin-next-departure p,
.admin-next-departure small {
  margin: 0;
  font-size: 12px;
}

.admin-next-departure .partner-status {
  justify-self: start;
  cursor: default;
}

.admin-tabs {
  position: sticky;
  top: 74px;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 47, 40, 0.08);
}

.admin-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.admin-tabs a:hover,
.admin-tabs a.is-selected {
  color: #ffffff;
  background: var(--green);
}

.admin-command-bar {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(13, 47, 40, 0.07);
}

.admin-search {
  margin: 0;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filters button,
.admin-new-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.admin-filters button.is-selected,
.admin-new-button {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.admin-reservations {
  margin-bottom: 14px;
}

.admin-reservation-table {
  display: grid;
  gap: 8px;
  overflow-x: hidden;
}

.admin-table-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.08fr 0.72fr 0.46fr 0.42fr 0.62fr 0.54fr 0.58fr 0.66fr 0.72fr 1.05fr;
  gap: 8px;
  align-items: center;
  min-width: 0;
  min-height: 56px;
  padding: 10px;
  color: #0c332b;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.09);
  border-radius: 8px;
  font-size: 13px;
}

.admin-table-row[hidden] {
  display: none;
}

.admin-table-row > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-table-row small {
  display: block;
  margin-top: 3px;
  color: #61726d;
  font-size: 11px;
  font-weight: 800;
}

.admin-link-button {
  padding: 0;
  color: #0c332b;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(245, 181, 40, 0.8);
  text-underline-offset: 3px;
}

.partner-status.is-refund {
  color: #4b5563;
  background: #edf0f2;
  border-color: rgba(75, 85, 99, 0.16);
}

.admin-source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.admin-table-row .partner-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.admin-table-row .partner-actions button,
.admin-table-row .partner-actions a {
  min-height: 34px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.admin-table-row:hover,
.admin-tour-card:hover,
.admin-entity-card:hover {
  box-shadow: 0 14px 30px rgba(13, 47, 40, 0.09);
}

.admin-table-head {
  min-height: 42px;
  color: #53645f;
  background: #f0f6f2;
  font-size: 12px;
  font-weight: 900;
}

.admin-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: start;
}

.admin-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

.admin-experience-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-entity-card {
  display: grid;
  gap: 11px;
  min-height: 0;
  padding: 14px;
  color: #0c332b;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  cursor: default;
  text-align: left;
  box-shadow: 0 10px 26px rgba(13, 47, 40, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.admin-entity-card:hover {
  border-color: rgba(245, 181, 40, 0.7);
  transform: translateY(-1px);
}

.admin-entity-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.admin-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-card-title .partner-status {
  flex: 0 0 auto;
  cursor: default;
}

.admin-rating {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 32px;
  padding: 0 10px;
  color: #53645f;
  background: #f4f8f5;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.admin-entity-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.admin-entity-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  color: #53645f;
  font-size: 12px;
  font-weight: 800;
}

.admin-entity-card dt {
  min-width: 0;
}

.admin-entity-card dd {
  margin: 0;
  color: #0c332b;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.admin-card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 2px;
}

.admin-card-actions button {
  min-height: 34px;
  padding: 0 8px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.admin-card-actions button:hover,
.admin-card-actions button:first-child {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.admin-product-card {
  align-content: start;
  padding: 0 0 14px;
  overflow: hidden;
}

.admin-product-card img,
.admin-product-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dce8e2;
}

.admin-product-placeholder {
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(0, 70, 56, 0.92), rgba(245, 181, 40, 0.48)),
    #dce8e2;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-product-card .admin-card-title,
.admin-product-card dl,
.admin-product-card .admin-card-actions {
  margin-right: 14px;
  margin-left: 14px;
}

.admin-product-card .admin-card-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-partner-card {
  align-content: start;
}

.admin-timeline {
  display: grid;
  gap: 10px;
}

.admin-timeline article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.admin-tour-card {
  position: relative;
  overflow: hidden;
  border-left: 6px solid rgba(10, 55, 45, 0.12);
}

.admin-tour-card.is-confirmed {
  background: #effaf2;
  border-color: #22a45a;
}

.admin-tour-card.is-pending {
  background: #fff7dc;
  border-color: #f5b528;
}

.admin-tour-card.is-deposit {
  background: #edf5ff;
  border-color: #2f80ed;
}

.admin-tour-card.is-cancelled {
  background: #fff0f0;
  border-color: #d64b4b;
}

.admin-timeline time {
  color: #0c332b;
  font-size: 20px;
  font-weight: 900;
}

.admin-timeline div {
  display: grid;
  gap: 5px;
}

.admin-timeline span {
  color: #53645f;
  font-size: 13px;
  font-weight: 800;
}

.admin-next-payout {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  padding: 20px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #003d31, #0f5d4b),
    var(--green);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(245, 181, 40, 0.32), 0 18px 40px rgba(13, 47, 40, 0.18);
}

.admin-next-payout span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 900;
}

.admin-next-payout strong,
.admin-next-payout b {
  color: #ffffff;
  font-size: 34px;
  line-height: 1.1;
}

.admin-next-payout button {
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
  color: #0c332b;
  background: #f5b528;
  border: 1px solid rgba(245, 181, 40, 0.78);
  border-radius: 7px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.admin-finance .partner-finance-payout {
  background: #f1f8f4;
  border-color: rgba(0, 70, 56, 0.2);
}

.admin-finance .partner-finance-payout dd {
  color: var(--green);
  font-size: 20px;
}

.admin-modal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-partners .partner-list strong,
.admin-today .partner-list strong {
  color: #0c332b;
}

@media (max-width: 1120px) {
  .partner-dashboard-grid,
  .partner-kpis,
  .admin-kpis,
  .admin-control-grid,
  .admin-card-grid,
  .admin-experience-grid,
  .admin-today-overview,
  .admin-lower-grid {
    grid-template-columns: 1fr 1fr;
  }

  .admin-today-overview dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-today-card {
    grid-template-columns: 1fr 1fr;
  }

  .partner-primary-action {
    grid-column: 1 / -1;
    min-height: 52px;
  }

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

  .partner-status {
    white-space: normal;
    text-align: center;
  }

  .partner-reservations {
    grid-column: 1 / -1;
  }

  .partner-side-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .partner-topbar,
  .partner-dashboard-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-topbar {
    position: static;
    padding: 14px 16px;
  }

  .partner-topbar-meta {
    width: 100%;
    justify-content: space-between;
  }

  .partner-dashboard {
    width: calc(100% - 32px);
    padding-top: 16px;
  }

  .admin-dashboard {
    width: calc(100% - 24px);
  }

  .partner-dashboard-hero {
    padding: 16px 18px;
  }

  .partner-dashboard-hero h1 {
    font-size: 32px;
  }

  .partner-dashboard-grid,
  .partner-kpis,
  .admin-kpis,
  .admin-control-grid,
  .admin-card-grid,
  .admin-experience-grid,
  .admin-lower-grid,
  .partner-side-panel,
  .partner-today-card,
  .partner-today-stats,
  .partner-modal-grid {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-notification-menu {
    right: -8px;
    width: min(320px, calc(100vw - 24px));
  }

  .admin-tabs a,
  .admin-filters button,
  .admin-new-button,
  .admin-quick-actions button,
  .admin-quick-actions a {
    min-width: 0;
    white-space: normal;
  }

  .admin-quick-actions {
    justify-content: stretch;
  }

  .admin-quick-actions button,
  .admin-quick-actions a {
    flex: 1 1 calc(50% - 8px);
  }

  .admin-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-today-overview dl {
    grid-template-columns: 1fr;
  }

  .admin-timeline article {
    grid-template-columns: 1fr;
  }

  .partner-reservations {
    grid-column: auto;
  }

  .partner-table-head {
    display: none;
  }

  .admin-table-head {
    display: none;
  }

  .partner-table-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    font-size: 14px;
  }

  .admin-reservation-table {
    overflow-x: visible;
  }

  .admin-table-row {
    grid-template-columns: 1fr;
    min-width: 0;
    gap: 8px;
    padding: 14px;
    font-size: 14px;
  }

  .partner-table-row > span {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(10, 55, 45, 0.08);
  }

  .admin-table-row > span {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    text-align: right;
    border-bottom: 1px solid rgba(10, 55, 45, 0.08);
  }

  .partner-table-row > span::before {
    content: attr(data-label);
    color: #53645f;
    font-size: 12px;
    font-weight: 900;
  }

  .admin-table-row > span::before {
    content: attr(data-label);
    flex: 0 0 auto;
    color: #53645f;
    font-size: 12px;
    font-weight: 900;
    text-align: left;
  }

  .partner-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0 !important;
  }

  .admin-table-row .partner-actions {
    grid-template-columns: 1fr;
  }

  .partner-actions::before {
    display: none;
  }

  .partner-actions button,
  .partner-actions a {
    width: 100%;
    min-width: 0;
    white-space: normal;
  }

  .partner-urgent-alert,
  .partner-active-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-urgent-alert button,
  .partner-active-filter button {
    width: 100%;
  }

  .partner-guest {
    justify-content: flex-end;
    max-width: 68%;
  }

  .partner-guest-copy {
    text-align: right;
  }

  .partner-guest small {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 8px;
  }

  .partner-status {
    white-space: nowrap;
    text-align: right;
  }

  .partner-detail-panel {
    padding: 12px;
  }

  .partner-detail-panel dl {
    grid-template-columns: 1fr;
  }

  .partner-contact-actions a {
    flex: 1;
  }

  .partner-modal {
    align-items: end;
    padding: 12px;
  }

  .partner-modal-card {
    max-height: 88vh;
    padding: 16px;
  }

  .admin-modal-grid {
    grid-template-columns: 1fr;
  }

  .partner-guest-list article {
    grid-template-columns: 1fr;
  }

  .partner-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    text-align: center;
  }
}

.experience-builder-page {
  padding-bottom: 86px;
  background: #f4f7f4;
}

.experience-builder {
  display: grid;
  gap: 14px;
}

.experience-builder-hero {
  align-items: end;
}

.experience-builder-status {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 47, 40, 0.07);
}

.experience-builder-status strong,
.experience-builder-status span {
  display: block;
}

.experience-builder-status strong {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-builder-status span {
  margin-top: 3px;
  color: #53645f;
  font-size: 13px;
  font-weight: 900;
}

.experience-builder-progress {
  height: 10px;
  overflow: hidden;
  background: #e6eee9;
  border-radius: 999px;
}

.experience-builder-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: inherit;
  transition: width 180ms ease;
}

.experience-builder-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.experience-builder-steps {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 8px;
}

.experience-builder-steps button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 8px 10px;
  color: #0c332b;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
}

.experience-builder-steps button span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #0c332b;
  background: #e8f1ed;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.experience-builder-steps button strong {
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.experience-builder-steps button.is-active {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 14px 28px rgba(0, 70, 56, 0.2);
}

.experience-builder-steps button.is-active span {
  background: var(--gold);
}

.experience-builder-panel {
  display: grid;
  gap: 22px;
  min-height: 650px;
}

.experience-builder-step {
  display: grid;
  gap: 16px;
  scroll-margin-top: 18px;
}

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

.builder-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.builder-field-wide {
  grid-column: 1 / -1;
}

.builder-field span,
.builder-field legend,
.builder-url-preview span {
  color: #53645f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-field input,
.builder-field select,
.builder-field textarea,
.builder-add-row input {
  width: 100%;
  min-width: 0;
  color: #0c332b;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.14);
  border-radius: 8px;
  outline: 0;
  font-size: 14px;
  font-weight: 800;
}

.builder-field input,
.builder-field select,
.builder-add-row input {
  min-height: 44px;
  padding: 0 12px;
}

.builder-field textarea {
  resize: vertical;
  padding: 12px;
  line-height: 1.45;
}

.builder-field input:focus,
.builder-field select:focus,
.builder-field textarea:focus,
.builder-add-row input:focus {
  border-color: rgba(245, 181, 40, 0.88);
  box-shadow: 0 0 0 3px rgba(245, 181, 40, 0.14);
}

.builder-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  border: 0;
}

.builder-checks legend {
  width: 100%;
}

.builder-checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.builder-token-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-token-list button,
.builder-add-row button,
.builder-gallery-preview button,
.builder-preview-tabs button,
.experience-builder-footer button {
  min-height: 38px;
  padding: 0 12px;
  color: #0c332b;
  background: #eef5f1;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.builder-token-list button.is-selected,
.builder-preview-tabs button.is-selected,
.experience-builder-footer [data-next-step],
.experience-builder-footer [data-publish] {
  color: #ffffff;
  background: var(--green);
  border-color: var(--green);
}

.builder-add-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 10px;
}

.builder-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.builder-upload {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 18px;
  color: #0c332b;
  background: #f7faf8;
  border: 2px dashed rgba(0, 70, 56, 0.24);
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

.builder-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.builder-upload strong {
  font-size: 18px;
}

.builder-upload span {
  color: #53645f;
  font-size: 13px;
  font-weight: 900;
}

.builder-hero-upload {
  border-color: rgba(245, 181, 40, 0.72);
  box-shadow: inset 0 0 0 1px rgba(245, 181, 40, 0.22);
}

.builder-gallery-preview {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.builder-gallery-preview article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  background: #fbfdfb;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
}

.builder-gallery-preview article.is-hero {
  border-color: rgba(245, 181, 40, 0.86);
  box-shadow: 0 12px 28px rgba(245, 181, 40, 0.12);
}

.builder-gallery-preview img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 7px;
}

.builder-gallery-preview b {
  justify-self: start;
  padding: 5px 9px;
  color: #ffffff;
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
}

.builder-gallery-preview article.is-hero b {
  color: #0c332b;
  background: var(--gold);
}

.builder-gallery-preview div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.builder-location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
}

.builder-map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 70, 56, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 70, 56, 0.1) 1px, transparent 1px),
    #edf4ef;
  background-size: 36px 36px;
  border: 1px solid rgba(10, 55, 45, 0.12);
  border-radius: 8px;
}

.builder-map::before {
  position: absolute;
  content: "";
  top: 45%;
  left: 50%;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border: 6px solid var(--green);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 12px 22px rgba(0, 70, 56, 0.24);
}

.builder-map span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: #0c332b;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(13, 47, 40, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.builder-url-preview {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 76px;
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
}

.builder-url-preview strong {
  color: var(--green);
  overflow-wrap: anywhere;
}

.builder-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-experience-preview {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(13, 47, 40, 0.1);
  transition: max-width 180ms ease;
}

.builder-experience-preview.is-tablet {
  max-width: 760px;
}

.builder-experience-preview.is-mobile {
  max-width: 390px;
}

.builder-preview-hero {
  position: relative;
  min-height: 340px;
  color: #ffffff;
  background: #0c332b;
}

.builder-preview-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.builder-preview-hero::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 36, 30, 0.72), rgba(0, 36, 30, 0.18));
}

.builder-preview-hero div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 340px;
  max-width: 680px;
  padding: 32px;
}

.builder-preview-hero span {
  justify-self: start;
  padding: 6px 10px;
  color: #0c332b;
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.builder-preview-hero h3 {
  margin: 12px 0 8px;
  font-size: 42px;
  line-height: 1;
}

.builder-preview-hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.builder-preview-body {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.builder-preview-body dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.builder-preview-body dl div,
.builder-preview-body section {
  padding: 12px;
  background: #f7faf8;
  border: 1px solid rgba(10, 55, 45, 0.08);
  border-radius: 8px;
}

.builder-preview-body dt,
.builder-preview-body h4 {
  margin: 0;
  color: #53645f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-preview-body dd {
  margin: 5px 0 0;
  color: #0c332b;
  font-size: 16px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.builder-preview-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.builder-preview-body li {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid rgba(10, 55, 45, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.builder-preview-body p {
  margin: 8px 0 0;
  color: #0c332b;
  font-weight: 900;
}

.experience-builder-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px max(18px, calc((100vw - 1440px) / 2 + 18px));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(10, 55, 45, 0.12);
  box-shadow: 0 -14px 32px rgba(13, 47, 40, 0.1);
}

.experience-builder-footer div {
  display: flex;
  gap: 8px;
}

.experience-builder-footer [data-publish] {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c332b;
}

.experience-builder-footer button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 1120px) {
  .experience-builder-shell,
  .builder-location-grid {
    grid-template-columns: 1fr;
  }

  .experience-builder-steps {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .builder-preview-body dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .experience-builder-page {
    padding-bottom: 128px;
  }

  .experience-builder-status,
  .builder-grid,
  .builder-gallery,
  .builder-add-row,
  .builder-preview-body dl {
    grid-template-columns: 1fr;
  }

  .experience-builder-steps {
    grid-template-columns: 1fr 1fr;
  }

  .experience-builder-steps button {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .experience-builder-steps button span {
    width: 30px;
    height: 30px;
  }

  .builder-gallery-preview,
  .builder-gallery-preview div {
    grid-template-columns: 1fr;
  }

  .builder-map {
    min-height: 260px;
  }

  .builder-preview-hero,
  .builder-preview-hero div {
    min-height: 300px;
  }

  .builder-preview-hero div {
    padding: 20px;
  }

  .builder-preview-hero h3 {
    font-size: 30px;
  }

  .experience-builder-footer,
  .experience-builder-footer div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-builder-footer {
    gap: 8px;
    padding: 10px 12px;
  }

  .experience-builder-footer div {
    display: contents;
  }

  .experience-builder-footer button {
    min-width: 0;
  }
}
