/* Karibu landing — aligned with karibu-elgouna.com home */

:root {
  --mp-font-display: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --mp-font-body: "DM Sans", system-ui, sans-serif;
  /* Side food/drink menus only when viewport fits hero (576px) + 2×(gap + 300px menu). */
  --mp-menu-side-min: 1101px;
}

body.mp-page-body {
  margin: 0;
  line-height: 1.7em;
  color: #fff;
  background-color: #111;
  font-family: var(--mp-font-body);
  text-shadow: 1px 1px 20px rgba(255, 255, 255, 0.75);
  font-size: 1.8vw;
  text-align: center;
  overflow-x: hidden;
  overflow-y: auto;
}

body.mp-page-body a {
  color: #fff;
}

.mp-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: 2.5rem;
}

/* Backstretch sits behind (z-index 0 on .backstretch container) */
.backstretch {
  z-index: 0 !important;
}

.mp-grid {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Entrance animations (animate.css + legacy delays) */
#main {
  animation-delay: 1.5s;
  animation-duration: 2.5s;
}

#foodmenu {
  animation-delay: 3.5s;
  animation-duration: 1.5s;
}

#drinkmenu {
  animation-delay: 2.5s;
  animation-duration: 1.5s;
}

/* —— Desktop: 3-column grid (page scroll, no inner box scroll) —— */
@media (min-width: 601px) {
  .mp-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    padding: 2rem 3% 1rem;
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
  }

  .mp-hero {
    width: 100%;
    max-width: 576px;
    position: static;
    transform: none;
    max-height: none;
    overflow: visible;
    margin: 0;
    box-sizing: border-box;
    z-index: 4;
  }

  .mp-hero__shell {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mp-hero__panel--head {
    padding-bottom: 0.75rem;
  }

  .mp-hero__panel--foot {
    padding-top: 0.5rem;
  }

  .mp-logo {
    height: 180px;
    width: auto;
    max-width: 100%;
  }

  .mp-tagline {
    font-size: 24px;
  }

  .mp-delivery-badge {
    margin-top: 0.75rem;
  }
}

/* Side food/drink menus (wide screens only) */
@media (min-width: 1101px) {
  #foodmenu.mp-menu-col--food,
  #drinkmenu.mp-menu-col--drinks {
    display: block;
    z-index: 5;
    width: min(300px, max(180px, calc(50vw - 360px)));
    max-width: 300px;
    color: #fff;
    font-family: var(--mp-font-display);
    position: fixed;
  }

  #foodmenu.mp-menu-col--food {
    top: 4%;
    left: auto;
    right: calc(50vw + 348px);
  }

  #drinkmenu.mp-menu-col--drinks {
    bottom: 4%;
    right: auto;
    left: calc(50vw + 348px);
  }

  .mp-menu-row--inline {
    display: none;
  }

  .mp-menu-col__label {
    margin: 0 0 0.5rem;
    font-size: clamp(14px, 1.2vw, 22px);
  }

  #foodmenu .mp-menu-card img,
  #drinkmenu .mp-menu-card img {
    filter: brightness(92%);
  }
}

/* Menus inside hero shell (tablet + phone) */
@media (max-width: 1100px) {
  #foodmenu.mp-menu-col--food,
  #drinkmenu.mp-menu-col--drinks {
    display: none;
  }

  .mp-menu-row--inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0.5rem 0 0;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .mp-menu-row__food,
  .mp-menu-row__drinks {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
  }

  .mp-menu-row--inline .mp-menu-card {
    aspect-ratio: 400 / 533;
  }

  .mp-menu-row--inline .mp-menu-card img {
    filter: brightness(90%);
  }

  .mp-menu-row--inline .mp-menu-col__label {
    font-size: clamp(11px, 2.2vw, 15px);
    margin-bottom: 0.35rem;
  }
}

