/* =====================================================================
   Lotto Oder – Shop-Erweiterung
   Kompakte Produktliste + Browser-Warenkorb + Startseite
   Farbwelt: Navy #263a70 (Logo) als Leitfarbe, Orange #FF4800 als Akzent
   ===================================================================== */

:root {
  --shop-accent: #FF4800;
  --shop-accent-dark: #d63d00;
  --shop-navy: #263a70;
  --shop-navy-dark: #1c2c54;
  --shop-ink: #2c3242;       /* Fließtext dunkel */
  --shop-muted: #6b7080;     /* Sekundärtext */
  --shop-line: #e7e8ee;
  --shop-soft: #f4f5f9;      /* leicht navy getönter Hintergrund */
}

/* ---------------------------------------------------------------------
   Buttons – moderner, weniger kantig
   --------------------------------------------------------------------- */
.button-1 {
  position: relative;
  display: inline-block;
  padding: 16px 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(150deg, #ff8a3d 0%, var(--shop-accent) 52%, var(--shop-accent-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: .2px;
  text-transform: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(214, 61, 0, .35);
  transition: box-shadow .22s ease, transform .12s ease, filter .22s ease;
}

/* Glanz-Sweep statt des navy Wisch-Effekts aus dem Theme.
   Überschreibt .button-1::after / :hover::after der generierten style.css. */
.button-1::after {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
              transparent 0%,
              rgba(255, 255, 255, .55) 50%,
              transparent 100%);
  transform: skewX(-22deg);
  z-index: 2;
  pointer-events: none;
  transition: left .6s ease;
}
.button-1:hover::after,
.button-1:focus-visible::after {
  left: 130%;
  width: 60%;
  background: linear-gradient(120deg,
              transparent 0%,
              rgba(255, 255, 255, .55) 50%,
              transparent 100%);
}
.button-1:hover,
.button-1:focus {
  color: #fff;
  text-decoration: none;
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 61, 0, .45);
}
.button-1:active {
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow: 0 6px 14px rgba(214, 61, 0, .35);
}

/* ---------------------------------------------------------------------
   Feinere Überschriften auf den Shop-Seiten
   --------------------------------------------------------------------- */
.shop-area h1,
.shopping-cart h1,
.shopping-cart h4,
.shopping-cart h6,
.mini-cart h2 {
  color: var(--shop-navy);
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   Toolbar: Suche + Sortierung
   --------------------------------------------------------------------- */
.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.shop-toolbar .shop-search,
.shop-toolbar .shop-sort {
  height: 46px;
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 15px;
  background: #fff;
  color: var(--shop-ink);
}
.shop-toolbar .shop-search { flex: 1 1 240px; }
.shop-toolbar .shop-sort   { flex: 0 0 auto; cursor: pointer; }
.shop-toolbar .shop-search:focus,
.shop-toolbar .shop-sort:focus {
  outline: none;
  border-color: var(--shop-navy);
}

/* ---------------------------------------------------------------------
   Produktliste
   --------------------------------------------------------------------- */
.product-list {
  border: 1px solid var(--shop-line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.product-list-head,
.product-row {
  display: grid;
  grid-template-columns: 1fr 140px 110px 56px;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
}
.product-list-head {
  background: var(--shop-soft);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--shop-muted);
}
.product-row {
  border-top: 1px solid #f1f2f5;
  transition: background .15s ease;
}
.product-row:hover { background: var(--shop-soft); }
.product-row .pl-name  { font-weight: 500; color: var(--shop-navy); font-size: 15px; }
.product-row .pl-meta  { color: var(--shop-muted); font-size: 14px; }
.product-row .pl-price { font-weight: 600; color: var(--shop-navy); font-size: 15px; white-space: nowrap; }
.product-row .pl-action { text-align: right; }

.product-list-empty {
  display: none;
  padding: 28px 20px;
  text-align: center;
  color: var(--shop-muted);
}

/* Add-to-cart-Button */
.add-to-cart-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: var(--shop-accent);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .15s ease, transform .08s ease, box-shadow .15s ease;
}
.add-to-cart-btn:hover {
  background: var(--shop-accent-dark);
  box-shadow: 0 6px 16px rgba(255, 72, 0, .32);
}
.add-to-cart-btn:active { transform: scale(.9); }

/* Produktliste responsive */
@media (max-width: 575px) {
  .product-list-head { display: none; }
  .product-row {
    grid-template-columns: 1fr auto 48px;
    grid-template-areas:
      "name  price action"
      "meta  price action";
    row-gap: 2px;
    padding: 12px 14px;
  }
  .product-row .pl-name   { grid-area: name; }
  .product-row .pl-meta   { grid-area: meta; font-size: 13px; }
  .product-row .pl-price  { grid-area: price; align-self: center; }
  .product-row .pl-action { grid-area: action; }
}

/* ---------------------------------------------------------------------
   Header-Warenkorb-Zähler
   --------------------------------------------------------------------- */
.header-cart .cart-icon .count.is-empty { display: none; }

/* ---------------------------------------------------------------------
   Mini-Warenkorb (Off-Canvas)
   --------------------------------------------------------------------- */
.mini-cart-empty {
  display: none;
  padding: 30px 20px;
  text-align: center;
  color: var(--shop-muted);
}
.mini-cart.cart-is-empty .mini-cart-empty { display: block; }
.mini-cart.cart-is-empty .mini-cart-footer-content { display: none; }

/* Kompakter Mini-Warenkorb: Titel und Positionen brauchen weniger Platz. */
.mini-cart-full h2 {
  font-size: 17px;
  margin: 4px 0 12px;
}
.mini-cart-full .cart_items { padding: 9px 0; }
.single_cart_items_Content { padding-left: 0; padding-right: 22px; }
.single_cart_items_Content h3 {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--shop-navy);
}
.single_cart_items_Content .cart-meta {
  margin: 1px 0 0;
  font-size: 12px;
  color: var(--shop-muted);
}
.single_cart_items_Content .cart-line-qty {
  margin: 1px 0 0;
  font-size: 12px;
  color: var(--shop-muted);
}
.single_cart_items_Content i.mini-cart-remove {
  top: 1px;
  font-size: 13px;
}
.mini-cart-remove { cursor: pointer; }
.mini-cart-remove:hover { color: var(--shop-accent); }

