/* =============================================================
   BLAUER ESEL – main.css
   Alle Theme-Stile. Keine Inline-CSS in Templates.
   ============================================================= */

/* ── 1. Lokale Schriften ───────────────────────────────────── */
/* Inter Variable Font – lokal gehostet, SIL OFL Lizenz */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/google/Inter-Variable.woff2') format('woff2 supports variations'),
       url('../fonts/google/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/google/Inter-Variable-Italic.woff2') format('woff2 supports variations'),
       url('../fonts/google/Inter-Variable-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Fira Sans – lokal gehostet, SIL OFL Lizenz */
@font-face {
  font-family: 'Fira Sans';
  src: url('../fonts/fira-sans/FiraSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fira Sans';
  src: url('../fonts/fira-sans/FiraSans-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fira Sans';
  src: url('../fonts/fira-sans/FiraSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── 2. Custom Properties ──────────────────────────────────── */
:root {
  --be-blue:       #1a5fa8;
  --be-blue-dark:  #0e3d72;
  --be-blue-mid:   #2d7dd2;
  --be-blue-light: #e8f0fb;
  --be-green:      #c47f2a;
  --be-green-light:#fad5aa;
  --be-orange:     #c47f2a;
  --be-text:       #1a2540;
  --be-muted:      #6b7a99;
  --be-border:     #dde3ed;
  --be-bg:         #f7f8fc;
  --be-white:      #ffffff;
  --be-navy:       #1a2540;
  --be-accent-blue:#7ab3e0;

  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Fira Sans', 'Inter', sans-serif;


  --radius-sm: 1px;
  --radius-md: 2px;

  --transition: 0.15s ease;
}

/* ── 3. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-base);
  background: var(--be-bg);
  color: var(--be-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.be-hero__title,
.be-hero__eyebrow,
.be-location-page__title,
.be-location-page__subtitle,
.be-editor-content h1,
.be-editor-content h2,
.be-editor-content h3 {
  font-family: var(--font-head);
}


a { color: var(--be-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

button { font-family: var(--font-base); cursor: pointer; }


.mt-3 {
	margin-top:30px;
}

.mt-5 {
	margin-top:50px;
}

.d-none {display:none;}

/* ── 4. Utility ────────────────────────────────────────────── */
.be-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 28px;
}

.be-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.be-btn {
  display: inline-flex;
  align-items: left;
  gap: 7px;
  font-size: 14px;
  /*! font-weight: 700; */
  /*! letter-spacing: 0.12em; */
  /*! text-transform: uppercase; */
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), background var(--transition);
  line-height: 1;
  width: fit-content;
}
.be-btn:hover { opacity: 0.88; text-decoration: none; }

.be-btn--primary { background: var(--be-blue); color: #fff; }
.be-btn--primary-full { background: var(--be-blue); color: #fff; width: 100%; }
.be-btn--ghost {
  background: transparent;
  color: var(--be-blue);
  border: 1.5px solid var(--be-blue);
}
.be-btn--ghost:hover { background: var(--be-blue-light); }
.be-btn--green { background: var(--be-green); color: #fff; }
.be-btn--green-full { background: var(--be-green); color: #fff; width: 100%;  }

.be-section-heading {

  margin-bottom: 26px;
}
.be-section-heading__label {
  font-weight: 700;
  color: var(--be-blue);
}
.be-section-heading__rule {
  width: 38px;
  height: 2px;
  background: var(--be-blue);
  margin: 8px 0 0;
}

/* ── 5. Navigation ─────────────────────────────────────────── */
.be-nav {
  background: #ffffff;
  border-bottom: 1px solid #dde3ed;
  position: sticky;
  top: 0;
  z-index: 100;
}

.be-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 40px;
  height: 130px;
  gap: 0;
  width: 100%;
}

/* Logo */
.be-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.be-nav__logo:hover { opacity: 0.82; text-decoration: none; }
.be-nav__logo-img {
  height: 100px !important;
  width: auto !important;
  max-height: 100px !important;
  display: block;
}
.be-nav__logo img {
  height: 100px !important;
  width: auto !important;
  max-height: 100px !important;
  display: block;
}
.be-nav__logo .custom-logo,
.be-nav__logo .custom-logo-link img,
.be-nav__logo img.custom-logo {
  height: 100px !important;
  width: auto !important;
  max-height: 100px !important;
}
.be-nav__logo .custom-logo-link { display: flex; align-items: center; }
.be-nav__logo-wordmark {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a5fa8;
}

/* Nav Links */
.be-nav__links {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 130px;
  gap: 0;
  list-style: none;
  margin: 0 auto;
  padding: 0 10px;
  max-width: 980px;
  width: 100%;
}

.be-nav__item {
  position: relative;
  display: flex;
  align-items: center;
  height: 130px;
  flex-shrink: 0;
}

.be-nav__link {
  display: flex;
  align-items: center;
  height: 133px;
  padding: 0 20px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  text-transform: uppercase;
}
.be-nav__link:hover { color: #1a5fa8; border-bottom-color: #dde3ed; text-decoration: none; }
.be-nav__item.current-menu-item .be-nav__link,
.be-nav__item.current-page-ancestor .be-nav__link {
  color: #1a5fa8;
  border-bottom-color: #1a5fa8;
}

/* Dropdown */
.be-nav__item--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 130px;
}
.be-nav__item--dropdown.is-active .be-nav__dropdown-trigger {
  color: #1a5fa8;
  border-bottom-color: #1a5fa8;
}

.be-nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 133px;
  padding: 0 20px;
  margin: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 400;
  color: #111111;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.15s, border-color 0.15s;
	text-transform: uppercase;
  letter-spacing: -0.3px;
}
.be-nav__dropdown-trigger:hover { color: #1a5fa8; border-bottom-color: #dde3ed; }

.be-nav__chevron {
  font-size: 9px;
  color: #6b7a99;
  transition: transform 0.2s ease;
  pointer-events: none;
}
.be-nav__item--dropdown.is-open .be-nav__chevron { transform: rotate(180deg); }

.be-nav__dropdown {
  display: none;
  position: absolute;
  top: 130px;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #dde3ed;
  border-top: 2px solid #1a5fa8;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 200;
}
.be-nav__dropdown.is-open { display: block; }

.be-nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1a2540;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
	text-transform:uppercase;
}
.be-nav__dropdown-item:hover { background: #e8f0fb; color: #1a5fa8; text-decoration: none; }
.be-nav__dropdown-item.is-active { background: #e8f0fb; color: #1a5fa8; font-weight: 700; }

.be-nav__dropdown-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.be-nav__dropdown-dot--restaurant { background: #1a5fa8; display: none;}
.be-nav__dropdown-dot--bistro     { background: #0f6e56; display: none;}

/* Icons rechts */
.be-nav__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.be-nav__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: #1a2540;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.be-nav__icon-link:hover { background: #e8f0fb; color: #1a5fa8; text-decoration: none; }

.be-nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 22px;
  color: #1a2540;
  padding: 8px;
  margin-left: 8px;
  cursor: pointer;
}

.admin-bar .be-nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .be-nav { top: 46px; } }

/* ── 6. Hero ───────────────────────────────────────────────── */
.be-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #ffffff;
  overflow: hidden;
}

/* Linke Seite: Text auf weißem Grund */
.be-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 80px;
  background: #dde3ed;
  position: relative;
  z-index: 1;
}

.be-hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a5fa8;
  margin-bottom: 16px;
}

.be-hero__title {
  font-size: 52px;
  font-weight: 600;
  color: var(--be-blue);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.be-hero__rule {
  width: 44px;
  height: 3px;
  background: #1a5fa8;
  margin-bottom: 20px;
}

.be-hero__sub {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 420px;
}

/* Rechte Seite: Foto füllt komplett */
.be-hero__right {
  position: relative;
  overflow: hidden;
  background: #dde3ed;
}

.be-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .be-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .be-hero__left  { padding: 40px 24px; }
  .be-hero__right { height: 260px; position: relative; }
  .be-hero__title { font-size: 36px; }
}

/* ── 7. Standorte-Raster ───────────────────────────────────── */
.be-standorte {
  background: var(--be-white);
  padding: 60px 0 60px;
  border-bottom: 1px solid var(--be-border);
}

.be-locs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.be-loc {
  border: 1px solid var(--be-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--be-white);
  display: flex;
  flex-direction: column;
}

.be-loc--restaurant { border-top: none; }
.be-loc--bistro     { border-top: none; }

.be-loc__image {
  height: 450px;
  background: var(--be-blue-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-loc--bistro .be-loc__image { background: var(--be-green-light); }

.be-loc__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.be-loc:hover .be-loc__image img { transform: scale(1.04); }

.be-loc__image-placeholder {
  font-size: 36px;
  color: var(--be-blue);
  opacity: 0.2;
}
.be-loc--bistro .be-loc__image-placeholder { color: var(--be-green); }

.be-loc__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.be-loc__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  
  border-radius: 2px;
  margin-bottom: 8px;
}
.be-loc__badge--restaurant { color: var(--be-blue); }
.be-loc__badge--bistro     { color: var(--be-green); }

.be-loc__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--be-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.be-loc__address {
  font-size: 13.5px;
  color: var(--be-muted);
  margin-bottom: 6px;
}

.be-loc__desc {
  font-size: 13.5px;
  color: var(--be-muted);
  line-height: 1.55;
  margin-bottom: 10px;
  flex: 1;
}

.be-loc__more {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
  transition: gap var(--transition);
}
.be-loc__more:hover { gap: 7px; text-decoration: none; }
.be-loc--restaurant .be-loc__more { color: var(--be-blue); }
.be-loc--bistro     .be-loc__more { color: var(--be-green); }

/* ── 8. Features-Raster ────────────────────────────────────── */
.be-features {
  background: var(--be-bg);
  padding: 60px 0;
  border-bottom: 1px solid var(--be-border);
}

.be-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.be-feat {
  background: var(--be-white);
  border: 1px solid var(--be-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.be-feat__image {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.be-feat__image--menu    { background: var(--be-blue-light); }
.be-feat__image--catering{ background: #fff3e2; }
.be-feat__image--about   { background: var(--be-green-light); }

.be-feat__image i {
  font-size: 28px;
  opacity: 0.3;
}
.be-feat__image--menu i    { color: var(--be-blue); }
.be-feat__image--catering i{ color: var(--be-orange); }
.be-feat__image--about i   { color: var(--be-green); }

.be-feat__body {
  padding: 14px;
  border-top: 1px solid var(--be-border);
}

.be-feat__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.be-feat__icon i { font-size: 14px; color: #fff; }
.be-feat__icon--menu    { background: var(--be-blue); }
.be-feat__icon--catering{ background: var(--be-orange); }
.be-feat__icon--about   { background: var(--be-green); }

.be-feat__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--be-text);
  margin-bottom: 5px;
}

.be-feat__desc {
  font-size: 13px;
  color: var(--be-muted);
  line-height: 1.55;
  margin-bottom: 10px;
}

.be-feat__link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.be-feat__link:hover { gap: 7px; text-decoration: none; }
.be-feat__link--menu    { color: var(--be-blue); }
.be-feat__link--catering{ color: var(--be-orange); }
.be-feat__link--about   { color: var(--be-green); }

/* ── 9. Catering-Banner ────────────────────────────────────── */
.be-catering-banner {
  padding: 0 0 28px;
  background: var(--be-bg);
}

.be-catering-banner__inner {
  background: var(--be-navy);
  border-radius: var(--radius-md);
  padding: 30px 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.be-catering-banner__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--be-accent-blue);
  margin-bottom: 6px;
}

.be-catering-banner__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.be-catering-banner__desc {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── 10. Einzelne Standort-Seite ───────────────────────────── */
.be-location-page {
  background: var(--be-white);
  padding: 36px 0;
}

.be-location-page__grid {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 0;
}

.be-location-page__sidebar {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--be-border);
}

.be-sidebar__nav-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-blue);
  margin-bottom: 8px;
  display: block;
}

.be-sidebar__link {
  display: block;
  font-size: 13.5px;
  color: var(--be-text);
  padding: 4px 0;
  transition: color var(--transition);
}
.be-sidebar__link:hover { color: var(--be-blue); text-decoration: none; }
.be-sidebar__link.active { color: var(--be-blue); font-weight: 700; }

.be-sidebar__newsletter { margin-top: 24px; }

.be-sidebar__newsletter-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-blue);
  margin-bottom: 10px;
  display: block;
}

.be-sidebar__input {
  width: 100%;
  font-size: 12px;
  padding: 8px 10px;
  border: 1px solid var(--be-border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: var(--be-white);
  color: var(--be-text);
  font-family: var(--font-base);
}
.be-sidebar__input:focus { outline: 2px solid var(--be-blue); }

.be-location-page__main {
  padding: 0 28px;
}

.be-location-page__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--be-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.be-location-page__subtitle {
  font-size: 17px;
  font-weight: 700;
  color: var(--be-blue);
  margin-bottom: 10px;
}

.be-location-page__content p {
  font-size: 13.5px;
  color: var(--be-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.be-rating-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--be-blue-light);
  border: 1px solid #b5d4f4;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: 16px 0;
}

.be-rating-box__stars { color: var(--be-blue); font-size: 16px; }

.be-rating-box__score {
  font-size: 13px;
  font-weight: 700;
  color: var(--be-blue-dark);
}

.be-rating-box__sub {
  font-size: 11px;
  color: var(--be-blue-mid);
  margin-top: 2px;
}

.be-hours-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.be-hours-table tr { border-bottom: 1px solid var(--be-border); }
.be-hours-table tr:last-child { border-bottom: none; }
.be-hours-table td { padding: 7px 0; font-size: 13.5px; }
.be-hours-table td:first-child { color: var(--be-muted); width: 140px; }
.be-hours-table td:last-child  { font-weight: 600; color: var(--be-text); }

.be-location-page__aside {
  padding: 0 0 0 24px;
  border-left: 1px solid var(--be-border);
}
.be-standort-cta-mobile { display: none; }

.be-aside__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-muted);
  margin-bottom: 10px;
  display: block;
}

.be-menu-list { list-style: none; }
.be-menu-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--be-border);
}
.be-menu-list__item:last-child { border-bottom: none; }
.be-menu-list__item i { font-size: 16px; color: var(--be-blue); }
.be-menu-list__link {
  font-size: 12px;
  color: var(--be-text);
  flex: 1;
  transition: color var(--transition);
}
.be-menu-list__link:hover { color: var(--be-blue); text-decoration: none; }

