/* =========================================================
   Mamma Mia – Custom Theme
   Joomla 6 / Helix Ultimate / SP Page Builder
   ========================================================= */

/* Fonts lokal */
@font-face {
  font-family: "MammaLobster";
  src: url("../fonts/Lobster-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MammaMontserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* Farbwelt */
:root {
  --mm-bg: #181818;
  --mm-bg-soft: #242424;
  --mm-bg-card: #2d2d2d;

  --mm-cream: #f6f1e7;
  --mm-muted: rgba(246, 241, 231, 0.72);

  --mm-green: #009246;
  --mm-red: #ce2b37;
  --mm-gold: #d4a017;

  --mm-radius: 22px;
  --mm-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Global */
body {
  font-family: "MammaMontserrat", Arial, sans-serif;
  background: var(--mm-bg);
  color: var(--mm-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "MammaMontserrat", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mm-cream);
}

.mm-logo-font,
.mm-script {
  font-family: "MammaLobster", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

/* Links */
a {
  color: var(--mm-green);
}

a:hover {
  color: var(--mm-red);
}

/* Buttons */
.mm-btn,
.sppb-btn.mm-btn,
.sppb-btn-custom.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 0;
  transition: all .25s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.mm-btn-red,
.sppb-btn.mm-btn-red {
  background: var(--mm-red);
  color: #fff;
}

.mm-btn-red:hover,
.sppb-btn.mm-btn-red:hover {
  background: #e83b47;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(206, 43, 55, .35);
}

.mm-btn-green,
.sppb-btn.mm-btn-green {
  background: var(--mm-green);
  color: #fff;
}

.mm-btn-green:hover,
.sppb-btn.mm-btn-green:hover {
  background: #00aa52;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(0, 146, 70, .35);
}

/* Sections */
.mm-section-dark {
  background:
    radial-gradient(circle at top right, rgba(206,43,55,.14), transparent 35%),
    radial-gradient(circle at bottom left, rgba(0,146,70,.14), transparent 35%),
    var(--mm-bg);
  color: var(--mm-cream);
}

.mm-section-soft {
  background: var(--mm-bg-soft);
  color: var(--mm-cream);
}

/* Hero */
.mm-hero {
  position: relative;
  overflow: hidden;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--mm-bg);
}

.mm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24,24,24,.96) 0%, rgba(24,24,24,.78) 45%, rgba(24,24,24,.25) 100%);
  z-index: 1;
}

.mm-hero > .sppb-row-container,
.mm-hero .sppb-container-inner {
  position: relative;
  z-index: 2;
}

.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--mm-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
  margin-bottom: 14px;
}

.mm-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mm-green), var(--mm-red));
}

.mm-hero-title {
  font-family: "MammaLobster", cursive;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: .82;
  color: var(--mm-cream);
  text-shadow: 0 8px 28px rgba(0,0,0,.5);
  margin-bottom: 24px;
}

.mm-hero-subtitle {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.mm-hero-text {
  max-width: 620px;
  color: var(--mm-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Cards */
.mm-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--mm-radius);
  padding: 28px;
  box-shadow: var(--mm-shadow);
  color: var(--mm-cream);
  transition: all .25s ease;
}

.mm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,160,23,.45);
}

.mm-card h3 {
  margin-bottom: 10px;
}

.mm-card p {
  color: var(--mm-muted);
}

/* Kategorie-Kacheln */
.mm-category-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--mm-radius);
  background: var(--mm-bg-card);
  box-shadow: var(--mm-shadow);
}

.mm-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.mm-category-card:hover img {
  transform: scale(1.06);
}

.mm-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,.82) 100%);
}

.mm-category-card .mm-category-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
}

/* Info Badges */
.mm-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  color: var(--mm-cream);
  font-size: .9rem;
  font-weight: 700;
}

.mm-badge-red {
  background: rgba(206,43,55,.16);
  color: #ff7079;
}

.mm-badge-green {
  background: rgba(0,146,70,.18);
  color: #4ee28c;
}

.mm-badge-gold {
  background: rgba(212,160,23,.18);
  color: #ffd36b;
}

