:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --surface-strong: #eef5ff;
  --text: #172033;
  --muted: #5d6a82;
  --primary: #0c7ae7;
  --primary-dark: #0a5cba;
  --accent: #edf7ff;
  --border: rgba(23, 32, 51, 0.08);
  --shadow: 0 20px 50px rgba(15, 32, 60, 0.08);
  --success: #12a36d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.05);
  box-shadow: 0 8px 30px rgba(15, 32, 60, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand span {
  font-size: 0.72rem;
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0c7ae7, #77b5ff);
  color: white;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--primary), #38a4ff);
  color: white;
  box-shadow: 0 14px 28px rgba(12, 122, 231, 0.25);
}

.button.secondary,
.button.ghost {
  background: rgba(12, 122, 231, 0.08);
  color: var(--primary-dark);
}

.button.wide {
  width: 100%;
}

.button.small {
  min-height: 40px;
  padding: 0.8rem 1rem;
}

.hero {
  padding: 70px 0 30px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.hero-copy h1,
.section-head h2 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 620px;
}

.subtext {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
}

.hero-metrics li {
  padding: 18px 18px 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-metrics strong {
  display: block;
  font-size: 1.4rem;
}

.hero-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 18px;
}

.card-header .status {
  background: rgba(13, 167, 167, 0.12);
  color: #0a8a8a;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.7rem;
}

.booking-form,
.price-settings-form {
  display: grid;
  gap: 14px;
}

.booking-form label,
.price-settings-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.price-settings-form input,
.price-settings-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #f9fbff;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  color: var(--text);
}

.booking-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--surface-strong);
  border-radius: 18px;
  padding: 16px;
  margin-top: 8px;
}

.booking-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.booking-summary strong {
  font-size: 1.4rem;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  border: 1px solid rgba(12, 122, 231, 0.18);
  background: rgba(12, 122, 231, 0.08);
  color: var(--primary-dark);
}

.availability-status.available {
  border-color: rgba(18, 163, 109, 0.2);
  background: rgba(18, 163, 109, 0.08);
  color: #0d7c54;
}

.availability-status.unavailable {
  border-color: rgba(210, 63, 63, 0.2);
  background: rgba(210, 63, 63, 0.08);
  color: #9f2a2a;
}

.availability-status.warn {
  border-color: rgba(217, 160, 31, 0.24);
  background: rgba(217, 160, 31, 0.09);
  color: #9b6a00;
}

.client-fields {
  display: grid;
  gap: 14px;
}

.logo-strip {
  padding: 10px 0 20px;
}

.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
  font-weight: 700;
}

.rooms,
.benefits,
.room-detail-wrap,
.admin-shell {
  padding: 54px 0;
}

.section-head {
  margin-bottom: 26px;
}

