/* ==========================================================================
   Mall Directory — single-store.css (MVP) — CLEAN + STABLE
   Aligned with latest single-store.php + single-store.js:
   - Hero: .md-hero__single / .md-hero__swiper
   - Info: .md-info__grid (left/right)
   - Promotion: .md-prose (only shows when meta exists)
   - Badges: .md-badges
   - Signature/Recommended: <=4 => .md-grid--4, >4 => .md-*-__swiper.swiper
   - Like: button.md-like + .is-liked + .is-bounce
   - Floorplan / Promotion / Something more for you
   ========================================================================== */

#ombakheader {
  position: relative;
}

/* #ombakheader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  pointer-events: none;
  z-index: 1;
} */

#ombakheader .menu,
#ombakheader nav,
#ombakheader a {
  position: relative;
  z-index: 2;
}



.md-store {
  --page-max: 1200px;

  --bg: #ffffff;
  --text: #111111;
  --muted: #6f6f6f;
  --line: rgba(0, 0, 0, 0.10);

  --radius: 18px;
  /*--shadow: 0 16px 40px rgba(0,0,0,0.08);*/

  --hero-h: 560px;

  background: var(--bg);
  color: var(--text);
  font-family: inherit;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.md-back {
  margin: 0;
  position: absolute;
  left: 5vw;
  top: 4vw;
  z-index: 999;
}

.md-back a {
  font-size: 16px;
  color: white;
  padding: 10px 20px;
  background-color: #0090B1;
  font-family: "Roboto", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2em;
  letter-spacing: 0.1em;
}


.md-back a:hover {
  color: #0090B1;
  background-color: rgba(255, 255, 255, 0.9);
}

.md-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #111;
  height: 80vh;
}

.md-hero__single,
.md-hero__slide {
  height: var(--hero-h);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 80vh;
}

.md-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 4vw 5vw;
  padding-top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%);
  align-content: center;
  justify-content: flex-start;
}

.md-hero__title {
  margin: 0;
  /*max-width: var(--page-max);*/
  width: 100%;
  margin-inline: auto;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  font-size: 54px;
  text-align: left;
}

/* Hero Swiper */
.md-hero__swiper.swiper {
  width: 100%;
  height: auto;
}

.md-hero__swiper .swiper-slide {
  height: 100%;
}

.md-hero__swiper .swiper-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  z-index: 3;
}

.md-hero__swiper .swiper-pagination-bullet {
  opacity: .6;
  background: #ffffff;
}

.md-hero__swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #0090B1;
}

/* ==========================================================================
   INFO (two columns)
   ========================================================================== */

.md-info {
  max-width: 100%;
  margin: 0 auto;
  /*padding: 40px 25px;
  padding: 40px clamp(12px, 4vw, 100px);*/
}

.md-info__grid {
  display: flex;
  grid-template-columns: 1fr 1.25fr;
  gap: 0;
  align-items: stretch;
  justify-content: space-between;
}

.md-info__left-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.md-info__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 33.33%;
}

