:root {
  --bg: #f4efe6;
  --ink: #1b1b1b;
  --accent: #ff6b3d;
  --accent-2: #0f6b5f;
  --paper: #fff7eb;
  --shadow: none;
  --radius: 22px;
  --font-display: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body[data-font="serif"] {
  --font-body: "Georgia", "Times New Roman", serif;
  --font-display: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

body[data-font="modern"] {
  --font-body: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --font-display: "Futura", "Trebuchet MS", Arial, sans-serif;
}

body[data-font="rounded"] {
  --font-body: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}

body[data-font="elegant"] {
  --font-body: "Optima", "Palatino", "Georgia", serif;
  --font-display: "Baskerville", "Palatino", "Georgia", serif;
}

body[data-font="mono"] {
  --font-body: "Courier New", Courier, monospace;
  --font-display: "Courier New", Courier, monospace;
}

body[data-theme="forest"] {
  --bg: #ecf4ef;
  --ink: #142019;
  --accent: #3a8b6d;
  --accent-2: #2b5d49;
  --paper: #f6fbf8;
}

body[data-theme="sunset"] {
  --bg: #f7efe8;
  --ink: #2a1912;
  --accent: #f06d2f;
  --accent-2: #8b3b2a;
  --paper: #fff3ea;
}

body[data-theme="ocean"] {
  --bg: #eaf4f8;
  --ink: #0b1f2a;
  --accent: #2f8fe3;
  --accent-2: #0c5a7a;
  --paper: #f2f9ff;
}

body[data-theme="terracotta"] {
  --bg: #f6efe8;
  --ink: #2c1a14;
  --accent: #c45a3a;
  --accent-2: #7a3b2a;
  --paper: #fff4ec;
}

body[data-theme="mist"] {
  --bg: #eef1f3;
  --ink: #1b1f26;
  --accent: #5d6b7a;
  --accent-2: #3c4754;
  --paper: #f7f9fb;
}

body[data-theme="lavender"] {
  --bg: #f3f0fb;
  --ink: #2a1f3a;
  --accent: #7a5fd3;
  --accent-2: #5b3fb3;
  --paper: #faf6ff;
}

body[data-theme="mint"] {
  --bg: #eef9f5;
  --ink: #0e2b24;
  --accent: #38a58f;
  --accent-2: #1f6b5f;
  --paper: #f6fffb;
}

body[data-theme="sand"] {
  --bg: #f7f2e8;
  --ink: #2f2216;
  --accent: #d1a24a;
  --accent-2: #8b6a2e;
  --paper: #fff8ee;
}

body[data-theme="rose"] {
  --bg: #f8eef1;
  --ink: #2b1a1f;
  --accent: #c45a7a;
  --accent-2: #7a304d;
  --paper: #fff6f8;
}

body[data-theme="ember"] {
  --bg: #fbf1ea;
  --ink: #2c1a14;
  --accent: #d94f2d;
  --accent-2: #8b3b2a;
  --paper: #fff6ef;
}

body[data-theme="jade"] {
  --bg: #eaf7f4;
  --ink: #0f2a26;
  --accent: #2fb3a3;
  --accent-2: #1d6f65;
  --paper: #f4fffc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: radial-gradient(circle at top left, #fff5dd 0%, #f4efe6 45%, #f1e5d6 100%);
  color: var(--ink);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

.bg-texture {
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.6) 0 1px, transparent 1px 12px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

.header-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 8vw;
  background: #223843;
  color: rgba(245, 248, 250, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-item-group,
.topbar-social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-social {
  justify-content: flex-end;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.2;
}

.topbar-item-center {
  justify-self: center;
  text-align: center;
}

.topbar-item a,
.topbar-social a {
  color: inherit;
  text-decoration: none;
}

.topbar-icon,
.topbar-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.topbar-follow {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-item a:hover,
.topbar-social-link:hover {
  color: #ffd38a;
}

.header-info {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(220px, 0.8fr) minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 26px 8vw;
  background: #fff;
  border-bottom: 1px solid rgba(34, 56, 67, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 8vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid rgba(34, 56, 67, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-family: var(--font-display);
  font-size: 2.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo-text {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.logo-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
}

.logo-mark {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 0;
}

.logo-subtext {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(34, 56, 67, 0.72);
}

.header-info-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
}

.header-info > .header-info-card:last-child {
  justify-self: end;
}

.header-info > .header-info-card:last-child .header-info-copy {
  text-align: right;
}

.header-info-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(246, 132, 70, 0.12);
  color: #d9962e;
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.header-info-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.header-info-copy strong {
  font-size: 1rem;
  line-height: 1.3;
}

.header-info-copy span {
  color: rgba(34, 56, 67, 0.72);
  font-size: 0.92rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: 38px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a:hover {
  color: var(--accent-2);
}

.nav-links a:hover::after,
.nav-links a:active::after,
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.alert {
  background: rgba(255, 107, 61, 0.15);
  color: #a33a1a;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.nav-link {
  position: relative;
  padding: 6px 2px;
}

.nav-link.nav-active {
  color: var(--accent-2);
  font-weight: 700;
}

.nav-link.nav-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.admin-nav {
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-logo {
  flex: 0 0 auto;
}

.admin-logo .logo-mark {
  width: 128px;
  height: 42px;
  object-fit: contain;
}

.admin-nav-links {
  flex: 1 1 640px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.admin-nav-links a {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(34, 56, 67, 0.06);
  border: 1px solid rgba(34, 56, 67, 0.08);
  line-height: 1.2;
  white-space: nowrap;
}

.admin-nav-links a:hover {
  background: rgba(47, 179, 163, 0.12);
}

.admin-nav-links a:hover::after,
.admin-nav-links a.active::after {
  display: none;
}

.admin-nav-links a.active {
  background: rgba(47, 179, 163, 0.14);
  color: var(--accent-2);
  border-color: rgba(47, 179, 163, 0.26);
}

.admin-nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.admin-nav-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(34, 56, 67, 0.06);
  border: 1px solid rgba(34, 56, 67, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero {
  padding: 80px 8vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  position: relative;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 16px;
  color: var(--accent-2);
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.cta-form button {
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.cta-form button:hover,
.nav-cta:hover,
.contact-form button:hover,
.section-actions .btn-secondary:hover,
.btn-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  filter: brightness(1.02);
}

.btn-primary:active,
.btn-secondary:active,
.btn-ghost:active,
.cta-form button:active,
.nav-cta:active,
.contact-form button:active,
.section-actions .btn-secondary:active,
.btn-icon:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: var(--accent-2);
  color: #fff;
  display: inline-block;
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-card .btn-secondary,
.hero-card .btn-primary {
  margin-top: auto;
  align-self: center;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 107, 61, 0.15);
  top: -40px;
  right: -30px;
}

.card-top h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.chip {
  display: inline-block;
  background: #1b1b1b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.card-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
}

.card-stats small {
  display: block;
  color: #666;
  margin-top: 4px;
}

.hero-photo {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.photo-caption {
  padding: 12px 18px;
  font-size: 0.9rem;
  background: var(--paper);
}

.hero-orbit {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(15, 107, 95, 0.2);
  top: 20px;
  right: 5vw;
  animation: spin 18s linear infinite;
  z-index: -1;
}

.orbit-plane {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--accent);
  filter: none;
}
.orbit-plane svg {
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.section {
  padding: 70px 8vw;
  scroll-margin-top: 110px;
}

main > section.section:nth-of-type(odd):not(.section-bg) {
  background: rgba(255, 255, 255, 0.35);
  position: relative;
}

main > section.section:nth-of-type(even):not(.section-bg) {
  background: rgba(255, 255, 255, 0.65);
  position: relative;
}

main > section.section.section-bg {
  background-color: transparent;
}

main > section.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 56px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.15) 55%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

main > section.section:nth-of-type(even)::after {
  background: radial-gradient(120% 100% at 50% 0%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.35) 55%, rgba(255,255,255,0) 100%);
}

main > section.section {
  border-radius: 28px;
  margin: 0 6vw 28px;
  box-shadow: 0 24px 60px rgba(28, 21, 16, 0.08);
}

.section-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #1d2d2a;
}

.section-bg-custom {
  background-image: var(--section-bg);
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  z-index: 0;
}

.section-bg > * {
  position: relative;
  z-index: 1;
}

.bg-tour {
  background-image: url("https://images.unsplash.com/photo-1458668383970-8ddd3927deed?auto=format&fit=crop&w=1600&q=80");
}

.bg-checkin {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=1600&q=80");
}

.bg-food {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80");
}

.contact-head {
  text-align: center;
  margin-bottom: 28px;
  display: grid;
  gap: 10px;
}

.contact-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
}

.contact-details {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  color: #27433d;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.contact-left {
  display: grid;
  gap: 18px;
}

.contact-form {
  background: #fff;
  padding: 28px 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 520px;
  display: grid;
  align-content: start;
}

.contact-form form {
  display: grid;
  gap: 16px;
  height: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(40, 40, 40, 0.18);
  font-size: 0.95rem;
  background: #fff;
}

.contact-form button {
  justify-self: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  margin-top: auto;
}

.contact-form button:hover {
  filter: brightness(0.95);
}

.fanpage-embed {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  height: 520px;
}

.fanpage-embed iframe {
  height: 100%;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr !important;
  }

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

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

  .rental-feature,
  .rental-plan-grid {
    grid-template-columns: 1fr;
  }

  .rental-destination-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .rental-destination-tile:nth-child(1),
  .rental-destination-tile:nth-child(4),
  .rental-destination-tile:nth-child(10) {
    grid-column: span 2;
  }

  .quote-form-layout {
    grid-template-columns: 1fr;
  }

  .article-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .rental-feature-list {
    grid-template-columns: 1fr;
  }

  .rental-destination-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .rental-destination-tile:nth-child(1),
  .rental-destination-tile:nth-child(4),
  .rental-destination-tile:nth-child(10) {
    grid-column: span 1;
  }
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

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

.photo-strip {
  position: relative;
}

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

.photo-grid figure {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-grid figcaption {
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #444;
  background: #fff;
}

.photo-grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(25, 25, 25, 0.18);
}

.photo-grid figure:hover img {
  transform: scale(1.06);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  min-height: 340px;
  height: 100%;
  grid-auto-rows: min-content;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card img.card-cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  margin-bottom: 6px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(25, 25, 25, 0.18);
}

.stay-section {
  padding-top: 24px;
}

.stay-shell {
  display: grid;
  gap: 28px;
}

.stay-head {
  margin-bottom: 0;
}

.stay-hero {
  position: relative;
  min-height: 460px;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(25, 25, 25, 0.18);
}

.stay-hero-image {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.stay-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 26, 32, 0.08), rgba(14, 26, 32, 0.22));
}

.stay-hero-panel {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 1;
  max-width: 360px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 22px 40px rgba(30, 30, 30, 0.16);
  display: grid;
  gap: 12px;
}

.stay-chip {
  justify-self: start;
}

.stay-hero-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 1.05;
}

.stay-hero-panel p {
  color: rgba(34, 56, 67, 0.82);
}

.stay-hero-cta {
  justify-self: start;
}

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

.stay-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(24, 24, 24, 0.14);
}

.stay-card-image-trigger {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: block;
  text-align: left;
}

.stay-card-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}

.stay-card:hover .stay-card-image {
  transform: scale(1.03);
}

.stay-card-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 10px;
}

.stay-card-meta {
  color: rgba(34, 56, 67, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.stay-card-body h3 {
  font-size: 1.02rem;
  line-height: 1.3;
}

.stay-card-body p {
  color: rgba(34, 56, 67, 0.78);
  font-size: 0.92rem;
}

.stay-card-link {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(246, 132, 70, 0.12);
  color: var(--accent-2);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-page {
  display: grid;
  gap: 34px;
}

.quote-banner {
  position: relative;
  min-height: 440px;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(25, 25, 25, 0.18);
}

.quote-banner-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}

.quote-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 30, 38, 0.05), rgba(20, 30, 38, 0.28));
}

.quote-banner-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  padding: 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.14);
}