/* ---------------------------------------------------------------------
   Warenkorb-Seite (cart.php)
   --------------------------------------------------------------------- */
.shopping-cart { background: var(--shop-soft); }

.lo-cart-head { margin-bottom: 32px; }
.lo-cart-head h1 { margin: 4px 0 0; font-size: 34px; }

/* Zweispaltiges Layout: Produkte | Zusammenfassung */
.lo-cart-layout {
  display: grid;
  grid-template-columns: 1fr 384px;
  gap: 26px;
  align-items: start;
}
/* min-width: 0 erlaubt den Spalten zu schrumpfen – sonst zwingt die
   Produkttabelle die Seite auf Mobilgeräten breiter als der Viewport. */
.lo-cart-main,
.lo-cart-aside { min-width: 0; }

/* Karten-Grundgerüst */
.lo-cart-card {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(38, 58, 112, .07);
}
.lo-cart-card .table-responsive { border-radius: 14px; }

/* Produkttabelle */
.shopping-cart-tabel { margin: 0; }
.shopping-cart-tabel thead th {
  background: var(--shop-soft);
  color: var(--shop-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  border: none;
  padding: 15px 18px;
  white-space: nowrap;
}
.shopping-cart-tabel tbody td {
  border: none;
  border-top: 1px solid var(--shop-line);
  padding: 16px 18px;
  vertical-align: middle;
}
.shopping-cart-tabel tbody tr:hover { background: #fafbfd; }
.shopping-cart-tabel .product-name { text-align: left !important; }
.shopping-cart-tabel .product-name a { color: var(--shop-navy); font-weight: 600; text-decoration: none; }
.shopping-cart-tabel .product-meta { color: var(--shop-muted); font-size: 13px; margin-top: 2px; }
.shopping-cart-tabel .amount { font-weight: 600; color: var(--shop-navy); white-space: nowrap; }
.shopping-cart-tabel .product-subtotal .amount { color: var(--shop-accent); }

/* Aktionslinks unter der Tabelle */
.lo-cart-actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.lo-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--shop-navy);
  text-decoration: none;
  transition: color .15s ease;
}
.lo-cart-link:hover { color: var(--shop-accent); }
.lo-cart-link--danger { color: var(--shop-muted); }

