/* ===================================================================
   HOF WOHLERS - APP.CSS
   Performance-Optimierte Version
   Icons werden von CDN + lokalem Font geladen
   
   GEÄNDERT: Desktop-Layout (Sidebar, Zentrierung) startet erst bei 1200px.
             Tablet-Breiten (992px-1199.98px) nutzen volle Breite ohne Sidebar.
   =================================================================== */

/* ============================================================
   FONT FACE DEFINITIONEN (nur Inter Font)
   ============================================================ */

/* Inter Variable Font */
@font-face {
  font-family: 'Inter var';
  font-display: swap;
  src: url('/assets/fonts/inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
}

/* Bootstrap Icons wird in index.php inline definiert */

/* ============================================================
   CSS VARIABLEN
   ============================================================ */

:root {
  /* „Frisch & natürlich“: kräftiges Aktionsgrün, Logo-Grün nur als Akzent. */
  --brand-logo: #a8c844;
  --brand: #287a32;
  --brand-600: #1e5d27;
  --brand-50: #f2f6e7;
  --brand-100: #e8efda;
  --brand-200: #dde3d7;
  --brand-rgb: 40, 122, 50;
  --bs-success: var(--brand);
  --bs-success-rgb: var(--brand-rgb);
  --ink: #30352f;
  --muted: #4a5568;
  --panel: #ffffff;
  --panel-border: #dde3d7;
  --panel-shadow: 0 4px 18px rgba(16,24,40,.06);
  --radius: 14px;
  --gap: 1rem;
  --aside-w: 320px;
  --logo-h: 120px;
  --header-h: 140px;
}

/* ============================================================
   GRUNDLAYOUT
   ============================================================ */

* {
  box-sizing: border-box;
}

body {
  background: #fafaf7;
  color: var(--ink);
  margin: 0;
  font-family: 'Inter var', system-ui, 'Segoe UI', Arial, sans-serif;
  background-image: none; /* Mobile-first: kein Hintergrundbild */
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  line-height: 1.5;
}

/* Site: Standardmäßig Mobile-Layout (1-spaltig, volle Breite) */
.site {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-areas:
    "header"
    "main"
    "footer";
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: var(--gap);
  min-height: 100vh;
  height: auto;
  padding-inline: 0;
}

/* Desktop: Hintergrundbild und 2-spaltiges Grid (ab 1200px) */
@media (min-width: 1200px) { /* NEU: Desktop-Layout startet erst ab 1200px */
  body {
    background-image: url("/assets/img/regionaler-markt-hintergrund-v2.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    overflow: hidden;
  }

  .site {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-areas:
      "header header"
      "aside  main"
      "footer footer";
    grid-template-columns: var(--aside-w) 1fr;
    height: 100vh;
  }

  .site__aside {
    position: static !important; /* Stellt sicher, dass die Sidebar nicht als Mobile-Drawer gerendert wird */
    display: flex !important;
    flex-direction: column;
    transform: none !important;
  }
}


/* ============================================================
   HEADER / MASTHEAD
   ============================================================ */

.masthead {
  grid-area: header;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  margin: 0;
  overflow: visible;
}

/* ============================================================
   ASIDE / SIDEBAR
   ============================================================ */

.site__aside {
  grid-area: aside;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
  padding: 1.25rem;
  width: var(--aside-w);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}

.site__aside .items,
.site__aside .cart-items,
.site__aside .list-group {
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.site__main {
  grid-area: main;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--panel-shadow);
  padding: 1.5rem;
  min-height: 0;
  overflow: auto;
  line-height: 1.35;
}

.site__main .table td,
.site__main .table th {
  vertical-align: top;
  line-height: 1.35;
  white-space: normal;
  overflow: visible;
  word-break: break-word;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site__footer {
  grid-area: footer;
  background: #fafaf7;
  border-top: 1px solid var(--panel-border);
  color: var(--muted);
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  text-align: center;
}

/* Footer Links: Dunkler für besseren Kontrast (Accessibility) */
footer .nav-link.link-secondary,
footer a.link-secondary {
  color: #2d3748 !important;
}

footer .nav-link.link-secondary:hover,
footer a.link-secondary:hover {
  color: #1a202c !important;
}

footer .text-muted {
  color: #4a5568 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}

/* Produktdetailseite */
.product-detail-link{color:inherit;text-decoration:underline;text-decoration-color:transparent;text-underline-offset:.16em;transition:text-decoration-color .15s ease,color .15s ease}
.product-detail-link:hover,.product-detail-link:focus{color:var(--brand);text-decoration-color:currentColor}
.product-detail__breadcrumbs{display:flex;flex-wrap:wrap;gap:.4rem;color:var(--muted);font-size:.92rem;margin-bottom:1.25rem}
.product-detail__breadcrumbs a,.product-detail__category a,.product-detail__back a{color:var(--brand-600)}
.product-detail{display:grid;grid-template-columns:minmax(260px, .9fr) minmax(320px, 1.1fr);gap:clamp(1.5rem,4vw,3rem);align-items:start}
.product-detail__media{background:#f4f6ef;border:1px solid var(--panel-border);border-radius:var(--radius);overflow:hidden;aspect-ratio:4/3}
.product-detail__media img{width:100%;height:100%;object-fit:contain;display:block}
.product-detail__category{margin:0 0 .35rem;font-size:.95rem}
.product-detail__content h1{color:var(--brand);font-size:clamp(1.8rem,4vw,2.7rem);line-height:1.12;margin:.15rem 0 .75rem}
.product-detail__bio{color:var(--brand);font-weight:700}
.product-detail__availability{display:inline-block;border-radius:999px;padding:.3rem .7rem;font-weight:700;font-size:.9rem;margin:.15rem 0}
.product-detail__availability.is-available{background:#e8f5e9;color:#216b2b}
.product-detail__availability.is-unavailable{background:#f1f1ed;color:#5d6259}
.product-detail__price{font-size:1.7rem;font-weight:750;margin:.7rem 0 1rem}
.product-detail__price span{font-size:.95rem;font-weight:500;color:var(--muted)}
.product-detail__facts{margin:0 0 1.25rem;border-top:1px solid var(--panel-border)}
.product-detail__facts div{display:grid;grid-template-columns:9rem 1fr;gap:1rem;padding:.55rem 0;border-bottom:1px solid var(--panel-border)}
.product-detail__facts dt{font-weight:700}.product-detail__facts dd{margin:0}
.product-detail__description h2{font-size:1.15rem}.product-detail__description{margin:1.2rem 0}
.product-detail__cart{max-width:31rem}.product-detail__cart>label{font-weight:700;margin-bottom:.4rem}.product-detail__cart .input-group{flex-wrap:nowrap}.product-detail__cart .form-control{max-width:8rem}
.product-detail__back{margin:2rem 0 0}
@media(max-width:767.98px){.product-detail{grid-template-columns:1fr}.product-detail__media{max-height:24rem}.product-detail__facts div{grid-template-columns:7.5rem 1fr}.product-detail__cart .input-group{flex-wrap:wrap}.product-detail__cart .btn{width:100%;margin-top:.65rem;border-radius:12px!important}.product-detail__cart .form-control{max-width:none}}

.btn-success,
.btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-success:hover,
.btn-success:focus,
.btn-primary:hover,
.btn-primary:focus {
  background: var(--brand-600);
  border-color: var(--brand-600);
  color: #fff;
}

.btn-outline-success {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline-success:hover,
.btn-outline-success:focus {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--brand);
}

.btn-link:hover,
.btn-link:focus {
  background: var(--brand-50);
  border-color: transparent;
  color: var(--brand-600);
}

.btn-danger {
  background: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover,
.btn-danger:focus {
  background: #bb2d3b;
  border-color: #b02a37;
}

.btn-outline-danger {
  background: #fff;
  border-color: #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.btn-outline-secondary {
  background: white;
  border-color: var(--muted);
  color: var(--muted);
}

.btn-outline-secondary:hover {
  background: var(--muted);
  border-color: var(--muted);
  color: white;
}

.btn i.bi {
  font-size: 1.15rem;
  line-height: 1;
  vertical-align: -2px;
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: white;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(16,24,40,.04);
}

.card-header {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-bottom: 1px solid var(--panel-border);
  font-weight: 600;
}

.card-header--accent {
  background: var(--brand-50);
  color: var(--brand-600);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.card-body {
  padding: 1rem;
}

.card-footer {
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-top: 1px solid var(--panel-border);
}

.card:hover {
  box-shadow: 0 6px 20px rgba(16,24,40,.1);
}

.recurring-admin-card {
  background: #fff;
  border: 1px solid var(--panel-border);
  box-shadow: 0 2px 8px rgba(16, 24, 40, .04);
}

.recurring-status-badge {
  background: var(--brand-logo);
  color: var(--ink);
}

/* ============================================================
   MINI-CART
   ============================================================ */

.mini-cart {
  display: flex;
  flex-direction: column;
  max-height: 420px;
}

.mini-cart__list {
  overflow: auto;
}

.mini-cart .card-footer {
  background: #fff;
}

.mini-cart__badge {
  min-width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.mini-cart__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  color: inherit;
  text-decoration: none;
}

.mini-cart__link:hover {
  background: var(--brand-100);
}

#mini-cart {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.mini-cart-empty-state {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 300px;
  padding: clamp(3rem, 6vh, 4.25rem) .75rem 0;
  color: var(--ink);
  text-align: center;
}

.mini-cart-empty-state__message {
  max-width: 15rem;
}

.mini-cart-empty-state__icon {
  display: block;
  margin: 0 auto 1.25rem;
  color: var(--brand);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  -webkit-text-stroke: .35px var(--panel);
  paint-order: fill stroke;
}

.mini-cart-empty-state__title {
  margin: 0 0 .75rem;
  font-size: 1rem;
  font-weight: 400;
}

.mini-cart-empty-state__copy {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}

.mini-cart-empty-state__botanical {
  display: block;
  width: min(100%, 320px);
  height: 300px;
  margin-top: .75rem;
  object-fit: fill;
  object-position: center bottom;
  opacity: .38;
  transform: translateY(-1rem);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.h1, h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  margin: 0.25rem 0 0.75rem;
  font-weight: 700;
}

.h2, h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
}

.text-muted,
.small,
small {
  color: var(--muted);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-control,
.form-select {
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-family: inherit;
}

.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--brand);
}

.form-label {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

/* ============================================================
   SCROLLBARS
   ============================================================ */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0,0,0,0.35);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.25) transparent;
}

/* ============================================================
   SHOP PRODUKTE
   ============================================================ */

.product-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.shop-cards {
  display: none;
}

.product-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  box-shadow: 0 2px 8px rgba(16,24,40,.04);
}

.product-card__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-card__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-card__info {
  flex: 1;
  min-width: 0;
}

.product-card__title {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

/* ============================================================
   WISHLIST BUTTONS
   ============================================================ */

.btn.wishlist-toggle {
  background: white !important;
  border: 1px solid #6c757d !important;
  color: #6c757d !important;
  transition: all 0.2s ease;
}

.btn.wishlist-toggle:hover {
  background: #f8f9fa !important;
  border-color: #495057 !important;
  color: #495057 !important;
}

.btn.wishlist-toggle[data-marked="1"] {
  background: white !important;
  border: 1px solid #dc3545 !important;
  color: #6c757d !important;
}

.btn.wishlist-toggle[data-marked="1"] i {
  color: #dc3545 !important;
}

.btn.wishlist-toggle[data-marked="1"]:hover {
  background: #fff5f5 !important;
  border-color: #bb2d3b !important;
  transform: scale(1.05);
}

.wishlist-toggle i {
  transition: all 0.2s ease;
}

.wishlist-toggle:active i {
  transform: scale(1.2);
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

.btn:focus,
.form-control:focus,
a:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.btn:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.toast-container {
  z-index: 9999 !important;
}

.toast {
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ============================================================
   RESPONSIVE - DESKTOP OPTIMIERT (1200px+)
   ============================================================ */

@media (min-width: 1200px) {
  body {
    height: 100vh;
    overflow: hidden;
  }
  
  .site {
    height: 100vh;
  }
  
  .site__main {
    min-height: 0;
    overflow: auto;
  }
  
  .site__aside {
    min-height: 0;
    overflow: auto;
  }
}

/* ============================================================
   RESPONSIVE - MOBILE / TABLET (< 1200px)
   ============================================================ */

@media (max-width: 1199.98px) {
  
  /* Löst das Problem des sichtbaren "alten Drawers" (Bild 1)
     und stellt sicher, dass die Sidebar auf Tablets nicht angezeigt wird. */
  .site__aside { 
    display: none !important;
  }

  /* Der Drawer-Handle muss auch ausgeblendet werden (falls vorhanden) */
  .site__aside .cart-handle {
    display: none !important;
  }
  
  /* Body: Kein Hintergrundbild (Performance) */
  body {
    background-image: none !important;
    background-color: #fafaf7;
    background-attachment: scroll;
  }
  
  /* Site: Einspaltig (Standard-Regel von .site, hier nur zur Verdeutlichung) */
  .site {
    grid-template-areas:
      "header"
      "main"
      "footer";
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 0;
    gap: 0.5rem;
  }
  
  /* Main: Volle Breite */
  .site__main {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 1rem;
    margin: 0;
  }
  
  /* Footer: Volle Breite */
  .site__footer {
    border-radius: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
  
  /* Touch-Targets (Accessibility) */
  .btn,
  .nav-link,
  .form-control {
    min-height: 44px;
  }
}

/* ============================================================
   RESPONSIVE - TABLET (< 768px)
   (Regeln für kleineres Mobile/Tablet)
   ============================================================ */

@media (max-width: 767.98px) {
  body {
    font-size: 0.95rem;
  }
  
  h1, .h1 {
    font-size: 1.5rem;
  }
  
  h2, .h2 {
    font-size: 1.25rem;
  }
  
  /* Shop: Cards statt Tabelle */
  .shop-table {
    display: none;
  }
  
  .shop-cards {
    display: block;
  }

  /* HIER WURDEN DIE ALTEN DRAWER-REGELN ENTFERNT, 
     DA sie durch den 1199.98px Block global ausgeblendet werden. */
}

/* ============================================================
   PERFORMANCE OPTIMIERUNGEN
   ============================================================ */

/* Lazy Loading für alle Bilder außer kritische */
img:not([fetchpriority="high"]) {
  loading: lazy;
}

/* Content Visibility für bessere Performance */
.product-card,
.card {
  content-visibility: auto;
  contain-intrinsic-size: auto 150px;
}

/* Will-change für animierte Elemente */
.site__aside {
  will-change: transform;
}

.btn,
.card {
  will-change: box-shadow;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  body {
    background: white !important;
    background-image: none !important;
  }
  
  .site__aside,
  .site__footer,
  .masthead {
    display: none !important;
  }
  
  .site {
    display: block !important;
  }
  
  .site__main {
    border: none !important;
    box-shadow: none !important;
  }
}

/* ===================================================================
   MOBILE PORTRAIT: VOLLE BREITE NUTZEN (bleibt als Feinjustierung)
   =================================================================== */

@media (max-width: 767.98px) {
  
  /* Body: Kein Margin/Padding */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  /* Site Container: Volle Breite */
  .site {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
  }
  
  /* Header: Volle Breite */
  .masthead-otto,
  .masthead {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .masthead-otto__top {
    padding: 0.5rem 0.75rem !important;
    max-width: 100vw !important;
  }
  
  /* Main Content: Volle Breite mit kleinem Innen-Abstand */
  .site__main {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 1rem 0.75rem !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
  }
  
  /* Welcome Hero: Volle Breite */
  .welcome-hero,
  .welcome-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Service Cards: Weniger Gap */
  .service-highlight {
    padding: 1rem 0.75rem !important;
    margin: 1rem 0 !important;
  }
  
  .service-grid {
    gap: 0.75rem !important;
  }
  
  .service-card {
    padding: 1rem 0.85rem !important;
  }
  
  /* Location Box: Kompakter */
  .location-box {
    padding: 1rem 0.75rem !important;
    margin: 1rem 0 !important;
  }
  
  /* Why/Benefits: Volle Breite */
  .why,
  .benefits,
  .cta-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* CTA Buttons: Volle Breite */
  .cta-buttons {
    flex-direction: column !important;
    width: 100% !important;
  }
  
  .cta-buttons .btn {
    width: 100% !important;
  }
  
  /* Footer: Volle Breite */
  .site__footer {
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 0 !important;
  }
}

/* ========== WARENKORB: DRAWER DEAKTIVIERT ========== */

/* Desktop: Sidebar bleibt normal */
@media (min-width: 1200px) { /* AUF 1200px GEÄNDERT */
  .site__aside {
    position: static;
    transform: none;
  }
  /* Cart Handle ausblenden (wird in Mobile nicht mehr benötigt, aber zur Sicherheit) */
  .site__aside .cart-handle {
    display: none !important; 
  }
}

/* Mobile: Sidebar komplett ausblenden (wird durch 1199.98px Block abgedeckt) */
@media (max-width: 1199.98px) {
  /* Warenkorb-Icon im Header reicht aus */
  .masthead-otto__icon-btn[href*="warenkorb"] .masthead-otto__badge {
    /* Badge gut sichtbar */
    background: #dc3545;
    color: white;
    font-weight: 600;
  }
}


/* Extra kleine Geräte: Noch kompakter */
@media (max-width: 360px) {
  .masthead-otto__top {
    padding: 0.4rem 0.5rem !important;
  }
  
  .site__main {
    padding: 0.85rem 0.5rem !important;
  }
  
  .service-highlight,
  .location-box {
    padding: 0.85rem 0.5rem !important;
  }
  
  .site__footer {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.75rem !important;
  }
}