.md-info__block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.md-info__left > .md-info__block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.md-info__label {
  text-transform: capitalize;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.md-info__value {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.md-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.md-locpin {
  opacity: .9;
  font-size: 14px;
}

/* Logo */
.md-logo {
  display: flex;
  justify-content: center;
}

.md-logo__img {
  display: block;
  width: 75%;
  height: auto;
  object-fit: contain;
  padding: 0 10px;
  max-width: 300px;
}

a.md-catlink {
  padding: 5px 10px;
  border: 1px solid black;
  color: black;
  font-family: 'Roboto';
  line-height: 1.2em;
  font-weight: 400;
}


/* Opening hours */
.md-hoursrow {
  display: flex;
  gap: 10px;
}

.md-hoursrow+.md-hoursrow {
  margin-top: 12px;
}

.md-hoursrow__line strong {
  font-weight: 400;
}

.md-muted {
  color: var(--muted);
}

/* Right column */
.md-info__about {
  padding-top: 6px;
  width: 33.33%;
}

.md-sectiontitle {
  margin: 0 0 10px 0;
  font-weight: 400;
  text-transform: capitalize;
  font-family: "Roboto", "Trebuchet MS", sans-serif !important;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.md-divider {
  height: 1px;
  background: var(--line);
  margin: 18px 0;
}

.md-prose {
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
  text-align: justify;
}

.md-prose p {
  margin: 0 0 12px 0;
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.4em;
  font-family: 'Roboto';
  color: #212121;
  letter-spacing: 0.5px;
}

.md-prose p:last-child {
  margin-bottom: 0;
}

.md-prose a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Badges/Privileges */
.md-badges {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.md-badges__title {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.md-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.md-badge:last-child {
  border-bottom: none;
}

.md-badge__icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.06);
  color: #111;
  font-size: 12px;
}

.md-badge__text {
  font-size: 15px;
  color: var(--text);
}

/* ==========================================================================
   SECTION (Signature / Recommended)
   ========================================================================== */

.md-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 26px 18px 8px;
}

.md-recommended {
  max-width: 100%;
  margin: 0 auto;
  padding: 36px 5vw;
  border-bottom: 1px solid #ddd;
}

.md-section__head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.md-section__title {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: .18em;
  color: var(--muted);
}

/* Grid <=4 */
.md-grid {
  display: grid;
  gap: 20px;
}

.md-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.recommended-grid {
  display: flex;
  justify-content: center;
}

/* Card */
.md-card {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.recommended-grid .md-card {
  flex: 0 0 calc((100% - 3 * 20px) / 4);
}

.md-card__imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2f2f2;
}

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

.md-card__title {
  padding: 12px 14px 14px;
  font-size: 15px;
  font-weight: 400;
  color: #111;
  line-height: 1.25;
  text-align: center;
}

/* Recommended item card link wrapper */
.md-item a {
  display: block;
}

/* ==========================================================================
   LIKE BUTTON (Signature dishes)
   - matches JS: button.md-like[data-uid]
   - states: .is-liked, .is-bounce
   ========================================================================== */

.md-signature {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 25px;
  border-bottom: 1px solid #ddd;
}

.md-like {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: none;
  align-items: center;
  gap: 8px;

  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;

  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
  user-select: none;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
  border: unset !important;
  box-shadow: unset !important;
  color: white !important;
}

.md-like:hover {
  transform: translateY(-1px);
  background: #0090B1 !important;
}

.md-like:active {
  transform: translateY(0);
}

.md-like:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.45);
  outline-offset: 2px;
}

.md-like__icon {
  font-size: 14px;
  line-height: 1;
}

.md-like__count {
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

/* liked state */
.md-like.is-liked {
  opacity: .75;
  cursor: default;
  transform: none;
}

/* bounce animation */
.md-like.is-bounce {
  animation: mdLikePop .42s ease-out;
}

@keyframes mdLikePop {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.12);
  }

  70% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .md-like.is-bounce {
    animation: none;
  }

  .md-like {
    transition: none;
  }
}

/* ==========================================================================
   SWIPER (Signature / Recommended)
   We only style Swiper's default buttons inside each container
   to avoid collisions.
   ========================================================================== */

.md-signature__swiper,
.md-recommended__swiper {
  position: relative;
}

/* keep shadows visible */
.md-signature__swiper .swiper-slide,
.md-recommended__swiper .swiper-slide {
  padding: 6px 2px 12px;
}

/* Swiper default nav buttons (scoped by container) */
.md-signature__swiper .swiper-button-prev,
.md-signature__swiper .swiper-button-next,
.md-recommended__swiper .swiper-button-prev,
.md-recommended__swiper .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  color: #111;
}

.md-signature__swiper .swiper-button-prev::after,
.md-signature__swiper .swiper-button-next::after,
.md-recommended__swiper .swiper-button-prev::after,
.md-recommended__swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
}

/* keep arrows inside on small screens */
@media (max-width: 520px) {

  .md-signature__swiper .swiper-button-prev,
  .md-recommended__swiper .swiper-button-prev {
    left: 6px;
  }

  .md-signature__swiper .swiper-button-next,
  .md-recommended__swiper .swiper-button-next {
    right: 6px;
  }
}

/* ==========================================================================
   QUOTE
   ========================================================================== */

.md-quote {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
background-color: #EBEBDE;
  /* border-bottom: 1px solid #ddd; */
}

.md-quote-symbol {
  font-size: 5em;
  font-family: fantasy;
  color: #8b9296;
}

