/*
 * IFP Gastro Menu Manager – Frontend
 * Frontend enthält bewusst keine Entwicklungshilfen.
 */

.ifp-gmm-menu {
  display: grid;
  gap: 1.25rem;
  width: 100%;
}

.ifp-gmm-menu--cols-1 { grid-template-columns: minmax(0, 1fr); }
.ifp-gmm-menu--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.ifp-gmm-menu--cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }

.ifp-gmm-menu--single {
  display: block;
}

.ifp-gmm-menu-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  background: #fffaf7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ifp-gmm-menu-card--highlight {
  border-color: rgba(180, 83, 9, 0.35);
  box-shadow: 0 16px 38px rgba(180, 83, 9, 0.13);
}

.ifp-gmm-menu-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4eee9;
}

.ifp-gmm-menu-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ifp-gmm-menu-card__body {
  padding: 1rem;
}

.ifp-gmm-menu-card__head {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  justify-content: space-between;
}

.ifp-gmm-menu-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.25;
}

.ifp-gmm-menu-card__price {
  flex: 0 0 auto;
  font-weight: 700;
  white-space: nowrap;
}

.ifp-gmm-menu-card__badge {
  display: inline-flex;
  margin-top: .65rem;
  padding: .22rem .55rem;
  border-radius: 999px;
  background: rgba(180, 83, 9, 0.12);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
}

.ifp-gmm-menu-card__desc {
  margin: .7rem 0 0;
  color: #5b4a40;
  line-height: 1.55;
}

.ifp-gmm-menu-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .8rem;
}

.ifp-gmm-menu-card__tags span {
  display: inline-flex;
  padding: .18rem .5rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 999px;
  font-size: .75rem;
  line-height: 1.2;
  background: rgba(255,255,255,.72);
}

.ifp-gmm-menu--compact .ifp-gmm-menu-card {
  box-shadow: none;
}

.ifp-gmm-menu--compact .ifp-gmm-menu-card__body {
  padding: .85rem 1rem;
}

.ifp-gmm-empty {
  padding: 1rem;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 14px;
  color: #6b5b51;
  background: rgba(255, 250, 247, 0.72);
}

@media (max-width: 1280px) {
  .ifp-gmm-menu--cols-7,
  .ifp-gmm-menu--cols-8 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ifp-gmm-menu--cols-5,
  .ifp-gmm-menu--cols-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .ifp-gmm-menu--cols-5,
  .ifp-gmm-menu--cols-6,
  .ifp-gmm-menu--cols-7,
  .ifp-gmm-menu--cols-8 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ifp-gmm-menu--cols-4,
  .ifp-gmm-menu--cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ifp-gmm-menu--cols-2,
  .ifp-gmm-menu--cols-3,
  .ifp-gmm-menu--cols-4,
  .ifp-gmm-menu--cols-5,
  .ifp-gmm-menu--cols-6,
  .ifp-gmm-menu--cols-7,
  .ifp-gmm-menu--cols-8 {
    grid-template-columns: minmax(0, 1fr);
  }

  .ifp-gmm-menu-card__head {
    display: block;
  }

  .ifp-gmm-menu-card__price {
    margin-top: .35rem;
  }
}



.ifp-gmm-pagination {
  margin: 1.5rem 0 0;
}

.ifp-gmm-pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ifp-gmm-pagination__item {
  margin: 0;
}

.ifp-gmm-pagination a,
.ifp-gmm-pagination span {
  display: inline-flex;
  min-width: 2.4rem;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  padding: .35rem .65rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: inherit;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.ifp-gmm-pagination a:hover,
.ifp-gmm-pagination a:focus {
  border-color: rgba(180, 83, 9, 0.42);
  background: rgba(180, 83, 9, 0.10);
}

.ifp-gmm-pagination .current {
  border-color: rgba(180, 83, 9, 0.44);
  background: rgba(180, 83, 9, 0.16);
}

.ifp-gmm-menu-shell {
  width: 100%;
}

.ifp-gmm-menu-section {
  margin: 0 0 2rem;
}

.ifp-gmm-menu-section:last-child {
  margin-bottom: 0;
}

.ifp-gmm-menu-section__title {
  margin: 0 0 .85rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
}

.ifp-gmm-menu-card__allergens {
  margin-top: .75rem;
  font-size: .82rem;
  line-height: 1.45;
  color: #6b5b51;
}

.ifp-gmm-menu-card__allergens strong {
  margin-right: .25rem;
}


.ifp-gmm-filterbar {
  display: grid;
  grid-template-columns: minmax(140px, .8fr) repeat(2, minmax(160px, 1fr)) auto auto;
  align-items: end;
  gap: .75rem;
  margin: 0 0 1.1rem;
  padding: .9rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 16px;
  background: rgba(255, 250, 247, 0.82);
}

.ifp-gmm-filterbar__title {
  align-self: center;
  font-weight: 700;
  line-height: 1.2;
}

.ifp-gmm-filterbar__field,
.ifp-gmm-filterbar__check {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0;
  font-size: .86rem;
}

.ifp-gmm-filterbar__check {
  flex-direction: row;
  align-items: center;
  align-self: center;
  gap: .45rem;
}

.ifp-gmm-filterbar__field span {
  font-size: .78rem;
  font-weight: 700;
  color: #5b4a40;
}

.ifp-gmm-filterbar select {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: .35rem .55rem;
  background: #fff;
}

.ifp-gmm-filterbar__reset {
  min-height: 38px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 10px;
  padding: .35rem .7rem;
  background: #fff;
  cursor: pointer;
}

.ifp-gmm-empty--filtered {
  margin-bottom: 1rem;
}

.ifp-gmm-menu-card[hidden],
.ifp-gmm-menu-section[hidden],
.ifp-gmm-empty[hidden] {
  display: none !important;
}

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

  .ifp-gmm-filterbar__title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .ifp-gmm-filterbar {
    grid-template-columns: minmax(0, 1fr);
  }
}


