/* ===== David Pizza — matched to davidpizza.de ===== */
:root {
  --orange: #f36805;
  --orange-hover: #d95a00;
  --nav-glass: rgba(255, 255, 255, 0.28);
  --hero-glass: rgba(255, 255, 255, 0.32);
  --text: #000;
  --text-muted: #000;
  --footer-bg: #f5f5f5;
  --white: #fff;
  --radius-pill: 999px;
  --radius-lg: 28px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.14);
  --font: 'Montserrat', 'Poppins', sans-serif;
  --section-gap: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin-inline: auto; }

/* ===== HEADER ===== */
.site-header {
  position: relative;
  min-height: 72vh;
  min-height: 72dvh;
  max-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: #1a1210;
}
.header-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1210;
}
.header-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.7s ease-in-out;
  will-change: transform;
}
.header-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.header-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 7s ease-in-out;
}
.header-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
@keyframes headerZoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.4); }
}
.header-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.12) 45%, rgba(0,0,0,.4) 100%);
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 0 12px;
  gap: 14px;
  height: 70px;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: transparent;
}
.logo-link {
  display: flex;
  align-items: flex-start;
  line-height: 0;
  margin: 0;
  padding: 0;
  align-self: flex-start;
  height: 70px;
  position: relative;
  top: 0;
  z-index: 2;
}
.logo-link img {
  height: 70px;
  width: auto;
  object-fit: contain;
  object-position: top left;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.4));
  transition: height 0.3s ease;
}
.main-nav,
.lang-switch {
  margin-top: 0;
}

/* Glass pill nav — match davidpizza.de #mobileMenuBox */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 1.75rem;
  height: auto;
  min-height: 52px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 50px;
  border: 1px solid #ffffff94;
  box-shadow: inset 2px 2px 7px rgb(136 136 136 / 17%);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #000;
  padding: 0.55rem 1.15rem;
  height: auto;
  display: flex;
  align-items: center;
  border-radius: 50px;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.55);
  color: #000;
}

/* Sticky orange navbar — match davidpizza.de header.sticky */
.top-bar.is-sticky {
  background: #ff5900 !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  padding-top: 0;
  height: 70px;
}
.top-bar.is-sticky .main-nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  box-shadow: none;
}
.top-bar.is-sticky .main-nav a {
  color: #fff !important;
}
.top-bar.is-sticky .main-nav a:hover,
.top-bar.is-sticky .main-nav a.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff !important;
}
.top-bar.is-sticky .lang-toggle {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.top-bar.is-sticky .lang-flag-wrap {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5);
}
.top-bar.is-sticky .nav-toggle {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  box-shadow: none;
}
.top-bar.is-sticky .nav-toggle span {
  background: #fff;
}

.lang-switch {
  position: relative;
  flex-shrink: 0;
  margin-top: 0;
  align-self: center;
  display: flex;
  align-items: center;
  height: auto;
  z-index: 2;
}
/* Glass lang pill — same height as main navbar pill */
.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  height: 52px;
  min-height: 52px;
  padding: 0.55rem 1.15rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 50px;
  border: 1px solid #ffffff94;
  box-shadow: inset 2px 2px 7px rgb(136 136 136 / 17%);
  transition: background .2s;
}
.lang-toggle:hover,
.lang-switch.open .lang-toggle {
  background: rgba(255, 255, 255, 0.28);
}
.lang-flag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}
.lang-flag-wrap.sm {
  width: 22px;
  height: 22px;
  box-shadow: 0 0 0 1px #ddd;
}
.lang-flag {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  z-index: 40;
}
.lang-option {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 9px 12px !important;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000 !important;
  transition: background .15s;
}
.lang-option:hover,
.lang-option.active {
  background: #fff3e8;
  color: #000 !important;
}

/* Hero search — matched to davidpizza.de */
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px;
  transform: translateY(50%);
  pointer-events: none;
}
.hero-content .search-box {
  pointer-events: auto;
}

.search-box {
  width: 100%;
  max-width: 85%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 30px 25px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 2px 2px 7px rgb(0 0 0 / 17%);
  border: 1px solid #ffffff94;
}

.search-container {
  background: #fff;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 80%;
  border: 1px solid #afafaf;
  position: relative;
}

.postal-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
}

.postal-wrap input {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 40px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 110-5 2.5 2.5 0 010 5z'/%3E%3C/svg%3E") no-repeat 14px center;
  background-size: 26px 26px;
  height: 72px;
  padding: 0 12px 0 3rem;
}

.postal-wrap input::placeholder {
  color: #888;
}

.dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  max-height: 260px;
  overflow-y: auto;
  z-index: 30;
  padding: 8px 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font);
  font-size: 13px;
  color: #000;
  padding: 10px 18px;
  transition: background 0.15s;
}

.dropdown-item:hover {
  background: #fff3e8;
  color: #000;
}

.dropdown-item.hidden {
  display: none;
}

.btn-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #f36805;
  cursor: pointer;
  font-family: var(--font);
  background: #f36805;
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.7rem;
  min-width: 155px;
  height: 64px;
  text-transform: capitalize;
  transition: all 0.3s ease;
  box-shadow: none;
  text-decoration: none !important;
  box-sizing: border-box;
}
a.btn-action,
a.btn-action:hover,
a.btn-action:focus {
  color: #fff;
  text-decoration: none !important;
}

.search-container .btn-action {
  height: 64px;
  min-height: 64px;
}

.takeaway-btn {
  margin-left: 15px;
  border-radius: 40px;
  padding: 12px 22px;
  height: 64px;
}

.btn-action:hover {
  background: transparent;
  color: #000;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.takeaway-btn:hover {
  background: #fff !important;
  color: #000;
}

.btn-action .btn-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.btn-action .btn-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.95;
  margin-top: 2px;
}

.slider-dots {
  display: none !important;
}

/* Shared section bits */
.subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
  color: #000;
}
.pattern-image img {
  width: 130px;
  max-width: 100%;
  margin: 0 auto;
}
.separator { width: 120px; height: auto; margin: 0 auto; }
section h1, section h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-align: center;
  margin-bottom: 20px;
}

/* Story — matched to davidpizza.de */
.story-section {
  padding: 9rem 0 5.5rem;
  background: #fff;
  overflow: visible;
}
.story-section .container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}
.story-text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.story-text .subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 0 0.5rem;
  gap: 8px;
}
.story-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  margin: 0.4rem 0 1.15rem !important;
  line-height: 1.3;
}
.story-copy {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.75rem 0 !important;
  padding: 0 5px 0 12px !important;
  text-align: justify !important;
  text-justify: inter-word;
  color: #000 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  hyphens: auto;
  scrollbar-width: thin;
  scrollbar-color: #000 #fff;
}
.story-copy::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: #fff;
}
.story-copy::-webkit-scrollbar-track {
  border-radius: 0;
  background: #fff;
}
.story-copy::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #000;
}
.story-copy::-webkit-scrollbar-button {
  display: none;
}
.story-text .phone-btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}
.pattern-image {
  display: flex;
  justify-content: center;
  width: 100%;
}
.phone-btn {
  display: block !important;
  width: fit-content;
  height: 42px;
  margin-top: 1rem;
  padding: 0 22px;
  background: #000;
  border: 0;
  border-radius: 50px;
  color: #fff !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: background 0.2s ease;
  line-height: 0;
}
.phone-btn-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  line-height: 0;
}
.phone-btn-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  line-height: 42px;
  height: 42px;
  color: #fff;
  white-space: nowrap;
  vertical-align: middle;
}
.phone-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  width: 14px;
  height: 14px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  top: 0;
}
.phone-btn:hover {
  background: #222;
}

.overview-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  transform: none;
}
.story-visual-inner {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: 0;
}
.story-image {
  width: 520px;
  max-width: 100%;
  height: 370px;
  margin: 0;
}
.story-image .magic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 17px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.story-image .magic-img:hover {
  transform: scale(0.96);
}
.story-bottom-image {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 179px;
  height: 210px;
  z-index: 2;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.story-bottom-image .magic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 12px 14px,
    rgba(0, 0, 0, 0.22) 0px 8px 10px;
}

/* App section — matched to davidpizza.de */
.app-section {
  padding: 5.5rem 0 1.5rem;
  background: #fff;
  overflow: hidden;
  text-align: center;
}
.app-section .container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.app-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  transform: none !important;
  left: auto;
  right: auto;
  position: relative;
}
.app-heading {
  width: min(720px, 100%);
  margin: 0 auto 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.app-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center;
  margin: 0 0 6px;
  width: 100%;
}
.app-lead {
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0 auto 0;
  max-width: 720px;
  width: 100%;
}
.download-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  flex-wrap: wrap;
}
.download-links a {
  display: inline-flex;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  margin-right: 1.5rem;
}
.download-links a:last-child {
  margin-right: 0;
}
.download-links a:hover {
  transform: scale(1.08);
  box-shadow: 0 0 7px #861212;
}
.store-badge {
  height: 58px;
  width: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.35);
}