.md-quote__inner {
  color: #212121;
  padding: 0;
  /* max-width: 700px;
  min-width: 700px; */
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.md-quote__text {
  font-size: clamp(18px, 2.1vw, 36px);
  line-height: 1.35;
  letter-spacing: .2px;
  color: #8b9296;
  font-family: "Luxenta", serif !important;
  text-align: center;
}

/* Promotion block: two-column split like discover page section */
.md-promotion {
  padding: 10px;
  gap: 0;
  background-color: #EBEBDE;
}

.md-promotion__inner {
  min-width: 0;
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.md-promotion__media {
  min-height: clamp(320px, 37.5vw, 620px);
}

.md-promotion__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
}

.md-promotion__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 72px;
}

.md-promotion__title {
  margin: 0;
  text-align: center;
  color: #003153;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1em;
  text-transform: uppercase;
}

.md-promotion .md-sectiontitle {
    margin-bottom: 0;
    text-align: center;
    line-height: 1em;
}

.md-promotion .md-promotion__text {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #212121;
  font-family: 'Roboto', sans-serif !important;
  text-align: justify;
}

.md-promotion .md-promotion__text p {
  margin-bottom: 14px;
}

.md-promotion .md-promotion__text p:last-child {
  margin-bottom: 0;
}

.md-promotion--no-media .md-promotion__inner {
  grid-template-columns: minmax(0, 1fr);
}

.md-promotion--no-media .md-promotion__content {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .md-promotion__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .md-promotion__media {
    min-height: 75vw;
  }

  .md-promotion__content {
    padding: 62px;
  }

}

@media (max-width: 767px) {
  .md-promotion__content {
    padding: 36px 14px 26px;
    gap: 16px;
  }

  .md-promotion__title {
    font-size: 24px;
    line-height: 1em;
  }

  .md-promotion .md-promotion__text {
    font-size: 16px;
  }
}

/* Promotion: load-time modal (single store) */
@keyframes md-promo-modal-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes md-promo-modal-exit {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

body.md-promo-modal-open {
  overflow: hidden;
}

.md-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  box-sizing: border-box;
}

.md-promo-modal.is-open:not(.is-closing):not(.is-closed) {
  animation: md-promo-modal-enter 320ms ease forwards;
}

.md-promo-modal.is-closing {
  pointer-events: none;
  animation: md-promo-modal-exit 240ms ease forwards;
}

.md-promo-modal.is-closed {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .md-promo-modal.is-open:not(.is-closing):not(.is-closed),
  .md-promo-modal.is-closing {
    animation: none;
  }

  .md-promo-modal.is-open:not(.is-closed) {
    opacity: 1;
  }

  .md-promo-modal.is-closing {
    opacity: 0;
  }
}

.md-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 17, 40, 0.5);
  cursor: pointer;
}

.md-promo-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 32px));
  max-height: min(86vh, 880px);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  background: #ebebde;
}

.md-promo-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #003153;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.md-promo-modal__close:hover,
.md-promo-modal__close:focus-visible {
  background: #fff;
  color: #000;
  outline: 2px solid #003153;
  outline-offset: 2px;
}

.md-promo-modal__close-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  margin-top: -2px;
}

.md-promo-modal__body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.md-promo-modal__promotion.md-promotion {
  margin: 0;
  padding: 8px;
}

.md-promo-modal .md-promotion__inner {
  max-width: 100%;
}

.md-promo-modal .md-promotion__media {
  min-height: clamp(180px, 28vh, 360px);
}

.md-promo-modal .md-promotion__media img {
  border-radius: 12px;
}

.md-promo-modal .md-promotion__content {
  padding: 48px 36px 40px;
  gap: 14px;
}

.md-promo-modal .md-promotion__title {
  font-size: clamp(22px, 3.5vw, 32px);
}

@media (max-width: 767px) {
  .md-promo-modal .md-promotion__content {
    padding: 40px 16px 28px;
  }

  .md-promo-modal .md-promotion__media {
    min-height: 42vw;
  }
}

.temp-map {
  padding: 40px;
}

