/* ── CSS-Variablen ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --tan:          #d2b48c;
  --burlywood:    #deb887;
  --sienna:       #a0522d;
  --saddle-a:     rgba(139,69,19,0.10);
  --linen:        #e8dcc0;
  --saddlebrown:  #8b4513;
  --dark-brown:   #2c1a0e;
  --text-primary: #2c1a0e;
  --text-muted:   #7a5c42;
  --body-bg:      #f5ede0;
  --card-bg:      #fffaf4;
  --card-border:  rgba(139,69,19,0.12);
  --navbar-h:     68px;
  --sidebar-w:    260px;
  --radius:       10px;
  --radius-lg:    18px;
  --shadow-sm:    0 2px 8px rgba(44,26,14,0.08);
  --shadow-md:    0 6px 24px rgba(44,26,14,0.12);
  --shadow-lg:    0 16px 48px rgba(44,26,14,0.16);
  --transition:   0.22s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark-brown);
}

a { color: var(--sienna); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--saddlebrown); }

img { max-width: 100%; }

/* ── Loading Jalousie ─────────────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#loader-blind {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--saddlebrown) 0%, var(--dark-brown) 100%);
  overflow: hidden;
  animation: blindOpen 2.2s cubic-bezier(0.76,0,0.24,1) 0.3s forwards;
}
#loader-slats {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  opacity: 0.15;
  pointer-events: none;
}
#loader-slats span {
  display: block;
  height: 1px;
  background: var(--linen);
}
#loader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--linen);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: loaderTextShow 0.5s ease 0.3s both;
}
@keyframes blindOpen {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes loaderTextShow {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  height: var(--navbar-h);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(139,69,19,0.88);
  border-bottom: 1px solid rgba(210,180,140,0.25);
  box-shadow: 0 2px 16px rgba(44,26,14,0.18);
}
.site-navbar .navbar-brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--linen) !important;
  letter-spacing: 0.04em;
}
.site-navbar .nav-link {
  color: rgba(232,220,192,0.85) !important;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.4rem 1rem !important;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--linen) !important;
  background: rgba(255,255,255,0.12);
}
.site-navbar .btn-login {
  background: var(--linen);
  color: var(--saddlebrown);
  border: none;
  border-radius: 8px;
  padding: 0.38rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.site-navbar .btn-login:hover {
  background: #fff;
  transform: translateY(-1px);
}
.site-navbar .navbar-toggler {
  border-color: rgba(232,220,192,0.4);
}
.site-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hamburger-Button (Mobile) ──────────────────────────────── */
.mob-toggler {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(232,220,192,0.35);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mob-toggler:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(232,220,192,0.6);
}
.mob-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--linen, #faf0e6);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  transform-origin: center;
}
.mob-toggler.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-toggler.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-toggler.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobiles Vollbild-Overlay ───────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: linear-gradient(160deg, #1a0a03 0%, #3b1608 60%, #2a1005 100%);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem 2.5rem;
  /* Geschlossen */
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity   0.32s cubic-bezier(0.4,0,0.2,1),
              visibility 0.32s;
}
.mobile-overlay.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Schließen-Button */
.mob-close {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,220,192,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--linen, #faf0e6);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.mob-close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(232,220,192,0.5);
}
.mob-close:focus-visible {
  outline: 2px solid var(--sienna, #a0522d);
  outline-offset: 3px;
}

/* Brand im Overlay */
.mob-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: .75rem;
  margin-bottom: 2.5rem;
  color: var(--linen, #faf0e6);
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mob-brand i {
  font-size: 1.3rem;
  color: var(--burlywood, #deb887);
}

/* Nav-Links */
.mob-nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  color: rgba(232,220,192,0.75);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;

  /* Stagger-Einblendung (gesetzt via JS) */
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.3s ease,
              background 0.18s, color 0.18s;
}
.mobile-overlay.is-open .mob-link {
  opacity: 1;
  transform: translateX(0);
}
.mob-link:hover {
  background: rgba(255,255,255,0.07);
  color: var(--linen, #faf0e6);
  border-left-color: rgba(210,180,140,0.4);
  transform: translateX(4px);
}
.mob-active {
  background: rgba(160,82,45,0.22) !important;
  color: var(--burlywood, #deb887) !important;
  border-left-color: var(--sienna, #a0522d) !important;
}
.mob-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.18s;
}
.mob-link:hover .mob-link-icon,
.mob-active .mob-link-icon {
  background: rgba(160,82,45,0.3);
}

/* Footer (Login-Button) */
.mob-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232,220,192,0.1);
}
.mob-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background: var(--linen, #faf0e6);
  color: var(--saddlebrown, #8b4513);
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.mob-login-btn:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero-section {
  min-height: calc(100vh - var(--navbar-h));
  background:
    radial-gradient(ellipse at 80% 50%, rgba(222,184,135,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(160,82,45,0.12) 0%, transparent 50%),
    var(--body-bg);
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,184,135,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-heading {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-brown);
  margin-bottom: 1.2rem;
}
.hero-heading span {
  color: var(--sienna);
}
.hero-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.hero-parking {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--saddle-a);
  border: 1px solid rgba(139,69,19,0.2);
  border-radius: 30px;
  padding: 0.45rem 1rem;
  font-size: 0.95rem;
  color: var(--sienna);
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: heroImgFloat 5s ease-in-out infinite;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid rgba(160,82,45,0.25);
  border-radius: var(--radius-lg);
  z-index: -1;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Angebote Section ────────────────────────────────────────────────────── */
.offers-section {
  padding: 5rem 0;
  background: var(--body-bg);
}
.offer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.offer-card-img-wrap {
  position: relative;
  height: 130px;
  background: linear-gradient(135deg, var(--saddlebrown), var(--sienna));
  overflow: hidden;
}
.offer-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offer-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.6);
}
.offer-card-body {
  padding: 0.85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.offer-card-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.3;
}
.offer-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sienna);
}
.offer-card-regular {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ── Section Titles ──────────────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
}
.section-title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sienna), var(--burlywood));
  border-radius: 2px;
  margin: 0 auto 2.5rem;
}
.section-title-line.left {
  margin-left: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section {
  background: #fff9f3;
  padding: 5rem 0;
}
.faq-section .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--dark-brown);
  background: transparent;
  font-size: 1.05rem;
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--sienna);
  background: rgba(160,82,45,0.05);
  box-shadow: none;
}
.faq-section .accordion-button::after {
  filter: sepia(1) saturate(3) hue-rotate(-10deg);
}
.faq-section .accordion-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--card-bg);
}
.faq-section .accordion-body {
  color: var(--text-muted);
  padding-top: 0;
}