.app-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto 0;
  gap: 36px;
  text-align: left;
}
.app-qr-col {
  width: auto;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  margin: 0;
}
.app-qr-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.2rem 1.6rem 1.4rem;
  background: url('https://www.davidpizza.de/assetsNew/images/phonepc.webp') center / cover no-repeat;
  width: 100%;
  max-width: 240px;
  border: 3px solid #000;
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  box-sizing: border-box;
}
.app-qr-card::before,
.app-qr-card::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2.5px solid #000;
  border-radius: 46px 46px 0 0;
  filter: drop-shadow(rgba(101, 109, 252, 0.46) 0px 3px 45px);
  animation: growFadeOutOuter 2.5s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
  box-sizing: border-box;
}
.app-qr-card::after {
  animation-delay: 0.9s;
}
.app-qr-link {
  display: block;
  line-height: 0;
}
.app-qr-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.app-qr-card p {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0.6rem 0 0;
  color: #000;
}

.app-phone-col {
  display: none;
  position: relative;
  z-index: 1;
}
.app-phone-img {
  width: min(260px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
  animation: floatUpDown 3s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

.app-list-col {
  width: auto;
  flex: 0 1 auto;
  max-width: none;
  flex-shrink: 0;
  margin: 0;
  padding: 0.4rem 0 0;
  text-align: left;
}
.app-list-stores {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 14px;
}
.app-feature-list {
  position: relative;
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.app-feature-list::before {
  content: none;
  display: none;
}
.app-feature-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #000;
  position: relative;
  z-index: 1;
  padding: 6px 0;
  margin: 0;
  min-height: 32px;
  gap: 0;
  white-space: nowrap;
}
.app-feature-list li::before {
  content: "";
  min-width: 28px;
  width: 28px;
  height: 28px;
  margin-right: 0.5rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cg fill='%239a9a9a'%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4'/%3E%3Crect x='12.5' y='23' width='3' height='4' rx='0.4'/%3E%3Crect x='1' y='12.5' width='4' height='3' rx='0.4'/%3E%3Crect x='23' y='12.5' width='4' height='3' rx='0.4'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(22.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(45 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(67.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(112.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(135 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(157.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(202.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(225 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(247.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(292.5 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(315 14 14)'/%3E%3Crect x='12.5' y='1' width='3' height='4' rx='0.4' transform='rotate(337.5 14 14)'/%3E%3Ccircle cx='14' cy='14' r='5.2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 28px 28px;
}
.app-feature-list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 3px;
  min-width: 3px;
  height: auto;
  background: repeating-linear-gradient(
    to bottom,
    #9a9a9a 0,
    #9a9a9a 3px,
    transparent 3px,
    transparent 7px
  );
  border-radius: 0;
  position: absolute;
  left: 12.5px;
  top: calc(50% + 15px);
  bottom: -8px;
  transform: none;
}
.app-feature-list li:last-child::after {
  content: none;
  display: none;
}

@keyframes growFadeOutOuter {
  0% { transform: scale(1); opacity: 1; border-radius: 46px 46px 0 0; }
  100% { transform: scale(1.18); opacity: 0; border-radius: 46px 46px 0 0; }
}
@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Scroll reveal — like davidpizza.de */
.anim.bounce-left,
.anim.bounce-right,
.anim.bounce-top,
.anim.bounce-bottom,
.anim:not([class*="bounce-"]) {
  opacity: 0;
  visibility: hidden;
  transition: all 1s ease-out;
}
.anim.bounce-left { transform: translate3d(-200px, 0, 0); }
.anim.bounce-right { transform: translate3d(200px, 0, 0); }
.anim.bounce-top { transform: translate3d(0, 120px, 0); transition-duration: 2s; }
.anim.bounce-bottom { transform: translate3d(0, -120px, 0); }
.anim.in-view {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
/* Specialties — matched to davidpizza.de chefChoices */
.specialties-section {
  padding: 0.75rem 0 1.5rem;
  background: #fff;
}
.specialties-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.subtitle-accent {
  color: #000;
}
.specialties-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center;
  margin: 0.75rem 0 0;
}

/* Hours — matched to davidpizza.de timingSection.deliveryTime */
.hours-section {
  position: relative;
  z-index: 1;
  padding: 3rem 0 1.75rem;
  overflow: hidden;
  background: #861212;
}
.hours-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.hours-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px) saturate(140%);
  z-index: -1;
  pointer-events: none;
}
.hours-heading {
  position: relative;
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0 16px;
}
.subtitle-on-video {
  color: #000 !important;
  text-shadow: none;
}
.hours-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center;
  margin: 0.75rem 0 0;
  text-shadow: none;
}
.hours-section .container {
  width: min(1920px, 100%);
  max-width: none;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.hours-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 18px 16px 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: inset 8px 9px 18px rgb(136 136 136 / 45%);
  border-radius: 16px;
  box-sizing: border-box;
}
.hours-head {
  display: none;
  grid-template-columns: 26% 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 4px 12px 14px 52px;
  color: #000 !important;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  box-sizing: border-box;
}
.hours-head > span {
  min-width: 0;
}
.hours-head strong {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #000 !important;
  justify-self: stretch;
}
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timing-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  padding: 6px 12px 6px 52px;
  display: grid;
  grid-template-columns: 26% 1fr 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.timing-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  width: auto;
  min-width: 0;
  position: relative;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
.timing-card h3::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  position: absolute;
  border-radius: 50px;
  left: -28px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.timing-card h3::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  border-radius: 50px;
  left: -33px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  background-color: #1a1a1a;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.timing-card p {
  margin: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-align: center;
  justify-self: stretch;
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
  line-height: 1.35;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.timing-mobile-label {
  display: none;
}
.timing-card.box {
  color: #fff;
  overflow: visible;
  border: 0;
}
.timing-card.box p {
  background: #ff5900;
  border-color: #ff5900;
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 89, 0, 0.35);
}
.timing-card.box h3 {
  color: #000;
}
.timing-card.box h3::after {
  background-color: #ff5900;
  animation: blinkyellow 2s infinite;
  left: -33px;
}
.timing-card.box h3::before {
  left: -28px;
}
@keyframes blinkyellow {
  0% { box-shadow: 0 0 0 0 #f368058a; }
  70% { box-shadow: 0 0 0 10px #f368058a; }
  100% { box-shadow: 0 0 18px #f368058a; }
}

@media (min-width: 768px) {
  .hours-head { display: grid; }
  .timing-mobile-label { display: none !important; }
}

@media (max-width: 767px) {
  .hours-section .container {
    width: min(100%, 98%);
  }
  .hours-panel {
    width: 100%;
    max-width: none;
    padding: 14px 12px;
  }
  .timing-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 14px 14px 52px;
  }
  .timing-card h3 {
    width: 100%;
  }
  .timing-card h3::before { left: -26px; }
  .timing-card h3::after { left: -31px; }
  .timing-card.box h3::before { left: -26px; }
  .timing-card.box h3::after { left: -31px; }
  .timing-card p {
    width: 100%;
    min-width: 0;
    white-space: normal;
    font-size: 13px;
    text-align: left;
    padding: 0.45rem 1rem;
  }
  .timing-mobile-label {
    display: inline;
  }
  .specialties-title,
  .hours-title,
  .map-title {
    font-size: 22px !important;
  }
}
/* Map / contact — matched to davidpizza.de mapAddressBox */
.map-section {
  padding: 1.25rem 15px 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
.map-heading {
  text-align: center;
  margin-bottom: 0.5rem;
}
.map-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center;
  margin: 0.75rem 0 0;
}
.map-section .container {
  width: 100%;
  max-width: none;
  display: flex;
  justify-content: flex-start;
  padding-left: 48px;
  padding-right: 80px;
  box-sizing: border-box;
  overflow: visible;
}
.map-address-wrap {
  width: 1038px;
  max-width: 100%;
  margin: 0 auto 0 0;
  padding: 20px 0 30px;
  box-sizing: border-box;
  overflow: visible;
}
.map-address-section {
  background: transparent;
  border-radius: 20px;
  width: 100%;
  position: relative;
  overflow: visible;
}
.map-top {
  flex: 1 0 0;
  max-width: 100%;
}
.map-container {
  width: 100%;
  height: 462px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgb(0 0 0 / 24%);
}
.map-container iframe {
  display: block;
  width: 100% !important;
  height: 462px !important;
  border: 0;
}
.map-bottom {
  width: 44%;
  max-width: 420px;
  min-width: 320px;
  position: absolute;
  top: 50%;
  right: -18%;
  border-radius: 15px;
  transform: translateY(-50%);
  background: #fff;
  z-index: 5;
}
.map-section .contact-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 15px;
  color: #000;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  transition: box-shadow 0.7s ease;
}
.map-section .contact-card:hover {
  box-shadow: rgba(14, 30, 37, 0.12) 0 2px 4px, rgba(14, 30, 37, 0.32) 0 2px 16px;
}
.map-section .contact-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #000;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}
.map-section .info-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: none;
  padding: 0;
  transition: all 0.7s ease;
}
.map-section .info-box:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.map-section .info-box i {
  font-size: 24px;
  color: #000;
  width: auto;
  text-align: center;
  flex-shrink: 0;
}
.map-section .info-box:last-child i {
  font-size: 28px;
}
.map-section .info-text {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  width: calc(100% - 30px);
}
.map-section .info-text a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  width: fit-content;
  position: relative;
  text-align: left;
}
.map-section .info-text a::after {
  content: "";
  width: 0;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 1s ease;
}
.map-section .info-box:hover .info-text a::after {
  width: 100%;
}