.temp-map img {
  height: auto;
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

.temp-map iframe {
  width: 100%;
}

.md-quote__meta {
  margin-top: 14px;
  opacity: .9;
  font-size: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.md-quote__author {
  font-weight: 750;
}

.md-quote__desc {
  color: rgba(255, 255, 255, 0.85);
}

.md-quote__author,
.md-quote__desc {
  font-weight: 400;
  font-size: 12px;
  font-family: sans-serif;
  color: #8b9296;
  letter-spacing: 1px;
  text-align: center;
}

/* ==========================================================================
   STEP 7.10 — Something more for you
   ========================================================================== */

/* .md-moreforyou {
  margin: 0 auto;
  padding: 50px;
  max-width: 100%;
  background-image: url('https://cddigitaldev.com/ombak/beta/wp-content/uploads/2026/01/Ombak_pattern-05-1.webp');
  background-color: rgba(255, 255, 255, 0.85);
  background-blend-mode: lighten;
  background-repeat: repeat;
  background-size: auto;
  /* background-attachment: fixed;
} */

.md-moreforyou {
  margin: 0 auto;
  padding: 36px 5vw;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  /* background-image: url('https://cddigitaldev.com/ombak/beta/wp-content/uploads/2026/02/Ombak_pattern-4.png'); */
  background-repeat: repeat;
  background-size: contain;
  background-color:  #f0fbfd;
}

.md-moreforyou::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: #FFFFFFF2; */
  pointer-events: none;
}

.md-moreforyou>* {
  position: relative;
  z-index: 1;
}


.md-more-head {
  text-align: center;
  margin-bottom: 36px;
}

.md-more-title {
  font-weight: 700;
  margin: 0;
  color: #212121;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
}



.md-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  border-left: 1px solid rgba(0, 0, 0, .08);
}

.md-more-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .18s ease;
}

.md-more-card:hover {
  transform: translateY(-2px);
}

.md-more-media {
  aspect-ratio: 1;
  background: #f3f3f3;
  overflow: hidden;
}

.md-more-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.md-more-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .02));
}

.md-more-meta {
  padding: 14px 16px 18px;
  text-align: center;
}

.md-more-name {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Luxenta", serif !important;
}

.md-more-logo {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  display: none;
}

.md-more-logo img {
  aspect-ratio: 1;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: .95;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .md-store {
    --hero-h: 440px;
  }

  .md-back {
    left: 36px;
    top: 36px;
  }

  .md-hero__single, .md-hero__slide,
  .md-hero {
    height: 75vw;
  }

  .md-info__grid {
    display: flex;
    grid-template-columns: 1fr 1.25fr;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow: visible;
  }

  .md-info__left-left {
    width: 41%;
    order: -1;
    position: sticky;
    top: 10px;
    height: fit-content;

  }

  .md-info__left,
  .md-info__about {
    width: 55%;
  }

  .md-logo {
    max-width: 50vw;
  }

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

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

  .md-hero__title {
    line-height: 1.2;
    font-size: 42px;
  }

}

@media (max-width: 680px) {
  .md-store {
    --hero-h: 360px;
  }

  .md-info {
    /* padding-top: 24px; */
  }

  .md-card__title {
    font-size: 14px;
  }

  .md-grid--4 {
    grid-template-columns: 1fr;
  }

  .md-like {
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
  }
}

@media (max-width: 767px) {
  .md-more-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recommended-grid {
    flex-wrap: wrap;
  }
  .recommended-grid .md-card {
    flex-basis: calc((100% - 20px) / 2); /* mobile: 2 cols */
  }

  .md-back {
    top: 24px;
    left: 24px;
  }

  .md-more-name {
    font-size: 14px;
    line-height: 1.2;
  }

  .mid-info-middle {
    width: 100% !important;
  }

  .md-hero__title {
    line-height: 1.2;
    font-size: 28px;
    text-align: center;
  }

}



@media (max-width: 480px) {

  .md-more-card:hover {
    transform: unset;
  }

  .recommended-grid .md-card {
    flex-basis: 100%;
  }

  .md-hero {
    height: 75vw;
  }

  .md-logo__img {
    width: 100%;
  }

  .md-info__left,
  .md-info__about {
    width: 100%;
  }

  .md-quote__inner {
    max-width: 250px;
    min-width: 250px;

  }

  .md-quote {
    gap: 0;
  }

  .md-quote__text {
    font-size: 14px;
  }

  .md-promotion .md-quote__inner {
    max-width: 100%;
    min-width: 0;
  }

  .md-promotion .md-promotion__text {
    font-size: 16px;
    text-align: justify;
  }
}