.quote-banner-card h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.quote-banner-card p {
  color: rgba(34, 56, 67, 0.78);
}

.quote-section-block,
.quote-form-section {
  display: grid;
  gap: 18px;
}

.quote-section-head {
  display: grid;
  gap: 8px;
}

.quote-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
}

.quote-section-head p {
  color: rgba(34, 56, 67, 0.72);
}

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

.quote-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(24, 24, 24, 0.14);
}

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

.quote-card-image-trigger {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: block;
  text-align: left;
}

.quote-card-image-trigger img {
  transition: transform 0.28s ease;
}

.quote-card:hover .quote-card-image-trigger img {
  transform: scale(1.03);
}

.quote-card-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.quote-card-meta {
  font-size: 0.78rem;
  color: rgba(34, 56, 67, 0.55);
  font-weight: 700;
}

.quote-card-body h3 {
  font-size: 0.98rem;
  line-height: 1.35;
}

.quote-card-body p {
  color: rgba(34, 56, 67, 0.76);
  font-size: 0.9rem;
}

.quote-card-link {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(246, 132, 70, 0.12);
  color: var(--accent-2);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .quote-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .quote-card-grid {
    grid-template-columns: 1fr;
  }
}

.modal-open {
  overflow: hidden;
}

.modal.tour-detail-modal {
  width: min(96vw, 1240px);
  height: min(76vh, 620px);
  max-height: min(76vh, 620px);
  padding: 0;
  gap: 0;
  overflow: hidden;
  text-align: left;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.1fr);
}

#tour-detail-modal.is-visible,
#rental-detail-modal.is-visible,
#request-quote-detail-modal.is-visible,
#stay-detail-modal.is-visible,
#home-card-detail-modal.is-visible {
  opacity: 1;
}

.tour-detail-media {
  height: 100%;
  background: #e9dfd1;
}

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

.tour-detail-body {
  padding: 34px 34px 30px;
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  min-height: 0;
  background: #fffdf8;
  overflow: hidden;
}

.tour-detail-body h3 {
  margin: 0;
  padding-right: 36px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
}

.tour-detail-content {
  min-height: 0;
  overflow-y: auto;
  display: grid;
  gap: 16px;
  padding-right: 10px;
}

.tour-detail-content p {
  margin: 0;
  color: rgba(34, 56, 67, 0.82);
  font-size: 1.04rem;
  line-height: 1.85;
}

.modal.home-card-modal {
  width: min(96vw, 1320px);
  height: min(84vh, 760px);
  max-height: min(84vh, 760px);
}

@media (max-width: 820px) {
  .modal.tour-detail-modal {
    width: min(94vw, 680px);
    height: auto;
    max-height: min(88vh, 820px);
    grid-template-columns: 1fr;
  }

  .tour-detail-image {
    height: 260px;
    min-height: 260px;
    max-height: 320px;
  }

  .tour-detail-body {
    padding: 20px 20px 22px;
  }

  .tour-detail-body h3 {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
  }

  .tour-detail-content {
    max-height: min(40vh, 320px);
  }
}

.quote-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.quote-contact-box {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 32px rgba(30, 30, 30, 0.08);
  display: grid;
  gap: 12px;
}

.quote-form-card {
  height: auto;
  min-height: 0;
}

.request-quote-shell {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.request-status {
  margin-bottom: 18px;
}

.request-quote-card {
  padding: 28px 26px 30px;
}

.request-quote-card h1 {
  font-family: Arial, sans-serif;
  color: #333;
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.05;
  margin-bottom: 34px;
}

.request-quote-card .tour-form-row {
  gap: 24px;
}

.request-quote-card .tour-form-row.two {
  gap: 24px;
}

.request-quote-card label,
.request-quote-card legend {
  font-size: 27px;
  gap: 11px;
}

.request-quote-card input,
.request-quote-card select,
.request-quote-card textarea {
  min-height: 76px;
  padding: 16px 20px;
  font-size: 29px;
}

.request-quote-card textarea {
  min-height: 180px;
}

.request-quote-card fieldset {
  padding-top: 20px;
  gap: 54px;
}

.request-quote-card input[type="radio"] {
  width: 30px;
  min-height: 30px;
}

.request-quote-card button {
  min-height: 76px;
  border-radius: 14px;
  font-size: 30px;
  margin-top: 26px;
}

.rental-page {
  display: grid;
  gap: 34px;
}

.rental-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.rental-feature-copy,
.rental-video-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  border: 1px solid rgba(230, 216, 198, 0.88);
  box-shadow: 0 20px 44px rgba(24, 24, 24, 0.08);
}

.rental-feature-copy {
  padding: 26px;
  display: grid;
  gap: 12px;
}