/* Inner pages */
.page-hero {
  min-height: 42vh; flex-direction: column; padding: 0 0 48px;
}
/* About banner — match davidpizza.de/about-us */
.about-hero.page-hero {
  min-height: 55vh;
  height: 55vh;
  max-height: none;
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.about-hero .header-slide img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
}
.about-hero .header-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
.about-hero .page-hero-title.about-banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 126px;
  transform: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px) !important;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #fff;
  text-shadow: 4px 4px 14px #000;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  z-index: 5;
}
/* Contact banner — scrolling images like davidpizza.de/contact */
.contact-hero.page-hero {
  min-height: 55vh;
  height: 55vh;
  max-height: none;
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.contact-hero .header-slide img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
}
.contact-hero .header-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
.contact-hero .page-hero-title.contact-banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 9rem;
  bottom: auto;
  transform: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px) !important;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #fff;
  text-shadow: 4px 4px 14px #000;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  z-index: 5;
}
/* Reviews banner — scrolling images like davidpizza.de/reviews */
.reviews-hero.page-hero {
  min-height: 55vh;
  height: 55vh;
  max-height: none;
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.reviews-hero .header-slide img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
}
.reviews-hero .header-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
.reviews-hero .page-hero-title.reviews-banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 126px;
  transform: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px) !important;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #fff;
  text-shadow: 4px 4px 14px #000;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  z-index: 5;
}
.page-hero-title {
  position: relative; z-index: 5;
  width: min(1140px, 92%); margin: auto auto 0;
  color: #fff; font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
/* Gallery banner — taller header, title lower */
.gallery-hero.page-hero {
  min-height: 62vh;
  height: 62vh;
  max-height: none;
  padding: 0;
  justify-content: flex-start;
  overflow: hidden;
}
.gallery-hero .header-slide img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
}
.gallery-hero .header-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
.page-hero-title.gallery-banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 70px;
  transform: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(36px, 6vw, 60px) !important;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: normal;
  color: #fff;
  text-shadow: 4px 4px 14px #000;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
  z-index: 5;
}

/* Terms / AGB banner — match davidpizza.de/agb (straight, pizza slice visible) */
.legal-nav.site-header {
  min-height: 0 !important;
  height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0;
  overflow: visible !important;
  background: transparent;
}
.legal-nav .header-overlay,
.legal-nav .order-overlay {
  display: none;
}
.terms-banner {
  background-color: #1a1210;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  width: 100%;
  height: 380px;
  min-height: 380px;
  overflow: hidden;
}
/* Slice banner — pizza crop for legal / section pages */
.terms-banner.slice-banner,
.terms-banner.agb-banner {
  background-position: 58% 2%;
  background-size: cover;
}
.terms-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
  z-index: 0;
  pointer-events: none;
}
.terms-banner-text {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 16px;
  margin: 0;
  box-sizing: border-box;
}
/* Rechtliches / section titles — sit a bit lower on the pizza banner */
.terms-banner.slice-banner .terms-banner-text {
  margin-top: 72px;
}
.terms-banner .page-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px !important;
  font-weight: 800;
  text-transform: capitalize;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  text-shadow: 7px 9px 20px #000;
  width: 100%;
  margin: 0;
  padding: 0;
  animation: tracking-in-contract 0.8s cubic-bezier(0.215, 0.610, 0.355, 1) both;
}
@keyframes tracking-in-contract {
  0% { letter-spacing: 1em; opacity: 0; }
  40% { opacity: 0.6; }
  100% { letter-spacing: normal; opacity: 1; }
}

/* Legal / terms pages — matched to davidpizza.de/terms */
.legal-content {
  padding: 1.25rem 0 2.5rem;
  background: #fff;
  text-align: left;
}
.legal-content .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  text-align: left;
}
.legal-box {
  max-width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
}
.legal-heading {
  display: block;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  margin: 0 0 6px;
  line-height: 1.35;
}
.legal-box p {
  display: block;
  color: #000 !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 0.85rem;
  max-width: none;
  text-align: left !important;
}
.legal-box .legal-note {
  margin-top: 0;
  margin-bottom: 0;
  text-align: left !important;
}
.legal-list {
  list-style: decimal;
  margin: 0;
  padding: 0 0 0 1.1rem;
  text-align: left;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}
.legal-list li {
  margin: 0 0 0.55rem;
  padding-top: 0 !important;
  padding-left: 0.15rem;
  text-align: left;
}
.legal-list li:last-child {
  margin-bottom: 0;
}
.legal-list li span {
  line-height: 1.55;
}
.legal-list strong {
  font-weight: 700;
  color: #000;
}
.legal-list a {
  color: #000;
  text-decoration: underline;
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
}

/* Order type page — matched to davidpizza.de/menu → order_type */
.order-header.site-header {
  min-height: 450px !important;
  height: 450px !important;
  max-height: 450px !important;
  padding: 0 !important;
  margin: 0;
  overflow: visible !important;
  display: block;
  background: transparent !important;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.order-header .top-bar,
.order-header .top-bar.is-sticky {
  background: #ff5900 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}
.order-header .main-nav {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}
.order-header .main-nav a,
.order-header .top-bar.is-sticky .main-nav a {
  color: #fff !important;
}
.order-header .main-nav a:hover,
.order-header .main-nav a.active,
.order-header .top-bar.is-sticky .main-nav a:hover,
.order-header .top-bar.is-sticky .main-nav a.active {
  color: #fff !important;
}
.order-header .lang-toggle,
.order-header .top-bar.is-sticky .lang-toggle {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}
.order-header .nav-toggle span,
.order-header .top-bar.is-sticky .nav-toggle span {
  background: #fff;
}
.order-banner {
  position: relative;
  display: block;
  z-index: 0;
  width: 100%;
  height: 450px;
  min-height: 450px;
  overflow: hidden;
  background: transparent;
}
.order-banner-img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
  pointer-events: none;
  transform: none;
}
.order-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
  z-index: 1;
  pointer-events: none;
}
.order-header .order-overlay,
.order-header .header-overlay.order-overlay {
  display: none;
}
.order-type-section {
  margin-top: -6rem;
  padding: 0 0 5rem;
  position: relative;
  z-index: 9;
  background: transparent;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.order-card {
  width: 100%;
  max-width: 80%;
  background: #fff;
  border-radius: 7px;
  padding: 30px 25px;
  box-shadow: rgba(0, 0, 0, 0.56) 2px 3px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: relative;
  z-index: 9;
  box-sizing: border-box;
}
.order-card-title {
  margin: 0 0 14px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.3;
}
.order-takeaway-btn {
  width: 100% !important;
  margin: 16px 0 0 !important;
  height: 64px !important;
  min-height: 64px !important;
  border-radius: 50px !important;
  padding: 0.65rem 1.5rem !important;
  background-color: #f36805 !important;
  border: 1px solid #f36805 !important;
}
.order-takeaway-btn:hover {
  background: #fff !important;
  color: #f36805 !important;
}
.order-takeaway-btn:hover .btn-title,
.order-takeaway-btn:hover .btn-sub,
a.order-takeaway-btn:hover {
  color: #f36805 !important;
}
.order-search {
  width: 100% !important;
  max-width: 100% !important;
  margin: 1rem 0 0 !important;
  padding: 5px !important;
}
.order-search .postal-wrap input {
  height: 64px;
  font-size: 15px;
}
.order-search .btn-action {
  height: 60px;
  min-height: 60px;
  min-width: 150px;
  padding: 0.65rem 1.5rem;
  background-color: #f36805 !important;
  border: 1px solid #f36805 !important;
}
.order-search .btn-title,
.order-takeaway-btn .btn-title {
  font-size: 15px;
}
.order-search .btn-sub,
.order-takeaway-btn .btn-sub {
  font-size: 11px;
}

/* About us page — matched to davidpizza.de/about-us */
.about-us-section {
  padding: 3rem 0 1.5rem;
  background: #fff;
  overflow: hidden;
}
.about-us-section .about-us-container.container,
.about-us-section .about-us-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 16px;
  padding-right: 12px;
  box-sizing: border-box;
}
.about-contact-section .about-us-container {
  width: min(1400px, 98%);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.about-us-grid {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  gap: 12px;
  align-items: start;
}
.about-us-grid--en {
  gap: 12px;
}
.about-us-text {
  text-align: left;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: none;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-us-text .subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin: 0 0 4px;
  width: 100%;
}
.about-us-text .subtitle {
  color: #000 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}
.about-us-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none;
  letter-spacing: 0;
  text-align: center !important;
  margin: 8px 0 10px !important;
  width: 100%;
  line-height: 1.3;
}
.about-us-scroll {
  position: relative;
  width: 100%;
  max-height: 300px;
  margin: 0;
  padding: 0;
}
.about-us-scroll.is-scrollable {
  padding-right: 0;
}
.about-us-section .about-us-copy,
.about-us-text .about-us-copy,
p.about-us-copy {
  color: #000 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  text-align: justify !important;
  text-justify: inter-word;
  text-align-last: left;
  max-height: 300px !important;
  height: auto !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: none;
  width: 100%;
  display: block;
  box-sizing: border-box;
  border-right: none;
  text-indent: 0 !important;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  white-space: normal !important;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.about-us-scroll.is-scrollable .about-us-copy {
  padding-right: 18px !important;
}
.about-us-copy::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.about-us-copy::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.about-us-scroll-bar {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: transparent;
  pointer-events: none;
  display: none;
}
.about-us-scroll.is-scrollable .about-us-scroll-bar {
  display: block;
}
.about-us-scroll--full {
  max-height: none;
}
.about-us-scroll--full .about-us-copy {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
  padding-right: 0 !important;
}
.about-us-scroll--full .about-us-scroll-bar {
  display: none !important;
}
.about-us-scroll-thumb {
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 50%;
  background: #000;
  border-radius: 0;
  pointer-events: none;
  will-change: transform, height;
}
.about-us-media {
  display: block;
  width: 100%;
  min-width: 0;
  align-self: start;
}
.about-us-image {
  width: 100%;
  max-width: none;
  height: 450px;
  margin: 0;
}
.about-us-image .magic-img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 20px;
  display: block;
  box-shadow:
    rgba(0, 0, 0, 0.3) 0px 19px 17px,
    rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.about-us-image .magic-img:hover {
  transform: scale(0.96);
}

.about-contact-section {
  padding: 1.25rem 0 3rem;
  background: #fff;
}
.about-contact-heading {
  text-align: center;
  margin: 0 auto 1.5rem;
  padding: 0 16px;
}
.about-contact-heading .subtitle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}
.about-contact-heading .subtitle {
  color: #000 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  line-height: 1.4;
  margin: 0;
}
.about-contact-heading .pattern-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.about-contact-heading .pattern-image img {
  width: 130px;
  max-width: 100%;
  margin: 0 auto;
}
.about-contact-title,
.about-contact-heading .about-contact-title,
h3.about-us-heading.about-contact-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  margin: 1rem 0 0 !important;
  line-height: 1.3;
  width: 100%;
}
.about-contact-section .about-us-container {
  width: min(1400px, 98%);
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.about-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
  align-items: stretch;
}
.about-contact-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
  width: 100%;
}
.about-contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background-color: #fff;
  border-radius: 20px;
  padding: 16px 28px;
  width: 100%;
  min-height: 0;
  height: 100%;
  border: 1px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: box-shadow 0.7s ease;
  box-sizing: border-box;
}
.about-contact-card:hover {
  box-shadow:
    rgba(14, 30, 37, 0.12) 0px 2px 4px 0px,
    rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
.about-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  flex-shrink: 0;
  order: -1;
}
.about-contact-icon i {
  font-size: 42px !important;
  color: #000 !important;
  line-height: 1;
}
.about-contact-info {
  width: calc(100% - 67px);
  text-align: left;
  flex: 1;
  min-width: 0;
  padding: 0;
  margin: 0;
}
.about-contact-info h4 {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  text-align: left !important;
  margin: 0 0 6px !important;
  text-transform: none !important;
  letter-spacing: 0;
  line-height: 1.3;
  font-family: 'Montserrat', sans-serif;
}
.about-contact-detail {
  display: block;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-align: left !important;
  line-height: 1.3;
  text-transform: none;
  text-decoration: none !important;
  word-break: break-word;
}