/* Öffnungszeiten / Lieferinfo */
.mm-info-box {
  background: rgba(255,255,255,.055);
  border: 1px dashed rgba(246,241,231,.24);
  border-radius: var(--mm-radius);
  padding: 24px;
}

.mm-info-box strong {
  color: #fff;
}

.mm-info-box p,
.mm-info-box li {
  color: var(--mm-muted);
}

/* Speisekarten-/Preislisten */
.mm-menu-list {
  background: var(--mm-bg-soft);
  border-radius: var(--mm-radius);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
}

.mm-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.mm-menu-item:last-child {
  border-bottom: 0;
}

.mm-menu-item-title {
  font-weight: 850;
  color: #fff;
}

.mm-menu-item-desc {
  color: var(--mm-muted);
  font-size: .95rem;
  margin-top: 4px;
}

.mm-menu-price {
  color: var(--mm-gold);
  font-weight: 900;
  white-space: nowrap;
}

/* Sticky Mobile Order Bar */
.mm-sticky-order {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 9999;
  display: none;
  gap: 10px;
}

.mm-sticky-order a {
  flex: 1;
  text-align: center;
  border-radius: 999px;
  padding: 13px 14px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
}

.mm-sticky-order .order {
  background: var(--mm-red);
}

.mm-sticky-order .call {
  background: var(--mm-green);
}

/* Mobile */
@media (max-width: 767px) {
  .mm-hero {
    min-height: 78vh;
    text-align: left;
  }

  .mm-hero::before {
    background: linear-gradient(180deg, rgba(24,24,24,.86) 0%, rgba(24,24,24,.96) 72%);
  }

  .mm-hero-title {
    font-size: clamp(4.2rem, 19vw, 6.2rem);
  }

  .mm-hero-subtitle {
    font-size: 1.35rem;
  }

  .mm-card,
  .mm-menu-list,
  .mm-info-box {
    padding: 22px;
  }

  .mm-menu-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mm-sticky-order {
    display: flex;
  }

  body {
    padding-bottom: 76px;
  }
}
/* =========================================================
   Mamma Mia Hero – neue Version
   ========================================================= */

.mm-hero-mamma {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;

  background-image: inherit;
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  background-color: #181818;
}

/* ruhiger dunkler Verlauf, kein Farb-Matsch */
.mm-hero-mamma::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(15,15,15,.96) 0%,
      rgba(15,15,15,.88) 34%,
      rgba(15,15,15,.54) 58%,
      rgba(15,15,15,.18) 100%
    );
}

/* leichter Boden-Schatten */
.mm-hero-mamma::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(15,15,15,.88) 0%,
    rgba(15,15,15,0) 100%
  );
  pointer-events: none;
}

/* SPPB Inhalt nach vorne */
.mm-hero-mamma .sppb-row-container,
.mm-hero-mamma .sppb-container-inner,
.mm-hero-mamma .sppb-row,
.mm-hero-mamma .sppb-column,
.mm-hero-mamma .sppb-column-addons {
  position: relative;
  z-index: 2;
}

.mm-hero-content {
  max-width: 560px;
  padding: 90px 0 95px;
}

/* Eyebrow ohne Verlauf */
.mm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 18px;
  color: #f6f1e7;

  font-size: .86rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mm-eyebrow::before {
  content: "";
  width: 20px;
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    #009246 0 28%,
    #ffffff 28% 62%,
    #ce2b37 62% 100%
  );
}

/* Logo kleiner und Firefox-sicher */
.mm-hero-logo {
  display: block;
  width: 245px;
  max-width: 68vw;
  height: auto;
  margin: 0 0 26px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
}