/* Zusammenfassung + Formular (rechte Spalte) */
.lo-cart-aside { position: sticky; top: 20px; }
.lo-cart-summary { padding: 26px 24px; }
.lo-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--shop-line);
}
.lo-summary-total > span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--shop-ink);
}
.lo-summary-total .cart-grand-total {
  font-size: 26px;
  font-weight: 700;
  color: var(--shop-navy);
}
.lo-summary-title { font-size: 18px; margin: 22px 0 4px; }

/* Formularfelder */
.lo-field { margin-top: 16px; }
.lo-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--shop-ink);
  margin-bottom: 6px;
}
.lo-field label i {
  color: var(--shop-muted);
  margin-right: 6px;
  width: 14px;
  text-align: center;
}
.shopping-cart .form-control {
  border: 1px solid var(--shop-line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--shop-ink);
  background: #fff;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.shopping-cart .form-control:focus {
  border-color: var(--shop-navy);
  box-shadow: 0 0 0 3px rgba(38, 58, 112, .12);
  outline: none;
}
.shopping-cart textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Hinweisbox */
.lo-cart-note {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--shop-soft);
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--shop-muted);
}
.lo-cart-note i { color: var(--shop-accent); font-size: 16px; margin-top: 1px; }
.lo-cart-note strong { color: var(--shop-ink); }

.reservation-form .reservation-submit {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}

/* Leerer Warenkorb */
.cart-empty-msg {
  display: none;
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(38, 58, 112, .07);
  padding: 64px 24px;
  text-align: center;
}
.lo-cart-empty-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shop-soft);
  color: var(--shop-navy);
  border-radius: 50%;
  font-size: 34px;
}
.cart-empty-msg h3 { color: var(--shop-navy); font-weight: 600; margin: 0 0 8px; }
.cart-empty-msg p { color: var(--shop-muted); margin: 0 0 24px; }

/* Responsive: einspaltig */
@media (max-width: 991px) {
  .lo-cart-layout { grid-template-columns: 1fr; }
  .lo-cart-aside { position: static; }
}

/* Mengensteuerung */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dcdee5;
  border-radius: 8px;
  overflow: hidden;
}
.qty-control button {
  width: 34px;
  height: 38px;
  border: none;
  background: var(--shop-soft);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  color: var(--shop-navy);
  transition: background .12s ease;
}
.qty-control button:hover { background: #e8eaf1; }
.qty-control .qty-input {
  width: 48px;
  height: 38px;
  border: none;
  border-left: 1px solid #dcdee5;
  border-right: 1px solid #dcdee5;
  text-align: center;
  font-size: 15px;
  color: var(--shop-ink);
  -moz-appearance: textfield;
}
.qty-control .qty-input::-webkit-outer-spin-button,
.qty-control .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-remove .cart-remove { color: #b0b3bf; }
.product-remove .cart-remove:hover { color: var(--shop-accent); }

.cart-is-empty .cart-empty-msg { display: block; }
.cart-is-empty .cart-content-area { display: none; }

.button-1.is-disabled {
  opacity: .5;
  pointer-events: none;
}

/* Honeypot-Feld – für Menschen unsichtbar, nur Bots füllen es aus */
.lo-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Statusmeldung nach dem Absenden des Reservierungsformulars */
.lo-res-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 26px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.55;
}
.lo-res-alert i { font-size: 20px; margin-top: 1px; flex: 0 0 auto; }
.lo-res-ok      { background: #e8f5ec; color: #1f5135; }
.lo-res-ok i    { color: #2e8b57; }
.lo-res-error   { background: #fdeceb; color: #7d2820; }
.lo-res-error i { color: #c0392b; }

/* ---------------------------------------------------------------------
   Hinweis-Toast beim Hinzufügen
   --------------------------------------------------------------------- */
.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  max-width: 320px;
  background: var(--shop-navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 10px 28px rgba(28, 44, 84, .38);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.cart-toast .cart-toast-icon { color: var(--shop-accent); margin-right: 8px; }


/* =====================================================================
   Startseite (Homepage)
   ===================================================================== */

/* ---------- Hero-Background (großes Bild, Logo, Button) ---------- */
.lo-herobg {
  position: relative;
  min-height: 88vh;
  background: #1c2c54 url('/assets/img/hero-1.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lo-herobg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 27, 52, .55) 0%,
    rgba(20, 27, 52, .80) 100%);
}
.lo-herobg-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  padding: 60px 20px;
}
.lo-herobg-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 28px;
}
.lo-herobg-text {
  color: #e7e8ee;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .lo-herobg { min-height: 78vh; }
  .lo-herobg-logo { max-width: 270px; margin-bottom: 22px; }
  .lo-herobg-text { font-size: 16px; }
}

/* ---------- Section-Grundgerüst ---------- */
.lo-section { padding: 90px 0; }
.lo-section--alt { background: var(--shop-soft); }
.lo-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--shop-accent);
  margin-bottom: 8px;
}
.lo-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.lo-section-head h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.4px;
  margin: 0;
  color: var(--shop-navy);
}
@media (max-width: 767px) {
  .lo-section { padding: 60px 0; }
  .lo-section-head h2 { font-size: 26px; }
}