.rental-feature-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.rental-feature-time {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.rental-feature-list span {
  background: #fff6ea;
  border-radius: 14px;
  padding: 10px 12px;
  color: rgba(34, 56, 67, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}

.rental-video-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.rental-video-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.rental-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(223, 59, 45, 0.94);
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 18px 36px rgba(223, 59, 45, 0.28);
}

.rental-pricing {
  display: grid;
  gap: 18px;
}

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

.rental-plan-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(230, 216, 198, 0.88);
  box-shadow: 0 20px 44px rgba(24, 24, 24, 0.08);
}

.rental-plan-head {
  background: var(--plan-accent, var(--accent));
  color: #fff;
  padding: 20px 18px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.rental-plan-head h3,
.rental-plan-head p {
  margin: 0;
}

.rental-plan-head span {
  opacity: 0.86;
  font-size: 0.9rem;
}

.rental-plan-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.rental-plan-body span {
  color: rgba(34, 56, 67, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.rental-plan-actions {
  padding: 0 18px 18px;
}

.rental-plan-actions .btn-primary {
  width: 100%;
  justify-content: center;
}

.rental-destination-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 138px;
  gap: 10px;
}

.rental-destination-tile {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  display: block;
  box-shadow: 0 20px 44px rgba(24, 24, 24, 0.08);
}

.rental-destination-tile:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.rental-destination-tile:nth-child(4) {
  grid-column: span 2;
}

.rental-destination-tile:nth-child(7) {
  grid-row: span 2;
}

.rental-destination-tile:nth-child(9) {
  grid-column: 4;
  grid-row: 4;
}

.rental-destination-tile:nth-child(10) {
  grid-column: 1 / span 2;
  grid-row: 4;
}

.rental-destination-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.35s ease;
}

.rental-destination-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 27, 38, 0.08), rgba(18, 27, 38, 0.5));
}

.rental-destination-name {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  width: calc(100% - 24px);
}

.rental-destination-tile:hover img {
  transform: scale(1.05);
}

.rental-destination-head h2 {
  margin: 0;
  color: #16313b;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rental-destination-head p {
  margin: 0;
  color: #c79b4d;
  font-size: 1.08rem;
  font-weight: 700;
}

.rental-simple {
  padding-top: 62px;
}

.rental-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 46px;
  align-items: center;
}

.rental-story + .tour-simple-section,
.rental-pricing + .rental-story {
  margin-top: 66px;
}

.rental-story-copy {
  font-family: Arial, sans-serif;
}

.rental-story-copy h1 {
  margin: 0 0 15px;
  color: #123d35;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rental-story-copy > span {
  display: block;
  color: #d06d2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 5px;
}

.rental-story-copy h2 {
  color: #223;
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 13px;
}

.rental-story-copy p {
  color: #102824;
  font-size: 16px;
  line-height: 1.8;
  max-width: 540px;
}

.rental-story-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 42px;
  margin-top: 22px;
}

.rental-story-bullets div {
  position: relative;
  min-height: 28px;
  padding-left: 34px;
  color: #1c3430;
  font-size: 13px;
  line-height: 1.35;
}

.rental-story-bullets div::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 23px;
  height: 23px;
  border: 1px solid #e6b85b;
  border-radius: 5px;
}

.rental-story-bullets div::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 0;
  color: #e6a235;
  font-size: 13px;
  font-weight: 800;
}

.rental-story-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2ed;
  aspect-ratio: 1.58 / 1;
}

.rental-story-media img,
.rental-story-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.rental-story-media span {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  font-size: 35px;
  line-height: 1;
  padding-left: 5px;
}

.rental-section-desc {
  margin: -18px 0 25px;
  color: #3d504b;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.rental-pricing {
  margin-top: 68px;
}

.rental-pricing-heading {
  text-align: center;
  margin-bottom: 24px;
}

.rental-pricing-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: #252525;
  font-size: 31px;
  line-height: 1.1;
  text-transform: uppercase;
}

.rental-pricing-heading p {
  margin-top: 8px;
  color: #5f6764;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.rental-simple .rental-plan-card {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #ececec;
  background: #f2f2f2;
}

.rental-simple .rental-plan-head {
  padding: 19px 12px 14px;
}

.rental-simple .rental-plan-head h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.1;
}

.rental-simple .rental-plan-head p {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.rental-simple .rental-plan-body {
  min-height: 164px;
  padding: 28px 24px 20px;
  background: #efefef;
}

.rental-simple .rental-plan-body span {
  position: relative;
  padding-left: 18px;
  color: #555;
  font-size: 12px;
  font-weight: 400;
}

.rental-simple .rental-plan-body span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e8b43b;
  font-weight: 900;
}

.rental-simple .rental-plan-actions {
  padding: 0;
}

.rental-simple .rental-plan-actions a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  background: #ff960c;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-decoration: none;
}

.rental-booking-page {
  background: #fff;
}

.rental-booking-hero {
  min-height: 178px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72)),
    var(--rental-hero-image) center / cover;
}

.rental-booking-hero span {
  display: block;
  color: #009857;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.rental-booking-hero h1 {
  margin: 0;
  color: #222;
  font-family: Arial, sans-serif;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.rental-booking-hero p {
  margin-top: 10px;
  color: #5c6268;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.rental-booking-shell {
  width: min(1460px, calc(100% - 72px));
  margin: 0 auto;
  padding: 30px 0 100px;
  font-family: Arial, sans-serif;
}

.rental-booking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 14px;
}

.rental-booking-card {
  border: 1px solid #e6e8e8;
  border-radius: 5px;
  background: #fff;
  padding: 22px;
}

.rental-booking-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: #007743;
  font-size: 22px;
  line-height: 1.1;
}

.rental-booking-card h2 span {
  color: #009857;
}

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

.rental-customer-card label {
  display: grid;
  gap: 7px;
  color: #252525;
  font-size: 14px;
  font-weight: 700;
}

.rental-customer-card b {
  color: #e74835;
}

.rental-customer-card input,
.rental-customer-card textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #e0e2e4;
  border-radius: 4px;
  padding: 9px 12px;
  color: #333;
  font: inherit;
  font-weight: 400;
}

.rental-customer-card textarea {
  resize: vertical;
  min-height: 72px;
}

.rental-phone-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
}

.rental-phone-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e2e4;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  color: #444;
  font-weight: 400;
}

.rental-phone-row input {
  border-radius: 0 4px 4px 0;
}

.rental-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}

.rental-benefits span {
  display: grid;
  gap: 2px;
  color: #007743;
  font-size: 14px;
}

.rental-benefits small {
  color: #667;
  font-size: 12px;
}

.rental-booking-side {
  display: grid;
  gap: 12px;
}

.rental-payment-list {
  display: grid;
  gap: 18px;
}

.rental-payment-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.rental-payment-list dt {
  color: #222;
  font-weight: 700;
}

.rental-payment-list dd {
  margin: 0;
  color: #222;
  font-weight: 700;
}

.rental-payment-list .total {
  border-top: 1px dashed #dedede;
  padding-top: 18px;
}

.rental-payment-list .total dt,
.rental-payment-list .total dd {
  color: #007743;
  font-size: 20px;
}

.rental-days-control {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 13px;
}

.rental-days-control button,
.rental-days-control span {
  width: 66px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #222;
  font: inherit;
  font-weight: 700;
}

.rental-days-control em {
  margin-left: 12px;
  color: #555;
  font-style: normal;
}

.rental-booking-card > p {
  color: #697078;
  font-size: 14px;
}

.rental-vehicle-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.rental-vehicle-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: contain;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #fafafa;
}

.rental-vehicle-card h3 {
  margin: 0 0 12px;
  color: #222;
  font-size: 17px;
}

.rental-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.rental-specs span {
  color: #58606a;
  font-size: 13px;
}

.rental-vehicle-card a {
  color: #009857;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.rental-subtotal,
.rental-safe-card {
  border: 1px solid #dfeef1;
  border-radius: 5px;
  background: #fbfeff;
}

.rental-subtotal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 22px;
  color: #007743;
  font-size: 19px;
  font-weight: 800;
}

.rental-safe-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
}

.rental-safe-card strong {
  display: block;
  color: #007743;
  font-size: 19px;
  margin-bottom: 5px;
}

.rental-safe-card p,
.rental-safe-card small {
  color: #697078;
  font-size: 13px;
}

.rental-safe-card button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: #ff650f;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  cursor: pointer;
}

.rental-safe-card small {
  grid-column: 2;
  text-align: center;
  margin-top: -14px;
}

.rental-admin-page .section-head {
  margin-bottom: 24px;
}

.rental-admin-form {
  display: grid;
  gap: 26px;
}

.rental-admin-preview {
  background: #fff;
  border: 1px solid #efe7da;
  border-radius: 10px;
  padding: 26px;
}