/* Headline deutlich ruhiger */
.mm-hero-headline {
  max-width: 500px;
  margin: 0 0 18px;

  color: #fff;
  font-size: clamp(2.05rem, 3.1vw, 3.0rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -0.045em;
}

/* Text */
.mm-hero-text {
  max-width: 500px;
  margin: 0;

  color: #fff;
  font-size: 1.04rem;
  line-height: 1.65;
}

/* Buttons */
.mm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.mm-hero-actions .mm-btn {
  padding: 12px 22px;
  font-size: .9rem;
}

/* Tablet */
@media (max-width: 991px) {
  .mm-hero-mamma {
    min-height: 680px;
    background-position: 64% center;
  }

  .mm-hero-content {
    padding: 80px 0;
  }
}

/* Smartphone */
@media (max-width: 767px) {
  .mm-hero-mamma {
    min-height: auto;
    align-items: flex-start;

    /* appetitlicher Ausschnitt: rechter unterer Pizza-Bereich */
    background-size: auto 360px;
    background-position: 72% 0;
    background-repeat: no-repeat;
  }

  .mm-hero-mamma::before {
    background:
     rgba(0, 0, 0, 0.62) !important;
  }

  .mm-hero-mamma::after {
    display: none;
  }

  .mm-hero-content {
    max-width: 100%;
    padding: 100px 0 54px;
  }

  .mm-eyebrow {
    margin-bottom: 15px;
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .mm-eyebrow::before {
    width: 18px;
    height: 9px;
  }

  .mm-hero-logo {
    width: 205px;
    max-width: 70vw;
    margin-bottom: 22px;
  }

  .mm-hero-headline {
    max-width: 360px;
    font-size: clamp(2rem, 8.8vw, 2.65rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .mm-hero-text {
    font-size: .98rem;
    line-height: 1.6;
  }

  .mm-hero-actions {
    margin-top: 26px;
    flex-direction: column;
    gap: 10px;
  }

  .mm-hero-actions .mm-btn {
    width: 100%;
    padding: 13px 18px;
  }
}

/* sehr kleine Geräte */
@media (max-width: 390px) {
  .mm-hero-mamma {
    background-size: auto 330px;
    background-position: 76% 0;
  }

  .mm-hero-content {
    padding-top: 275px;
  }
}
/* Mobile Hero final polish */
@media (max-width: 767px) {
  .mm-hero-logo {
    width: 235px;
  }

  .mm-hero-headline {
    margin-top: 18px;
  }

  .mm-hero-text {
    font-size: 1.05rem;
  }
}
.vrtkitemsdiv .vrtkmenuheader .vrtkmenutitlediv {
	font-size: 49px;
	color: var(--mm-red);
	font-family: "mammalobster";
}
.vrtkitemsdiv .vrtkiteminfodiv .vrtkitemnamesp {
	font-size: 20px;
	font-weight: bold;
	word-break: break-word;
}
.vr-modal-box {
	width: 90%;
	max-width: 960px;
	height: calc(100vh - 40px);
	background: none repeat scroll 0 0 var(--mm-bg-card);
	border-radius: var(--vre-palette-background-border-radius);
	padding: 15px 0;
	position: absolute;
	margin-top: 20px;
	left: 50%;
	transform: translateX(-50%);
}
.vr-modal-body .dish-item-overlay-footer {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	padding: 10px 10px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	box-shadow: 0 -2px 1px var(--vre-palette-background-secondary-color);
	background: var(--mm-bg-card);
}
/* ================================
   VIK ADD ITEM MODAL
================================ */

/* Modal Fenster */
#vrtk-additem-form {
    color: #f5f5f5;
}

/* Modal Content */
.vr-modal-body {
    background: #262626;
}

/* Produktbereich */
.vrtk-additem-product {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

/* Bild */
.vrtk-additem-product .additem-product-image {
    width: 140px;
    flex: 0 0 140px;
}

.vrtk-additem-product .additem-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* Titel */
.vrtk-additem-product .additem-product-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 10px;
}

/* Beschreibung */
.vrtk-additem-product .additem-product-description {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255,255,255,.82);
}

/* Wunschfeld */
.vrtk-additem-notes-box textarea {
    width: 100%;
    background: #2f2f2f;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    color: #fff;
    padding: 16px;
    min-height: 100px;
    font-size: 1rem;
}

/* Extras Box */
.vrtk-additem-group-box {
    background: #2c2c2c;
    border-radius: 14px;
    padding: 18px;
    margin-top: 22px;
    border: 1px solid rgba(255,255,255,.08);
}

/* Überschrift Extras */
.vrtk-additem-group-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}

/* Extras zweispaltig */
.vrtk-additem-group-box ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Einzelne Extra-Zeile */
.vrtk-additem-group-box li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.3;
}