/* ── Über Uns ────────────────────────────────────────────────────────────── */
.about-section {
  padding: 5rem 0;
  background: var(--body-bg);
}
.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sienna), var(--burlywood));
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}
.about-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-brown);
}
.about-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.97rem;
}

/* ── Öffnungszeiten ──────────────────────────────────────────────────────── */
.hours-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--saddlebrown) 0%, var(--dark-brown) 100%);
  color: var(--linen);
}
.hours-section .section-title { color: var(--linen); }
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}
.hours-table td {
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  color: var(--linen);
}
.hours-table td:first-child {
  border-radius: 8px 0 0 8px;
  font-weight: 700;
  min-width: 140px;
}
.hours-table td:last-child {
  border-radius: 0 8px 8px 0;
  text-align: right;
}
.hours-table tr.today td {
  background: rgba(222,184,135,0.18);
  border: 1px solid rgba(222,184,135,0.3);
}
.badge-closed {
  background: rgba(255,255,255,0.12);
  color: rgba(232,220,192,0.7);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
  font-size: 0.82rem;
}

/* ── Sortiment ───────────────────────────────────────────────────────────── */
.category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  height: 100%;
}
.category-card:hover,
.category-card.active {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(222,184,135,0.1) 100%);
  border-color: var(--burlywood);
}
.category-card .cat-icon {
  font-size: 2.5rem;
  color: var(--sienna);
  margin-bottom: 0.75rem;
  display: block;
  transition: transform var(--transition);
}
.category-card:hover .cat-icon { transform: scale(1.15); }
.category-card h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.3rem;
}
.category-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin: 0;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card .card-img-top {
  height: 200px;
  object-fit: cover;
  background: var(--saddle-a);
}
.product-card .card-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--saddle-a), rgba(222,184,135,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--burlywood);
}
.product-card .card-body { padding: 1.2rem; }
.product-card .card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
}
.product-card .card-text {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.product-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sienna);
}
.variant-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--saddle-a);
  border: 1px solid rgba(160,82,45,0.15);
  border-radius: 20px;
  padding: 0.22rem 0.65rem;
  font-size: 0.78rem;
  color: var(--sienna);
  margin: 0.15rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-brown);
  color: rgba(232,220,192,0.8);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.92rem;
}
.site-footer h6 {
  color: var(--linen);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer a {
  color: rgba(232,220,192,0.7);
  transition: color var(--transition);
}
.site-footer a:hover { color: var(--linen); }
.site-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.site-footer .footer-contact-item i {
  color: var(--burlywood);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-divider {
  border-color: rgba(232,220,192,0.12);
  margin: 2rem 0 1rem;
}
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(232,220,192,0.4);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary-kiosk {
  background: linear-gradient(135deg, var(--saddlebrown), var(--sienna));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-primary-kiosk:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #fff;
}
.btn-outline-kiosk {
  border: 2px solid var(--sienna);
  color: var(--sienna);
  border-radius: 8px;
  padding: 0.5rem 1.3rem;
  font-weight: 700;
  background: transparent;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-kiosk:hover {
  background: var(--sienna);
  color: #fff;
}

/* ── Admin Layout ────────────────────────────────────────────────────────── */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: var(--sidebar-w);
  background: linear-gradient(180deg, var(--dark-brown) 0%, #1a0e08 100%);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 20px rgba(0,0,0,0.2);
  overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar .sidebar-brand h5 {
  font-family: var(--font-display);
  color: var(--linen);
  font-size: 1.15rem;
  margin: 0;
}
.admin-sidebar .sidebar-brand small {
  color: rgba(232,220,192,0.45);
  font-size: 0.75rem;
}
.admin-sidebar .nav-link {
  color: rgba(232,220,192,0.65) !important;
  padding: 0.7rem 1.5rem !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.admin-sidebar .nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}
.admin-sidebar .nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--linen) !important;
}
.admin-sidebar .nav-link.active {
  background: rgba(160,82,45,0.2);
  color: var(--burlywood) !important;
  border-left-color: var(--burlywood);
}
.admin-sidebar .sidebar-website {
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar .sidebar-website a {
  color: rgba(232,220,192,0.65);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  transition: color var(--transition);
  text-decoration: none;
}
.admin-sidebar .sidebar-website a:hover { color: var(--burlywood); }
.admin-sidebar .sidebar-logout {
  padding: 0.75rem 1.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.admin-sidebar .sidebar-logout a {
  color: rgba(232,220,192,0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.admin-sidebar .sidebar-logout a:hover { color: #e57373; }

.admin-main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(139,69,19,0.1);
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 6px rgba(44,26,14,0.06);
}
.admin-topbar h1 {
  font-size: 1.3rem;
  color: var(--dark-brown);
  margin: 0;
}
.admin-content {
  padding: 2rem;
  flex: 1;
}

/* ── Admin Cards & Tables ────────────────────────────────────────────────── */
.admin-card {
  background: #fff;
  border: 1px solid rgba(139,69,19,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-card .card-header {
  background: linear-gradient(90deg, rgba(160,82,45,0.06), transparent);
  border-bottom: 1px solid rgba(139,69,19,0.1);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-card .card-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--dark-brown);
}
.admin-card .card-body { padding: 0; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table thead th {
  background: rgba(139,69,19,0.04);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(139,69,19,0.1);
}
.admin-table tbody td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(139,69,19,0.06);
  color: var(--text-primary);
  vertical-align: middle;
}
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover td { background: rgba(139,69,19,0.02); }
.admin-table .thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--saddle-a);
}
.admin-table .thumb-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--saddle-a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--burlywood);
  font-size: 1.2rem;
}

/* ── Admin Modal overrides ───────────────────────────────────────────────── */
.modal-header {
  background: linear-gradient(90deg, var(--saddlebrown), var(--sienna));
  color: #fff;
  border-bottom: none;
}
.modal-header .btn-close { filter: invert(1); }
.modal-title { font-family: var(--font-display); font-size: 1.1rem; }
.modal-footer { border-top: 1px solid rgba(139,69,19,0.1); }
.btn-kiosk {
  background: linear-gradient(135deg, var(--saddlebrown), var(--sienna));
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  transition: opacity var(--transition);
}
.btn-kiosk:hover { opacity: 0.85; }

/* ── Form Controls ───────────────────────────────────────────────────────── */
.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-control:focus, .form-select:focus {
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px rgba(160,82,45,0.12);
}

/* ── Toast Feedback ──────────────────────────────────────────────────────── */
.kiosk-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  min-width: 280px;
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  animation: toastIn 0.3s ease;
}
.kiosk-toast.success { background: #2e7d32; color: #fff; }
.kiosk-toast.error   { background: #c62828; color: #fff; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Login Page ──────────────────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(222,184,135,0.2) 0%, transparent 50%),
    linear-gradient(135deg, var(--body-bg) 0%, #ede0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.8rem 2.5rem;
  width: 100%;
  max-width: 420px;
}
.login-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--saddlebrown);
  text-align: center;
  margin-bottom: 0.25rem;
}
.login-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ── Kontakt / Static Pages ──────────────────────────────────────────────── */
.static-page { padding: 5rem 0; }
.static-hero {
  background: linear-gradient(135deg, var(--saddlebrown) 0%, var(--dark-brown) 100%);
  color: var(--linen);
  padding: 4rem 0 3rem;
  text-align: center;
}
.static-hero h1 { color: var(--linen); font-size: clamp(2rem, 3vw, 2.8rem); }
.static-hero p  { color: rgba(232,220,192,0.75); }

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--card-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ci-icon {
  width: 42px;
  height: 42px;
  background: var(--saddle-a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item .ci-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.contact-item .ci-value {
  color: var(--dark-brown);
  font-weight: 600;
  font-size: 0.97rem;
}

/* ── Impressum / Datenschutz ─────────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--saddlebrown);
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.4rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: var(--dark-brown);
}
.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
  .hero-section { padding: 3rem 0 2.5rem; }
  .hero-image-wrap { margin-top: 2rem; }
  .hours-table td { font-size: 0.87rem; }
}
