/* Mel's Inn â€” site extras (WhatsApp support) */

/* Keep scroll-to-top clear of the WhatsApp button */
.scroll-to-top {
  right: 26px !important;
  bottom: 100px !important;
  width: 48px !important;
  height: 48px !important;
  line-height: 48px !important;
  font-size: 16px !important;
}

.mels-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  font-family: "Poppins", sans-serif;
}

.mels-whatsapp-float__label {
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: 200px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mels-whatsapp-float:hover .mels-whatsapp-float__label,
.mels-whatsapp-float:focus-within .mels-whatsapp-float__label {
  opacity: 1;
  transform: translateY(0);
}

.mels-whatsapp-float__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.mels-whatsapp-float__btn:hover,
.mels-whatsapp-float__btn:focus {
  background: #1ebe57;
  color: #fff !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55);
}

.mels-whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: mels-wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes mels-wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.55);
    opacity: 0;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.mels-btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.mels-btn-whatsapp:hover,
.mels-btn-whatsapp:focus {
  background: #1ebe57 !important;
  border-color: #1ebe57 !important;
  color: #fff !important;
}

/* Theme uses .theme-btn i { right: -10px } which overlaps text â€” reset for WA buttons */
.mels-btn-whatsapp i,
.theme-btn.mels-btn-whatsapp i,
.mels-btn-whatsapp span i {
  position: static !important;
  right: auto !important;
  top: auto !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  vertical-align: middle;
  flex-shrink: 0;
}

.mels-btn-whatsapp.btn-md i,
.theme-btn.mels-btn-whatsapp.btn-md i {
  font-size: 13px !important;
}

.mels-btn-whatsapp span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mels-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  color: #128c7e;
}

.mels-whatsapp-inline i {
  font-size: 1.15em;
  color: #25d366;
}

.mels-header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: nowrap !important;
}

.mels-lang-switch {
  display: inline-flex !important;
  flex-wrap: nowrap;
  gap: 4px;
  align-items: center;
  max-width: none;
  justify-content: flex-end;
}

.mels-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: #222 !important;
  padding: 3px 6px;
  border-radius: 4px;
  text-decoration: none !important;
  background: rgba(0, 0, 0, 0.05);
  line-height: 1.2;
  min-height: 20px;
  white-space: nowrap;
}

.mels-lang-switch a.is-active,
.mels-lang-switch a:hover {
  background: var(--theme-color, #da3c3c) !important;
  color: #fff !important;
}

.mels-lang-switch--mobile {
  display: flex !important;
  padding: 16px 20px;
  max-width: none;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.mels-field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.mels-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.mels-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- Side cards (OTA + Airport) ---- */
.mels-side-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(218, 60, 60, 0.22), transparent 55%),
    linear-gradient(165deg, #1a1715 0%, #12100f 48%, #0d0c0b 100%);
  color: #fff;
  padding: 26px 24px 24px;
  border-radius: 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.mels-side-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #f0c27a, var(--theme-color, #da3c3c));
}

.mels-side-card__eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0;
  color: #e2b56a;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
}

.mels-side-card__title {
  margin: 0 0 14px;
  color: #fff !important;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
}

.mels-side-card__text {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.mels-side-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--theme-color, #da3c3c);
  color: #fff !important;
  text-decoration: none !important;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(218, 60, 60, 0.28);
}

.mels-side-card__btn i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.mels-side-card__btn:hover,
.mels-side-card__btn:focus {
  background: #c23030;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(218, 60, 60, 0.36);
}

.mels-side-card__btn:hover i {
  transform: translateX(3px);
}

.mels-airport-cta__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 194, 122, 0.12);
  border: 1px solid rgba(240, 194, 122, 0.28);
  color: #f0c27a;
  font-size: 18px;
}

.mels-ota-box .mels-side-card__title {
  font-size: 22px;
  margin-bottom: 16px;
}

.mels-ota-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mels-ota-links--center {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 24px;
}

.mels-ota-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mels-ota-link__go {
  color: #e2b56a;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.mels-ota-link:hover,
.mels-ota-link:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(240, 194, 122, 0.45);
  color: #fff !important;
  transform: translateX(2px);
}

.mels-ota-link:hover .mels-ota-link__go {
  transform: translateX(3px);
  color: #fff;
}

.mels-ota-link--booking:hover { border-color: rgba(0, 53, 128, 0.55); }
.mels-ota-link--agoda:hover { border-color: rgba(226, 60, 71, 0.55); }
.mels-ota-link--tripadvisor:hover { border-color: rgba(52, 199, 89, 0.55); }
.mels-ota-link--airbnb:hover { border-color: rgba(255, 90, 95, 0.55); }