/* Checkbox */
.vrtk-additem-group-box input[type="checkbox"] {
    accent-color: #009246;
    width: 18px;
    height: 18px;
}

/* Preis */
.vrtk-additem-group-box .vrtk-topping-price {
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

/* Footer */
.dish-item-overlay-footer {
    background: #222;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px;
}

/* Buttons */
.vre-btn {
    border-radius: 999px !important;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* Grüner Warenkorbbutton */
.vre-btn.success {
    background: #009246 !important;
    border-color: #009246 !important;
}

/* Mobile */
@media (max-width: 767px) {

    .vrtk-additem-product {
        flex-direction: column;
    }

    .vrtk-additem-product .additem-product-image {
        width: 100%;
        flex: auto;
    }

    .vrtk-additem-product .additem-product-image img {
        aspect-ratio: 16 / 9;
    }

    .vrtk-additem-group-box ul {
        grid-template-columns: 1fr;
    }

    .vrtk-additem-product .additem-product-title {
        font-size: 1.5rem;
    }

}
.vrtk-map-delivery-search {
    background-color: #171717;
    padding: 10px;
}

#sp-header.header-sticky {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	animation: none !important;
}
#sp-header {
	height: 60px;
	width: 100%;
	position: relative;
	z-index: 99;
	box-shadow: 0 0 4px 0 rgba(0,0,0,.1);
animation: none !important;
}
/* Platz unten */
body {
  padding-bottom: 86px;
}

.mm-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: rgba(18,18,18,.98);
  backdrop-filter: blur(18px);

  border-top: 1px solid rgba(255,255,255,.10);
  border-radius: 26px 26px 0 0;

  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
}

.mm-bottom-nav a {
  min-height: 58px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;

  color: rgba(255,255,255,.72);
  text-decoration: none;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.mm-nav-icon {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
}

.mm-nav-label {
  font-size: 12px;
}

.mm-bottom-nav a.is-active {
  background: #009246;
  color: #fff;
}

@media (min-width: 900px) {
  .mm-bottom-nav {
    max-width: 480px;
    left: 50%;
    right: auto;
    width: 480px;
    transform: translateX(-50%);
    bottom: 14px;
    border-radius: 26px;
  }
}
/* ==================================
   Mamma Mia Sticky Cart
================================== */

#vrtkcartitemsmodule115 {
    position: fixed !important;
    left: 14px !important;
    right: 14px !important;
    bottom: calc(75px + env(safe-area-inset-bottom)) !important;
    z-index: 99999 !important;
}

/* äußerer wrapper */
#vrtkcartitemsmodule115 .cart-inner-wrapper {
    width: 100% !important;
}

/* Button */
.vrtkcartitemsmodule.cart-mobile-sticky .cart-sticky-button::before {
	content: "";
	position: absolute;
	inset: 0;
	background: none !important;
	z-index: -1;
}
/* Einkaufswagen Icon */
#vrtkcartitemsmodule115 .cart-sticky-button i {
    font-size: 15px !important;
}

/* Anzahl */
#vrtkcartitemsmodule115 .items-qty {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
}

/* Preis */
#vrtkcartitemsmodule115 .vrtkcartpricemodule {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

/* Desktop */
@media (min-width: 900px) {
    #vrtkcartitemsmodule115 {
        max-width: 460px !important;
        left: 50% !important;
        right: auto !important;
        width: 460px !important;
        transform: translateX(-50%);
    }
}
.vrtk-itemdet-prod-body .tk-right .tk-cart-summary .tk-cart-summary-inner .tk-add-cart button {
	width: 70%;
	min-height: 36px;
	/* font-size: 14px; */
	margin: 0 0 0 10px;
	line-height: normal;
}
.vrtkgotopaydiv {
	display: none !important;
	width: 100%;
	text-align: right;
}
/* ================================
   Mamma Mia Öffnungszeiten
================================ */

.vrworktmodule {
  margin: 26px 16px 115px;
  padding: 28px 22px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.025);
}