/* ---------- Over ons ---------- */
.lo-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.lo-about-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(28, 44, 84, .20);
}
.lo-about-text h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.3px;
  margin: 6px 0 18px;
  color: var(--shop-navy);
}
.lo-about-text p {
  color: var(--shop-muted);
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 14px;
}
.lo-about-text p strong { font-weight: 600; color: var(--shop-ink); }
@media (max-width: 767px) {
  .lo-about-grid { grid-template-columns: 1fr; gap: 28px; }
  .lo-about-img img { height: 280px; }
}

/* ---------- Categorie-tegels ---------- */
.lo-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lo-cat-tile {
  position: relative;
  display: block;
  height: 300px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}
.lo-cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.lo-cat-tile:hover img { transform: scale(1.08); }
.lo-cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(18, 24, 48, .90) 0%,
    rgba(18, 24, 48, .28) 58%,
    rgba(18, 24, 48, 0) 100%);
}
.lo-cat-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
}
.lo-cat-body h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 4px;
}
.lo-cat-body span {
  font-size: 14px;
  font-weight: 600;
  color: var(--shop-accent);
}
@media (max-width: 991px) { .lo-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .lo-cat-grid { grid-template-columns: 1fr; } }

/* ---------- Bestseller-Karten ---------- */
.lo-bestseller-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lo-product-card {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.lo-product-card:hover {
  box-shadow: 0 14px 30px rgba(38, 58, 112, .14);
  border-color: #d7d9e4;
  transform: translateY(-3px);
}
.lo-product-card .lo-pc-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--shop-navy);
  margin: 0 0 4px;
}
.lo-product-card .lo-pc-meta {
  font-size: 14px;
  color: var(--shop-muted);
  margin: 0 0 16px;
}
.lo-product-card .lo-pc-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lo-product-card .lo-pc-price {
  font-size: 19px;
  font-weight: 700;
  color: var(--shop-navy);
}
@media (max-width: 991px) { .lo-bestseller-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .lo-bestseller-grid { grid-template-columns: 1fr; } }

/* ---------- Service-Boxen ---------- */
.lo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lo-service-box {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
}
.lo-service-box .lo-service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef0f7;
  color: var(--shop-navy);
  border-radius: 50%;
  font-size: 25px;
}
.lo-service-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--shop-navy);
}
.lo-service-box p {
  color: var(--shop-muted);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
  font-size: 15px;
}
@media (max-width: 767px) { .lo-service-grid { grid-template-columns: 1fr; } }

/* ---------- Shopdaten: Öffnungszeiten + Kontakt ---------- */
.lo-shopdata {
  background: var(--shop-navy);
  color: #d6d9e6;
  padding: 72px 0;
}
.lo-shopdata-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  max-width: 1000px;
  margin: 0 auto;
}
.lo-shopdata h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 22px;
}
.lo-shopdata h2 i { color: var(--shop-accent); margin-right: 8px; }
.lo-hours-table {
  width: 100%;
  border-collapse: collapse;
}
.lo-hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 15px;
  font-weight: 300;
}
.lo-hours-table td:last-child {
  text-align: right;
  color: #fff;
  font-weight: 500;
}
.lo-hours-table tr:last-child td { border-bottom: none; }
.lo-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}
.lo-contact-line i {
  color: var(--shop-accent);
  font-size: 18px;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}