/* Centered homepage OTA chips keep a lighter pill style */
.mels-otas-band .mels-ota-link {
  width: auto;
  display: inline-flex;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  color: #1a1715 !important;
  border: 1px solid #e6e0d8;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.mels-otas-band .mels-ota-link__go {
  display: none;
}

.mels-otas-band .mels-ota-link:hover {
  background: var(--theme-color, #da3c3c);
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.mels-reviews-section {
  padding: 70px 0;
}

.mels-review-card {
  display: block;
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 14px;
  padding: 28px 22px;
  margin-bottom: 20px;
  text-decoration: none !important;
  color: inherit !important;
  min-height: 170px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 8px 22px rgba(26, 23, 21, 0.04);
}

.mels-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(218, 60, 60, 0.25);
  box-shadow: 0 16px 34px rgba(26, 23, 21, 0.1);
}

.mels-review-card h4 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
}

.mels-review-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.mels-stars {
  color: #d4a017;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 15px;
}

.mels-google-embed {
  margin-top: 28px;
}

.mels-google-embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 10px;
}

.mels-airport-band {
  background:
    radial-gradient(90% 120% at 0% 50%, rgba(218, 60, 60, 0.18), transparent 50%),
    linear-gradient(120deg, #171412 0%, #2c211c 55%, #4a3226 100%);
  color: #fff;
  padding: 64px 0;
  margin: 48px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.mels-airport-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.mels-airport-band h2 {
  color: #fff;
  margin: 8px 0 12px;
  font-family: "Playfair Display", serif;
}

.mels-airport-band p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0;
}

.mels-airport-band .sub-title {
  color: #e2b56a;
  letter-spacing: 2px;
}

.mels-gallery-grid {
  margin-top: 20px;
}

.mels-gallery-item {
  margin-bottom: 24px;
}

.mels-gallery-item a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.mels-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.mels-gallery-item a:hover img {
  transform: scale(1.05);
}

.mels-otas-band {
  padding: 48px 0 18px;
}

.mels-otas-band .sub-title {
  color: #8a7460;
  letter-spacing: 2px;
}

img[loading="lazy"] {
  background: #f2f2f2;
}

.contact-widget .footer-logo,
.contact-widget .image {
  margin-bottom: 30px;
}

.contact-widget .footer-logo img,
.contact-widget .image img {
  display: inline-block;
  width: auto;
  max-width: 220px;
  height: auto;
  background: transparent !important;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 991px) {
  .mels-header-actions {
    gap: 8px;
  }

  /* Hide compact header langs on small screens; mobile menu still shows them */
  .header-upper .mels-lang-switch:not(.mels-lang-switch--mobile) {
    display: none;
  }
}

@media (max-width: 767px) {
  .mels-whatsapp-float {
    right: 16px;
    bottom: 22px;
  }

  .mels-whatsapp-float__btn {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .mels-whatsapp-float__label {
    display: none;
  }

  .mels-booking-actions .theme-btn {
    width: 100%;
    justify-content: center;
  }

  .mels-gallery-item img {
    height: 200px;
  }
}

/* ---- Homepage availability bar (OTA brands + CTA) ---- */
.mels-availability-bar {
  position: relative;
  z-index: 120;
  margin-bottom: 28px;
  padding-bottom: 8px;
}

.mels-availability-bar__card {
  width: 100%;
  max-width: 1100px;
  margin: -58px auto 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
  animation: mels-bar-in 0.55s ease both;
}

.mels-availability-bar__inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  animation: none;
}

@keyframes mels-bar-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Proximity facts — typography-led, sits in light About section */
.mels-proximity {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 920px;
  margin: 0 auto 48px;
  padding: 8px 0 28px;
  border-bottom: 1px solid rgba(26, 23, 21, 0.08);
}

.mels-proximity__item {
  position: relative;
  text-align: center;
  padding: 8px 18px;
  text-decoration: none !important;
  color: inherit;
}

.mels-proximity__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  width: 1px;
  height: 64%;
  background: rgba(26, 23, 21, 0.1);
}

.mels-proximity__value {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1715;
  margin-bottom: 6px;
}

.mels-proximity__label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9a9086;
}

.mels-proximity__item--link .mels-proximity__value {
  color: #da3c3c;
}

.mels-proximity__item--link:hover .mels-proximity__value {
  text-decoration: underline;
}