.rental-admin-preview .admin-section-title {
  margin-bottom: 20px;
  color: #123d35;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.rental-admin-field {
  display: grid;
  gap: 8px;
  color: #34443f;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.rental-admin-field.inline-small {
  max-width: 220px;
}

.rental-admin-form input,
.rental-admin-form textarea {
  width: 100%;
  border: 1px solid #d9cec0;
  border-radius: 8px;
  background: #fff;
  color: #1f2926;
  font: inherit;
  padding: 10px 12px;
}

.rental-admin-form textarea {
  resize: vertical;
}

.rental-admin-story {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.rental-admin-bullets {
  align-items: start;
}

.rental-admin-bullets input {
  position: relative;
  min-height: 42px;
  padding-left: 14px;
}

.rental-admin-video-box {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px dashed #dfc89d;
  border-radius: 10px;
  background: #fffaf1;
  padding: 18px;
  font-family: Arial, sans-serif;
}

.rental-admin-video-box::before {
  content: "YouTube";
  display: grid;
  place-items: center;
  min-height: 210px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e9f0ec, #f7efe4);
  color: #123d35;
  font-size: 32px;
  font-weight: 900;
}

.rental-admin-video-box p {
  color: #5c5a52;
  font-size: 13px;
  line-height: 1.45;
}

.section-title-field {
  max-width: 520px;
  margin-bottom: 22px;
}

.rental-admin-card-grid {
  gap: 24px;
}

.rental-admin-card-grid .tour-simple-card,
.rental-admin-plan-grid .rental-plan-card {
  overflow: visible;
}

.rental-admin-card-grid .tour-simple-card > label {
  display: block;
  padding: 14px 16px 0;
  color: #34443f;
  font-size: 13px;
  font-weight: 700;
}

.rental-admin-card-target {
  background: #e9f5ef;
  color: #087645;
  padding: 8px 12px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.rental-admin-card-target.bicycle {
  background: #eef3ff;
  color: #2754a3;
}

.rental-admin-card-grid .admin-upload-row {
  padding: 10px 16px 0;
}

.rental-admin-card-grid .tour-simple-card-body {
  display: grid;
  gap: 10px;
}

.rental-admin-card-grid .tour-simple-card-body textarea {
  min-height: 76px;
}

.rental-admin-plan-grid .rental-plan-head {
  gap: 8px;
}

.rental-admin-plan-grid .rental-plan-head input {
  color: #222;
  text-align: center;
}

.rental-admin-plan-grid .rental-plan-body {
  gap: 10px;
}

.rental-admin-plan-grid .rental-plan-body input {
  font-size: 13px;
}

.rental-admin-plan-grid .rental-plan-actions {
  background: #ff960c;
  padding: 10px;
}

.rental-admin-plan-grid .rental-plan-actions input {
  text-align: center;
}

.rental-admin-save {
  position: sticky;
  bottom: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(10px);
}

.feature,
.fleet-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.card-grid .feature {
  padding: 0;
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.card-with-cover h3,
.card-with-cover p {
  padding: 0 22px;
}

.card-with-cover p {
  padding-bottom: 22px;
}

.card-cover {
  height: 170px;
  overflow: hidden;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.card-with-cover:hover .card-cover img {
  transform: scale(1.08);
}

.card-with-cover {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-with-cover:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(25, 25, 25, 0.18);
}

.fleet-card span {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.food-cover {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.food-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.price-card:hover .food-cover img {
  transform: scale(1.06);
}

.price-card ul {
  list-style: none;
  margin: 16px 0 24px;
  display: grid;
  gap: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-2);
}

.price-card.highlight {
  border: 2px solid var(--accent);
  transform: translateY(-8px);
}

.tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
}

.testimonial {
  background: linear-gradient(120deg, rgba(15, 107, 95, 0.86), rgba(27, 27, 27, 0.85)), url("https://commons.wikimedia.org/wiki/Special:FilePath/Pu_Luong_National_Reserve_%2815179196484%29.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.testimonial h2 {
  font-family: var(--font-display);
  margin-bottom: 12px;
}

.stats {
  display: grid;
  gap: 16px;
}

.stats h3 {
  font-size: 2rem;
  color: var(--accent);
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c7b6;
}

.cta-form button {
  background: var(--accent-2);
  color: #fff;
}

.contact-info {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.6);
  padding: 12px 16px;
  border-radius: 14px;
  display: grid;
  gap: 6px;
  width: fit-content;
}

.thankyou {
  margin-top: 12px;
  background: rgba(15, 107, 95, 0.12);
  border: 1px solid rgba(15, 107, 95, 0.25);
  color: #0f6b5f;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.26s ease;
}

.promo-modal {
  max-width: 1800px;
  width: min(98vw, 1800px);
  padding: 36px 48px 48px;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  transform-origin: 100% 100%;
  transform: translate(160px, 140px) scale(0.4);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}

.modal-backdrop.promo-open {
  opacity: 1;
}

.modal-backdrop.promo-open .promo-modal {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.modal-backdrop.promo-closing .promo-modal {
  transform: translate(160px, 140px) scale(0.4);
  opacity: 0;
}

.promo-modal::before {
  content: "🎁";
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 96px;
  opacity: 0.2;
  filter: none;
  animation: gift-wiggle 2.4s ease-in-out infinite;
}

.promo-title {
  background: color-mix(in srgb, var(--accent) 18%, white);
  padding: 16px 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0 auto 14px;
  line-height: 1.3;
}

.promo-fab {
  position: fixed;
  right: 28px;
  bottom: 232px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  font-size: 24px;
  cursor: pointer;
  z-index: 2100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: gift-wiggle 1.4s ease-in-out infinite;
}

.promo-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.promo-fab::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 90, 90, 0.35);
  animation: zalo-pulse 2.2s ease-out infinite;
}

.promo-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: #e53935;
  clip-path: polygon(50% 0%, 61% 18%, 82% 18%, 66% 32%, 72% 52%, 50% 40%, 28% 52%, 34% 32%, 18% 18%, 39% 18%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.slideshow-fab {
  position: fixed;
  right: 28px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  background: #fff;
  color: #1c2b22;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 2102;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: quickpeek-pulse 2.4s ease-in-out infinite;
}

.slideshow-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

@keyframes quickpeek-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  }
}

.slideshow-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, white);
  font-size: 0.8rem;
}

.slideshow-label {
  font-size: 0.92rem;
}

/* order: slideshow (bottom), zalo (middle), promo (top) */

.slideshow-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 2200;
}

.slideshow-backdrop.hidden {
  display: none;
}

.slideshow-modal {
  width: min(92vw, 980px);
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  display: grid;
  gap: 16px;
  position: relative;
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.slideshow-open .slideshow-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.slideshow-closing .slideshow-modal {
  transform: translateY(10px) scale(0.96);
  opacity: 0;
}

.slideshow-image-wrap {
  width: 100%;
  height: min(60vh, 420px);
  border-radius: 18px;
  overflow: hidden;
  background: #e9e3d7;
  position: relative;
}

@media (max-width: 640px) {
  .slideshow-modal {
    width: min(94vw, 520px);
    padding: 18px;
  }

  .slideshow-image-wrap {
    height: min(42vh, 240px);
  }

  .slideshow-title {
    font-size: 1.2rem;
  }

  .slideshow-text {
    font-size: 0.95rem;
    min-height: 64px;
  }

  .slideshow-controls {
    gap: 8px;
  }

  .slideshow-controls .btn-ghost,
  .slideshow-controls .btn-primary {
    min-width: 92px;
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .slideshow-controls {
    display: none;
  }
}

.slideshow-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.slideshow-image-wrap img.is-active {
  transform: scale(1.01);
}

.slideshow-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  margin: 0;
}

.slideshow-text {
  font-size: 1.02rem;
  line-height: 1.7;
  min-height: 88px;
}

.slideshow-section {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5f5245;
  font-weight: 700;
}

.slideshow-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.slideshow-controls .btn-ghost,
.slideshow-controls .btn-primary {
  min-width: 140px;
}

.promo-modal h3 {
  font-family: var(--font-display);
  margin-bottom: 10px;
}

.promo-body {
  margin-bottom: 16px;
}

.promo-deadline {
  font-weight: 700;
  color: var(--accent);
}

.promo-cta {
  margin-top: 18px;
  display: inline-block;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.floating-planes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}

.plane {
  position: absolute;
  font-size: 18px;
  opacity: 0.7;
  offset-rotate: auto;
  animation: fly-path var(--dur, 18s) linear infinite;
  pointer-events: auto;
  cursor: default;
}

.plane-a {
  color: #2b8f7f;
  --dur: 20s;
  animation-delay: -2s;
  --path: path("M 5 120 C 220 40, 480 40, 720 140 S 1080 340, 1240 120");
}

.plane-b {
  color: #d37b3f;
  --dur: 24s;
  animation-delay: -6s;
  --path: path("M 1200 520 C 980 420, 760 620, 520 520 S 120 220, 40 360");
}

.plane-c {
  color: #6c6ed6;
  --dur: 28s;
  animation-delay: -10s;
  --path: path("M 160 720 C 360 520, 640 760, 920 620 S 1240 280, 980 80");
}

.plane {
  offset-path: var(--path);
}

.plane-icon {
  display: inline-block;
}

.trail {
  position: absolute;
  width: 22px;
  height: 10px;
  background: rgba(255, 255, 255, 0.95);
  filter: blur(6px);
  border-radius: 999px;
  offset-path: inherit;
  offset-rotate: auto;
  animation:
    fly-path var(--dur, 18s) linear infinite,
    smoke-fade 2.4s ease-out infinite;
}

.trail.t1 { animation-delay: calc(var(--trail-delay, 0s) - 0.4s), 0s; }
.trail.t2 { animation-delay: calc(var(--trail-delay, 0s) - 1s), 0.4s; }
.trail.t3 { animation-delay: calc(var(--trail-delay, 0s) - 1.6s), 0.8s; }

.plane-a { --trail-delay: -2s; }
.plane-b { --trail-delay: -6s; }
.plane-c { --trail-delay: -10s; }

@keyframes fly-path {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

@keyframes gift-wiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(6deg); }
  40% { transform: rotate(-6deg); }
  60% { transform: rotate(4deg); }
  80% { transform: rotate(-4deg); }
}