.page-content { padding: 70px 0; }
.page-content h2 { text-align: left; margin-bottom: 16px; }
.page-content p { color: var(--text-muted); max-width: 680px; margin-bottom: 14px; }

.gallery-page {
  padding: 2rem 0 3rem;
  background: #fff;
  min-height: 80px;
}

/* Contact page — matched to davidpizza.de/contact */
.contact-us-page {
  padding: 0 0 1rem;
  background: transparent;
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
}
.contact-us-container {
  width: min(1480px, 99%);
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 8px;
  padding-right: 8px;
  box-sizing: border-box;
}
.contact-us-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.contact-us-card-link {
  display: block;
  text-decoration: none !important;
  color: inherit;
  height: 100%;
}
.contact-us-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 240px;
  padding: 1.6rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1), -1px 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 1s ease, box-shadow 0.7s ease;
  box-sizing: border-box;
}
.contact-us-card:hover {
  transform: scale(1.08);
}
.contact-us-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  border: 1px solid #000;
  margin-bottom: 1rem;
}
.contact-us-icon i {
  font-size: 42px !important;
  color: #000 !important;
  line-height: 1;
}
.contact-us-info {
  width: 100%;
  text-align: center;
}
.contact-us-info h4 {
  color: #000 !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-align: center !important;
  margin: 0 0 8px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-family: 'Montserrat', sans-serif;
}
.contact-us-info p {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-align: center !important;
  margin: 0 !important;
  line-height: 1.4;
}

.contact-form-section {
  padding: 2rem 0 1.5rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.contact-form-heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.contact-form-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin: 0 0 8px !important;
  line-height: 1.3;
}
.contact-form-note {
  color: #000 !important;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: stretch;
}
.contact-form-wrap {
  width: 100%;
  min-width: 0;
}
.contact-form-card {
  flex: 1 1 auto;
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 100%;
}
.contact-page-form {
  display: block;
  width: 100%;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form-group {
  margin-bottom: 12px;
  width: 100%;
}
.contact-form-group label {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.contact-page-form input,
.contact-page-form textarea {
  display: block;
  width: 100%;
  margin: 3px 0 0;
  padding: 14px 14px;
  min-height: 48px;
  background: transparent;
  color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  box-sizing: border-box;
  outline: none;
}
.contact-page-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: #000;
}
.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
  color: #666;
}
.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 12px 20px;
  min-width: 175px;
  border: 0;
  border-radius: 10px;
  background: #f36805;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.contact-submit-btn:hover {
  background: #d95a00;
  opacity: 1;
}
.contact-form-success {
  color: #f36805;
  font-weight: 600;
  font-size: 16px;
}

.contact-hours-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 9px #bebdbd;
  padding: 14px 18px 0;
  margin: 0;
  border-radius: 10px;
  border: 1px solid #fff;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  z-index: 1;
}
.contact-hours-head {
  text-align: center;
  margin-bottom: 0.5rem;
  width: 100%;
}
.contact-hours-head .subtitle {
  color: #000 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
  display: block;
}
.contact-hours-head .pattern-image {
  display: flex;
  justify-content: center;
  margin: 6px 0;
}
.contact-hours-head .pattern-image img {
  width: 120px;
  max-width: 100%;
}
.contact-hours-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-align: center !important;
  margin: 0.35rem 0 0.55rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  width: 100%;
  line-height: 1.25;
}
.contact-hours-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.17);
  box-sizing: border-box;
}
.contact-hours-row:last-child {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.17);
}
.contact-hours-day {
  flex: 0 0 auto;
  text-align: left;
  color: #000;
  font-weight: 500;
}
.contact-hours-time {
  flex: 1 1 auto;
  text-align: right;
  color: #000;
  font-weight: 500;
}
.contact-hours-time .time-text {
  display: block;
  text-align: right !important;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
}
.contact-hours-logo {
  display: flex;
  opacity: 1;
  height: 72px;
  width: auto;
  margin: auto auto 0.6rem;
  object-fit: contain;
}

.contact-map-section {
  padding: 0 15px 3rem;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.contact-map-section .contact-us-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact-map-frame {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.24);
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

.reviews-page {
  padding: 1rem 0 2rem;
  background: #fff;
}
.reviews-container {
  width: min(1400px, 96%);
  margin: 0 auto;
  box-sizing: border-box;
}
.reviews-heading {
  text-align: center;
  margin-bottom: 0;
}
.reviews-subtitle {
  display: block;
  color: #000 !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 4px;
  text-transform: uppercase;
}
.reviews-heading .pattern-image {
  display: flex;
  justify-content: center;
  margin: 2px 0;
}
.reviews-heading .pattern-image img {
  width: 130px;
  max-width: 100%;
}
.reviews-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 28px !important;
  font-weight: 600 !important;
  color: #000 !important;
  text-align: center !important;
  margin: 0.15rem 0 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2;
}
.review-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0.15rem 0 0.75rem;
  gap: 0;
}
.review-rating strong {
  font-size: 30px;
  font-weight: 700;
  color: #000 !important;
  line-height: 1.1;
  margin: 0;
}
.review-rating .stars {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2px;
  justify-content: center;
  align-items: center;
  margin: 0;
  line-height: 1;
}
.review-rating .stars span {
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.review-rating p {
  margin: 0;
  font-size: 16px;
  color: #000 !important;
  line-height: 1.2;
}
.review-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 96%;
  margin: 0 auto;
  gap: 16px;
  box-sizing: border-box;
}
.review-item {
  width: calc(50% - 8px);
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #fff;
  box-sizing: border-box;
}
.review-detail {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.review-item .detail h3 {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}
.review-item .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.review-item .rating .stars {
  display: flex;
  gap: 1px;
  align-items: center;
}
.review-detail img {
  width: 30px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}
.review-item > p {
  margin: 0.25rem 0 0.15rem;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  max-width: none !important;
}
.review-item > strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #000;
  margin-top: 0;
}