/* —— Mobile —— */
@media (max-width: 600px) {
  .mp-grid {
    display: block;
    max-width: 700px;
    width: 85%;
    margin: 0 auto;
    padding-top: 10%;
  }

  .mp-hero {
    font-size: 14px;
    line-height: 1.35;
    width: 100%;
  }

  .mp-hero__shell {
    border-radius: 14px;
  }

  .mp-menu-row--inline {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .mp-menu-row--inline .mp-menu-col__label {
    font-size: 0.72rem;
  }

  .mp-menu-row--inline .mp-menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  a.mp-menu-card .mp-menu-card__cta {
    font-size: clamp(10px, 2.8vw, 13px);
    padding: 6px 10px;
    letter-spacing: 0.06em;
    max-width: calc(100% - 12px);
    white-space: normal;
    text-align: center;
  }

  .mp-logo {
    height: 110px;
    width: auto;
    margin-top: -20px;
  }

  .mp-tagline {
    font-size: 18px;
    margin-top: 0.2rem;
  }

  .mp-cta-block {
    gap: 0.3rem;
  }

  .mp-menu-row--inline .mp-menu-card {
    border-width: 2px;
  }

  .mp-phone {
    text-align: center;
    margin: 8px 0;
  }

}

.mp-menu-col {
  text-align: center;
}

.mp-menu-col__label {
  font-family: var(--mp-font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.mp-menu-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 400 / 533;
  box-sizing: border-box;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.mp-menu-card:hover,
.mp-menu-card:focus-visible {
  border-color: rgba(45, 212, 191, 0.55);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
  outline: none;
}

.mp-menu-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  filter: brightness(80%) blur(1.5px);
}

a.mp-menu-card .mp-menu-card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  padding: 7px 18px;
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.55);
  background: rgba(45, 212, 191, 0.72);
  color: #f0fffc;
  font-family: var(--mp-font-display);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.15;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

a.mp-menu-card:hover .mp-menu-card__cta,
a.mp-menu-card:focus-visible .mp-menu-card__cta {
  background: rgba(45, 212, 191, 0.88);
  border-color: rgba(94, 234, 212, 0.75);
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mp-hero__shell {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(45, 212, 191, 0.42);
  background: rgba(8, 16, 20, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(45, 212, 191, 0.12),
    inset 0 1px 0 rgba(45, 212, 191, 0.08);
  overflow: visible;
  box-sizing: border-box;
}

.mp-hero__panel {
  padding-top: 1.15rem;
  padding-bottom: 1.25rem;
  border: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  text-shadow: none;
  overflow: visible;
  max-height: none;
}

.mp-hero__panel--head,
.mp-hero__panel--foot {
  margin: 0;
}

.mp-hero__panel--head {
  padding-left: 3rem;
  padding-right: 3rem;
}

.mp-hero__panel--foot {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 1100px) {
  .mp-hero__panel--head {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .mp-hero__panel--foot {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (max-width: 600px) {
  .mp-hero__panel--head {
    padding: 1rem 1.15rem 0.5rem;
  }

  .mp-hero__panel--foot {
    padding: 0.35rem 0.75rem 0.5rem;
  }
}

.mp-hero__panel a,
.mp-hero__panel .mp-btn {
  text-shadow: none;
}

.mp-hero__like {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem;
  min-height: 28px;
  margin: 0 0 0.35rem;
  text-shadow: none;
  opacity: 1;
  visibility: visible;
}

.mp-fb-like-widget {
  display: inline-block;
  min-width: 90px;
  min-height: 24px;
  line-height: 0;
}

.mp-fb-like-widget .fb-like,
.mp-fb-like-widget .fb-like span,
.mp-fb-like-widget iframe {
  vertical-align: middle;
}

.mp-fb-like-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 10px;
  border-radius: 3px;
  background: #1877f2;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  text-shadow: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mp-fb-like-fallback:hover,
.mp-fb-like-fallback:focus-visible {
  background: #166fe5;
  color: #fff;
  text-shadow: none;
  outline: none;
}

.mp-hero__like.mp-fb-like-wrap--has-widget .mp-fb-like-fallback {
  display: none;
}

.mp-brand {
  margin: 0 0 0.35rem;
}

.mp-logo {
  display: inline-block;
  height: 180px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 0 12px #fefefe);
}

.mp-tagline {
  margin: 0.35rem 0 0.45rem;
  min-height: 1.35em;
  font-family: var(--mp-font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #b6fff6;
  text-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.mp-tagline--active {
  opacity: 1;
  visibility: visible;
}

.mp-tagline__text {
  white-space: nowrap;
}

.mp-tagline__cursor {
  display: none;
  width: 2px;
  height: 0.95em;
  margin-left: 3px;
  vertical-align: -0.08em;
  background: #2dd4bf;
  animation: mp-tagline-cursor 0.75s step-end infinite;
}

.mp-tagline--typing .mp-tagline__cursor {
  display: inline-block;
}

.mp-tagline--done .mp-tagline__cursor {
  display: none;
}

@keyframes mp-tagline-cursor {
  50% {
    opacity: 0;
  }
}

.mp-cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.mp-hero__panel .mp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  padding: 6px 22px;
  border-radius: 10px;
  font-family: var(--mp-font-display);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-shadow: none;
  transition:
    transform 0.12s ease,
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.2s ease;
}

.mp-hero__panel .mp-btn.mp-btn--order {
  margin-top: 0.15rem;
  min-width: 221px;
  padding: 7px 26px;
  font-size: 22px;
  background: #2dd4bf;
  color: #fff;
  border: 1px solid rgba(45, 212, 191, 0.7);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}

.mp-hero__panel .mp-btn.mp-btn--order:hover,
.mp-hero__panel .mp-btn.mp-btn--order:focus-visible {
  background: #5eead4;
  border-color: #99f6e4;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  outline: none;
}

.mp-hero__panel .mp-btn.mp-btn--order.mp-btn--closed {
  opacity: 1;
  background: #2dd4bf;
  color: #fff;
  border-color: rgba(45, 212, 191, 0.7);
}

.mp-hero__panel .mp-btn.mp-btn--reserve {
  display: inline-flex;
  margin: 4px auto 0;
  min-width: 0;
  width: auto;
  max-width: 100%;
  padding: 7px 18px;
  background: rgba(12, 24, 30, 0.88);
  color: #f0fffc;
  border: 3px double rgba(45, 212, 191, 0.75);
  font-family: var(--mp-font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: none;
  text-shadow: none;
  white-space: nowrap;
}

.mp-hero__panel .mp-btn.mp-btn--reserve:hover,
.mp-hero__panel .mp-btn.mp-btn--reserve:focus-visible {
  background: rgba(20, 40, 48, 0.95);
  border: 3px double rgba(94, 234, 212, 0.95);
  color: #fff;
  text-shadow: none;
  transform: translateY(-1px);
  outline: none;
}

/* Matches orderOnline .oo-voucher-hint (teal pill) */
.mp-delivery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.35rem auto 0;
  padding: 0.4rem 0.85rem;
  max-width: 100%;
  font-family: var(--mp-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: none;
  color: #b6fff6;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.15);
  box-sizing: border-box;
}

.mp-delivery-badge i {
  color: #2dd4bf;
  font-size: 0.9em;
}

.mp-closed-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 8px auto 0;
  min-width: 221px;
  max-width: 360px;
  box-sizing: border-box;
  font-family: var(--mp-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fecdd3;
  background: rgba(251, 113, 133, 0.2);
  border: 1px solid rgba(251, 113, 133, 0.5);
  border-radius: 6px;
  padding: 0.4rem 0.85rem;
  text-shadow: none;
}

.mp-closed-hint i {
  flex-shrink: 0;
  font-size: 0.9em;
  color: #fda4af;
}

.mp-phone {
  margin: 10px 0;
  font-family: var(--mp-font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.95;
  text-shadow: none;
}

.mp-hero__panel .mp-phone a {
  color: #b6fff6;
}

@media (max-width: 600px) {
  .mp-hero__panel .mp-delivery-badge {
    margin-top: 0.15rem;
  }

  .mp-hero__panel .mp-social__label {
    font-size: 14px;
    margin-bottom: 0.45rem;
  }

  .mp-hero__panel .mp-trip #CDSWIDSSP,
  .mp-hero__panel .mp-trip a.widSSPClickWrap {
    margin-bottom: 0;
  }

  .mp-hero__panel .mp-phone {
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: 500;
    line-height: 1.3;
  }

  .mp-hero__panel .mp-phone a {
    font-size: inherit;
    font-weight: inherit;
  }
}

.mp-social {
  margin: 10px 0;
  font-family: var(--mp-font-display);
  font-weight: 600;
}

.mp-social__label {
  margin: 0 0 0.35rem;
  font-size: 1.6vw;
  text-shadow: none;
}

.mp-social__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  width: min(11.5rem, 100%);
  margin: 0 auto;
}

@media (min-width: 601px) {
  .mp-social__links {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
  }

  .mp-social-btn {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }

  .mp-social-btn__label {
    padding: 0 6px;
  }
}

.mp-social-btn {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  width: 100%;
  min-height: 30px;
  padding: 0;
  border: none;
  line-height: 1.2;
  white-space: nowrap;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-family: var(--mp-font-body);
  font-weight: 700;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.mp-social-btn::before {
  content: "";
  box-sizing: border-box;
  grid-column: 1;
  grid-row: 1;
  width: 30px;
  min-height: 30px;
  align-self: stretch;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  background: center / 18px no-repeat;
}

.mp-social-btn__label {
  grid-column: 2;
  padding: 0 8px;
  text-align: center;
}

.mp-social-btn--facebook {
  background: linear-gradient(#4c69ba, #3b55a0);
}

.mp-social-btn--facebook::before {
  background-image: url("../assets/mainpage/icons/icon_facebook.png");
}

.mp-social-btn--facebook:hover {
  background: linear-gradient(#5b7bd5, #4864b1);
}

.mp-social-btn--instagram {
  background: linear-gradient(#c13584, #833ab4);
}

.mp-social-btn--instagram::before {
  background-image: url("../assets/mainpage/icons/icon_instagram.png");
}

.mp-social-btn--instagram:hover {
  background: linear-gradient(#d14192, #93135b);
}

.mp-social-btn--maps {
  background: linear-gradient(#25cd7b, #0f9d58);
}

.mp-social-btn--maps::before {
  background-image: url("../assets/mainpage/icons/icon_gmaps.png");
}

.mp-social-btn--maps:hover {
  background: linear-gradient(#38e792, #19b96b);
}

.mp-trip {
  margin-top: 1rem;
  padding: 0.85rem 2rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

.mp-google-reviews + .mp-trip {
  margin-top: 0;
  padding-top: 0.5rem;
  border-top: none;
}

.mp-trip #TA_selfserveprop56,
.mp-trip .TA_selfserveprop,
.mp-trip #CDSWIDSSP {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
}

.mp-trip #CDSWIDSSP,
.mp-trip a.widSSPClickWrap {
  margin-left: auto;
  margin-right: auto;
}

.mp-google-reviews {
  margin-top: 1rem;
  padding: 0.85rem 2rem 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.mp-google-reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.55rem;
}

.mp-google-reviews__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.mp-google-reviews__logo {
  flex-shrink: 0;
}

.mp-google-reviews__summary {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.78);
}

.mp-google-reviews__rating {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.mp-google-reviews__stars {
  color: #fbbc04;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.mp-google-reviews__carousel {
  position: relative;
  min-height: 5.5rem;
}

.mp-google-reviews__slide {
  margin: 0;
  padding: 0;
  border: 0;
  display: none;
}

.mp-google-reviews__slide.is-active {
  display: block;
  animation: mp-review-fade 0.45s ease;
}

@keyframes mp-review-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mp-google-reviews__quote {
  margin: 0 0 0.45rem;
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.mp-google-reviews__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.mp-google-reviews__author {
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

.mp-google-reviews__time::before {
  content: "·";
  margin-right: 0.35rem;
}

.mp-google-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.mp-google-reviews__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.mp-google-reviews__dot.is-active {
  background: rgba(255, 255, 255, 0.85);
}

/*
 * Mobile foot padding — must live AFTER .mp-google-reviews / .mp-trip base rules
 * (those use padding: … 2rem … on the sides). Shorthand here wins by order + specificity.
 */
@media (max-width: 600px) {
  .mp-hero__panel--foot .mp-google-reviews {
    padding: 0.65rem 0 0.45rem;
    margin-top: 0.75rem;
  }

  .mp-hero__panel--foot .mp-trip {
    margin-top: 0.5rem;
    margin-left: 0;
    margin-right: 0;
    padding: 0.4rem 0 0.1rem;
    width: 100%;
    max-width: 100%;
  }

  .mp-hero__panel--foot .mp-google-reviews + .mp-trip {
    margin-top: 0.35rem;
    padding-top: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #main,
  #foodmenu,
  #drinkmenu {
    animation: none !important;
    opacity: 1;
  }

  .mp-google-reviews__slide.is-active {
    animation: none;
  }

  .mp-tagline {
    opacity: 1;
    visibility: visible;
  }

  .mp-tagline__cursor {
    display: none;
    animation: none;
  }
}