@keyframes smoke-fade {
  0% { opacity: 0.85; transform: scale(1); }
  70% { opacity: 0.35; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.7); }
}

.plane:hover {
  animation-play-state: paused;
}

.modal {
  background: #fff;
  border-radius: 18px;
  padding: 26px;
  width: min(92vw, 420px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  text-align: center;
}

.zalo-fab {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6f2ff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 2100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 162px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eafff1;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  z-index: 2100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab img {
  width: 26px;
  height: 26px;
}

.whatsapp-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: zalo-pulse 2.2s ease-out infinite;
}

.zalo-fab img {
  width: 26px;
  height: 26px;
  filter: none;
}

.zalo-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.zalo-fab::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(46, 123, 255, 0.35);
  animation: zalo-pulse 2.2s ease-out infinite;
}

@keyframes zalo-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.25);
    opacity: 0;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.contact-link {
  color: var(--accent-2);
  text-decoration: underline;
  font-weight: 600;
}

.zalo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6f2ff;
  color: #0a5bd3;
  text-decoration: none;
  font-weight: 600;
}

.zalo-btn img {
  width: 20px;
  height: 20px;
}

.footer-zalo {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.fb-embed {
  margin-top: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow);
  width: fit-content;
}

.fb-embed iframe {
  border-radius: 12px;
  display: block;
}