.mels-availability-bar__brands {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  min-width: 0;
  background: #fff;
}

.mels-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 78px;
  padding: 10px 8px;
  border-radius: 10px;
  text-decoration: none !important;
  color: #222 !important;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.mels-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  transition: transform 0.25s ease;
}

.mels-brand__mark i { font-size: 20px; }

.mels-brand__name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.2;
  text-align: center;
  opacity: 0.9;
}

.mels-brand--booking .mels-brand__mark { background: #003580; }
.mels-brand--booking .mels-brand__name { color: #003580; }
.mels-brand--airbnb .mels-brand__mark { background: #ff5a5f; border-radius: 50%; font-family: "Playfair Display", serif; }
.mels-brand--airbnb .mels-brand__name { color: #ff5a5f; text-transform: lowercase; }
.mels-brand--tripadvisor .mels-brand__mark { background: #34e0a1; color: #000; }
.mels-brand--tripadvisor .mels-brand__name { color: #1a1a1a; text-transform: lowercase; }
.mels-brand--agoda .mels-brand__mark { background: linear-gradient(135deg, #e23c47, #5b3cc4); text-transform: lowercase; }
.mels-brand--agoda .mels-brand__name { color: #222; text-transform: lowercase; }

.mels-brand:hover,
.mels-brand:focus {
  background: #f7f4f1;
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
  color: #111 !important;
}

.mels-brand:hover .mels-brand__mark,
.mels-brand:focus .mels-brand__mark { transform: scale(1.08); }

.mels-availability-bar__cta {
  flex: 0 0 230px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 26px 22px;
  background: var(--theme-color, #da3c3c);
  color: #fff !important;
  text-decoration: none !important;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.35;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease;
}

.mels-availability-bar__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.mels-availability-bar__cta span,
.mels-availability-bar__cta i {
  position: relative;
  z-index: 1;
}

.mels-availability-bar__cta span { max-width: 16ch; }
.mels-availability-bar__cta i { font-size: 13px; transition: transform 0.25s ease; }

.mels-availability-bar__cta:hover,
.mels-availability-bar__cta:focus {
  background: #1d1d1d;
  color: #fff !important;
}

.mels-availability-bar__cta:hover::before,
.mels-availability-bar__cta:focus::before { transform: translateX(120%); }

.mels-availability-bar__cta:hover i,
.mels-availability-bar__cta:focus i { transform: translateX(4px); }

.mels-experience-grid {
  margin-top: 10px;
}

.mels-experience-col {
  margin-bottom: 30px;
}

.mels-experience-card {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ece6df;
  box-shadow: 0 10px 28px rgba(26, 23, 21, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.mels-experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(26, 23, 21, 0.1);
}

.mels-experience-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: #111;
}

.mels-experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.mels-experience-card:hover .mels-experience-card__image img {
  transform: scale(1.06);
}

.mels-experience-card__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(218, 60, 60, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}

.mels-experience-card__body {
  padding: 22px 20px 24px;
}

.mels-experience-card__body h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.3;
  color: #1a1715;
}

.mels-experience-card__body p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}

.mels-answer-first {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
}

.mels-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.mels-faq-item {
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 0 18px;
}

.mels-faq-item summary {
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1715;
  padding: 16px 0;
  list-style: none;
}

.mels-faq-item summary::-webkit-details-marker { display: none; }

.mels-faq-item summary::after {
  content: "+";
  float: right;
  color: #da3c3c;
  font-weight: 700;
}

.mels-faq-item[open] summary::after { content: "–"; }

.mels-faq-item__a {
  padding: 0 0 16px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #f0ebe4;
}

.mels-guide-card-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}

.mels-guide-article {
  max-width: 820px;
  margin: 0 auto;
}

.mels-guide-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: #da3c3c;
  font-weight: 700;
}

.mels-guide-hero {
  margin: 24px 0 28px;
  border-radius: 12px;
  overflow: hidden;
}

.mels-guide-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.mels-guide-section {
  margin-bottom: 22px;
}

.mels-guide-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 8px;
}

.mels-howto-steps {
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
}

.mels-howto-steps ol {
  margin: 0;
  padding-left: 20px;
}

.mels-howto-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.mels-facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 28px;
}

.mels-facts-bar > div {
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 10px;
  padding: 14px 16px;
}

.mels-facts-bar strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #da3c3c;
  margin-bottom: 6px;
}

.mels-facts-bar span,
.mels-facts-bar a {
  color: #333;
  font-size: 14px;
  line-height: 1.45;
}

.mels-home-guide .lower-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mels-seo-links a { color: #da3c3c; text-decoration: underline; }

.mels-header-wa {
  padding: 0 16px !important;
  height: 46px;
  min-height: auto;
  line-height: 46px !important;
  font-size: 13px !important;
  letter-spacing: 0.4px;
  border-radius: 4px;
  text-transform: uppercase;
}

.mels-header-wa span {
  font-weight: 700;
  letter-spacing: 1.3px;
}

@media (min-width: 1140px) {
  .main-header.header-style-one .auto-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-header .header-upper .inner-container {
    flex-wrap: nowrap;
    min-height: 84px;
    padding-left: 32px;
    padding-right: 30px;
  }

  .main-header .header-upper .logo-box {
    flex: 0 0 330px;
  }

  .main-header .header-upper .logo-box img {
    max-width: 170px;
    height: auto;
  }

  .main-header .nav-outer {
    flex: 1 1 auto;
    min-width: 0;
  }

  .main-menu .navigation {
    margin-left: 0;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .main-menu .navigation > li {
    margin-right: 30px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .main-menu .navigation > li > a {
    font-size: 14px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .main-header .header-upper .right-column {
    flex: 0 0 auto;
    min-width: 330px;
    justify-content: flex-end;
  }

  .main-header .header-upper .navbar-right {
    margin-left: 18px;
  }
}

.mels-inline-links {
  margin-top: 14px;
  font-size: 14px;
}

.mels-inline-links a {
  color: #da3c3c;
  text-decoration: none;
  font-weight: 600;
}

.mels-inline-links a:hover {
  text-decoration: underline;
}

.mels-inline-links span {
  margin: 0 8px;
  color: #bbb;
}

.mels-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mels-hero-ctas .theme-btn {
  margin: 0;
}

.mels-room-thumbs {
  display: flex;
  gap: 8px;
  margin: 12px 0 8px;
}

.mels-room-thumbs a {
  display: block;
  width: 72px;
  height: 52px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #ece6df;
}

.mels-room-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mels-room-best {
  color: #da3c3c;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.mels-room-includes {
  font-size: 13px;
  color: #555;
  margin: 8px 0 12px;
  line-height: 1.5;
}

.mels-policies {
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 20px;
}

.mels-policies h4 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.mels-policies ul {
  margin: 0;
  padding-left: 18px;
}

.mels-policies li {
  margin-bottom: 10px;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
}

.mels-pickup-hint {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

.mels-quote-cards {
  margin-bottom: 8px;
}

.mels-quote-card {
  background: #fff;
  border: 1px solid #ece6df;
  border-radius: 12px;
  padding: 22px 20px;
  height: 100%;
  margin: 0 0 20px;
}

.mels-quote-card p {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  line-height: 1.55;
  color: #1a1715;
  margin: 0 0 12px;
}

.mels-quote-card footer {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #da3c3c;
  font-weight: 700;
}

.mels-quote-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 24px;
}

.mels-exp-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: #25d366;
  font-weight: 600;
  font-size: 13px;
}

.mels-exp-wa:hover { color: #1da851; }

@media (max-width: 991px) {
  .mels-facts-bar { grid-template-columns: 1fr 1fr; }

  .mels-availability-bar {
    margin-bottom: 28px;
    padding-bottom: 6px;
  }

  .mels-availability-bar__card {
    margin: -36px 12px 0;
    max-width: none;
  }

  .mels-availability-bar__inner {
    flex-direction: column;
  }

  .mels-availability-bar__brands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .mels-availability-bar__cta {
    flex: 0 0 auto;
    width: 100%;
    padding: 18px 20px;
  }

  .mels-availability-bar__cta span { max-width: none; }

  .mels-proximity {
    grid-template-columns: 1fr 1fr;
    gap: 18px 0;
    margin-bottom: 36px;
    padding-bottom: 22px;
  }

  .mels-proximity__item:nth-child(2)::after {
    display: none;
  }

  .about-us-section.border-shape-top { padding-top: 85px; }
}

@media (max-width: 575px) {
  .mels-facts-bar { grid-template-columns: 1fr; }

  .mels-proximity {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mels-proximity__item:not(:last-child)::after {
    display: none;
  }

  .mels-proximity__item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 23, 21, 0.06);
  }

  .mels-proximity__item:last-child {
    border-bottom: 0;
  }
}

.about-us-section.border-shape-top { padding-top: 110px; }
.about-us-section.border-shape-top:before { display: none; }