.be-happy-hour {
  margin-top: 20px;
  background: var(--be-blue-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.be-happy-hour__title {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-blue);
  margin-bottom: 4px;
}
.be-happy-hour__text {
  font-size: 11.5px;
  color: var(--be-muted);
  line-height: 1.6;
}
.be-happy-hour__highlight { color: var(--be-blue); font-weight: 700; }

/* ── 11. Footer ────────────────────────────────────────────── */
.be-footer {
  background: var(--be-navy);
  padding: 36px 0 18px;
}

.be-footer__top {
  display: grid;
  grid-template-columns: 210px 1fr 260px;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.be-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.be-footer__logo img {
  height: 75px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}
.be-footer__wordmark {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.be-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.33);
  line-height: 1.8;
}

.be-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.be-footer__social-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.be-footer__social-icon:hover { border-color: rgba(255,255,255,0.45); }
.be-footer__social-icon i { font-size: 13px; color: rgba(255,255,255,0.4); }

.be-footer__locs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.be-footer__loc-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--be-accent-blue);
  margin-bottom: 5px;
}

.be-footer__loc-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

.be-footer__hours-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--be-accent-blue);
  margin-bottom: 7px;
}

.be-footer__hours-text {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 10px;
}

.be-footer__hours-link {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--be-accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--transition);
}
.be-footer__hours-link:hover { opacity: 0.7; text-decoration: none; }