.footer-fb {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

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

.section-actions {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}

.seed-actions {
  padding-bottom: 16px;
}

.article-cover {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: #efe5d6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-decoration: none;
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-placeholder {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #7c6a58;
}

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.tag-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag-chip,
.tag-mini {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-decoration: none;
  color: var(--accent-2);
  font-size: 0.85rem;
  background: color-mix(in srgb, var(--accent) 12%, white);
}

.tag-chip.active {
  background: var(--accent-2);
  color: #fff;
  border-color: var(--accent-2);
}

.tag-mini {
  background: color-mix(in srgb, var(--accent) 10%, white);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.page-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #d4c7b6;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.page-info {
  font-weight: 600;
  color: #6b5b49;
}
.tag-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.article-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-card.tone-0 { background: #ffffff; }
.article-card.tone-1 { background: #f6f2ea; }
.article-card.tone-2 { background: #eef4f1; }
.article-card.tone-3 { background: #f3eff6; }
.article-card.tone-4 { background: #f7f1ec; }

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(25, 25, 25, 0.18);
}

.article-head h3 {
  margin-top: 10px;
  font-size: 1.25rem;
}

.article-card p strong {
  color: var(--accent-2);
}

.post-hero {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  margin: 12px 0;
}

.post-meta {
  color: #666;
  font-size: 0.95rem;
}

.post-summary {
  font-size: 1.05rem;
  margin-top: 10px;
}

.post-body {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.post-body h2,
.post-body h3 {
  font-family: var(--font-display);
  margin-top: 10px;
}

.post-body a {
  color: var(--accent-2);
  text-decoration: underline;
}

.post-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: #5a4a3b;
  background: rgba(255, 245, 221, 0.6);
  border-radius: 10px;
}

.post-body p {
  margin: 6px 0;
}

.post-body ul {
  padding-left: 20px;
  display: grid;
  gap: 6px;
}

.post-body img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 30px;
}

.post-content {
  min-width: 0;
}

.post-cover img {
  width: 100%;
  border-radius: 16px;
  margin-top: 16px;
}

.post-aside {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.toc,
.post-info {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.toc ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.toc a {
  color: inherit;
  text-decoration: none;
  font-size: 0.9rem;
}

.toc-h3 {
  padding-left: 12px;
}

.toc-h4 {
  padding-left: 20px;
}

.preview-banner {
  background: #1b1b1b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 18px;
}

.post-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.admin-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.admin-form.wide {
  max-width: 100%;
}

.admin-form.system-form {
  max-width: 920px;
}

.admin-page .admin-form {
  max-width: 100%;
}

.admin-page .admin-form.system-form {
  max-width: 920px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.theme-palette {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.theme-option {
  display: grid;
  place-items: center;
  cursor: pointer;
}

.theme-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.theme-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-option input:checked + .theme-dot {
  transform: scale(1.1);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.12), 0 10px 18px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
  .theme-palette {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.field-block {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.field-label {
  font-weight: 600;
}

.admin-section {
  border: 1px solid #eadfcd;
  border-radius: 18px;
  padding: 18px;
  background: #fff9f1;
  display: grid;
  gap: 14px;
}

.admin-section-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #2d2418;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.section-toggles {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

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

@media (max-width: 1100px) {
  .admin-grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-grid.cards {
    grid-template-columns: 1fr;
  }

  .admin-mini-grid,
  .admin-mini-grid.three,
  .admin-mini-grid.two,
  .admin-upload-row,
  .stay-admin-card summary {
    grid-template-columns: 1fr;
  }

  .stay-admin-card summary em {
    text-align: left;
  }
}

.tour-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #f0e4d3;
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}

.tour-card-title {
  font-weight: 700;
  color: #2d2418;
}

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

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

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

.stay-admin-form {
  gap: 22px;
}

.stay-admin-general {
  background: #fff;
}

.stay-admin-list {
  display: grid;
  gap: 14px;
}

.stay-admin-card {
  border: 1px solid #eadfcd;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.stay-admin-card summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(180px, auto);
  gap: 14px;
  align-items: center;
  cursor: pointer;
  padding: 14px 16px;
  background: #fff9f1;
  color: #2d2418;
}

.stay-admin-card summary span {
  color: var(--accent-2);
  font-weight: 700;
}

.stay-admin-card summary strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stay-admin-card summary em {
  color: #7b6a55;
  font-style: normal;
  font-size: 0.88rem;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stay-admin-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid #f0e4d3;
}

.admin-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.image-preview {
  border-radius: 16px;
  border: 1px dashed #d9c9b5;
  background: #fff;
  padding: 10px;
  min-height: 160px;
  display: grid;
  place-items: center;
  gap: 6px;
  color: #7c6b58;
  font-size: 0.9rem;
}

.image-preview img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.image-preview-sm {
  max-width: 220px;
  min-height: 140px;
}

.image-preview-sm img {
  height: 110px;
}

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

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

.image-preview-xs {
  max-width: 180px;
  min-height: 120px;
}

.image-preview-xs img {
  height: 90px;
}

@media (max-width: 900px) {
  .logo-grid {
    grid-template-columns: 1fr;
  }

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

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

.image-preview.is-empty img {
  display: none;
}

.toggle {
  position: relative;
  height: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.admin-form label.toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.toggle-text {
  font-weight: 600;
  color: #5b5245;
  font-size: 0.92rem;
  white-space: nowrap;
}

.toggle input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.toggle-ui {
  width: 44px;
  height: 24px;
  background: #d8d2c6;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s ease;
}

.toggle-ui::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.toggle input:checked + .toggle-ui {
  background: var(--accent);
}

.toggle input:checked + .toggle-ui::after {
  transform: translateX(20px);
}


.admin-form input,
.admin-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4c7b6;
  font-size: 1rem;
}

.admin-form button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.icon-btn {
  padding: 10px 12px;
  min-width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .icon {
  font-size: 1.1rem;
  line-height: 1;
}

.upload-btn {
  min-width: auto;
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.inline-field {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-form .form-actions {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 12px 0 4px;
  border-top: 1px solid #eee1cf;
  z-index: 2;
}

.quote-section {
  padding: 26px 0;
}

.quote-block {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  font-size: 1.15rem;
  font-style: italic;
  text-align: center;
  color: #2d2418;
}

.video-section .video-embed {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-section .video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.autosave {
  color: #6b5b49;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

.editor-shell {
  border-radius: 12px;
  overflow: visible;
  border: 1px solid #d4c7b6;
  background: #fff;
}

#editor-toolbar {
  background: #fff7eb;
  border-bottom: 1px solid #d4c7b6;
  border-radius: 12px 12px 0 0;
}

.quill-editor {
  min-height: 320px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.ql-toolbar.ql-snow .ql-picker-options {
  z-index: 20;
}

.admin-list {
  display: grid;
  gap: 16px;
}

.users-admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
  gap: 22px;
  align-items: start;
}

.users-list {
  display: grid;
  gap: 12px;
}

.user-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  overflow: hidden;
}

.user-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.user-card summary::-webkit-details-marker {
  display: none;
}

.user-card summary span:first-child {
  display: grid;
  gap: 2px;
}

.user-card summary strong {
  font-size: 1.05rem;
}

.user-card summary em {
  color: rgba(27, 27, 27, 0.56);
  font-size: 0.88rem;
  font-style: normal;
}

.user-card-action {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.user-password-form {
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 0;
  box-shadow: none;
  max-width: none;
}

.admin-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.bulk-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 16px;
}

.bulk-check,
.item-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.item-check {
  margin-right: 8px;
}

.admin-item > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-actions form {
  margin: 0;
}

.btn-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.btn-icon .icon {
  font-size: 1rem;
  line-height: 1;
}

.login-card {
  background: #fff;
  border: 1px solid #eef0ea;
  border-radius: 4px;
  padding: 34px;
  box-shadow: 0 20px 55px rgba(16, 61, 49, 0.08);
  max-width: 420px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login-product-main {
  flex: 1;
  width: 100%;
  padding: 86px 20px 96px;
  background: #f7f8f2;
}

.login-card h2 {
  color: #17342f;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  line-height: 1.2;
}

.login-card p {
  color: rgba(23, 52, 47, 0.72);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

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

.login-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: #17342f;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
}

.login-form input {
  padding: 12px 14px;
  border-radius: 3px;
  border: 1px solid #cbd7d2;
  font-size: 1rem;
}

.login-form input:focus {
  border-color: #f26d2f;
  outline: 2px solid rgba(242, 109, 47, 0.18);
  outline-offset: 1px;
}

.login-form button {
  background: #f26d2f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 3px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}

.login-form button:hover {
  background: #d95d27;
}

.forgot-password {
  border-top: 1px solid #e2e9e5;
  padding-top: 4px;
}

.forgot-password summary {
  color: #f26d2f;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  list-style-position: inside;
}

.forgot-password-form {
  margin-top: 12px;
}

.login-form .btn-secondary-action {
  background: #17342f;
}

.login-form .btn-secondary-action:hover {
  background: #0d241f;
}

.login-error,
.login-success {
  background: rgba(255, 107, 61, 0.15);
  color: #a33a1a;
  padding: 10px 14px;
  border-radius: 3px;
  font-weight: 600;
  font-family: Arial, sans-serif;
}

.login-success {
  background: rgba(38, 154, 104, 0.14);
  color: #16633f;
}

.footer {
  padding: 40px 8vw 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 80%, transparent), color-mix(in srgb, var(--accent) 60%, transparent)), var(--paper);
  color: #fff;
}

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

.footer-grid h4 {
  margin-bottom: 8px;
}

.theme-preview {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.theme-swatch {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #d4c7b6;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 700;
}

#font-swatch[data-font="serif"] { font-family: "Georgia", "Times New Roman", serif; }
#font-swatch[data-font="modern"] { font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif; }
#font-swatch[data-font="rounded"] { font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; }
#font-swatch[data-font="elegant"] { font-family: "Baskerville", "Palatino", "Georgia", serif; }
#font-swatch[data-font="mono"] { font-family: "Courier New", Courier, monospace; }

.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-item img[alt="Facebook"] {
  filter: none;
  border-radius: 3px;
}

@media (max-width: 820px) {
  .header-topbar,
  .topbar-item-group,
  .topbar-social {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-topbar {
    display: flex;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 12px;
  }

  .topbar-item-center {
    justify-self: auto;
    text-align: left;
  }

  .topbar-social {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }

  .header-info {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .header-info-card {
    min-height: 0;
  }

  .header-info > .header-info-card:last-child {
    justify-self: start;
  }

  .header-info > .header-info-card:last-child .header-info-copy {
    text-align: left;
  }

  .nav-links {
    display: none;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .nav-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .logo {
    text-align: center;
    justify-content: flex-start;
    font-size: 1.8rem;
  }

  .logo-mark {
    width: 68px;
    height: 68px;
  }

  .logo-copy {
    align-items: flex-start;
  }

  .admin-logo {
    justify-content: center;
  }

  .admin-logo .logo-mark {
    width: 112px;
    height: 38px;
  }

  .admin-nav {
    align-items: stretch;
  }

  .admin-nav-links {
    display: flex;
    justify-content: flex-start;
    flex: 1 1 auto;
  }

  .admin-nav-tools {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-nav-secondary,
  .admin-nav-cta {
    width: auto;
  }

  .hero {
    padding-top: 40px;
  }

  .stay-hero {
    min-height: 380px;
  }

  .stay-hero-image {
    min-height: 380px;
  }

  .stay-hero-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .stay-grid {
    grid-template-columns: 1fr;
  }

  .quote-banner {
    min-height: 360px;
  }

  .quote-banner-image {
    min-height: 360px;
  }

  .quote-banner-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .hero-orbit {
    display: none;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-aside {
    position: static;
  }

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

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .article-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

.home-product {
  background: #ffffff;
  color: #17342f;
  font-family: "Georgia", "Times New Roman", serif;
}

.home-product a {
  color: inherit;
}

.product-shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.product-topbar {
  background: #103d31;
  color: #eef7ef;
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.product-topbar-inner {
  min-height: 28px;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.product-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0;
}

.product-social a,
.product-social span {
  color: inherit;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  text-decoration: none;
}

.product-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.product-social a:hover {
  color: #ff7a33;
}

.product-header {
  background: #fff;
  border-bottom: 1px solid #eef0ea;
}

.product-nav {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 124px;
  align-items: center;
  gap: 28px;
}

.product-brand,
.footer-logo {
  font-size: 20px;
  color: #163d32;
  text-decoration: none;
}

.product-brand {
  display: inline-flex;
  align-items: center;
}

.product-brand img {
  display: block;
  width: 176px;
  max-width: 100%;
  height: auto;
}

.product-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.product-menu a {
  text-decoration: none;
  color: #1e302c;
}

.product-menu a.active {
  color: #f06d2f;
}

.product-book,
.product-cta {
  background: #f26d2f;
  color: #fff !important;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 3px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  white-space: nowrap;
}

.product-hero {
  min-height: 455px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.product-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 49, 41, 0.45), rgba(12, 49, 41, 0.14) 48%, rgba(255, 255, 255, 0.04));
}

.product-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-top: 24px;
}

.product-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.96;
  max-width: 560px;
  margin-bottom: 16px;
}

.product-hero p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 18px;
}

.product-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.product-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
}

.product-dots span:first-child {
  background: #fff;
}

.product-features {
  margin-top: 50px;
  background: #fafafa;
  border: 1px solid #f1f1ef;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.product-features article {
  min-height: 142px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #efefec;
}

.product-features article:last-child {
  border-right: 0;
}

.feature-icon {
  font-size: 34px;
  color: #263d38;
  line-height: 1;
  margin-bottom: 10px;
}

.product-features h3 {
  font-family: Arial, sans-serif;
  font-size: 15px;
  margin-bottom: 8px;
}

.product-features p {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #57645f;
  max-width: 145px;
}

.product-video-section {
  padding: 78px 0 58px;
  display: grid;
  place-items: center;
}

.product-video {
  display: block;
  position: relative;
  width: min(590px, 100%);
  aspect-ratio: 16 / 9;
  border: 8px solid #fff;
  background: #edf2ed;
  overflow: hidden;
}

.product-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-video-empty {
  display: grid;
  place-items: center;
  padding: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #66736e;
  text-align: center;
}

.product-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: rgba(10, 36, 31, 0.28);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 29px;
  top: 21px;
  border-left: 20px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.product-section {
  padding: 46px 0 56px;
}

.product-section h2,
.product-contact h2 {
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 25px;
  color: #193d37;
  margin-bottom: 30px;
}

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

.product-card {
  background: #fbfbfa;
  border: 1px solid #eeeeea;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  display: block;
}

.product-card div {
  padding: 14px 16px 18px;
  font-family: Arial, sans-serif;
}

.product-card span {
  display: block;
  font-size: 10px;
  color: #59635f;
  margin-bottom: 8px;
}

.product-card h3 {
  font-size: 14px;
  line-height: 1.35;
  color: #152b27;
  margin-bottom: 13px;
}

.product-card a,
.product-card button {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #f06d2f;
  border-radius: 999px;
  color: #163d32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  text-decoration: none;
  background: #fff;
  cursor: pointer;
}

.product-card-grid-small .product-card img {
  aspect-ratio: 1 / 0.95;
}

.tour-simple-page {
  background: #fff;
}

.tour-detail-page {
  background: #fff;
  color: #1a1a1a;
}

.tour-detail-shell {
  width: min(1060px, calc(100% - 44px));
  margin: 0 auto;
  padding: 46px 0 82px;
  font-family: Arial, sans-serif;
}

.tour-detail-heading {
  margin-bottom: 20px;
}

.tour-detail-heading h1 {
  font-family: Arial, sans-serif;
  font-size: clamp(24px, 2.55vw, 30px);
  line-height: 1.18;
  color: #123d35;
  margin-bottom: 9px;
  text-wrap: balance;
}

.tour-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  color: #4f5b57;
  font-size: 12px;
}

.tour-breadcrumb a {
  color: #1f3b35;
  text-decoration: none;
}

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

.tour-detail-main {
  min-width: 0;
}

.tour-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background: #eef2ed;
  margin-bottom: 34px;
}

.tour-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
}

.tour-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 45, 39, 0.22);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: default;
}

.tour-gallery-prev {
  left: 0;
}

.tour-gallery-next {
  right: 0;
}

.tour-gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.tour-gallery-dots span {
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.tour-gallery-dots span.active {
  background: #f26d2f;
  border-color: #f26d2f;
}

.tour-article,
.tour-highlight {
  max-width: 680px;
}

.tour-article h2,
.tour-highlight h2,
.tour-related > h2 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
  color: #123d35;
  margin-bottom: 13px;
}

.tour-article h3 {
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: #163d32;
  margin: 18px 0 7px;
}

.tour-article p,
.tour-article li {
  font-size: 14px;
  line-height: 1.72;
  color: #1f2926;
}

.tour-article p {
  margin: 0 0 8px;
}

.tour-article-lead {
  font-weight: 700;
  color: #173e37 !important;
}

.tour-article strong,
.tour-article b {
  color: #e36b2c;
}

.tour-article ul,
.tour-article ol {
  padding-left: 20px;
  margin: 8px 0 14px;
}

.tour-article img {
  max-width: 100%;
  border-radius: 5px;
  margin: 12px 0;
}

.tour-detail-copy {
  white-space: pre-line;
  font-size: 14px;
  line-height: 1.72;
  color: #1f2926;
}

.tour-highlight {
  margin-top: 34px;
}

.tour-highlight h2 {
  color: #f26d2f;
}

.tour-highlight ul {
  list-style: none;
  display: grid;
  gap: 8px;
  padding: 0;
}

.tour-highlight li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.35;
  color: #153c35;
  font-weight: 700;
}

.tour-highlight li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: -1px;
  color: #123d35;
}

.tour-booking {
  display: grid;
  gap: 18px;
}

.tour-price-card {
  position: relative;
  background: #fff;
  border: 1px solid #f0f0ed;
  padding: 20px 14px 22px;
  box-shadow: 0 8px 28px rgba(25, 45, 38, 0.06);
  overflow: hidden;
}

.tour-promo-ribbon {
  position: absolute;
  top: 10px;
  right: -34px;
  width: 126px;
  transform: rotate(45deg);
  background: #ff1f1f;
  color: #fff;
  text-align: center;
  font-size: 9px;
  line-height: 20px;
}

.tour-price-label {
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  margin: 2px 0 14px;
}

.tour-price {
  text-align: center;
  color: #6a2428;
  margin-bottom: 6px;
}

.tour-price strong {
  font-size: 28px;
}

.tour-price span {
  color: #333;
  font-size: 15px;
}

.tour-price-old {
  text-align: center;
  color: #7e7e7e;
  font-size: 16px;
  text-decoration: line-through;
  margin-bottom: 18px;
}

.tour-facts {
  display: grid;
  gap: 0;
  margin: 0;
}

.tour-facts div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 10px;
  min-height: 30px;
  align-items: center;
  border-top: 1px solid #e8e8e8;
  font-size: 15px;
}

.tour-facts dt {
  color: #4f5855;
}

.tour-facts dd {
  margin: 0;
  color: #303433;
  font-weight: 700;
  text-align: right;
}

.tour-contact-box {
  text-align: center;
  padding-top: 26px;
}

.tour-contact-box h2 {
  font-size: 25px;
  color: #333;
  margin-bottom: 18px;
}

.tour-contact-box p {
  color: #89464e;
  font-size: 15px;
  line-height: 1.6;
}

.tour-request-card {
  background: #f3f3f3;
  border: 1px solid #eeeeee;
  padding: 10px 12px 22px;
}

.tour-request-card h2 {
  font-family: Arial, sans-serif;
  color: #333;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.tour-request-card form {
  display: grid;
  gap: 11px;
}

.tour-request-card label,
.tour-request-card legend {
  display: grid;
  gap: 5px;
  color: #404040;
  font-size: 14px;
  line-height: 1.2;
}

.tour-request-card input,
.tour-request-card select,
.tour-request-card textarea {
  width: 100%;
  min-height: 38px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #333;
  padding: 8px 10px;
  font: inherit;
}

.tour-request-card textarea {
  resize: vertical;
  min-height: 92px;
}

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

.tour-form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-request-card fieldset {
  border: 0;
  border-top: 1px solid #dedede;
  padding: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 26px;
}

.tour-request-card fieldset label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tour-request-card input[type="radio"] {
  width: 15px;
  min-height: 15px;
}

.tour-request-card button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: #ff650f;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
}

.tour-related {
  padding-top: 72px;
}

.tour-related > h2 {
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tour-simple-card-body h3 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #121212;
  margin-bottom: 18px;
}

.stay-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 52px 24px;
}

.stay-product-grid.related {
  gap: 24px;
}

.stay-product-card {
  background: #f7f7f6;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eeeeeb;
}

.stay-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.stay-product-card-body {
  padding: 15px 16px 18px;
  font-family: Arial, sans-serif;
}

.stay-product-meta {
  display: block;
  font-size: 11px;
  color: #d06d2f;
  margin-bottom: 13px;
}

.stay-product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.stay-product-title-row h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.2;
  color: #111;
}

.stay-rating {
  color: #f06d2f;
  font-size: 14px;
  white-space: nowrap;
}

.stay-product-card-body p {
  font-size: 12px;
  line-height: 1.28;
  color: #111;
  margin-bottom: 8px;
}

.stay-product-card-body .stay-price {
  color: #d06d2f;
  font-size: 14px;
}

.stay-product-card-body a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #e36b2c;
  border-radius: 999px;
  color: #202020;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-decoration: none;
  background: #fff;
}

.stay-detail-heading {
  margin-bottom: 28px;
}

.stay-detail-heading h1 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  color: #123d35;
  margin-bottom: 4px;
}

.stay-detail-heading p {
  color: #d06d2f;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 13px;
}

.stay-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 145px);
  gap: 7px;
  margin-bottom: 34px;
}

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

.stay-gallery-main {
  grid-row: span 2;
}

.stay-copy h2 {
  margin-top: 0;
}

.stay-note {
  color: #d06d2f !important;
  margin-top: 22px !important;
}

.tour-simple {
  padding: 70px 0 160px;
}

.tour-simple-section + .tour-simple-section {
  margin-top: 70px;
}

.tour-simple-section h1 {
  font-family: Arial, sans-serif;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #123d35;
  margin-bottom: 28px;
}

.tour-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px 24px;
}