.vrworktmodule::before {
    content: "\00d6 ffnungszeiten";
    display: block;
    margin-bottom: 24px;
    color: #e62e3d;
    font-size: 50px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Mammalobster';
}

/* alte Rahmen entfernen */
.vrworkt-page-scroller,
.vrworkt-day-view {
  border: 0 !important;
}

/* Zeile */
.vrworkt-weekday-row {
  display: grid !important;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 18px;

  padding: 10px 0;
  border-bottom: 1px dotted rgba(255,255,255,.45) !important;
}

.vrworkt-weekday-row:last-child {
  border-bottom: 0 !important;
}

/* links: Tag + Datum */
.vrworkt-weekday-head {
  display: grid !important;
  grid-template-columns: 28px 34px 1fr;
  align-items: baseline;
  gap: 4px;
    background: none !important;
}

.vrworkt-weekday-name {
  color: #00b050;
  font-size: 15px;
  font-weight: 900;
}

.vrworkt-weekday-num,
.vrworkt-weekday-month {
  color: rgba(255,255,255,.62);
  font-size: 14px;
  font-weight: 600;
}

/* rechts: Uhrzeit sauber rechts */
.vrworkt-weekday-shifts {
  margin: 0 !important;
  text-align: right;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.vrworkt-head-tr,
.vrworkt-head-tr-cont {
  display: inline !important;
  white-space: nowrap;
}
/* ======================================
   VIKRESTAURANTS – EINHEITLICHE BILDER
====================================== */

/* Bildcontainer */
.vrtkitemimagediv-outer {
    width: 110px;
    min-width: 110px;
}

/* Bilder gleiche Größe */
.vrtkitemimagediv img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* etwas Abstand zum Text */
.vrtkitemleftdiv {
    gap: 14px;
    align-items: flex-start;
}

/* mobil etwas kompakter */
@media (max-width: 768px) {

    .vrtkitemimagediv-outer {
        width: 90px;
        min-width: 90px;
    }

    .vrtkitemimagediv img {
        width: 90px;
        height: 90px;
        border-radius: 12px;
    }
}
.vrtkitemsdiv {
    border-radius: var(--vre-palette-background-border-radius);
    border: none !important;
    padding: 20px;
    margin: 20px 0 10px 0;
}
/* Liefergebiet: Formular sauber zentrieren */
.vrtk-map-container.delivery-above .vrtk-map-delivery-search {
  text-align: center;
}

.vrtk-map-container.delivery-above .map-fieldset {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vrtk-map-container.delivery-above .map-fieldset label {
  display: block !important;
  width: 100%;
  text-align: center !important;
  margin-bottom: 12px;
}

.vrtk-map-container.delivery-above .input-address-container {
  display: flex !important;
  justify-content: center;
  width: 100%;
}

.vrtk-map-container.delivery-above .input-address-container input {
  width: min(100%, 420px);
  height: 56px;
  text-align: center;
  border-radius: 6px;
}

/* Antwortwerte hübsch untereinander */
.vrtk-map-container.delivery-above .map-response {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.vrtk-map-container.delivery-above .map-response > * {
  display: block;
  gap: 8px;
  align-items: center;
}
.vrtkitemsdiv .vrtksinglevar .vrtkvarfloatrdiv {
    position: absolute !important;
    float: left;
}
/* ======================================
   MAMMA MIA – STARTSEITE KATEGORIEN
====================================== */

.mm-home-cats {
  padding: 44px 16px 50px;
  background: var(--mm-bg, #101010);
}

.mm-home-cats-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.mm-home-cats .mm-eyebrow {
  margin: 0 0 8px;
  color: var(--mm-green, #009246);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.mm-home-cats h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(1.7rem, 5vw, 2.45rem);
  line-height: 1.1;
  font-weight: 900;
}

.mm-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mm-cat-card {
  position: relative;
  display: block;
  height: 178px;
  overflow: hidden;
  border-radius: 20px;
  text-decoration: none;
  background: #181818;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}

.mm-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

.mm-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.82) 0%,
      rgba(0,0,0,.42) 44%,
      rgba(0,0,0,.08) 100%
    );
  z-index: 1;
}

.mm-cat-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.mm-cat-card:hover img {
  transform: scale(1.08);
}

.mm-cat-card:hover {
  border-color: rgba(0,146,70,.55);
}

/* Button unten */
.mm-all-cats-btn {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--mm-green, #009246);
  color: #fff !important;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(0,146,70,.25);
}

.mm-all-cats-btn:hover {
  background: var(--mm-green-dark, #007a3a);
  color: #fff !important;
}

/* Mobile */
@media (max-width: 760px) {
  .mm-home-cats {
    padding: 36px 14px 42px;
  }

  .mm-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .mm-cat-card {
    height: 150px;
    border-radius: 17px;
  }

  .mm-cat-card span {
    left: 13px;
    right: 13px;
    bottom: 13px;
    font-size: 1rem;
  }
}
/* ======================================
   MAMMA MIA – FLOATING CART BUTTON
====================================== */

#vrtkcartitemsmodule115 {
  background: rgba(0, 92, 50, .68) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 22px !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
  transition: background .35s ease, transform .25s ease, box-shadow .25s ease;
}

/* kurzer Warenkorb-Impuls beim Hinzufügen */
#vrtkcartitemsmodule115.mm-cart-flash {
  background: rgba(92, 0, 0, .82) !important;
  transform: scale(1.035);
  box-shadow: 0 16px 38px rgba(92,0,0,.32);
}

/* Button im Warenkorb */
#vrtkcartitemsmodule115 .cart-sticky-button,
#vrtkcartitemsmodule115.vre-btn {
 background: transparent !important;
  border: 0 !important;
  color: #fff !important;
}
/* ======================================
   MAMMA MIA – BOTTOM NAV CLEAN
====================================== */



.mm-bottom-nav a {
  border-radius: 18px;
  color: rgba(255,255,255,.72);
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;

  font-size: 11px;
  font-weight: 800;

  background: transparent !important;
  transition: .2s ease;
}

.mm-bottom-nav .mm-nav-icon {
  font-size: 20px;
  line-height: 1;
}

.mm-bottom-nav .mm-nav-label {
  font-size: 11px;
  line-height: 1;
}

/* aktiv: kein grüner Block mehr */
.mm-bottom-nav a.is-active {
  background: transparent !important;
  color: var(--mm-green, #009246) !important;
}

.mm-bottom-nav a.is-active .mm-nav-icon,
.mm-bottom-nav a.is-active .mm-nav-label {
  color: var(--mm-green, #009246) !important;
}

/* sicherheit: alte aktive BGs neutralisieren */
.mm-bottom-nav a.is-active::before,
.mm-bottom-nav a.is-active::after {
  display: none !important;
}
/* Burger ausblenden */
#offcanvas-toggler,
.sp-offcanvas-toggler {
    display: none !important;
}

/* Telefonbutton */
.mm-call-btn {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);

    width: 46px;
    height: 46px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: rgba(0,146,70,.14);
    border: 1px solid rgba(255,255,255,.08);

    color: var(--mm-green, #009246);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    z-index: 9999;
    transition: .25s ease;
}

.mm-call-btn i {
    font-size: 20px;
}

.mm-call-btn:hover {
    transform: translateY(-50%) scale(1.05);
    background: rgba(0,146,70,.22);
}

@media (max-width:768px){
    .mm-call-btn{
        right:14px;
        width:44px;
        height:44px;
    }
}
/* ======================================
   MAMMA MIA – INFO / BESTELLHILFE
====================================== */

.mm-info-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 120px 18px 120px;
  color: #fff;
}

.mm-info-page .mm-eyebrow {
  margin: 0 0 10px;
  color: var(--mm-green, #009246);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mm-info-page h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.05;
  font-weight: 950;
}

.mm-info-page .mm-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.08rem, 3.8vw, 1.35rem);
  line-height: 1.55;
}

.mm-help-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mm-help-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;

  padding: 22px;
  border-radius: 24px;

  background: #171717;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 34px rgba(0,0,0,.24);
}