/* Newsletter im Footer */
.be-footer__newsletter-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--be-accent-blue);
  margin: 40px 0 12px;
}
.be-footer__newsletter-label:first-child { margin-top: 30px; }

/* Admin-Hinweis ("Visible only to administrators") ausblenden */
.tnp-widget-admin-notice,
.newsletter-widget-admin,
.be-footer form + p,
.be-footer__newsletter-wrap > p:not(.be-footer__newsletter-label) {
  display: none !important;
}

/* Privacy-Link Datenschutz */
.tnp-subscription a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

.be-footer .newsletter_widget input[type="email"],
.be-footer .newsletter_widget input[type="text"] {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #fff !important;
  border-radius: 4px !important;
}
.be-footer .newsletter_widget input[type="email"]::placeholder,
.be-footer .newsletter_widget input[type="text"]::placeholder {
  color: rgba(255,255,255,0.4) !important;
}
.be-footer .newsletter_widget input[type="email"]:focus,
.be-footer .newsletter_widget input[type="text"]:focus {
  border-color: var(--be-accent-blue) !important;
  box-shadow: 0 0 0 2px rgba(100,160,230,0.15) !important;
}
.be-footer .newsletter_widget input[type="submit"],
.be-footer .newsletter_widget button[type="submit"] {
  background: var(--be-accent-blue) !important;
  color: #fff !important;
}
.be-footer .newsletter_widget input[type="submit"]:hover,
.be-footer .newsletter_widget button[type="submit"]:hover {
  background: #5090d0 !important;
}
.be-footer .newsletter_widget .newsletter_privacy {
  color: rgba(255,255,255,0.45) !important;
}
.be-footer .newsletter_widget .newsletter_privacy a {
  color: var(--be-accent-blue) !important;
}

.be-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.be-footer__copy {
  font-size: 9.5px;
  color: rgba(255,255,255,0.22);
}

.be-footer__legal {
  display: flex;
  gap: 16px;
}
.be-footer__legal a {
  font-size: 9.5px;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition);
}
.be-footer__legal a:hover { color: rgba(255,255,255,0.55); text-decoration: none; }

/* ── 12. Responsive ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .be-locs { grid-template-columns: repeat(2, 1fr); }
  .be-feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .be-nav__inner { padding: 0 20px; height: 100px; grid-template-columns: auto 1fr auto; }
  .be-nav__logo-img { height: 70px !important; max-height: 70px !important; }
  .be-nav__logo img { height: 70px !important; max-height: 70px !important; }

  .be-nav__links {
    display: none;
    position: absolute;
    top: 100px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid #dde3ed;
    box-shadow: 0 8px 20px rgba(0,0,0,0.09);
    z-index: 99;
    height: auto;
  }
  .be-nav__links.is-open { display: flex; }

  .be-nav__item,
  .be-nav__item--dropdown { height: auto; width: 100%; }

  .be-nav__link {
    height: 52px;
    padding: 0 24px;
    border-bottom: 1px solid #dde3ed;
    border-left: 3px solid transparent;
    font-size: 14px;
    width: 100%;
  }
  .be-nav__item.current-menu-item .be-nav__link {
    border-left-color: #1a5fa8;
  }

  .be-nav__dropdown-trigger {
    height: 52px;
    padding: 0 24px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #dde3ed;
    font-size: 14px;
  }

  .be-nav__dropdown {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: #f7f8fc;
    top: auto;
  }
  .be-nav__dropdown.is-open { display: block; }
  .be-nav__dropdown-item {
    padding: 12px 24px 12px 40px;
    border-bottom: 1px solid #eef0f5;
    font-size: 14px;
  }

  .be-nav__toggle { display: flex; }
  .be-nav__end    { display: none; }
  .admin-bar .be-nav__links { top: calc(100px + 32px); }

  /* ph-Template */
  .ph-inner,
  .ph-hero-section__img-wrap { padding-left: 20px; padding-right: 20px; }
  .ph-header__title { font-size: 26px; }
  .ph-galerie__grid { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 1100px) {
  .be-locs { grid-template-columns: repeat(2, 1fr); }
  .be-feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Logo-Zeile */
  .be-nav__top-inner { padding: 0 20px; height: 80px; }
  .be-nav__logo-img  { height: 60px !important; max-height: 60px !important; }
  .be-nav__logo img  { height: 60px !important; max-height: 60px !important; }

  /* Nav-Leiste ausblenden, als Overlay öffnen */
  .be-nav__bar {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #dde3ed;
    box-shadow: 0 8px 20px rgba(0,0,0,0.09);
    z-index: 99;
  }
  .be-nav__bar.is-open { display: block; }

  .be-nav__links {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 0;
    gap: 0;
  }

  .be-nav__item,
  .be-nav__item--dropdown { height: auto; width: 100%; }

  .be-nav__link {
    height: 52px;
    padding: 0 24px;
    border-bottom: 1px solid #dde3ed;
    border-left: 3px solid transparent;
    font-size: 14px;
    width: 100%;
  }
  .be-nav__item.current-menu-item .be-nav__link {
    border-left-color: #1a5fa8;
    border-bottom-color: #eef0f5;
  }

  .be-nav__dropdown-trigger {
    height: 52px;
    padding: 0 24px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #dde3ed;
    font-size: 14px;
  }

  .be-nav__dropdown {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: #f7f8fc;
    border-top: none;
  }
  .be-nav__dropdown.is-open { display: block; }
  .be-nav__dropdown-item {
    padding: 12px 24px 12px 40px;
    border-bottom: 1px solid #eef0f5;
    font-size: 14px;
  }

  .be-nav__toggle  { display: flex; }
  .be-nav__icons   { gap: 2px; }
  .admin-bar .be-nav__bar { top: calc(80px + 32px); }
}