.tour-simple-card {
  background: #f7f7f6;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eeeeeb;
}

.tour-simple-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.tour-simple-card-body {
  padding: 15px 16px 18px;
  font-family: Arial, sans-serif;
}

.tour-simple-card-body span {
  display: block;
  font-size: 11px;
  color: #222;
  margin-bottom: 15px;
}

.tour-simple-card-body h2 {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  color: #121212;
  margin-bottom: 18px;
}

.tour-simple-card-body a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #e36b2c;
  border-radius: 999px;
  color: #202020;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  text-decoration: none;
  background: #fff;
}

.tour-simple-footer {
  background: #0d414b;
  color: #fff;
  padding: 34px 0 42px;
  font-family: Arial, sans-serif;
}

.tour-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.25fr 1fr;
  gap: 34px;
  align-items: start;
}

.tour-simple-footer h3 {
  font-size: 21px;
  line-height: 1;
  margin-bottom: 20px;
}

.tour-simple-footer p,
.tour-simple-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.6;
  text-decoration: none;
}

.tour-simple-footer a {
  display: block;
}

.tour-footer-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.tour-footer-logo {
  display: inline-flex !important;
  width: 170px;
  max-width: 100%;
  margin-bottom: 14px;
}

.tour-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: left center;
}

.tour-footer-brand p {
  white-space: pre-line;
}