.mm-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,146,70,.16);
  border: 1px solid rgba(0,146,70,.35);
  color: var(--mm-green, #009246);

  font-size: 1.05rem;
  font-weight: 950;
}

.mm-step-content h2 {
  margin: 2px 0 8px;
  color: #fff;
  font-size: clamp(1.22rem, 4vw, 1.65rem);
  line-height: 1.15;
  font-weight: 900;
}

.mm-step-content p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 1rem;
  line-height: 1.55;
}

.mm-mini-info {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 16px;

  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
}

.mm-mini-info strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: .98rem;
  font-weight: 900;
}

.mm-mini-info span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  line-height: 1.48;
}

/* Mobile */
@media (max-width: 640px) {

  .mm-info-page {
    padding: 104px 16px 110px;
  }

  .mm-help-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
  }

  .mm-step-num {
    width: 40px;
    height: 40px;
  }

  .mm-mini-info {
    padding: 13px 14px;
  }
}
/* Header Buttons Wrapper */
.mm-header-actions{
    position:absolute;
    top:50%;
    right:16px;
    transform:translateY(-50%);
    z-index:9999;

    display:flex;
    gap:10px;
    align-items:center;
}

/* alte Einzelpositionierung neutralisieren */
.mm-header-actions .mm-call-btn,
.mm-header-actions .mm-user-btn{
    position:static !important;
    top:auto !important;
    right:auto !important;
    transform:none !important;

    width:52px;
    height:52px;
    border-radius:999px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(0,146,70,.14);
    border:1px solid rgba(0,176,80,.22);
    color:#00b050;
    text-decoration:none;

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}