@media (max-width: 1100px) {
  .be-locs { grid-template-columns: repeat(2, 1fr); }
  .be-feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .be-nav__links {
    display: none;
    position: absolute;
    top: 130px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid #dde3ed;
    box-shadow: 0 8px 20px rgba(0,0,0,0.09);
    z-index: 99;
    height: auto;
  }
  .be-nav__links.is-open { display: flex; }

  .be-nav__item,
  .be-nav__item--dropdown { height: auto; width: 100%; }

  .be-nav__link {
    height: 52px;
    padding: 0 22px;
    border-bottom: 1px solid #dde3ed;
    border-left: 3px solid transparent;
    font-size: 12px;
    width: 100%;
  }
  .be-nav__item.current-menu-item .be-nav__link { border-left-color: #1a5fa8; border-bottom-color: transparent; }

  .be-nav__dropdown-trigger {
    height: 50px;
    padding: 0 22px;
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #dde3ed;
    font-size: 12px;
  }

  .be-nav__dropdown {
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    background: #f7f8fc;
    border-top: none;
  }
  .be-nav__dropdown.is-open { display: block; }
  .be-nav__dropdown-item {
    padding: 12px 22px 12px 36px;
    border-bottom: 1px solid #dde3ed;
    font-size: 12px;
  }

  .be-nav__toggle  { display: flex; }
  .be-nav__end     { display: none; }
  .admin-bar .be-nav__links { top: calc(64px + 32px); }
}


@media (max-width: 1100px) {
  .be-locs { grid-template-columns: repeat(2, 1fr); }
  .be-feats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .be-nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--be-white);
    border-bottom: 1px solid var(--be-border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 99;
    height: auto;
  }
  .be-nav__links.is-open { display: flex; }

  .be-nav__item { height: auto; border-bottom: 1px solid var(--be-border); }
  .be-nav__item--dropdown { flex-direction: column; align-items: stretch; }

  .be-nav__link { height: 48px; padding: 0 20px; }
  .be-nav__dropdown-trigger { height: 48px; padding: 0 20px; width: 100%; justify-content: space-between; }

  .be-nav__dropdown {
    position: static;
    border: none;
    border-top: 1px solid var(--be-border);
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .be-nav__dropdown.is-open { display: block; }
  .be-nav__dropdown-item { padding: 12px 32px; }

  .be-nav__toggle { display: flex; }
  .be-nav__end { display: none; }

  .be-hero { min-height: 320px; }
  .be-hero__left { width: 100%; padding: 36px 24px; }

  .be-location-page__grid {
    grid-template-columns: 1fr;
  }
  .be-location-page__aside   { order: 1; border-left: none; border-bottom: 1px solid var(--be-border); padding: 0 0 20px; margin-bottom: 20px; border-top: none; margin-top: 0; }
  .be-location-page__main    { order: 2; }
  .be-location-page__sidebar { order: 3; border-right: none; border-top: 1px solid var(--be-border); padding: 20px 0 0; margin-top: 20px; border-bottom: none; margin-bottom: 0; }
  .be-standort-cta-mobile    { display: block; order: 4; padding-top: 20px; }
  .be-hero__btn              { display: none; }

  .be-footer__top { grid-template-columns: 1fr; }
  .be-footer__locs { grid-template-columns: 1fr 1fr; }

  .be-catering-banner__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .be-locs  { grid-template-columns: 1fr; }
  .be-feats { grid-template-columns: 1fr; }
  .be-hero__title { font-size: 30px; }
  .be-footer__locs { grid-template-columns: 1fr; }
  .be-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── 13. WP Classic Editor Content ─────────────────────────── */
.be-editor-content { max-width: 780px; }

.be-editor-content h1 {
  font-size: 22px;
  font-weight: 800;
  color: var(--be-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 28px 0 12px;
}
.be-editor-content h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--be-blue);
  margin: 28px 0 10px;
  padding-bottom: 6px;
  
}
.be-editor-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--be-text);
  margin: 20px 0 8px;
}
.be-editor-content p {
  font-size: 15px;
  color: var(--be-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.be-editor-content ul,
.be-editor-content ol {
  padding-left: 0;
  margin-bottom: 14px;
  list-style: none;
}
.be-editor-content ol {
  counter-reset: be-ol;
}
.be-editor-content li {
  font-size: 14px;
  color: var(--be-muted);
  line-height: 1.7;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.be-editor-content ul li::before {
  content: "\f105"; /* fa-angle-right */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 13px;
  color: var(--be-blue);
  flex-shrink: 0;
}
.be-editor-content ol li::before {
  counter-increment: be-ol;
  content: counter(be-ol) ".";
  font-size: 13px;
  font-weight: 700;
  color: var(--be-blue);
  flex-shrink: 0;
}
.be-editor-content a { color: var(--be-blue); }
.be-editor-content a:hover { text-decoration: underline; }

.be-editor-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 16px 0;
}
.be-editor-content figure { margin: 20px 0; }
.be-editor-content figcaption {
  font-size: 11px;
  color: var(--be-muted);
  margin-top: 6px;
  font-style: italic;
}
.be-editor-content blockquote {
  border-left: 3px solid var(--be-blue);
  padding: 10px 16px;
  margin: 20px 0;
  background: var(--be-blue-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.be-editor-content blockquote p {
  font-size: 14px;
  color: var(--be-text);
  font-style: italic;
  margin: 0;
}

/* Standalone-Seite (page.php) mit mehr Luft */
.be-page-content {
  padding: 48px 0;
  background: var(--be-white);
  border-bottom: 1px solid var(--be-border);
}
.be-page-content .be-container { max-width: 900px; }
.woocommerce-checkout .be-page-content .be-container,
.woocommerce-cart .be-page-content .be-container { max-width: 1280px; }

/* ── 14. WP Admin Bar ───────────────────────────────────────── */
.admin-bar .be-nav { top: 32px; }
.admin-bar .be-nav__dropdown { top: 130px; }
@media (max-width: 782px) { .admin-bar .be-nav { top: 46px; } }

/* ── 15. Mittagskarte ───────────────────────────────────────── */
.be-mittag {
  border: 1px solid var(--be-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.be-mittag__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--be-blue-light);
  border-bottom: 1px solid var(--be-border);
}
.be-loc--bistro .be-mittag__header { background: var(--be-green-light); }

.be-mittag__gueltig {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--be-muted);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.be-mittag__gerichte { padding: 4px 0; }

.be-mittag__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--be-border);
}
.be-mittag__item:last-child { border-bottom: none; }

.be-mittag__item-info { flex: 1; min-width: 0; }

.be-mittag__item-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--be-text);
  margin-bottom: 2px;
}

.be-mittag__item-desc {
  display: block;
  font-size: 11.5px;
  color: var(--be-muted);
  line-height: 1.4;
}

.be-mittag__item-preis {
  font-size: 13px;
  font-weight: 700;
  color: var(--be-blue);
  flex-shrink: 0;
  white-space: nowrap;
}

.be-mittag > .be-btn { margin: 0 16px 16px; width: calc(100% - 32px); }

/* ── 16. Kontakt-Grid ───────────────────────────────────────── */
.be-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.be-kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--be-bg);
  border: 1px solid var(--be-border);
  border-radius: var(--radius-md);
  font-size: 14px;
}

.be-kontakt-icon {
  font-size: 14px;
  color: var(--be-blue);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .be-kontakt-grid { grid-template-columns: 1fr; }
}

/* ── 17. Bildergalerie ──────────────────────────────────────── */
.be-galerie {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.be-galerie__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  background: var(--be-blue-light);
  cursor: pointer;
}

.be-galerie__link {
  display: block;
  width: 100%;
  height: 100%;
}

.be-galerie__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.be-galerie__item:hover img { transform: scale(1.06); }

.be-galerie__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 900px) { .be-galerie { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 480px) { .be-galerie { grid-template-columns: 1fr; gap: 10px; } }

/* ── Lightbox ───────────────────────────────────────────────── */
.be-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,12,24,.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity .25s ease;
}
.be-lb.is-open {
  display: flex;
  animation: be-lb-in .25s ease forwards;
}
@keyframes be-lb-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.be-lb__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 80vh;
}
.be-lb__img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  user-select: none;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  animation: be-lb-img-in .3s ease;
}
@keyframes be-lb-img-in {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}
.be-lb__caption {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  text-align: center;
  min-height: 16px;
  max-width: 600px;
  line-height: 1.5;
}
.be-lb__counter {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  padding: 3px 12px;
  border-radius: 20px;
}
.be-lb__btn {
  position: fixed;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(4px);
}
.be-lb__btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
  transform: scale(1.08);
}
.be-lb__btn:active { transform: scale(.95); }
.be-lb__close { top: 20px; right: 20px; font-size: 18px; }
.be-lb__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.be-lb__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.be-lb__prev:hover { transform: translateY(-50%) scale(1.08); }
.be-lb__next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 600px) {
  .be-lb__prev { left: 8px; width: 42px; height: 42px; }
  .be-lb__next { right: 8px; width: 42px; height: 42px; }
  .be-lb__close { top: 12px; right: 12px; }
}

/* ── 18. Hero Slideshow ─────────────────────────────────────── */
.be-hero__slideshow {
  position: absolute;
  inset: 0;
}