.ifp-gmm-menu-card--unavailable {
  opacity: .62;
  filter: grayscale(.25);
}

.ifp-gmm-menu-card__badge--unavailable {
  background: #f1f5f9;
  color: #475569;
}

/* Design presets v0.9.0: purely frontend styling, no development helpers. */
.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-card {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-card__desc,
.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-section__title {
  color: #334155;
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-card__badge {
  background: rgba(15, 23, 42, 0.08);
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card {
  background: #111827;
  border-color: rgba(249, 115, 22, 0.45);
  border-radius: 22px;
  color: #fff7ed;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__title,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__price,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-section__title {
  color: #fff7ed;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__desc {
  color: #fed7aa;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__badge {
  background: rgba(249, 115, 22, 0.22);
  color: #ffedd5;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__tags span {
  color: #ffedd5;
  background: rgba(255, 247, 237, 0.10);
  border-color: rgba(255, 247, 237, 0.20);
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-filterbar,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-empty {
  background: #111827;
  border-color: rgba(249, 115, 22, 0.35);
  color: #ffedd5;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-filterbar select {
  background: #1f2937;
  border-color: rgba(249, 115, 22, 0.35);
  color: #fff7ed;
}


/* v1.2.0: Public notice panel for opening hours / current gastro hints. */
.ifp-gmm-notice-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(126, 74, 43, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 250, 247, 0.94), rgba(255, 247, 237, 0.84));
  box-shadow: 0 12px 28px rgba(126, 74, 43, 0.08);
}

.ifp-gmm-notice-panel__title {
  margin: 0 0 .35rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.ifp-gmm-notice-panel__text,
.ifp-gmm-notice-panel__hours {
  color: #5b4a40;
  line-height: 1.5;
}

.ifp-gmm-notice-panel__hours {
  display: flex;
  gap: .4rem;
  margin-top: .45rem;
  font-size: .92rem;
}

.ifp-gmm-notice-panel__cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: .55rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 74, 43, 0.18);
  background: #fff;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-notice-panel {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-notice-panel {
  background: #111827;
  border-color: rgba(249, 115, 22, 0.35);
  color: #fff7ed;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-notice-panel__text,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-notice-panel__hours {
  color: #fed7aa;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-notice-panel__cta {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.42);
  color: #fff7ed;
}

@media (max-width: 640px) {
  .ifp-gmm-notice-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .ifp-gmm-notice-panel__cta {
    width: 100%;
  }

  .ifp-gmm-notice-panel__hours {
    display: block;
  }
}


/* Medien-/Bildoptionen v1.4.0 */
.ifp-gmm-menu-card__image--ratio-1_1 { aspect-ratio: 1 / 1; }
.ifp-gmm-menu-card__image--ratio-4_3 { aspect-ratio: 4 / 3; }
.ifp-gmm-menu-card__image--ratio-3_2 { aspect-ratio: 3 / 2; }
.ifp-gmm-menu-card__image--ratio-16_9 { aspect-ratio: 16 / 9; }
.ifp-gmm-menu-card__image--ratio-auto {
  aspect-ratio: auto;
  height: auto;
}

.ifp-gmm-menu-card__image--ratio-auto img {
  height: auto;
  object-fit: contain;
}

.ifp-gmm-menu-card__image--placeholder {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: #8a6f5f;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}

.ifp-gmm-menu-card__image--placeholder span {
  padding: .5rem .75rem;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .6);
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-card__image--placeholder {
  color: #64748b;
  background: #f8fafc;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__image--placeholder {
  color: #fed7aa;
  background: #1f2937;
}



/* Print menu shortcode */
.ifp-gmm-print-menu {
  width: 100%;
}

.ifp-gmm-print-menu__toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 1rem;
}

.ifp-gmm-print-menu__button {
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 999px;
  padding: .62rem 1rem;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.ifp-gmm-print-menu__paper {
  padding: clamp(1rem, 2.8vw, 2rem);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 20px;
  background: #fff;
}

.ifp-gmm-print-menu__header {
  margin: 0 0 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.ifp-gmm-print-menu__header h2 {
  margin: 0 0 .35rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.ifp-gmm-print-menu__header p,
.ifp-gmm-print-menu__footer {
  margin: 0;
  color: #5b4a40;
  line-height: 1.55;
}

.ifp-gmm-print-menu__footer {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  font-size: .88rem;
}

@media print {
  .ifp-gmm-print-menu {
    width: 100%;
    background: #fff;
  }

  .ifp-gmm-print-menu__toolbar {
    display: none !important;
  }

  .ifp-gmm-print-menu__paper {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  .ifp-gmm-print-menu .ifp-gmm-menu-card {
    break-inside: avoid;
    page-break-inside: avoid;
    box-shadow: none;
    border-color: rgba(15, 23, 42, 0.20);
  }

  .ifp-gmm-print-menu .ifp-gmm-menu-section {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .ifp-gmm-print-menu .ifp-gmm-menu-card__image {
    max-height: 140px;
  }
}


/* Anfrageformular v1.6.0: sichtbare Frontend-Funktion, keine Entwicklungshilfen. */
.ifp-gmm-request {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  background: #fffaf7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ifp-gmm-request__title {
  margin: 0 0 .45rem;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.ifp-gmm-request__intro {
  margin: 0 0 1rem;
  color: #5b4a40;
  line-height: 1.55;
}

.ifp-gmm-request__message {
  margin: 0 0 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
}

.ifp-gmm-request__message--success {
  border: 1px solid rgba(22, 163, 74, .28);
  background: rgba(22, 163, 74, .10);
  color: #166534;
}

.ifp-gmm-request__message--error {
  border: 1px solid rgba(220, 38, 38, .28);
  background: rgba(220, 38, 38, .10);
  color: #991b1b;
}

.ifp-gmm-request__form {
  display: grid;
  gap: .9rem;
}

.ifp-gmm-request__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}

.ifp-gmm-request__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
  font-size: .9rem;
  font-weight: 700;
}

.ifp-gmm-request__field--full {
  width: 100%;
}

.ifp-gmm-request__field input,
.ifp-gmm-request__field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: .7rem .8rem;
  background: #fff;
  font: inherit;
  font-weight: 400;
}

.ifp-gmm-request__field textarea {
  min-height: 120px;
  resize: vertical;
}

.ifp-gmm-request__privacy {
  margin: -.2rem 0 0;
  color: #6b5b51;
  font-size: .84rem;
  line-height: 1.45;
}

.ifp-gmm-request__button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.15rem;
  background: #b45309;
  color: #fffaf7;
  font-weight: 800;
  cursor: pointer;
}

.ifp-gmm-request__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ifp-gmm-menu-shell--preset-clean.ifp-gmm-request {
  background: #ffffff;
  border-radius: 12px;
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-request__button {
  background: #0f172a;
  color: #ffffff;
}

.ifp-gmm-menu-shell--preset-bold.ifp-gmm-request {
  background: #111827;
  border-color: rgba(249, 115, 22, 0.45);
  color: #fff7ed;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-request__intro,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-request__privacy {
  color: #fed7aa;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-request__field input,
.ifp-gmm-menu-shell--preset-bold .ifp-gmm-request__field textarea {
  border-color: rgba(249, 115, 22, .35);
  background: rgba(255,255,255,.96);
  color: #111827;
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-request__button {
  background: #f97316;
  color: #111827;
}

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

@media (max-width: 560px) {
  .ifp-gmm-request__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ifp-gmm-request__button {
    width: 100%;
  }
}


/* Standort & Kontakt v1.9.0: sichtbare Frontend-Funktion ohne Tracking-Iframe. */
.ifp-gmm-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  background: #fffaf7;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.ifp-gmm-location__title {
  margin: 0 0 .45rem;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.ifp-gmm-location__intro {
  margin: 0 0 1rem;
  color: #5b4a40;
  line-height: 1.55;
}

.ifp-gmm-location__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;
  margin: 0;
}

.ifp-gmm-location__list div {
  min-width: 0;
}

.ifp-gmm-location__list dt {
  margin: 0 0 .2rem;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #8a6f5f;
}

.ifp-gmm-location__list dd {
  margin: 0;
  line-height: 1.5;
  color: #2f241f;
  overflow-wrap: anywhere;
}

.ifp-gmm-location__list a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.ifp-gmm-location__actions {
  display: flex;
  justify-content: flex-end;
}

.ifp-gmm-location__map-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: .65rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 74, 43, 0.18);
  background: #fff;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ifp-gmm-menu-shell--preset-clean.ifp-gmm-location,
.ifp-gmm-location.ifp-gmm-menu-shell--preset-clean {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.12);
}

.ifp-gmm-location.ifp-gmm-menu-shell--preset-bold {
  background: #111827;
  border-color: rgba(249, 115, 22, 0.35);
  color: #fff7ed;
}

.ifp-gmm-location.ifp-gmm-menu-shell--preset-bold .ifp-gmm-location__intro,
.ifp-gmm-location.ifp-gmm-menu-shell--preset-bold .ifp-gmm-location__list dd {
  color: #fed7aa;
}

.ifp-gmm-location.ifp-gmm-menu-shell--preset-bold .ifp-gmm-location__list dt {
  color: #fdba74;
}

.ifp-gmm-location.ifp-gmm-menu-shell--preset-bold .ifp-gmm-location__map-link {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(249, 115, 22, 0.42);
  color: #fff7ed;
}

@media (max-width: 720px) {
  .ifp-gmm-location,
  .ifp-gmm-location__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .ifp-gmm-location__actions,
  .ifp-gmm-location__map-link {
    width: 100%;
  }
}


/* Specials / Tagesangebote */
.ifp-gmm-specials {
  margin: 24px 0;
}

.ifp-gmm-specials__header,
.ifp-gmm-specials-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ifp-gmm-specials__title,
.ifp-gmm-specials-head__title {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

.ifp-gmm-specials__intro,
.ifp-gmm-specials-head__intro {
  margin: 0;
  max-width: 68ch;
  opacity: .82;
}

.ifp-gmm-menu-shell--specials .ifp-gmm-menu-card--highlight {
  position: relative;
}

.ifp-gmm-menu-shell--specials .ifp-gmm-menu-card--highlight::before {
  content: "★";
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(15,23,42,.12);
}


/* Nährwerte / Portionshinweise */
.ifp-gmm-menu-card__nutrition {
  display: grid;
  gap: .15rem;
  margin-top: .65rem;
  padding: .65rem .75rem;
  border-radius: 14px;
  background: rgba(126, 74, 43, 0.07);
  color: inherit;
  font-size: .9rem;
  line-height: 1.45;
}

.ifp-gmm-menu-card__nutrition strong {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .78;
}

.ifp-gmm-menu-shell--preset-clean .ifp-gmm-menu-card__nutrition {
  background: rgba(15, 23, 42, 0.05);
}

.ifp-gmm-menu-shell--preset-bold .ifp-gmm-menu-card__nutrition {
  background: rgba(249, 115, 22, 0.14);
}


.ifp-gmm-menu-set-shell {
  display: grid;
  gap: 30px;
}

.ifp-gmm-menu-set {
  display: grid;
  gap: 14px;
}

.ifp-gmm-menu-set__header {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 35px rgba(15, 23, 42, .06);
}

.ifp-gmm-menu-set__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.ifp-gmm-menu-set__intro {
  margin: 8px 0 0;
  color: #475569;
}


.ifp-gmm-menu-card__variants {
    display: grid;
    gap: .25rem;
    margin: .5rem 0;
    font-size: .92em;
    line-height: 1.45;
}

.ifp-gmm-menu-card__variants strong {
    font-weight: 700;
}

.ifp-gmm-menu-card__variants span {
    white-space: normal;
}


.ifp-gmm-request__privacy-check {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.94rem;
    line-height: 1.45;
    margin: 0.2rem 0 1rem;
}

.ifp-gmm-request__privacy-check input {
    margin-top: 0.18rem;
    flex: 0 0 auto;
}

.ifp-gmm-request__privacy-check a {
    text-decoration: underline;
}


.ifp-gmm-menu-card__image--link {
  text-decoration: none;
  color: inherit;
}

.ifp-gmm-menu-card__image--link:focus {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.ifp-gmm-menu-card__title-link {
  color: inherit;
  text-decoration: none;
}

.ifp-gmm-menu-card__title-link:hover,
.ifp-gmm-menu-card__title-link:focus {
  text-decoration: underline;
  text-underline-offset: .15em;
}

.ifp-gmm-menu-card__badge--image {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