.contact-form { display: grid; gap: 16px; max-width: 520px; margin-top: 24px; }
.contact-form input, .contact-form textarea {
  font-family: var(--font); font-size: 14px; padding: 14px 18px;
  border: 1px solid #ddd; border-radius: 12px; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.btn-submit {
  justify-self: start; background: var(--orange); color: #fff; border: none;
  font-family: var(--font); font-weight: 700; font-size: 14px;
  padding: 14px 36px; border-radius: var(--radius-pill); cursor: pointer;
}
.btn-submit:hover { background: var(--orange-hover); }

/* Footer — matched to davidpizza.de */
.site-footer {
  background: #fcf9f8;
  padding: 40px 24px 0;
  font-size: 16px;
  color: #343232;
  position: relative;
  box-shadow: 0 0 5px #fff;
  transition: transform 0.6s ease;
}
/* resting at the bottom nudges the whole footer up, then it drops back quickly */
.site-footer.is-lifted {
  animation: footerNudge 2.6s ease-in-out 1;
}
@keyframes footerNudge {
  0% { transform: translateY(0); }
  22% { transform: translateY(-60px); }
  42% { transform: translateY(-60px); }
  52% { transform: translateY(0); }
  100% { transform: translateY(0); }
}
.site-footer .container {
  width: min(1280px, 100%);
  margin-left: 0;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 24px;
  box-sizing: border-box;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  align-items: flex-start;
}
.footer-col {
  padding: 0 18px;
  box-sizing: border-box;
}
.footer-col:first-child {
  flex: 1 1 32%;
  max-width: 32%;
  width: 32%;
  padding-left: 0;
  margin-left: 0;
}
.footer-col:nth-child(2) {
  flex: 1 1 20%;
  max-width: 20%;
  width: 20%;
  border-left: none;
  padding-left: 28px;
}
.footer-col:nth-child(3) {
  flex: 1 1 18%;
  max-width: 18%;
  width: 18%;
  border-left: none;
  padding-left: 28px;
}
.footer-col:last-child {
  flex: 1 1 26%;
  max-width: 26%;
  width: 26%;
  border-left: none;
  padding-left: 28px;
  padding-right: 0;
}
.footer-col h3,
.footer-col h4 {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
  font-family: 'Montserrat', sans-serif;
}
.footer-col address {
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #343232;
}
.footer-col a {
  color: #343232;
  display: block;
  padding: 0;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 1.3;
  text-decoration: none;
}
.footer-col a:hover {
  color: #080808;
  text-decoration: underline;
}
.btn-admin {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  background: #080808;
  color: #fcf9f8 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 11px 38px;
  height: 46px;
  border-radius: 50px;
  width: fit-content;
  min-width: 205px;
  border: 0;
  text-decoration: none !important;
  transition: background 0.2s;
  box-sizing: border-box;
}
.btn-admin:hover {
  background: #222;
  color: #fff !important;
  text-decoration: none !important;
}
.btn-admin i {
  font-size: 14px;
}
.footer-logo {
  height: auto;
  width: 100px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 4px;
  display: block;
}
.follow-label {
  font-weight: 500;
  color: #343232;
  margin-bottom: 4px;
  display: block;
  font-size: 16px;
}
.footer-col .app-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.footer-col .app-badges .store-img {
  display: block;
  width: 50%;
  max-width: 185px;
  border: 1px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}