.be-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.be-hero__slide.is-active {
  opacity: 1;
}

.be-hero__slide .be-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 19. Page Hero Template ─────────────────────────────────── */

/* Gemeinsamer schmaler Container für alle ph-Elemente */
.ph-inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Grauer Hero-Bereich: volle Browserbreite */
.ph-hero-section {
  background: #f7f8fc;
  padding-top: 48px;
}

.ph-header__title {
  font-size: 34px;
  font-weight: 400;
  color: #1a2540;
  line-height: 1.15;
  margin-bottom: 10px;
}

.ph-header__sub {
  font-size: 16px;
  color: #6b7a99;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Bild: gleiche Breite wie .ph-inner */
.ph-hero-section__img-wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.ph-hero-section__img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

/* Weißer Inhaltsbereich */
.ph-content-section {
  background: #ffffff;
  padding: 48px 0 56px;
}

.ph-content-section__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.ph-content-section__inner h2 { font-size: 29px; font-weight: 700; color: #1a5fa8; margin: 24px 0 10px; }
.ph-content-section__inner h3 { font-size: 22px; font-weight: 500; color: #676767; margin: 20px 0 8px; }
.ph-content-section__inner p  { font-size: 17px; color: #6b7a99; line-height: 1.78; margin-bottom: 16px; }
.ph-content-section__inner ul,
.ph-content-section__inner ol { padding-left: 20px; margin-bottom: 14px; }
.ph-content-section__inner ul { list-style: disc; }
.ph-content-section__inner ol { list-style: decimal; }
.ph-content-section__inner li { font-size: 15px; color: #6b7a99; line-height: 1.7; margin-bottom: 4px; }
.ph-content-section__inner a  { color: #1a5fa8; }
.ph-content-section__inner img { max-width: 100%; margin: 16px 0; }

/* Galerie */
.ph-galerie-section {
  background: #f7f8fc;
  padding: 48px 0 64px;
}

.ph-galerie-section__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

.ph-galerie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ph-galerie__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 6;
  background: #dde3ed;
  margin: 0;
}

.ph-galerie__link { display: block; width: 100%; height: 100%; }

.ph-galerie__link img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.ph-galerie__item:hover .ph-galerie__link img { transform: scale(1.04); }

.ph-galerie__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 7px 10px;
  background: rgba(26, 37, 64, 0.55);
  font-size: 11px; color: #fff; line-height: 1.4;
}

@media (max-width: 900px) {
  .ph-hero-section__text,
  .ph-content-section__inner,
  .ph-galerie-section__inner { padding-left: 20px; padding-right: 20px; }
  .ph-header__title { font-size: 26px; }
  .ph-hero-section__img { aspect-ratio: 16 / 7; }
  .ph-galerie__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ph-galerie__grid { grid-template-columns: 1fr; }
}


/* ── Sticky Sidebar ── */

#cta {
  width: 980px;
  margin: auto;
  padding: 20px;
}



.ph-sidebar__sticky {
 
  color: #fff;
}

.ph-sidebar__card {
  background: linear-gradient(to bottom, #306bac 0%, #1a5fa8 100%);
  border: 1px solid #dde3ed;
  border-top: 3px solid #fff;
  border-radius: 4px;
  padding: 24px;
}

.ph-sidebar__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.nf-field {
  margin: 20px 0 0 !important;
}


.nf-field a {
  color: #ddd;
}

.nf-form-fields-required {
  font-size: 11px;
	margin-bottom:30px;
}

.nf-field-element input[type="number"] {
  padding:7px
}
.nf-field-label .nf-label-span {
   margin: 0;
  padding: 0;
 font-weight: 400 !important;
}


.ph-sidebar__text {
  
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}



/* Ninja Forms im Sidebar-Stil */
.ph-sidebar__form .nf-form-cont input[type="text"],
.ph-sidebar__form .nf-form-cont input[type="email"],
.ph-sidebar__form .nf-form-cont input[type="tel"],
.ph-sidebar__form .nf-form-cont textarea,
.ph-sidebar__form .nf-form-cont select {
  width: 100% !important;
  font-size: 13px !important;
  padding: 8px 10px !important;
  border: 1px solid #dde3ed !important;
  
  background: #ffffff !important;
  font-family: inherit !important;
}

.ph-sidebar__form .nf-form-cont input[type="submit"],
.ph-sidebar__form .nf-form-cont .submit-wrap input {
  width: 100% !important;
  background: #cd1543 !important
  color: #ffffff !important;
  border: none !important;
  padding: 10px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  cursor: pointer !important;
  font-family: inherit !important;
}

.ph-sidebar__form .nf-form-cont .nf-field-label label {
   color: #fff !important;
	font-weight: 400 !important;
}

#cta .nf-error-msg, #cta .ninja-forms-req-symbol, .nf-error-msg {
  color: #e80 !important;
	font-size:15px;
}




.row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
	margin-bottom: 50px;
}

.col-9 {
  flex: 0 0 calc(70% - 12px);
  max-width: calc(70% - 12px);
}

.col-3 {
  flex: 0 0 calc(30% - 12px);
  max-width: calc(30% - 12px);
}

.catering img {
  margin-top:40px;
  border-radius: 0
}

/* Responsive: untereinander */
@media (max-width: 980px) {
  .row {
    flex-direction: column;
  }

  .col-9,
  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════
   WOOCOMMERCE
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper & Titel ────────────────────────────────────────── */
.be-shop-page { padding: 40px 0 60px; }

.be-shop-page__header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--be-border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.be-shop-page__title,
.woocommerce-products-header__title,
.woocommerce-page h1.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--be-blue);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* Kategorie-Beschreibung */
.be-shop-page__desc,
.term-description {
  font-size: 14px;
  color: var(--be-muted);
  line-height: 1.7;
  margin: 0;
}

/* Kategorie-Bild (aus Beschreibung) – kompaktes Banner, feste Höhe */
.be-shop-page__header img,
.be-shop-page__header a img,
.woocommerce-product-archive-description img,
.woocommerce-product-archive-description a img,
.term-description img {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 4px !important;
  margin-bottom: 12px !important;
}

/* Keine Produkte */
.woocommerce-info.woocommerce-no-products-found {
  background: var(--be-blue-light) !important;
  color: var(--be-blue) !important;
  border-left-color: var(--be-blue) !important;
}

.woocommerce-result-count,
.woocommerce-ordering { display: none !important; }

/* ── Produkt-Grid ───────────────────────────────────────────── */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 40px !important;
  float: none !important;
  width: 100% !important;
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 750px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ── Produktkarte (Standard WooCommerce + be-product-card) ──── */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
li.be-product-card {
  display: flex !important;
  flex-direction: column !important;
  border: 1px solid var(--be-border) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  background: var(--be-white) !important;
  transition: box-shadow .25s, transform .25s !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover,
li.be-product-card:hover {
  box-shadow: 0 8px 28px rgba(26,95,168,.10) !important;
  transform: translateY(-2px) !important;
}

/* Produktbild */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.be-product-card__img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .4s ease !important;
  border-radius: 0 !important;
}
.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img,
.be-product-card:hover .be-product-card__img {
  transform: scale(1.04) !important;
}
.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
  display: block;
  overflow: hidden;
}
.woocommerce ul.products li.product a:first-child,
.woocommerce-page ul.products li.product a:first-child {
  overflow: hidden;
}

/* Produktkarte Bildlink */
.be-product-card__img-link {
  display: block;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.be-product-card__img-placeholder {
  width: 100%;
  height: 240px;
  background: var(--be-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--be-muted);
  font-size: 36px;
}

/* Produktkarte Body – wächst, Button klebt unten */
.be-product-card__body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.be-product-card__desc {
  font-size: 12px;
  color: var(--be-muted);
  line-height: 1.5;
  padding: 0 16px 8px;
  margin: 0;
  flex: 1;
}
.be-product-card__btn {
  margin-top: auto !important;
}

/* Produktinfo */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.be-product-card__name {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--be-text) !important;
  padding: 14px 16px 4px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title:hover {
  color: var(--be-blue) !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.be-product-card__price {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--be-blue) !important;
  padding: 2px 16px 12px !important;
  margin: 0 !important;
  display: block !important;
}
.woocommerce ul.products li.product .price del,
.be-product-card__price del {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--be-muted) !important;
  margin-right: 4px !important;
}

/* Sale-Badge */
.woocommerce ul.products li.product .onsale,
.be-product-card__badge {
  position: absolute !important;
  top: 10px !important; left: 10px !important;
  background: var(--be-blue) !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  padding: 3px 8px !important;
  border-radius: 20px !important;
  margin: 0 !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1.4 !important;
}

/* Warenkorb-Button in der Übersicht – alle Kontexte */
ul.products li.product .button,
ul.products li.product .add_to_cart_button,
ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce-cart ul.products li.product .button,
.be-product-card__btn {
  display: block !important;
  width: calc(100% - 32px) !important;
  margin: 4px 16px 16px !important;
  padding: 10px 16px !important;
  background: var(--be-blue) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: var(--font-base) !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal !important;
  writing-mode: horizontal-tb !important;
  transition: background .2s !important;
  box-sizing: border-box !important;
}
ul.products li.product .button:hover,
ul.products li.product a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: var(--be-blue-dark) !important;
  opacity: 1 !important;
  text-decoration: none !important;
}