.mm-header-actions .mm-call-btn i,
.mm-header-actions .mm-user-btn i{
    font-size:20px;
    color:#00b050;
}

@media (max-width:768px){
    .mm-header-actions{
        right:14px;
        gap:8px;
    }

    .mm-header-actions .mm-call-btn,
    .mm-header-actions .mm-user-btn{
        width:46px;
        height:46px;
    }
}
.mm-account-info{
    margin:40px 0;
}

.mm-account-intro{
    color:#bbb;
    line-height:1.6;
    margin-bottom:24px;
}

.mm-account-grid{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.mm-account-card{
    display:block;
    padding:22px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    background:rgba(255,255,255,.03);
    text-decoration:none;
    transition:.25s ease;
}

.mm-account-card:hover{
    transform:translateY(-2px);
    border-color:rgba(0,170,90,.4);
    background:rgba(0,170,90,.08);
}

.mm-account-card strong{
    display:block;
    color:#fff;
    font-size:22px;
    margin-bottom:6px;
}

.mm-account-card span{
    color:#bbb;
    line-height:1.5;
}

.mm-account-orders{
    border-color:rgba(0,170,90,.25);
}
.mm-orders-title{
  margin:46px 0 18px;
  scroll-margin-top:110px;
}

.mm-orders-title h2{
  margin:0 0 6px;
  color:#fff;
  font-size:clamp(1.7rem,5vw,2.4rem);
  font-weight:900;
}

.mm-orders-title p{
  margin:0;
  color:rgba(255,255,255,.68);
}
.mm-account-page{
  max-width:920px;
  margin:0 auto;
  padding:120px 18px 110px;
  color:#fff;
}

.mm-account-page h1{
  margin:0 0 12px;
  font-size:clamp(2rem,7vw,4rem);
  font-weight:950;
}

.mm-account-intro{
  margin:0 0 28px;
  color:rgba(255,255,255,.75);
  font-size:1.12rem;
  line-height:1.55;
}

.mm-account-grid{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mm-account-card{
  display:block;
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.09);
  color:#fff;
  text-decoration:none!important;
}

.mm-account-card strong{
  display:block;
  margin-bottom:7px;
  color:#fff;
  font-size:1.25rem;
  font-weight:900;
}

.mm-account-card span{
  color:rgba(255,255,255,.72);
  line-height:1.55;
}

.mm-account-card:hover{
  background:rgba(0,146,70,.09);
  border-color:rgba(0,146,70,.35);
}

.mm-account-orders{
  margin-top:18px;
}

.mm-account-logout{
  border-color:rgba(150,20,20,.35);
}
/* ======================================
   MAMMA MIA – MEIN KONTO
====================================== */

.mm-account-page{
  max-width:920px;
  margin:0 auto;
  padding:120px 18px 120px;
  color:#fff;
}

.mm-account-page h1{
  margin:0 0 10px;
  color:#fff;
  font-size:clamp(2.1rem,7vw,4rem);
  line-height:1.05;
  font-weight:950;
}

.mm-account-intro{
  margin:0 0 28px;
  color:rgba(255,255,255,.72);
  font-size:1.12rem;
  line-height:1.55;
}

.mm-account-form{
  display:flex;
  flex-direction:column;
  gap:18px;
  margin-bottom:22px;
}

.mm-account-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 12px 34px rgba(0,0,0,.22);
}