.lo-contact-line a { color: #d6d9e6; text-decoration: none; }
.lo-contact-line a:hover { color: #fff; }
@media (max-width: 767px) {
  .lo-shopdata-grid { grid-template-columns: 1fr; gap: 34px; }
}


/* =====================================================================
   Kopfzeile: zentrierte Navigation + Sprachwahl, Warenkorb rechts
   ===================================================================== */
.lo-header-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 0;
}
.lo-header-logo { flex: 1 1 0; min-width: 0; }
.lo-header-logo .logo { display: flex; align-items: center; }
.lo-header-logo .logo img { height: 58px; width: auto; max-width: 100%; }

.lo-header-nav { flex: 0 1 auto; display: flex; justify-content: center; }
.lo-header-nav .menu { text-align: center; padding: 0; float: none; }

.lo-header-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.lo-header-right .header-cart { float: none; padding: 0; }

/* Sprachwahl DE / NL (aktuell ohne Funktion) */
.lo-lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.lo-lang-icon { color: var(--shop-muted); font-size: 14px; margin-right: 3px; }
.lo-lang-opt {
  color: var(--shop-muted);
  font-weight: 600;
  text-decoration: none;
  padding: 2px 3px;
  transition: color .15s ease;
}
.lo-lang-opt:hover { color: var(--shop-navy); }
.lo-lang-opt.is-active { color: var(--shop-accent); }
.lo-lang-sep { color: #c9ccd6; }

/* Mobil: zentrierte Navigation aus, Hamburger übernimmt */
@media (max-width: 991px) {
  .lo-header-nav { display: none; }
  .lo-header-logo { flex: 1 1 auto; }
  .lo-header-bar { gap: 14px; }
}


/* =====================================================================
   Leeftijdscontrole / Altersabfrage 18+
   ===================================================================== */
.lo-agegate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
  background: #1c2c54 url('/assets/img/hero-1.jpg') center / cover no-repeat;
}
.lo-agegate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 27, 52, .90);
}
/* Bereits bestätigt -> Gate nicht anzeigen, Seite normal scrollbar */
html.age-ok .lo-agegate { display: none; }
html:not(.age-ok) body { overflow: hidden; }

.lo-agegate-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 16px;
  padding: 44px 38px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}