/* Cross-Sells / Empty-Cart-Produkte */
.be-cross-sells,
.cross-sells,
.woocommerce-cart .cross-sells {
  margin-top: 48px;
  clear: both;
}
.be-cross-sells__title,
.cross-sells h2,
.woocommerce-cart .cross-sells h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--be-text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--be-border);
}
.be-cross-sells ul.products,
.cross-sells ul.products,
.woocommerce-cart ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
}
@media (max-width: 900px) {
  .be-cross-sells ul.products,
  .cross-sells ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
.be-cross-sells ul.products li.product a img,
.cross-sells ul.products li.product a img,
.woocommerce-cart ul.products li.product a img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── Pagination ─────────────────────────────────────────────── */
.woocommerce nav.woocommerce-pagination,
.be-shop-pagination {
  margin-top: 36px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex !important;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important; height: 36px !important;
  border: 1px solid var(--be-border) !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--be-blue) !important;
  text-decoration: none !important;
  background: var(--be-white) !important;
  transition: background .2s !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--be-blue-light) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--be-blue) !important;
  border-color: var(--be-blue) !important;
  color: #fff !important;
}

/* ── Einzelnes Produkt ──────────────────────────────────────── */

/* Wrapper – stellt sicher, dass woocommerce_before/after_main_content
   nicht das Layout bricht; Einzelprodukt bekommt eigenen Padding */
.woocommerce-page.single-product .be-container,
.single-product .be-container {
  padding-top: 40px;
  padding-bottom: 60px;
}

.woocommerce div.product,
.be-product-single {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}
@media (max-width: 760px) {
  .woocommerce div.product,
  .be-product-single {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* Produktbilder – WooCommerce-Standard-Galerie */
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product div.images,
.be-product-single__gallery {
  position: sticky !important;
  top: 100px !important;
}
.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img,
.be-product-single__main-img img {
  width: 100% !important;
  max-width: 350px !important;
  max-height: 520px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 4px !important;
  border: 1px solid var(--be-border) !important;
  display: block !important;
}
.be-product-single__main-img {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

/* Galerie-Thumbnails ausblenden (optional) */
.woocommerce div.product .woocommerce-product-gallery__wrapper ~ * {
  display: none !important;
}

/* Zusammenfassung */
.woocommerce div.product div.summary,
.be-product-single__info {
  display: flex !important;
  flex-direction: column !important;
}
.woocommerce div.product .product_title,
.be-product-single__title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: var(--be-text) !important;
  line-height: 1.2 !important;
  margin-bottom: 12px !important;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.be-product-single__price {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--be-blue) !important;
  margin-bottom: 16px !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: 14px;
  color: var(--be-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Kategorie-Badge Produktseite */
.woocommerce div.product .posted_in a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--be-blue);
  background: var(--be-blue-light);
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}
.woocommerce div.product .posted_in {
  font-size: 0;
  margin-bottom: 8px;
}

/* In den Warenkorb – Einzelprodukt */
.woocommerce form.cart {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 16px 0;
}
.woocommerce form.cart .qty {
  width: 64px;
  padding: 10px 12px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-base);
  color: var(--be-text);
  text-align: center;
  -moz-appearance: textfield;
}
.woocommerce form.cart .single_add_to_cart_button {
  flex: 1;
  padding: 12px 20px;
  background: var(--be-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-base);
  cursor: pointer;
  transition: background .2s;
}
.woocommerce form.cart .single_add_to_cart_button:hover { background: var(--be-blue-dark); }

/* Meta (SKU, Kategorie) */
.woocommerce div.product .product_meta {
  font-size: 12px;
  color: var(--be-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--be-border);
}

/* Lupe / Zoom-Trigger ausblenden */
.woocommerce-product-gallery__trigger { display: none !important; }

/* Upsells & Related – überspannen beide Spalten, eigene Box */
.woocommerce div.product .up-sells,
.woocommerce div.product .related,
/* Warenkorb / Kasse Buttons unter Add-to-Cart */
.be-product-single__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.be-product-single__action-btn {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px !important;
  font-size: 13px !important;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .be-product-single__actions { flex-direction: column; }
}

.be-product-single__desc {
  grid-column: 1 / -1;
  margin-top: 48px;
  padding: 32px;
  background: var(--be-white);
  border-radius: 4px;
  border: 1px solid var(--be-border);
}
.woocommerce div.product .related h2,
.woocommerce div.product .up-sells h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--be-text);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--be-border);
}

/* Tabs (Beschreibung, Bewertungen) */
.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--be-border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 2px solid var(--be-border);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--be-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--be-blue);
  border-bottom-color: var(--be-blue);
}
.woocommerce div.product .woocommerce-tabs .panel {
  font-size: 14px;
  color: var(--be-muted);
  line-height: 1.7;
}

/* ── Warenkorb (be-cart custom layout) ─────────────────────── */
.be-cart { padding: 40px 0 60px; }

/* Grid: Produkte | Zusammenfassung */
.be-cart__form {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .be-cart__form { grid-template-columns: 1fr; }
}

/* Produkttabelle */
.be-cart__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.be-cart__table thead th {
  text-align: left;
  padding: 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--be-muted);
  border-bottom: 2px solid var(--be-border);
}
.be-cart__table thead th:last-child { text-align: center; }
.be-cart__row td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--be-border);
  vertical-align: middle;
}
.be-cart__thumb img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.be-cart__name a {
  font-weight: 600;
  color: var(--be-text);
  text-decoration: none;
}
.be-cart__name a:hover { color: var(--be-blue); }
.be-cart__price,
.be-cart__subtotal { font-weight: 600; color: var(--be-text); }
.be-cart__remove { text-align: center; }
.be-cart__remove-btn {
  color: var(--be-muted);
  font-size: 16px;
  text-decoration: none;
  transition: color .2s;
}
.be-cart__remove-btn:hover { color: #c0392b; }

/* Qty input */
.be-cart__qty input[type="number"] {
  width: 56px;
  padding: 6px 8px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-base);
}

/* Aktionen (Update-Button) */
.be-cart__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