.footer-col .app-badges .store-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.social-row {
  margin-top: 0;
}
.social-row > span {
  font-weight: 500;
  color: #343232;
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-icon {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #343232 !important;
  font-size: 18px;
  padding: 0;
  margin-bottom: 0 !important;
  transition: color 0.2s;
}
.social-icon:hover {
  border: none;
  color: #080808 !important;
  text-decoration: none !important;
}
.payment-row {
  margin-top: 8px;
}
.paypal-img {
  height: 22px;
  width: 52px;
  object-fit: contain;
}
.footer-bottom {
  border-top: 1px solid #343232;
  margin-top: 10px;
  padding: 12px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #343232;
}
.footer-bottom a {
  display: inline;
  color: #080808;
  margin-bottom: 0;
}
.footer-bottom a:hover {
  color: #080808;
  text-decoration: underline;
}

.back-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 50;
  width: 52px; height: 52px; border-radius: 50%;
  background: #fff; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: #111; font-size: 20px; transition: transform .2s, background .2s;
}
.back-top:hover { transform: scale(1.08); background: #f4f4f4; color: #111; }
/* menu page keeps the orange button */
.page-menu .back-top {
  background: #f36805;
  color: #fff;
  box-shadow: 0 4px 18px rgba(243, 104, 5, 0.35);
}
.page-menu .back-top:hover { background: #e05e00; color: #fff; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid #ffffff94; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: inset 2px 2px 7px rgb(136 136 136 / 17%);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; z-index: 20;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #111; border-radius: 2px; }

/* Responsive */
@media (max-width: 992px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-us-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-us-text {
    max-width: none;
  }
  .about-us-image {
    width: 100%;
    max-width: none;
    height: 360px;
    margin: 0;
  }
  .about-us-image .magic-img {
    border-radius: 20px;
  }
  .about-us-media {
    width: 100%;
  }
  .about-us-section .about-us-container {
    padding-right: clamp(16px, 4vw, 48px);
  }
  .about-hero .page-hero-title.about-banner-title {
    top: auto;
    bottom: 80px;
    font-size: clamp(32px, 8vw, 52px) !important;
  }
  .contact-hero .page-hero-title.contact-banner-title {
    top: 9rem;
    bottom: auto;
    font-size: clamp(32px, 8vw, 52px) !important;
  }
  .reviews-hero .page-hero-title.reviews-banner-title {
    top: auto;
    bottom: 80px;
    font-size: clamp(32px, 8vw, 52px) !important;
  }
  .page-hero-title.gallery-banner-title {
    top: auto;
    bottom: 48px;
    font-size: clamp(32px, 8vw, 52px) !important;
  }
  .about-contact-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-us-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .contact-us-page {
    margin-top: -1.5rem;
  }
  .contact-us-card {
    height: 230px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-hours-time {
    white-space: normal;
    text-align: right;
  }
  .contact-hours-row {
    font-size: 13px;
  }
  .overview-image {
    justify-content: center;
    margin-top: 3rem;
    order: -1;
    transform: none;
  }
  .story-image {
    width: 100%;
    max-width: 420px;
    height: 320px;
    margin: 0 auto;
  }
  .story-visual-inner {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .story-bottom-image {
    left: -42%;
    bottom: -60px;
    width: 180px;
    height: 200px;
    padding-bottom: 0;
  }
  .map-address-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 12px 16px 24px;
  }
  .map-address-section {
    width: 100%;
  }
  .map-bottom {
    width: 100%;
    max-width: none;
    min-width: 0;
    position: static;
    transform: none;
    margin-top: 16px;
  }
  .map-container,
  .map-container iframe {
    height: 320px !important;
  }
  .footer-grid {
    flex-wrap: wrap;
    gap: 28px 0;
  }
  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:last-child {
    flex: 1 1 45%;
    max-width: 48%;
    width: 48%;
    border-left: none;
    padding: 0 12px;
  }
  .footer-col:nth-child(2),
  .footer-col:last-child {
    border-left: none;
  }
}

@media (min-width: 1200px) {
  .story-bottom-image {
    width: 290px;
    height: 290px;
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .top-bar { padding: 0 10px 0 8px; height: 64px; }
  .logo-link { height: 64px; align-self: flex-start; margin: 0; padding: 0; top: 0; }
  .logo-link img { height: 64px; margin: 0; padding: 0; top: 0; }
  .terms-banner {
    height: 260px;
    min-height: 260px;
  }
  .terms-banner.slice-banner,
  .terms-banner.agb-banner {
    background-position: 58% 2%;
  }
  .terms-banner.slice-banner .terms-banner-text {
    margin-top: 40px;
  }
  .terms-banner .page-hero-title {
    font-size: 25px !important;
  }
  .review-list {
    width: 97%;
    gap: 16px;
  }
  .review-item {
    width: calc(50% - 8px);
    padding: 22px 18px;
  }
  .review-item > p {
    font-size: 13px;
  }
  .review-rating strong {
    font-size: 22px;
  }
  .reviews-title {
    font-size: 22px !important;
  }
  .legal-heading {
    font-size: 16px !important;
  }
  .legal-box p {
    font-size: 15px;
  }
  .main-nav, .lang-switch { margin-top: 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav {
    position: absolute; top: 76px; left: 14px; right: 14px;
    flex-direction: column; padding: 12px;
    height: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s, transform .25s, visibility .25s;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid #ffffff94;
    border-radius: 20px;
    box-shadow: inset 2px 2px 7px rgb(136 136 136 / 17%);
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    background: #ff5900;
    border-color: transparent;
    box-shadow: none;
  }
  .main-nav.open a {
    color: #fff !important;
  }
  .main-nav.open a:hover,
  .main-nav.open a.active {
    background: rgba(255, 255, 255, 0.22);
    color: #fff !important;
  }
  .top-bar.is-sticky .main-nav.open {
    background: #ff5900;
  }
  .main-nav a {
    height: auto;
    padding: 12px 26px;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .lang-switch {
    height: auto;
  }
  .lang-toggle {
    height: 44px;
    min-height: 44px;
    padding: 0.35rem 0.9rem;
  }
  .lang-switch { order: 3; margin-left: auto; }
  .search-box {
    max-width: 100%;
    flex-direction: column;
    border-radius: 10px;
    padding: 20px 16px;
  }
  .search-container {
    max-width: 100%;
    flex-direction: column;
    border-radius: 20px;
    gap: 8px;
  }
  .search-container .btn-action,
  .takeaway-btn {
    width: 100%;
    margin-left: 0;
  }
  .postal-wrap input {
    height: 64px;
  }
  .btn-action,
  .search-container .btn-action,
  .takeaway-btn {
    height: 58px;
    min-height: 58px;
  }
  .dropdown-list { left: 0; right: 0; }
  .footer-grid {
    flex-direction: column;
    gap: 28px;
  }
  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:last-child {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    border-left: none;
    padding: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    font-size: 14px;
  }
  .map-container,
  .map-container iframe {
    height: 220px !important;
  }
  .map-section .contact-card h3 {
    font-size: 14px;
  }
  .map-section .info-text a {
    font-size: 13px;
  }
  .order-type-section {
    margin-top: -4rem;
    padding: 0 12px 3rem;
  }
  .order-card {
    max-width: 100%;
    padding: 22px 16px 18px;
  }
  .order-card-title {
    font-size: 22px !important;
  }
  .order-search {
    flex-direction: column;
    border-radius: 20px;
  }
  .order-search .btn-action,
  .order-takeaway-btn {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .order-header.site-header {
    min-height: 350px !important;
    height: 350px !important;
    max-height: 350px !important;
  }
  .order-header.site-header {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .order-banner {
    height: 350px;
    min-height: 350px;
  }
  .order-banner-img {
    object-position: center center;
  }
  .app-phone-col {
    display: block;
    order: 2;
    width: 100%;
    margin: 1rem auto;
  }
  .app-body {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 24px;
  }
  .app-qr-col {
    width: 100%;
    max-width: 220px;
    order: 1;
    margin: 0 auto;
  }
  .app-list-col {
    width: 100%;
    max-width: 420px;
    order: 3;
    margin: 0 auto;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .app-feature-list {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .app-list-stores {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .app-heading {
    width: 100%;
  }
  .app-heading .download-links {
    display: none;
  }
  .app-feature-list li {
    font-size: 15px;
    white-space: normal;
  }
}

@media (max-width: 575px) {
  .reviews-hero.page-hero {
    min-height: 40vh;
    height: 40vh;
  }
  .gallery-hero.page-hero {
    min-height: 48vh;
    height: 48vh;
  }
  .review-item {
    width: 100%;
  }
}

/* Cookie banner — exact match davidpizza.de */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 8px max(8px, env(safe-area-inset-bottom, 0px));
  z-index: 100000;
}
#cookie-banner .popup-container {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 98% !important;
  max-width: 98% !important;
  height: auto;
  margin: 0 auto;
  padding: 1rem 1.5rem !important;
  border-radius: 10px !important;
  background: rgb(6 6 6 / 71%) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25) !important;
  box-sizing: border-box;
  z-index: 9999;
}
#cookie-banner .popup-container::after {
  content: none;
}
#cookie-banner .cross-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #f36805;
  border-radius: 50%;
  position: absolute;
  right: -6px;
  top: -8px;
  cursor: pointer;
  color: #fff;
  z-index: 2;
  line-height: 1;
  border: 0;
  padding: 0;
  overflow: hidden;
}
#cookie-banner .cross-icon svg {
  display: block;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
#cookie-banner .cookie-content {
  width: calc(100% - 19%);
  text-align: left;
  margin: 0;
  padding: 0;
  min-width: 0;
}
#cookie-banner .popup-container h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 0.25rem;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  text-align: left;
}
#cookie-banner .popup-container p {
  display: block;
  color: #ffffff;
  line-height: 1.4;
  font-size: 16px;
  text-align: left;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
#cookie-banner .popup-container p a {
  display: inline;
  margin: 0 0.2rem;
  color: #0d6efd;
  text-decoration: underline;
}
#cookie-banner p #more {
  display: inline;
}
#cookie-banner p #dots {
  display: none;
}
#cookie-banner #readMore {
  display: none;
  background-color: transparent !important;
  border-color: transparent !important;
  border: 0;
  text-decoration: underline;
  padding: 0 !important;
  font-style: italic;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
}
#cookie-banner .arrowbtn.orange-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 175px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  border: 0;
  outline: 0;
  margin: 0;
  text-transform: capitalize;
  color: #ffffff !important;
  background-color: #f36805 !important;
  border-color: #f36805 !important;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease, visibility 0s;
  box-sizing: border-box;
  white-space: nowrap;
}
#cookie-banner .arrowbtn.orange-btn #arrow {
  width: 0;
  height: 20px;
  margin-left: 0.1rem;
  overflow: hidden;
  transition: all 0.2s ease, visibility 0s;
  flex-shrink: 0;
}
#cookie-banner .arrowbtn.orange-btn:hover #arrow {
  width: 20px;
}

@media (max-width: 1024px) {
  #cookie-banner p #more {
    display: none;
  }
  #cookie-banner p #dots {
    display: inline;
  }
  #cookie-banner #readMore {
    display: inline-block;
  }
  #cookie-banner.cookie-expanded p #more {
    display: inline;
  }
  #cookie-banner.cookie-expanded p #dots {
    display: none;
  }
}

@media (max-width: 768px) {
  #cookie-banner .popup-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 97% !important;
    max-width: 97% !important;
    padding: 1rem 0.5rem !important;
  }
  #cookie-banner .cookie-content {
    width: 100% !important;
  }
  #cookie-banner .arrowbtn.orange-btn {
    margin: 0.5rem 0 0 auto;
    min-width: 150px;
  }
}

@media (max-width: 575px) {
  #cookie-banner .popup-container {
    display: flex;
    flex-direction: column;
    width: 96.5% !important;
    max-width: 96.5% !important;
    padding: 1rem 0.8rem !important;
  }
  #cookie-banner .arrowbtn.orange-btn {
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    min-width: 150px;
    padding: 9px 10px;
    font-size: 13px;
  }
  #cookie-banner .popup-container h2 {
    margin-bottom: 1rem;
    font-size: 20px;
    padding-right: 160px;
  }
  #cookie-banner .popup-container p {
    font-size: 13px;
  }
  #cookie-banner .cookie-content {
    width: 100% !important;
  }
  #cookie-banner #readMore {
    font-size: 13px;
  }
}

/* ===== Decorative vertical glow lines — home only (davidpizza.de) ===== */
.glow-wrapper {
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 100%;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}
.glow-col {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 0;
}
.glow-col-left { left: 250px; }
.glow-col-right { right: 250px; }
.vertical-line,
.vertical-line2 {
  width: 0.5px;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  position: absolute;
  z-index: 0;
}
.glow,
.glow2 {
  width: 3px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #000, transparent);
  opacity: 1;
  position: absolute;
  left: -0.5px;
  z-index: 1;
}
.glow { animation: move-glow 15s linear infinite; }
.glow2 { animation: move-glow2 20s linear infinite; }
@keyframes move-glow {
  0% { top: -100px; }
  100% { top: 100%; }
}
@keyframes move-glow2 {
  0% { top: -100px; }
  100% { top: 100%; }
}
/* Images / video / map block sit above glow lines; map heading stays under so lines show */
.site-header {
  z-index: 5;
}
.story-visual,
.overview-image,
.app-qr-col,
.app-phone-col,
.hours-section {
  position: relative;
  z-index: 4;
}
.map-section {
  position: relative;
  z-index: auto;
  background: #fff;
}
.map-heading {
  position: relative;
  z-index: 0;
}
.map-section .container,
.map-address-wrap,
.map-address-section {
  position: relative;
  z-index: 4;
  background: #fff;
}
.map-container {
  position: relative;
  z-index: 1;
}
.map-bottom {
  position: absolute;
  z-index: 5;
}
.map-section .contact-card {
  position: relative;
  z-index: 5;
}
@media (max-width: 1024px) {
  .glow-wrapper { display: none; }
}