.lo-agegate-logo {
  display: block;
  width: 210px;
  max-width: 72%;
  margin: 0 auto;
}
.lo-agegate-badge {
  width: 66px;
  height: 66px;
  margin: 18px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shop-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
}
.lo-agegate h2 {
  color: var(--shop-navy);
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 12px;
}
.lo-agegate p {
  color: var(--shop-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 26px;
}
.lo-agegate-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lo-agegate-btns .button-1 {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
}
.lo-agegate-no {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid var(--shop-line);
  border-radius: 8px;
  background: #fff;
  color: var(--shop-muted);
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease;
}
.lo-agegate-no:hover { background: var(--shop-soft); }

/* Ablehnungs-Zustand */
.lo-agegate-deny { display: none; }
.lo-agegate.is-denied .lo-agegate-ask { display: none; }
.lo-agegate.is-denied .lo-agegate-deny { display: block; }
.lo-agegate.is-denied .lo-agegate-badge { background: #b23b3b; }
.lo-agegate-back {
  margin-top: 4px;
  background: none;
  border: none;
  color: var(--shop-accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .lo-agegate-card { padding: 34px 24px; }
}


/* =====================================================================
   Over ons (ueber-uns.php)
   ===================================================================== */

/* Seitentitel im Intro */
.lo-about-text h1 {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -.3px;
  margin: 6px 0 16px;
  color: var(--shop-navy);
}
.lo-about-text .button-1 { margin-top: 10px; }

/* Lead-Absatz unter den Section-Überschriften */
.lo-section-head p {
  color: var(--shop-muted);
  line-height: 1.7;
  font-weight: 300;
  margin: 14px 0 0;
}

/* Foto-Band über die volle Breite */
.lo-photoband {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) { .lo-photoband { height: 220px; } }

/* "Zo werkt het" – Schritte */
.lo-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.lo-step {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 14px;
  padding: 30px 22px;
  text-align: center;
}
.lo-step-num {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--shop-navy);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
}
.lo-step h3 { font-size: 17px; font-weight: 600; color: var(--shop-navy); margin: 0 0 8px; }
.lo-step p  { color: var(--shop-muted); font-size: 14px; line-height: 1.6; margin: 0; }
@media (max-width: 991px) { .lo-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .lo-steps { grid-template-columns: 1fr; } }

/* Infobox "Goed om te weten" */
.lo-infobox {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--shop-line);
  border-left: 4px solid var(--shop-accent);
  border-radius: 12px;
  padding: 24px 26px;
  margin-top: 30px;
}
.lo-infobox-icon { flex: 0 0 auto; font-size: 26px; color: var(--shop-accent); margin-top: 2px; }
.lo-infobox h3 { font-size: 17px; font-weight: 600; color: var(--shop-navy); margin: 0 0 6px; }
.lo-infobox p  { color: var(--shop-muted); line-height: 1.65; margin: 0; }

/* zentrierter Button unter einem Abschnitt */
.lo-section-cta { text-align: center; margin-top: 36px; }

/* CTA-Band */
.lo-cta-band {
  background: var(--shop-navy);
  text-align: center;
  padding: 58px 0;
}
.lo-cta-band h2 { color: #fff; font-size: 27px; font-weight: 600; margin: 0 0 8px; }
.lo-cta-band p  { color: #c4c8d6; font-weight: 300; margin: 0 0 24px; }

/* Tot ziens / Teamfoto */
.lo-closing { text-align: center; }
.lo-closing p {
  max-width: 620px;
  margin: 6px auto 30px;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--shop-ink);
}
.lo-closing-photo {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(28, 44, 84, .20);
}

/* Anfahrtsskizze */
.lo-route-card {
  background: #fff;
  border: 1px solid var(--shop-line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(38, 58, 112, .08);
}
.lo-route-sketch { width: 100%; height: auto; display: block; }

.lo-route-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--shop-soft);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 22px;
}
.lo-route-note i { color: var(--shop-accent); font-size: 20px; margin-top: 2px; }
.lo-route-note p { margin: 0; color: var(--shop-ink); font-size: 14px; line-height: 1.6; }
.lo-route-note strong { color: var(--shop-navy); }

/* Karte + Kontaktkarte */
.lo-route-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 26px;
  margin-top: 26px;
  align-items: stretch;
}
.lo-map {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
  display: block;
}
.lo-contact-card {
  background: var(--shop-navy);
  color: #d6d9e6;
  border-radius: 14px;
  padding: 30px 28px;
}
.lo-contact-card h3 { color: #fff; font-size: 20px; font-weight: 600; margin: 0 0 22px; }
.lo-contact-card h3 i { color: var(--shop-accent); margin-right: 8px; }
.lo-contact-card .lo-contact-line a { color: #d6d9e6; }
.lo-contact-card .lo-contact-line a:hover { color: #fff; }
.lo-contact-card .button-1 { width: 100%; text-align: center; margin-top: 10px; }
/* Google Maps – Klick-zum-Laden (Einwilligung, Datenschutz) */
.lo-map-consent {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: var(--shop-soft);
  border: 1px solid var(--shop-line);
  border-radius: 14px;
}
.lo-map-consent-inner { max-width: 380px; }
.lo-map-consent-inner i {
  font-size: 38px;
  color: var(--shop-navy);
  margin-bottom: 14px;
}
.lo-map-consent-inner h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--shop-navy);
  margin: 0 0 8px;
}
.lo-map-consent-inner p {
  font-size: 14px;
  color: var(--shop-muted);
  line-height: 1.6;
  margin: 0 0 18px;
}
.lo-map-consent-inner a { color: var(--shop-accent); }

@media (max-width: 767px) {
  .lo-route-grid { grid-template-columns: 1fr; }
  .lo-map,
  .lo-map-consent { min-height: 260px; }
}


/* =====================================================================
   Rechtstexte (Impressum, Datenschutz)
   ===================================================================== */
.lo-legal {
  max-width: 820px;
  margin: 0 auto;
}
.lo-legal h1 {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -.3px;
  color: var(--shop-navy);
  margin: 6px 0 24px;
}
.lo-legal h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--shop-navy);
  margin: 34px 0 10px;
}
.lo-legal h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--shop-ink);
  margin: 22px 0 6px;
}
.lo-legal p,
.lo-legal li {
  color: var(--shop-ink);
  line-height: 1.75;
  font-weight: 300;
}
.lo-legal p { margin: 0 0 14px; }
.lo-legal address {
  font-style: normal;
  line-height: 1.75;
  font-weight: 300;
  color: var(--shop-ink);
  margin: 0 0 14px;
}
.lo-legal ul,
.lo-legal ol {
  margin: 0 0 14px;
  padding-left: 22px;
}
.lo-legal li { margin-bottom: 6px; }
.lo-legal a {
  color: var(--shop-accent);
  word-break: break-word;
}
.lo-legal a:hover { color: var(--shop-accent-dark); }
.lo-legal strong { font-weight: 600; }
.lo-legal-updated {
  margin-top: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--shop-line);
  font-size: 14px;
  color: var(--shop-muted);
}