/* Zusammenfassung */
.be-cart__summary {
  background: var(--be-white);
  border: 1px solid var(--be-border);
  border-radius: 4px;
  padding: 24px;
  position: sticky;
  top: 150px;
}
.be-cart__summary-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--be-text);
  margin: 0 0 16px;
}
.be-cart__totals { margin-bottom: 20px; }
.be-cart__total-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--be-border);
  font-size: 13px;
  color: var(--be-muted);
}
.be-cart__total-row--coupon { color: #2e7d32; }
.be-cart__total-row--grand {
  font-size: 16px;
  font-weight: 700;
  color: var(--be-text);
  border-bottom: none;
  padding-top: 14px;
}
.be-cart__coupon { display: flex; flex-direction: column; gap: 8px; }
.be-cart__coupon input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  font-size: 13px;
  font-family: var(--font-base);
  box-sizing: border-box;
}

/* ── Warenkorb (Standard-WC-Klassen als Fallback) ───────────── */
.woocommerce-cart .woocommerce { padding: 40px 0 60px; }

.woocommerce-cart table.shop_table,
.be-cart__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 24px;
}
.woocommerce-cart table.shop_table th {
  text-align: left;
  padding: 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--be-muted);
  border-bottom: 2px solid var(--be-border);
}
.woocommerce-cart table.shop_table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--be-border);
  vertical-align: middle;
}
.woocommerce-cart table.shop_table td.product-thumbnail img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.woocommerce-cart table.shop_table td.product-name a {
  font-weight: 600;
  color: var(--be-text);
}
.woocommerce-cart table.shop_table td.product-name a:hover { color: var(--be-blue); }
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal { font-weight: 600; }
.woocommerce-cart table.shop_table td.product-remove a {
  color: var(--be-muted);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.woocommerce-cart table.shop_table td.product-remove a:hover { color: #c0392b; }
.woocommerce-cart .qty {
  width: 56px;
  padding: 6px 8px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
}

/* Warenkorb Aktionen */
.woocommerce-cart .cart-collaterals {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .woocommerce-cart .cart-collaterals { grid-template-columns: 1fr; }
}

.woocommerce-cart .cart_totals h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--be-text);
  margin-bottom: 16px;
}
.woocommerce-cart .cart_totals table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--be-border);
  color: var(--be-muted);
}
.woocommerce-cart .cart_totals table .order-total th,
.woocommerce-cart .cart_totals table .order-total td {
  font-size: 16px;
  font-weight: 700;
  color: var(--be-text);
  border-bottom: none;
}

/* Kasse-Button */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout .checkout-button {
  display: block !important;
  width: 100% !important;
  padding: 14px 20px !important;
  background: var(--be-blue) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--font-base) !important;
  border: none !important;
  border-radius: 4px !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: background .2s !important;
  margin-top: 16px !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--be-blue-dark) !important;
}

/* Update Warenkorb */
.woocommerce-cart button[name="update_cart"] {
  padding: 10px 18px;
  background: transparent;
  color: var(--be-blue);
  border: 1.5px solid var(--be-blue);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-base);
  cursor: pointer;
  transition: background .2s;
}
.woocommerce-cart button[name="update_cart"]:hover { background: var(--be-blue-light); }

/* "Neu im Shop"-Block auf Warenkorbseite ausblenden */
.woocommerce-cart .wp-block-woocommerce-product-new,
.woocommerce-cart .wc-block-product-new,
.woocommerce-cart .wp-block-product-new,
.woocommerce-cart .wp-block-heading + .wc-block-grid,
.woocommerce-cart .wp-block-heading + div[class*="wc-block-product"] {
  display: none !important;
}
/* Zugehörigen Titel auch ausblenden */
.woocommerce-cart .wp-block-heading:has(+ .wc-block-product-new),
.woocommerce-cart .wp-block-heading:has(+ [class*="wc-block-product"]) {
  display: none !important;
}

/* ── Checkout ───────────────────────────────────────────────── */
.woocommerce-checkout .woocommerce {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  padding: 40px 0 60px;
}
@media (max-width: 900px) {
  .woocommerce-checkout .woocommerce { grid-template-columns: 1fr; }
}

/* Seitenrahmen */
.woocommerce-checkout .be-container {
  padding-top: 40px;
  padding-bottom: 60px;
}

/* Linke Spalte: Formular */
.woocommerce-checkout #customer_details,
.woocommerce-checkout form.checkout .col-1,
.woocommerce-checkout form.checkout .col-2 {
  float: none !important;
  width: 100% !important;
}

/* Sektions-Cards */
.woocommerce-checkout #customer_details .woocommerce-billing-fields,
.woocommerce-checkout #customer_details .woocommerce-shipping-fields,
.woocommerce-checkout #customer_details .woocommerce-additional-fields {
  background: var(--be-white);
  border: 1px solid var(--be-border);
  border-radius: 4px;
  padding: 28px;
  margin-bottom: 24px;
}

/* Abschnitts-Überschriften */
.woocommerce-checkout form.checkout h3,
.woocommerce-checkout #order_review_heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--be-text);
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--be-border);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Vor- & Nachname nebeneinander */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
  grid-column: span 1;
}
/* Felder die volle Breite brauchen */
.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row-wide,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row-wide {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper .form-row {
    grid-column: 1 / -1;
  }
}

/* Labels */
.woocommerce-checkout .form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--be-text);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.woocommerce-checkout .form-row label .required {
  color: var(--be-blue);
  text-decoration: none;
}

/* Eingabefelder */
.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-base);
  color: var(--be-text);
  background: var(--be-white);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
.woocommerce-checkout .form-row select {
  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 d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: var(--be-blue);
  box-shadow: 0 0 0 3px rgba(30, 82, 148, 0.08);
}
.woocommerce-checkout .form-row.woocommerce-invalid input,
.woocommerce-checkout .form-row.woocommerce-invalid select {
  border-color: #e53935;
}

/* Abstände zwischen Feldern */
.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

/* Checkbox-Zeilen (Lieferadresse, AGB) */
.woocommerce-checkout .form-row-checkbox label,
.woocommerce-checkout .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
}
.woocommerce-checkout input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--be-blue);
}

/* Bestellübersicht (rechte Spalte) */
.woocommerce-checkout #order_review {
  background: var(--be-white);
  border: 1px solid var(--be-border);
  border-radius: 4px;
  padding: 28px;
  position: sticky;
  top: 120px;
}
.woocommerce-checkout #order_review_heading {
  margin-bottom: 20px !important;
}
.woocommerce-checkout table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 16px;
}
.woocommerce-checkout table.shop_table thead th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--be-muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--be-border);
}
.woocommerce-checkout table.shop_table td,
.woocommerce-checkout table.shop_table th {
  padding: 10px 0;
  border-bottom: 1px solid var(--be-border);
  vertical-align: middle;
}
.woocommerce-checkout table.shop_table .cart_item td:first-child {
  font-weight: 600;
  color: var(--be-text);
}
.woocommerce-checkout table.shop_table .cart-subtotal td,
.woocommerce-checkout table.shop_table .cart-subtotal th {
  font-size: 13px;
  color: var(--be-muted);
  border-bottom: none;
  padding-top: 16px;
}
.woocommerce-checkout table.shop_table .order-total td,
.woocommerce-checkout table.shop_table .order-total th {
  font-weight: 700;
  font-size: 16px;
  border-bottom: none;
  color: var(--be-text);
  padding-top: 12px;
}

/* Zahlungsmethoden-Box direkt im Checkout */
.woocommerce-checkout #payment {
  margin-top: 0 !important;
  border-radius: 4px !important;
}

/* Jetzt kaufen Button */
#place_order {
  display: block !important;
  width: 100% !important;
  padding: 14px !important;
  background: var(--be-blue) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--font-base) !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background .2s !important;
  margin-top: 16px !important;
}
#place_order:hover { background: var(--be-blue-dark) !important; }