.section-head.left {
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.room-grid,
.benefit-grid {
  display: grid;
  gap: 26px;
}

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

.room-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.room-card.selected {
  border-color: rgba(12, 122, 231, 0.45);
  transform: translateY(-2px);
}

.room-photo {
  height: 240px;
  background-size: cover;
  background-position: center;
}

.room-info {
  padding: 20px 20px 24px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-row h3 {
  margin: 0;
  font-size: 1.4rem;
}

.price-row span {
  font-size: 0.82rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.room-info p {
  margin: 14px 0;
  color: var(--muted);
  line-height: 1.7;
}

.room-info ul,
.detail-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.room-info li,
.detail-features li {
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.room-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.room-detail-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.single-room-hero {
  padding: 42px 0 20px;
}

.single-room-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 32px;
  align-items: start;
}

.single-room-media {
  display: grid;
  gap: 14px;
}

.single-room-photo.large {
  min-height: 560px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 28px 55px rgba(15, 32, 60, 0.18);
  border: 1px solid rgba(23, 32, 51, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-room-photo.large:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(15, 32, 60, 0.2);
}

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

.thumb {
  display: block;
  min-height: 150px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(23, 32, 51, 0.05);
  box-shadow: 0 18px 38px rgba(15, 32, 60, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.thumb:hover,
.thumb.active {
  transform: translateY(-2px);
  border-color: rgba(12, 122, 231, 0.5);
  box-shadow: 0 20px 40px rgba(15, 32, 60, 0.12);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal.hidden {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 22, 34, 0.72);
}

.gallery-modal-panel {
  position: relative;
  width: min(900px, 92vw);
  max-height: 88vh;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.gallery-modal-panel img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 20px;
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 22, 34, 0.7);
  color: white;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.single-room-copy {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,249,252,0.94));
  border: 1px solid rgba(23, 32, 51, 0.06);
  border-radius: 30px;
  padding: 28px 26px 24px;
  box-shadow: 0 30px 60px rgba(15, 32, 60, 0.08);
}

.single-room-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.single-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.single-room-meta span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #edf7ff, #dfeeff);
  color: var(--primary-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.single-room-price {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.04em;
}

.single-room-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.06rem;
}

.single-room-booking {
  padding: 12px 0 40px;
}

.booking-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(240,246,255,0.96));
  border: 1px solid rgba(23, 32, 51, 0.06);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(15, 32, 60, 0.08);
  padding: 26px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: center;
}

.booking-box-copy {
  padding-right: 8px;
}

.booking-box-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

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

.single-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.single-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 14px;
  background: rgba(249, 251, 255, 0.86);
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 2px rgba(15,32,60,0.02);
}

.single-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(135deg, #edf7ff, #eef3ff);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 122, 231, 0.08);
}

.single-pricing span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.single-pricing strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.single-form .client-fields {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.single-form .button {
  grid-column: 1 / -1;
  min-height: 56px;
  font-size: 1rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.detail-gallery {
  display: grid;
  gap: 14px;
}

.detail-main-photo {
  min-height: 320px;
  border-radius: 22px;
  background-position: center;
  background-size: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumbs span {
  display: block;
  min-height: 110px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}

.detail-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.detail-price {
  margin: 12px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.7;
}

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

.detail-booking label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.detail-booking input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  background: #f9fbff;
}

.detail-total {
  margin: 18px 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 1.2rem;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.detail-total span {
  color: var(--muted);
}

.detail-total strong {
  font-size: 1.6rem;
}

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

.benefit-card {
  background: var(--surface);
  padding: 24px 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.trust {
  padding: 28px 0 70px;
}

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

.review-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
}

.review-stars {
  color: #f7b731;
  letter-spacing: 0.12em;
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.review-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.review-card strong {
  font-size: 0.9rem;
  color: var(--text);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 22px;
  margin-top: 22px;
}

.info-card h3 {
  margin: 0 0 18px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.route-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.route-list li {
  position: relative;
  padding-left: 20px;
}

.route-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #7ac5ff);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  font-weight: 800;
}

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

.map-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(12, 122, 231, 0.1);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
}

.map-surface {
  position: relative;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, #eaf6ff, #dfeeff 58%, #ebf4ef 58%, #dfeee8);
  border: 1px solid rgba(23, 32, 51, 0.04);
  overflow: hidden;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--primary), #5db2ff);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(12, 122, 231, 0.3);
}

.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.04);
}

.road-one {
  width: 180px;
  height: 18px;
  left: 12%;
  top: 42%;
  transform: rotate(20deg);
}

.road-two {
  width: 200px;
  height: 18px;
  right: 10%;
  top: 58%;
  transform: rotate(-18deg);
}

.map-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(12, 122, 231, 0.08);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-toggle-wrap {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.admin-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
}

.admin-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-auth-card {
  max-width: 440px;
  padding: 18px 18px 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, #f9fbff, #eef7ff);
}

.admin-auth-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.admin-auth-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
}

.admin-auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  padding: 0.8rem 0.9rem;
}

.admin-auth-message {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hidden {
  display: none;
}

.price-settings-form {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
}

.seasonal-pricing-block {
  margin-top: 24px;
}

.seasonal-pricing-form {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  margin-top: 12px;
}

.seasonal-pricing-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.seasonal-pricing-form input,
.seasonal-pricing-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f9fbff;
  color: var(--text);
  padding: 0.7rem 0.9rem;
}

textarea {
  font: inherit;
}

.booking-status-toolbar {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

.booking-status-filter {
  display: grid;
  gap: 10px;
  min-width: 220px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.8rem;
}

.booking-status-filter select,
.booking-status-select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f9fbff;
  color: var(--text);
  padding: 0.7rem 0.9rem;
}

.admin-prices-wrap {
  margin-top: 20px;
  overflow-x: auto;
}

.admin-prices-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.admin-prices-table th,
.admin-prices-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.admin-prices-table th {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer {
  padding: 26px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
}

.footer-meta a {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-inner,
  .detail-layout,
  .room-grid,
  .benefit-grid,
  .trust-grid,
  .info-grid,
  .single-room-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .detail-layout,
  .single-room-grid,
  .trust-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .price-settings-form,
  .seasonal-pricing-form,
  .booking-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .room-grid,
  .benefit-grid,
  .trust-grid,
  .info-grid,
  .detail-booking,
  .price-settings-form,
  .seasonal-pricing-form,
  .single-room-grid,
  .booking-box,
  .single-form,
  .single-pricing {
    grid-template-columns: 1fr;
  }

  .single-room-hero {
    padding-top: 24px;
  }

  .single-room-photo.large {
    min-height: 300px;
  }

  .single-room-copy {
    padding: 18px;
  }

  .single-room-meta {
    gap: 8px;
  }

  .single-room-meta span {
    width: fit-content;
  }

  .hero {
    padding-top: 48px;
  }

  .room-actions {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}