/* Postal validation popup — davidpizza.de */
.new-popup {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100001;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.new-popup.show-new-popup {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.new-popup .popup-background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100001;
}
.new-popup .popup-container {
  position: relative;
  z-index: 100002;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 28px 24px 24px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  width: 400px;
  text-align: center;
  box-sizing: border-box;
}
.new-popup .popup-container::after {
  content: none;
}
#postalPopupMsg {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  margin: 0 0 18px;
}
.postal-popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  position: absolute;
  right: -8px;
  top: -8px;
  background: #f36805;
  border: 0;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.postal-popup-close svg {
  display: block;
  width: 11px;
  height: 11px;
}
.new-popup .popup-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  border: 0;
  margin: 0;
  cursor: pointer;
  color: #fff !important;
  background-color: #f36805 !important;
  font-family: 'Montserrat', sans-serif;
  text-transform: capitalize;
  transition: all 0.2s ease;
}
.new-popup .popup-ok #arrow {
  width: 0;
  height: 18px;
  margin-left: 0.1rem;
  overflow: hidden;
  transition: all 0.2s ease;
}
.new-popup .popup-ok:hover #arrow {
  width: 18px;
}

/* Custom cursor — golden ring with soft shine (no size zoom) */
.cursor-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #d28600;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 12px rgba(210, 134, 0, 0.45),
    0 0 27px rgba(206, 42, 42, 0.35);
  animation: cursorShine 2.4s infinite ease-in-out;
  display: none;
}
.cursor-effect.is-hover {
  box-shadow:
    0 0 16px rgba(210, 134, 0, 0.7),
    0 0 36px rgba(206, 42, 42, 0.5);
  background: rgba(210, 134, 0, 0.12);
}
@media (min-width: 992px) {
  .cursor-effect {
    display: block;
  }
}
@keyframes cursorShine {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(210, 134, 0, 0.35),
      0 0 22px rgba(206, 42, 42, 0.28);
  }
  50% {
    box-shadow:
      0 0 18px rgba(210, 134, 0, 0.75),
      0 0 36px rgba(206, 42, 42, 0.5);
  }
}

/* ===== Speisekarte / menu.php — matched to davidpizza.de/menu ===== */
.menu-header {
  min-height: 0;
  max-height: none;
  height: auto;
  background: #ff5900;
  box-shadow: none;
}
.menu-header .top-bar,
.menu-header .top-bar.is-sticky {
  position: relative;
  height: 70px;
  padding: 0 20px 0 14px;
  background: #ff5900 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}
.menu-header .logo-link {
  height: 70px;
  align-self: stretch;
}
.menu-header .logo-link img {
  height: 70px;
  max-height: 70px;
  filter: none;
}
.menu-header .main-nav {
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  gap: 2px;
}
.menu-header .main-nav a,
.menu-header .top-bar.is-sticky .main-nav a {
  color: #fff !important;
  background: transparent !important;
  border-radius: 0;
  padding: 0.45rem 0.95rem;
  position: relative;
}
.menu-header .main-nav a:hover,
.menu-header .main-nav a.active,
.menu-header .top-bar.is-sticky .main-nav a:hover,
.menu-header .top-bar.is-sticky .main-nav a.active {
  color: #fff !important;
  background: transparent !important;
}
.menu-header .main-nav a:hover::after,
.menu-header .main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.15rem;
  height: 2px;
  background: #fff;
}
.menu-header .lang-toggle,
.menu-header .top-bar.is-sticky .lang-toggle {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
.menu-header .lang-flag-wrap {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.menu-header .nav-toggle {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
  box-shadow: none;
}
.menu-header .nav-toggle span,
.menu-header .top-bar.is-sticky .nav-toggle span {
  background: #fff;
}
.menu-header .header-overlay {
  display: none;
}

.menu-page-wrap.menuWrapper {
  background: #eee;
  padding-bottom: 1rem;
  width: 100%;
  /* clip (not hidden) keeps the sticky sidebar pinned to the viewport */
  overflow-x: clip;
}
.menu-carousel {
  position: relative;
  width: 100%;
  max-height: 280px;
  overflow: hidden;
  background: #1a1210;
}
.menu-carousel-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}
.menu-carousel-slide {
  flex: 0 0 100%;
  max-height: 280px;
  overflow: hidden;
}
.menu-carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transform: scale(1);
}
.menu-carousel-slide.is-active img {
  animation: headerZoomIn 7s forwards;
}
.menu-carousel-btn {
  display: none;
}
.menu-carousel-dots {
  display: none;
}

.categoryOrderSection {
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.menu-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 24px 0 0;
  box-sizing: border-box;
}
.menu-container.menu-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.menuItem.menu-main {
  flex: 1 1 70%;
  width: 70%;
  min-width: 0;
  background: transparent;
  padding: 0;
}
.categoryBox {
  position: relative;
  margin: 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 0;
  overflow: visible;
}

/* Search bar — live sticky Info + search */
.searchBar.menu-toolbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 1rem 0;
  background: #fff;
  box-shadow: none;
  border-bottom: 1px solid #ececec;
  border-radius: 10px 10px 0 0;
  margin: 0;
  overflow: hidden;
}
.menuWrapper.toolbar-hidden .searchBar.menu-toolbar {
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  opacity: 0;
  pointer-events: none;
}
.aboutBtn.menu-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-shrink: 0;
  border: none;
  background: #f36805 !important;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.1rem 0.6rem !important;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 140px !important;
  flex: 0 0 140px;
  height: 46px;
  margin-left: 10px;
  position: static !important;
  text-transform: none;
  box-shadow: none;
}
.aboutBtn.menu-info-btn i {
  margin-right: 0;
  color: #fff;
  font-size: 15px;
}
.input-group.search.menu-search {
  flex: 0 0 calc(71% - 8px);
  width: calc(71% - 8px) !important;
  margin-left: auto;
  margin-right: 14px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  border: 1px solid #ced4da;
  border-radius: 50px;
  padding: 0.15rem 0.8rem 0.15rem 0.85rem;
  background: #fff;
  max-width: none;
  box-shadow: none;
}
.menu-search .search-icon {
  position: static;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  top: auto;
  left: auto;
  z-index: 1;
}
.menu-search .form-control,
.menu-search input {
  border: 0;
  outline: none;
  width: 100%;
  height: 38px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  color: #333;
}
.menu-search .form-control::placeholder,
.menu-search input::placeholder {
  color: #999;
}