.tour-service-badge {
  min-height: 72px;
  background: #fff;
  color: #123d35 !important;
  border-radius: 4px;
  padding: 10px 18px;
  margin-bottom: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tour-service-badge img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}

.tour-service-badge span {
  width: 46px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d7dedb;
  display: inline-grid;
  place-items: center;
  font-size: 8px;
  color: #123d35;
}

.tour-service-badge strong {
  color: #123d35;
  font-size: 22px;
}

.tour-footer-social {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  color: #2b6b6b !important;
  border-radius: 4px;
  padding: 9px 13px;
  font-size: 20px !important;
}

.tour-footer-social a,
.tour-footer-social span {
  color: inherit;
  display: inline-flex !important;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.tour-footer-social svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.tour-footer-social a:hover {
  color: #f06d2f !important;
}

.product-tabs-head {
  margin-bottom: 22px;
}

.product-tabs-head h2 {
  margin-bottom: 14px;
}

.product-tabs {
  display: flex;
  gap: 72px;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.product-tabs button {
  border: 0;
  background: transparent;
  color: #1d312d;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.product-tabs button:focus {
  outline: none;
}

.product-tabs button.active {
  color: #f06d2f;
}

.destination-mosaic {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, 190px);
  gap: 10px;
}

.tile {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #d8dfd8;
}

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

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.42));
}

.tile span {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #fff !important;
}

.tile-large {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.tile-2 {
  grid-column: 3;
  grid-row: 1;
}

.tile-3 {
  grid-column: 4 / span 2;
  grid-row: 1;
}

.tile-4 {
  grid-column: 3;
  grid-row: 2;
}

.tile-5 {
  grid-column: 4;
  grid-row: 2;
}

.tile-6 {
  grid-column: 5;
  grid-row: 2 / span 2;
}

.tile-7 {
  grid-column: 1;
  grid-row: 3;
}

.tile-8 {
  grid-column: 2 / span 2;
  grid-row: 3;
}

.tile-9 {
  grid-column: 4;
  grid-row: 3;
}

.product-band {
  margin-top: 30px;
  background: #103d31;
  color: #fff;
}

.product-band .product-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.band-mountain {
  width: 94px;
  height: 42px;
  display: inline-block;
  background:
    linear-gradient(135deg, transparent 42%, #fff 43% 56%, transparent 57%) 8px 10px / 54px 28px no-repeat,
    linear-gradient(135deg, transparent 42%, #fff 43% 56%, transparent 57%) 36px 0 / 66px 42px no-repeat;
}

.product-band p {
  font-style: italic;
  font-size: 17px;
}

.product-contact {
  text-align: center;
  padding-top: 72px;
  background: #fff;
}

.product-contact h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.product-contact h2 span {
  color: #f06d2f;
}

.contact-lead {
  font-family: Arial, sans-serif;
  color: #a1aaa6;
  font-size: 12px;
  margin-bottom: 12px;
}

.contact-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  color: #4a5a55;
}

.world-map {
  height: 235px;
  position: relative;
  margin-top: 18px;
  overflow: hidden;
  background: #f4f6f4;
}

.world-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-footer {
  background: #103d31;
  color: #dce9e4;
  padding: 48px 0 56px;
  font-family: Arial, sans-serif;
}

.footer-grid-product {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 62px;
}

.product-footer h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 15px;
}

.product-footer p,
.product-footer a {
  display: block;
  color: #dce9e4;
  font-size: 12px;
  line-height: 1.75;
}

.footer-logo {
  display: inline-block;
  color: #fff;
  margin-bottom: 28px;
}

.footer-social {
  letter-spacing: 0.45em;
}

@media (max-width: 900px) {
  .product-topbar-inner,
  .product-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 8px 0;
  }

  .product-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .product-hero {
    min-height: 420px;
  }

  .product-features,
  .product-card-grid,
  .tour-simple-grid,
  .stay-product-grid,
  .footer-grid-product {
    grid-template-columns: 1fr 1fr;
  }

  .tour-detail-layout {
    grid-template-columns: 1fr;
  }

  .rental-story,
  .rental-booking-form,
  .rental-safe-card {
    grid-template-columns: 1fr;
  }

  .rental-story-media {
    order: -1;
  }

  .rental-safe-card small {
    grid-column: 1;
  }

  .tour-booking {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .destination-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .tile,
  .tile-large,
  .tile-wide,
  .tile-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 620px) {
  .product-shell {
    width: min(100% - 28px, 1040px);
  }

  .product-topbar-inner {
    grid-template-columns: 1fr;
    white-space: normal;
    gap: 5px;
  }

  .product-hero h1 {
    font-size: 2.7rem;
  }

  .product-features,
  .product-card-grid,
  .tour-simple-grid,
  .stay-product-grid,
  .tour-footer-grid,
  .footer-grid-product {
    grid-template-columns: 1fr;
  }

  .stay-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 96px;
  }

  .stay-gallery-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .tour-detail-shell {
    width: min(100% - 28px, 1060px);
    padding: 32px 0 60px;
  }

  .tour-gallery img {
    aspect-ratio: 1.28 / 1;
  }

  .tour-form-row,
  .tour-form-row.two {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .request-quote-shell {
    width: min(100% - 28px, 760px);
    padding: 38px 0 70px;
  }

  .request-quote-card {
    padding: 22px 18px 24px;
  }

  .request-quote-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .request-quote-card label,
  .request-quote-card legend {
    font-size: 20px;
  }

  .request-quote-card input,
  .request-quote-card select,
  .request-quote-card textarea,
  .request-quote-card button {
    min-height: 58px;
    font-size: 20px;
  }

  .rental-simple {
    padding-top: 36px;
  }

  .rental-story {
    gap: 22px;
  }

  .rental-story-bullets,
  .rental-plan-grid,
  .rental-benefits,
  .rental-vehicle-card,
  .rental-phone-row {
    grid-template-columns: 1fr;
  }

  .rental-booking-shell {
    width: min(100% - 28px, 1060px);
  }

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

  .rental-safe-card button {
    font-size: 19px;
  }

  .rental-payment-list div,
  .rental-subtotal {
    grid-template-columns: 1fr;
  }

  .tour-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0;
  }

  .tour-facts dd {
    text-align: left;
  }

  .tour-simple {
    padding: 42px 0 80px;
  }

  .tour-simple-section h1 {
    font-size: 24px;
  }

  .product-band .product-shell,
  .contact-row {
    flex-direction: column;
  }

  .world-map {
    height: 180px;
  }
}

*,
*::before,
*::after {
  box-shadow: none !important;
  text-shadow: none !important;
}

.user-card-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-danger {
  background: #e53935;
  color: #fff;
  border: none;
}

.btn-danger:hover {
  background: #b71c1c;
  color: #fff;
}