.md-info__block {
  margin-bottom: 0;
}

.md-info__value {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}


a.md-catlink {

  border: none;
  background: none;
  padding: 5px 0;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
  text-decoration: none;


  position: relative;
  transition: color 0.3s ease;
}


a.md-catlink::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #003153;
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


a.md-catlink:hover {
  color: #003153;
}

a.md-catlink:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .md-info__grid {
    display: grid;

    grid-template-columns: 41% 1fr;
    align-items: start;

    flex-wrap: nowrap;
    justify-content: start;
  }


  .md-info__left-left {

    width: 100%;
    order: unset;

    grid-column: 1;
    grid-row: 1 / span 2;

    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    height: auto;
    z-index: 10;
  }

  .md-info__left {
    width: 100%;
    grid-column: 2;
    grid-row: 1;
  }

  .md-info__about {
    width: 100%;
    grid-column: 2;
    grid-row: 2;
  }

  .md-logo {
    max-width: 50vw;
  }
}

/* =========================================
   MOBILE VIEW (< 768px)
   ========================================= */
@media (max-width: 767px) {

  .md-info__left-left,
  .md-info__left,
  .md-info__about,
  .mid-info-right {
    width: 100% !important;
  }

  .md-moreforyou {
    padding-left: 0;
    padding-right: 0;
  }

  .md-info__grid {
    display: flex;
    flex-direction: column-reverse;
  }




  .md-info__left-left {
    width: 100%;


    position: static;


    grid-column: unset;
    grid-row: unset;

    order: 1;


    display: flex;
    justify-content: center;
    align-items: center;
  }

  .md-more-title {
    font-size: 24px;
    line-height: 1;
  }


  .md-logo__img {
    width: 60%;
    max-width: 240px;
    padding: 0;
  }


  .md-info__left {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    order: 2;
  }

  .md-info__about {
    width: 100%;
    grid-column: unset;
    grid-row: unset;
    order: 3;
    padding-top: 0;
  }

  .md-prose p {
    text-align: justify;
    font-size: 15px;
  }

  #page {
    overflow-x: hidden;
  }
}

#ombakheader .hfe-nav-menu-icon svg {
  fill: white !important;
}

.md-info__left-left,
.md-info__left,
.md-info__about {
  padding: 4vw
}

.md-info__left,
.md-info__about {
  width: 100%;
  height: 100%;
}


.mid-info-middle {
  background-color: #F6FAF2;
  width: 35%;
}

.mid-info-right {
  background-color: #D7EAEE;
  width: 35%;
}

.temp-map {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #ffffff;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {

  .mid-info-middle,
  .mid-info-right {
    width: 100%;
  }
  .md-hero__overlay, .md-recommended, .md-info__left-left, .md-info__left, .md-info__about, .md-moreforyou {
    padding: 36px;
  }
}

@media (max-width: 640px) {
  .md-hero__overlay, .md-recommended, .md-info__left-left, .md-info__left, .md-info__about, .md-moreforyou {
    padding: 36px 24px;
  }
}



@media (max-width: 480px) {


  .md-info__left-left,
  .md-info__left,
  .md-info__about {
    padding: 20px;
  }

  .md-info__left-left {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* padding-top: 0;
    padding-bottom: 0; */
    margin-bottom: 0;
  }


}




.hfe-nav-menu-icon svg,
.md-hs-icon svg {
  fill: #0090B1 !important;
  color: #0090B1 !important;
}

#page {
  overflow: hidden;
}

@media (max-width: 480px) {

  .md-hero__single,
  .md-hero__slide,
  .md-hero {
    height: 75vw;
    z-index: 0;
  }

  #desktopmenu li a {
    color: #0090B1;
  }
  .md-back {
    left: 12px;
    top: 12px;
  }
  .md-back a {
    font-size: 12px;
    padding: 0.6em 1.2em;
  }

  .md-teaser-card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, .8), rgba(0, 0, 0, 0) 45%);
  }

  .md-hero__overlay {
    padding: 36px 24px 24px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
  }
  .md-hero__title {
    text-align: center;
  }

  .md-hero__swiper .swiper-pagination {
    bottom: 5px;
  }

}