/* Inhaltsverzeichnis (Datenschutz) */
.lo-legal-toc {
  background: var(--shop-soft);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0 8px;
}
.lo-legal-toc ol { margin: 10px 0 0; }
.lo-legal-toc a {
  color: var(--shop-navy);
  font-weight: 500;
}
.lo-legal-toc a:hover { color: var(--shop-accent); }

/* Anker-Sprungziele nicht unter die fixe Kopfzeile rutschen lassen */
.lo-legal h2[id] { scroll-margin-top: 90px; }


/* =====================================================================
   Footer-Unterzeile: Copyright · Rechtslinks · Zahlarten
   ===================================================================== */
.lo-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 30px;
}
.lo-footer-copy {
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
}
.lo-footer-legal {
  display: flex;
  align-items: center;
  gap: 26px;
}
.lo-footer-legal a {
  position: relative;
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease;
}
.lo-footer-legal a:hover { color: #fff; }
/* feiner Trennpunkt zwischen den Links */
.lo-footer-legal a + a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #5a5a5a;
  transform: translateY(-50%);
}
/* Akzent-Unterstrich beim Hover */
.lo-footer-legal a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--shop-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.lo-footer-legal a:hover::after { transform: scaleX(1); }
.lo-footer-bar .footer_payment { margin: 0; }

@media (max-width: 575px) {
  .lo-footer-bar { justify-content: center; text-align: center; }
  .lo-footer-bar .footer_payment { text-align: center; }
}

/* =====================================================================
   Nachbesserungen 22.05.2026
   - Warenkorb-Zähler überläuft nicht mehr bei mehrstelligen Zahlen
   - Floating-Button auf der Warenkorb-Seite ausgeblendet
   - Warenkorb-Tabelle auf Mobilgeräten als gestapelte Karten
   ===================================================================== */

/* Warenkorb-Zähler: wächst bei mehrstelligen Werten zur Pille statt den
   runden Kreis zu sprengen ("99+" passt damit sauber hinein). */
.header-cart .cart-icon .count {
  width: auto;
  min-width: 22px;
  padding: 0 5px;
  border-radius: 999px;
  box-sizing: border-box;
}

/* Floating-Button "» Nu bestellen" auf der Warenkorb-Seite ausblenden –
   dort verdeckte er sonst das Reservierungsformular (Feld "Naam"). */
.is-cart-page .scroll-area { display: none !important; }

/* Warenkorb-Tabelle: auf schmalen Bildschirmen als gestapelte Karten statt
   einer horizontal scrollenden Tabelle. */
@media (max-width: 575px) {
  .lo-cart-card .table-responsive { overflow-x: visible; }

  .shopping-cart-tabel,
  .shopping-cart-tabel tbody { display: block; width: 100%; }
  .shopping-cart-tabel thead { display: none; }

  .shopping-cart-tabel tbody tr {
    display: block;
    position: relative;
    padding: 16px 14px;
    border-top: 1px solid var(--shop-line);
  }
  .shopping-cart-tabel tbody tr:first-child { border-top: none; }
  .shopping-cart-tabel tbody tr:hover { background: none; }

  .shopping-cart-tabel tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
    border: none;
    text-align: right;
  }
  .shopping-cart-tabel tbody td::before {
    content: attr(data-label);
    flex: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--shop-muted);
    text-align: left;
  }

  /* Produktname als Kartenüberschrift (volle Breite, kein Label) */
  .shopping-cart-tabel td.product-name {
    display: block;
    padding: 0 38px 8px 0;
  }
  .shopping-cart-tabel td.product-name::before { display: none; }

  /* Entfernen-Button in die obere rechte Ecke der Karte */
  .shopping-cart-tabel td.product-remove {
    position: absolute;
    top: 12px;
    right: 8px;
    width: auto;
    padding: 0;
  }
  .shopping-cart-tabel td.product-remove::before { display: none; }
}