.mm-account-card strong{
  display:block;
  margin-bottom:16px;
  color:#fff;
  font-size:1.35rem;
  font-weight:900;
}

.mm-account-card label{
  display:block;
  margin:0 0 14px;
  color:rgba(255,255,255,.72);
  font-size:.9rem;
  font-weight:700;
}

.mm-account-card input{
  width:100%;
  margin-top:7px;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.28);
  color:#fff;
  font-size:1rem;
}

.mm-account-card input:focus{
  outline:none;
  border-color:rgba(0,146,70,.65);
}

.mm-account-note{
  display:block;
  margin:-6px 0 16px;
  color:rgba(255,255,255,.68);
  font-size:.96rem;
  line-height:1.5;
}

.mm-account-save{
  width:100%;
  min-height:52px;
  border:0;
  border-radius:999px;
  background:var(--mm-green,#009246);
  color:#fff;
  font-size:1rem;
  font-weight:900;
  cursor:pointer;
}

.mm-account-message{
  margin:0 0 18px;
  padding:14px 16px;
  border-radius:16px;
  font-weight:800;
}

.mm-account-message.success{
  background:rgba(0,146,70,.16);
  border:1px solid rgba(0,146,70,.32);
  color:#7dffae;
}

.mm-account-message.error{
  background:rgba(120,0,0,.18);
  border:1px solid rgba(160,0,0,.38);
  color:#ffb0b0;
}

.mm-address-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.mm-address-item{
  padding:15px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  color:#fff;
  line-height:1.45;
}

.mm-address-item small{
  display:block;
  margin-top:6px;
  color:rgba(255,255,255,.58);
}

.mm-empty{
  margin:0;
  color:rgba(255,255,255,.62);
}

.mm-account-actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:24px;
}

.mm-account-action{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:#fff!important;
  text-decoration:none!important;
  font-weight:900;
}

.mm-account-action:hover{
  background:rgba(0,146,70,.14);
  border-color:rgba(0,146,70,.32);
}

.mm-account-action.logout{
  background:rgba(120,0,0,.16);
  border-color:rgba(160,0,0,.28);
}

@media(max-width:640px){
  .mm-account-page{
    padding:104px 15px 115px;
  }

  .mm-account-card{
    padding:20px;
    border-radius:22px;
  }
}
/* ======================================
   MAMMA MIA BUTTON STYLE
====================================== */

.vre-btn.primary,
.btn-primary,
.btn.btn-primary,
button.btn-primary,
a.btn-primary {

    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:52px;
    padding:14px 28px;

    border:none !important;
    border-radius:999px;

    background:#009246 !important;
    color:#fff !important;

    font-size:1rem;
    font-weight:800;
    line-height:1;

    text-decoration:none !important;

    box-shadow:
      0 8px 24px rgba(0,146,70,.28);

    transition:
      transform .2s ease,
      background .2s ease,
      box-shadow .2s ease;
}

/* Hover */
.vre-btn.primary:hover,
.btn-primary:hover,
.btn.btn-primary:hover,
button.btn-primary:hover,
a.btn-primary:hover {

    background:#00a84f !important;
    color:#fff !important;

    transform:translateY(-1px);

    box-shadow:
      0 12px 28px rgba(0,146,70,.35);
}

/* Klick */
.vre-btn.primary:active,
.btn-primary:active {

    transform:scale(.98);
}

/* Focus */
.vre-btn.primary:focus,
.btn-primary:focus {

    outline:none;
    box-shadow:
      0 0 0 4px rgba(0,146,70,.25);
}