/* ── WooCommerce Notices ────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 16px !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  margin-bottom: 20px !important;
  list-style: none !important;
  border-top: none !important;
  border-left-width: 3px !important;
  border-left-style: solid !important;
}
.woocommerce-message { background: #e8f5e9 !important; color: #2e7d32 !important; border-color: #43a047 !important; }
.woocommerce-info    { background: var(--be-blue-light) !important; color: var(--be-blue) !important; border-color: var(--be-blue) !important; }
.woocommerce-error   { background: #fdecea !important; color: #c62828 !important; border-color: #e53935 !important; }
.woocommerce-message a.button,
.woocommerce-info a.button {
  margin-left: auto;
  padding: 6px 14px;
  background: var(--be-blue);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Zahlungsmethoden (Checkout) ────────────────────────────── */

/* Container-Titel "Bitte wähle eine Zahlungsmethode" */
.woocommerce-checkout #payment {
  background: var(--be-white) !important;
  border-radius: 4px !important;
  border: 1px solid var(--be-border) !important;
  padding: 0 !important;
  overflow: hidden;
}

/* Liste der Zahlungsmethoden */
.woocommerce-checkout #payment ul.wc_payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Einzelne Methode */
.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method {
  border-bottom: 1px solid var(--be-border);
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-checkout #payment ul.wc_payment_methods li.wc_payment_method:last-child {
  border-bottom: none;
}

/* Label (Radiobutton-Zeile) */
.woocommerce-checkout #payment ul.wc_payment_methods li label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 16px 20px !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--be-text) !important;
  margin: 0 !important;
}

/* Radio-Input */
.woocommerce-checkout #payment ul.wc_payment_methods li input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--be-blue) !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

/* Logo-Bild */
.woocommerce-checkout #payment ul.wc_payment_methods li label img {
  height: 28px !important;
  width: auto !important;
  object-fit: contain !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Beschreibungstext unter der gewählten Methode */
.woocommerce-checkout #payment .payment_box {
  background: var(--be-bg) !important;
  border-top: 1px solid var(--be-border) !important;
  padding: 14px 20px !important;
  font-size: 13px !important;
  color: var(--be-muted) !important;
  margin: 0 !important;
}
.woocommerce-checkout #payment .payment_box p {
  margin: 0 !important;
}

/* PayPal-spezifischer Container (iframe, Buttons) */
.woocommerce-checkout #payment .payment_box .ppc-button-wrapper,
.woocommerce-checkout #payment .payment_box [id*="paypal"] {
  margin-top: 12px;
}

/* "Zahlungspflichtig bestellen"-Hinweis */
.woocommerce-checkout #payment .payment-policy,
.woocommerce-checkout #payment p.terms {
  padding: 0 20px 16px;
  font-size: 12px;
  color: var(--be-muted);
  margin: 0;
}

/* ── WooCommerce BLOCK-Checkout (/kasse/) ──────────────────── */

/* Schriftart einheitlich – KEIN font-size auf * (bricht Floating Labels) */
.wc-block-checkout {
  font-family: var(--font-base) !important;
  font-size: 14px !important;
  box-sizing: border-box;
}

/* Block-Checkout nicht extra einschränken */
.wp-block-woocommerce-checkout {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Abschnitts-Überschriften: kein Blau */
.wc-block-components-checkout-step__heading,
.wc-block-components-checkout-step__heading-content,
.wc-block-components-checkout-step__title {
  color: var(--be-text) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: var(--font-base) !important;
}

/* Alle Links im Checkout: nur AGB blau, sonst neutral */
.wc-block-checkout a { color: var(--be-blue) !important; }

/* Inputs */
.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-country-input input,
.wc-block-components-state-input input {
  border-color: var(--be-border) !important;
  border-radius: 4px !important;
  font-family: var(--font-base) !important;
  font-size: 14px !important;
  color: var(--be-text) !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-combobox input:focus,
.wc-block-components-country-input input:focus,
.wc-block-components-state-input input:focus {
  border-color: var(--be-blue) !important;
  box-shadow: 0 0 0 2px rgba(30,82,148,.1) !important;
  outline: none !important;
}

/* Radio-Buttons */
.wc-block-components-radio-control input[type="radio"] {
  accent-color: var(--be-blue) !important;
}
.wc-block-components-radio-control--highlight-checked
  .wc-block-components-radio-control-accordion-option--checked {
  border-color: var(--be-blue) !important;
  background-color: var(--be-blue-light) !important;
}

/* Haupt-Button blau */
.wc-block-components-checkout-place-order-button,
.wc-block-checkout__actions_row .wc-block-components-button {
  background-color: var(--be-blue) !important;
  color: #fff !important;
  border-color: var(--be-blue) !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.wc-block-components-checkout-place-order-button:hover,
.wc-block-checkout__actions_row .wc-block-components-button:hover {
  background-color: var(--be-blue-dark) !important;
  border-color: var(--be-blue-dark) !important;
}

/* Bestellübersicht: Produktname umbrechend, nicht kaputt */
.wc-block-components-order-summary-item__description {
  min-width: 0 !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
}
.wc-block-components-order-summary-item__full-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--be-text) !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}

/* Bundesland-Label ausblenden (Option-Text reicht als Beschriftung) */
.wc-block-components-state-input .wc-blocks-components-select__label,
.wc-block-components-address-form__state .wc-blocks-components-select__label {
  display: none !important;
}
.wc-block-components-state-input .wc-blocks-components-select__select,
.wc-block-components-address-form__state .wc-blocks-components-select__select {
  padding-top: 10px !important;
}

/* Steuerhinweis nicht überlaufen */
.wc-block-components-totals-footer-item-tax-value {
  font-size: 12px !important;
  color: var(--be-muted) !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
  display: block !important;
  margin-top: 4px !important;
}

/* Gesamtzeile */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--be-text) !important;
}

/* Bestellübersicht-Titel */
.wc-block-components-checkout-order-summary__title,
.wc-block-order-summary__title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--be-text) !important;
}

/* ── Newsletter Plugin Formular ─────────────────────────────── */
.newsletter_widget,
.newsletter_shortcode_widget {
  font-family: var(--font-base);
}

/* Felder-Wrapper */
.newsletter_name_field,
.newsletter_email_field,
.newsletter_submit_field {
  margin-bottom: 12px;
}

/* Inputs */
.newsletter_widget input[type="text"],
.newsletter_widget input[type="email"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--be-border);
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 14px;
  color: var(--be-text);
  background: var(--be-white);
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.newsletter_widget input[type="text"]:focus,
.newsletter_widget input[type="email"]:focus {
  outline: none;
  border-color: var(--be-blue);
  box-shadow: 0 0 0 3px rgba(30,82,148,.08);
}

/* Submit-Button */
.newsletter_widget input[type="submit"],
.newsletter_widget button[type="submit"] {
  width: 100%;
  padding: 12px 20px;
  background: var(--be-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.newsletter_widget input[type="submit"]:hover,
.newsletter_widget button[type="submit"]:hover {
  background: var(--be-blue-dark);
}

/* Meldungen (Erfolg / Fehler) */
.newsletter_widget .newsletter_result {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 13px;
  border-left: 3px solid;
}
.newsletter_widget .newsletter_result.success {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #43a047;
}
.newsletter_widget .newsletter_result.error {
  background: #fdecea;
  color: #c62828;
  border-color: #e53935;
}

/* DSGVO-Checkbox */
.newsletter_widget .newsletter_privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--be-muted);
  margin-bottom: 12px;
}
.newsletter_widget .newsletter_privacy input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--be-blue);
}
.newsletter_widget .newsletter_privacy a {
  color: var(--be-blue);
  text-decoration: underline;
}