/* Sidebar + items */
.categoryData.menu-body {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 0;
}
.leftSidebarMenu.menu-sidebar {
  width: 29%;
  flex: 0 0 29%;
  align-self: flex-start;
  position: sticky;
  top: var(--menu-sticky-top, 80px);
  left: 0;
  height: calc(100vh - var(--menu-sticky-top, 80px));
  max-height: calc(100vh - var(--menu-sticky-top, 80px));
  background: #fff;
  padding: 10px 0 20px;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c4c4c4 #f2f2f2;
  box-sizing: border-box;
  border-right: 1px solid #eee;
}
.leftSidebarMenu.menu-sidebar::-webkit-scrollbar {
  width: 8px;
}
.leftSidebarMenu.menu-sidebar::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 8px;
}
.leftSidebarMenu.menu-sidebar::-webkit-scrollbar-thumb {
  background: #c4c4c4;
  border-radius: 8px;
}
.leftSidebarMenu.menu-sidebar::-webkit-scrollbar-thumb:hover {
  background: #a9a9a9;
}
.leftSidebarMenu.menu-sidebar::-webkit-scrollbar-button {
  display: none;
}
.leftSidebarMenu.menu-sidebar h2 {
  font-weight: 600;
  font-size: 18px;
  color: #545353;
  text-transform: none;
  text-align: left;
  letter-spacing: 0;
  margin: 0 0 6px;
  padding: 0 12px 0 10px;
}
.leftSidebarMenu.menu-sidebar ul {
  list-style: none;
  padding: 0 12px 0 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.leftSidebarMenu.menu-sidebar li {
  padding: 0.5rem 0.85rem;
  margin-top: 0.4rem;
  min-height: 38px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a !important;
  border-radius: 50px;
  background: #efefef;
  line-height: 1.35;
  white-space: nowrap;
  overflow-wrap: normal;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.leftSidebarMenu.menu-sidebar li:hover {
  color: #fff !important;
  background: #f36805;
}
.leftSidebarMenu.menu-sidebar li.active {
  color: #fff !important;
  background-color: #f36805 !important;
  font-weight: 600;
  border-radius: 50px;
}
.content.menu-items {
  width: 71%;
  flex: 0 0 71%;
  min-width: 0;
  padding: 0 14px 32px;
  box-sizing: border-box;
  background: #fff;
  align-self: stretch;
}
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-section {
  scroll-margin-top: 100px;
  list-style: none;
  height: auto;
  padding: 0;
  background: #fff;
  margin-bottom: 0;
}
.menu-section:first-child .menuHeadingBox {
  margin-top: 10px;
}
.menuHeadingBox {
  padding: 10px 12px;
  border: 2px solid #ebebeb;
  border-radius: 15px;
  margin: 12px 0 10px;
  width: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  background: #fff;
  box-sizing: border-box;
  font-size: 1.15rem;
}
.menuHeadingBox h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
}
.categoryPic {
  width: 100%;
  margin: 0 0 8px;
  border-radius: 15px;
  overflow: hidden;
}
.categoryPic img {
  width: 100%;
  border-radius: 15px;
  height: 130px;
  object-fit: cover;
  display: block;
}

.menuBox {
  display: block;
  width: 100%;
  text-align: left;
  border: 2px solid #ebebeb;
  background: #fff;
  padding: 15px 12px;
  margin: 10px 0;
  border-radius: 15px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  font-family: var(--font);
  color: inherit;
  transition: 600ms;
  box-sizing: border-box;
  overflow: hidden;
}
.menuBox:hover {
  border-color: #e0e0e0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.menuBox.is-hidden { display: none; }
.menuBox-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.fisrtFlexBox {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.textPriceMenuItems {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}
.tooltipBox {
  flex-shrink: 0;
  cursor: pointer;
  font-size: 10px;
  border: 1px solid darkgray;
  background: #fff;
  margin-right: 0.5rem;
  color: #000;
  min-width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 0.25rem;
  font-weight: 700;
}
.menuName {
  display: block;
  color: #222;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  padding: 0 !important;
  line-height: 1.3;
}
.menuName img {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 6px;
  position: relative;
  top: -1px;
}
.menuPriceList {
  margin-top: 2px;
  width: 100%;
  line-height: 1;
}
.price-offer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.fs-18,
.price-now,
.price-offer .fs-18 {
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.redText {
  color: #ff6a00;
  font-weight: 700;
  font-size: 15px;
}
.price-was {
  text-decoration: line-through;
  color: #666;
  font-weight: 600;
  font-size: 15px;
}
.menuTextBreak {
  margin: 3px 0 0;
  font-size: 13.5px;
  font-weight: 300;
  color: #666;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discount-offer {
  margin: 5px 0 0;
  font-size: 0.85rem;
  color: #f36805;
  font-weight: 600;
  border: 1px solid #f36805;
  background: #fff7f0;
  border-radius: 50px;
  padding: 0.15rem 0.65rem;
  display: inline-block;
}
.secondFlexBox {
  flex-shrink: 0;
}
.dishImageBox {
  width: 100px;
  max-width: 100px;
  height: 100px;
  max-height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

/* Allergy info toggle — live */
.infoBtn {
  padding-bottom: 1rem;
}
.informationButton {
  text-align: center;
  margin: 20px 0;
}
#informationToggle {
  background: #1d7d74;
  color: #eee;
  border: none;
  border-radius: 7px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 15px;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px;
}
#informationToggle:hover {
  background: #196b64;
}
.infoParagraph {
  background: #fff;
  padding: 25px;
  margin: 30px auto;
  max-width: 75%;
  text-align: left;
  box-shadow: rgba(14, 63, 126, 0.06) 0 0 0 1px, rgba(42, 51, 70, 0.04) 0 2px 2px -1px, rgba(42, 51, 70, 0.03) 0 10px 10px -5px, rgba(42, 51, 70, 0.03) 0 24px 24px -8px;
  border-radius: 12px;
  font-size: 14px;
}
.infoParagraph ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}
.infoParagraph li {
  line-height: 1.6;
}

/* Cart column — live sticky */
.cartMenu {
  flex: 0 0 28%;
  width: 28%;
  max-width: none;
  min-width: 270px;
  height: fit-content;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-left: none;
  overflow: hidden;
  align-self: flex-start;
  position: sticky;
  top: 12px;
  margin: 12px 0 0 8px;
}
.cartMenu-inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: none;
  padding: 0.9rem 1.4rem 0.8rem;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.cart-eta {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
  color: #111;
  text-align: left;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}
.calendarBox,
.timeDropdown {
  margin-bottom: 0.75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.cartMenu .form-select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 0.55rem 2rem 0.55rem 0.9rem;
  font-family: var(--font);
  font-size: 0.85rem;
  background: #fff;
  color: #111;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.4 0.6L6 5.2 10.6 0.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px 7px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.menu-delivery-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  margin: 0.85rem 0 0.5rem;
  background: #efefef;
  border-radius: 50px;
  padding: 5px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.menu-toggle-option {
  cursor: pointer;
  min-width: 0;
  max-width: 100%;
}
.menu-toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.menu-toggle-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 0.4rem;
  text-align: left;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.4rem 0.35rem;
  background: transparent;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  color: #6f6f6f;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}
.menu-toggle-card i {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-size: 1.1rem;
  color: inherit;
}
.menu-toggle-card strong {
  grid-column: 2;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-toggle-card small {
  grid-column: 2;
  font-size: 0.68rem;
  line-height: 1.2;
  color: #9a9a9a;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-toggle-option input:checked + .menu-toggle-card {
  border-color: transparent;
  background: #fff;
  color: #f36805;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
}
.menu-toggle-option input:checked + .menu-toggle-card small {
  color: #f36805;
}
.menu-delivery-toggle.mobile-only { display: none; }
.cart-empty {
  text-align: left;
  color: #222;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0 0.7rem;
  margin: 0;
  border-bottom: 1px solid #e8e8e8;
}
.cart-lines {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
}
.cart-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: start;
  font-size: 0.88rem;
}
.cart-line-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.cart-line-qty button {
  width: 22px;
  height: 22px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  line-height: 1;
}
.cart-line-name { font-weight: 600; color: #222; }
.cart-line-price { font-weight: 700; white-space: nowrap; }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75rem 0;
  font-size: 1rem;
  font-weight: 700;
}
.btn-checkout {
  width: 100%;
  border: 0;
  border-radius: 50px;
  background: #f36805;
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
}
.btn-checkout:hover { background: #d95a00; }
.menu-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
  .menu-container.menu-layout {
    flex-wrap: wrap;
  }
  .menuItem.menu-main {
    flex: 1 1 100%;
    width: 100%;
  }
  .cartMenu {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    min-width: 0;
    position: static;
    order: -1;
  }
}
/* narrower screens: shrink the labels so long ones still fit on one line */
@media (max-width: 1300px) {
  .leftSidebarMenu.menu-sidebar li {
    font-size: 14px;
    padding: 0.5rem 0.7rem;
  }
}
@media (max-width: 1100px) {
  .leftSidebarMenu.menu-sidebar li {
    font-size: 12.5px;
    padding: 0.5rem 0.6rem;
  }
}
@media (max-width: 900px) {
  .leftSidebarMenu.menu-sidebar {
    width: 32%;
    flex: 0 0 32%;
  }
  .leftSidebarMenu.menu-sidebar li {
    font-size: 12px;
  }
  .content.menu-items {
    width: 68%;
    flex: 0 0 68%;
  }
}
@media (max-width: 768px) {
  .menu-carousel-slide img,
  .menu-carousel-slide,
  .menu-carousel {
    max-height: 180px;
    height: 180px;
  }
  .menu-shell { padding: 0 8px 0 0; }
  .categoryData.menu-body {
    flex-direction: column;
  }
  .leftSidebarMenu.menu-sidebar {
    width: 100%;
    flex: none;
    position: sticky;
    top: 0;
    height: 60px !important;
    max-height: 60px;
    padding: 17px 0 !important;
    border-right: none;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.2);
  }
  .leftSidebarMenu.menu-sidebar h2 {
    display: none;
  }
  .leftSidebarMenu.menu-sidebar ul {
    flex-direction: row;
    align-items: center;
    overflow: visible;
    gap: 0.35rem;
    padding: 0 8px;
  }
  .leftSidebarMenu.menu-sidebar li {
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
    margin-top: 0;
    padding: 3px 8px;
    font-size: 14px;
  }
  .content.menu-items {
    width: 100%;
    flex: none;
    padding: 0;
  }
  .menuHeadingBox {
    width: 98%;
    margin: 20px auto 18px;
  }
  .categoryPic {
    width: 98%;
    margin: 0 auto;
  }
  .menu-delivery-toggle.mobile-only {
    display: grid;
    margin: 0.75rem 1rem;
  }
  .menu-delivery-toggle.desk-only {
    display: none;
  }
  .dishImageBox {
    width: 72px;
    height: 72px;
  }
  .aboutBtn.menu-info-btn {
    width: auto !important;
    flex: 0 0 auto;
    height: 42px;
    margin-left: 0;
  }
  .input-group.search.menu-search {
    flex: 1 1 100%;
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
  }
  .searchBar.menu-toolbar {
    flex-wrap: wrap;
    padding: 1rem 14px;
  }
  .menu-header .main-nav.open {
    background: #ff5900 !important;
    margin: 0;
    padding: 0.75rem 0;
  }
  .menu-header .main-nav.open a:hover::after,
  .menu-header .main-nav.open a.active::after {
    display: none;
  }
  .infoParagraph {
    max-width: 100%;
    border: 1px solid #d1d1d1;
  }
}
