/* ============================================
   Pizza Parma Hockenheim – Stylesheet
   Modern, Fresh, Young & Innovative
   DSGVO & SEO Optimized
   ============================================ */

:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --red-light: #e74c3c;
  --cream: #fdf6ec;
  --warm-white: #fff9f3;
  --dark: #1a1a1a;
  --dark-2: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --green: #27ae60;
  --amber: #f39c12;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.16);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ---- SKIP LINK (accessibility) ---- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: #fff;
  padding: 0.5rem 1rem; border-radius: 0 0 8px 8px;
  z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-2); color: #fff;
  z-index: 9000; padding: 1rem 1.5rem;
  transform: translateY(0);
  transition: transform var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.cookie-inner p { flex: 1; font-size: 0.875rem; line-height: 1.5; }
.cookie-inner a { color: #f8a878; text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.5rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  background: rgba(255,249,243,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex; align-items: center; gap: 2rem;
}

.logo {
  display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0;
  text-decoration: none;
}
.logo-icon { font-size: 1.75rem; line-height: 1; }
.logo-main {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; color: var(--red); line-height: 1.1;
  display: block;
}
.logo-sub {
  font-size: 0.7rem; color: var(--gray); font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; display: block;
}

.nav-links {
  display: flex; gap: 0.25rem; margin: 0; list-style: none;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: 0.5rem 0.875rem; border-radius: 8px;
  font-size: 0.925rem; font-weight: 500; color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover, .nav-link.active {
  background: var(--cream); color: var(--red);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn-login {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500; color: var(--dark);
  border: 1.5px solid rgba(0,0,0,0.12);
  transition: all var(--transition);
}
.btn-login:hover { border-color: var(--red); color: var(--red); background: var(--cream); }

.btn-order {
  background: var(--red); color: #fff;
  padding: 0.55rem 1.25rem; border-radius: 10px;
  font-size: 0.875rem; font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-order:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--warm-white);
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block; padding: 0.75rem 0.875rem;
  border-radius: 8px; font-weight: 500;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--cream); color: var(--red); }
.mobile-menu .mobile-order {
  background: var(--red); color: #fff; text-align: center;
  margin-top: 0.5rem; border-radius: 10px;
}
.mobile-menu .mobile-order:hover { background: var(--red-dark); }

/* ============================================
   BUTTONS (Global)
   ============================================ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  background: var(--red); color: #fff;
  padding: 0.7rem 1.5rem; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(192,57,43,0.35);
}
.btn-primary:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192,57,43,0.4);
}
.btn-primary.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-primary.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--dark);
  padding: 0.7rem 1.5rem; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #fff;
  padding: 0.7rem 1.75rem; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: rgba(255,255,255,0.7);
  padding: 0.7rem 1.5rem; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-ghost.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.08) 0%, transparent 70%);
}
.hero-shape.shape-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape.shape-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -50px;
  background: radial-gradient(circle, rgba(243,156,18,0.06) 0%, transparent 70%);
  animation: floatShape 10s ease-in-out infinite reverse;
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  padding: 4rem 1.5rem 4rem 5vw;
  position: relative; z-index: 2;
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cream); border: 1.5px solid rgba(192,57,43,0.2);
  color: var(--red); font-size: 0.875rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic; color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.1rem; color: var(--gray);
  max-width: 460px; line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-info {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.info-chip {
  background: rgba(0,0,0,0.05); border-radius: 50px;
  padding: 0.35rem 0.875rem; font-size: 0.8rem; font-weight: 500; color: var(--gray);
}

/* Pizza Graphic */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 5vw 4rem 1.5rem;
  position: relative; z-index: 2;
  animation: fadeUp 0.7s 0.15s ease both;
}

.pizza-graphic {
  width: min(400px, 80vw); height: min(400px, 80vw);
  position: relative;
  animation: pizzaSpin 20s linear infinite;
}
@keyframes pizzaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.pizza-outer {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(#d4a852 0deg, #c8943a 30deg, #d4a852 60deg, #c8943a 90deg, #d4a852 120deg, #c8943a 150deg, #d4a852 180deg, #c8943a 210deg, #d4a852 240deg, #c8943a 270deg, #d4a852 300deg, #c8943a 330deg);
  box-shadow: 0 20px 60px rgba(200,148,58,0.4), inset 0 0 0 6px rgba(0,0,0,0.06);
}
.pizza-inner {
  position: absolute; inset: 14%; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8412c, #c0392b, #8e1c0e);
}
.pizza-center {
  position: absolute; inset: 40%; border-radius: 50%;
  background: radial-gradient(circle, #f5c842, #e8a020);
}
.pizza-topping {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, #4a4a4a, #2a2a2a);
  animation: pizzaCounterSpin 20s linear infinite;
}
@keyframes pizzaCounterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.t1 { width: 10%; height: 10%; top: 22%; left: 35%; background: radial-gradient(circle, #6b4c2a, #4a2a0a); }
.t2 { width: 8%; height: 8%; top: 35%; left: 22%; background: radial-gradient(circle, #c0392b, #8e1c0e); }
.t3 { width: 9%; height: 9%; top: 55%; left: 28%; background: radial-gradient(circle, #6b4c2a, #4a2a0a); }
.t4 { width: 8%; height: 8%; top: 28%; right: 22%; background: radial-gradient(circle, #c0392b, #8e1c0e); }
.t5 { width: 10%; height: 10%; top: 52%; right: 20%; background: radial-gradient(circle, #6b4c2a, #4a2a0a); }
.t6 { width: 7%; height: 7%; top: 68%; left: 46%; background: radial-gradient(circle, #2d7a3a, #1a5a28); }

/* ============================================
   HIGHLIGHTS
   ============================================ */
.highlights {
  padding: 5rem 0;
  background: #fff;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.highlight-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1.5px solid rgba(192,57,43,0.08);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.highlight-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.highlight-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.highlight-card p { font-size: 0.9rem; color: var(--gray); }

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
  padding: 5rem 0;
  background: var(--warm-white);
}
.section-header {
  text-align: center; margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900; margin-bottom: 0.5rem;
}
.section-header p { color: var(--gray); font-size: 1.05rem; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-tag {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9); padding: 0.3rem 0.875rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.75rem; border: 1px solid rgba(255,255,255,0.2);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.cat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 2rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1.5px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.cat-emoji { font-size: 2.5rem; margin-bottom: 0.875rem; }
.cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.cat-card p { font-size: 0.8rem; color: var(--gray); }
.cat-pizza:hover { border-color: #e74c3c; }
.cat-pasta:hover { border-color: #e67e22; }
.cat-burger:hover { border-color: #8B4513; }
.cat-indisch:hover { border-color: #f39c12; }
.cat-salat:hover { border-color: #27ae60; }
.cat-dessert:hover { border-color: #9b59b6; }

/* ============================================
   BESTSELLER
   ============================================ */
.bestseller {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.product-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(192,57,43,0.5);
  transform: translateY(-2px);
}
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem; border-radius: 50px;
}
.product-badge.new { background: var(--green); }
.product-badge.hot { background: #e67e22; }
.product-badge.veg { background: var(--green); }
.product-emoji { font-size: 2.5rem; line-height: 1; flex-shrink: 0; }
.product-info { flex: 1; }
.product-info h3 {
  font-size: 1rem; font-weight: 700; color: #fff;
  margin-bottom: 0.35rem;
}
.product-info p { font-size: 0.825rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin-bottom: 1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--amber); }
.btn-add {
  background: rgba(192,57,43,0.8); color: #fff;
  padding: 0.35rem 0.875rem; border-radius: 8px;
  font-size: 0.8rem; font-weight: 600;
  transition: background var(--transition);
}
.btn-add:hover { background: var(--red); }
.section-cta { text-align: center; }

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
  padding: 5rem 0;
  background: var(--cream);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.info-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.info-box h2 {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  margin-bottom: 1rem;
}
.info-box address { line-height: 1.8; color: var(--gray); margin-bottom: 1rem; }
.info-box address strong { color: var(--dark); }
.btn-map {
  display: inline-block; color: var(--red);
  font-weight: 600; font-size: 0.9rem;
  transition: opacity var(--transition);
}
.btn-map:hover { opacity: 0.7; }
.hours-table { width: 100%; }
.hours-table td { padding: 0.4rem 0; font-size: 0.9rem; }
.hours-table td:first-child { color: var(--gray); padding-right: 1rem; }
.hours-table td:last-child { font-weight: 600; text-align: right; }
.btn-contact, .btn-account {
  display: block; text-align: center;
  padding: 0.65rem 1rem; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem;
  margin-top: 0.75rem;
  transition: all var(--transition);
}
.btn-contact {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 12px rgba(192,57,43,0.3);
}
.btn-contact:hover { background: var(--red-dark); }
.btn-account {
  border: 1.5px solid rgba(0,0,0,0.15); color: var(--dark);
}
.btn-account:hover { border-color: var(--red); color: var(--red); background: var(--cream); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark); color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-logo { font-size: 1.25rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-nav h3 { color: #fff; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { font-size: 0.875rem; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-order h3 { color: #fff; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-note { font-size: 0.8rem; margin-top: 0.75rem; line-height: 1.6; }
.footer-note a { color: rgba(255,255,255,0.5); }
.footer-note a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ============================================
   SPEISEKARTE PAGE
   ============================================ */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(192,57,43,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900; margin-bottom: 0.75rem; position: relative;
}
.page-hero p { font-size: 1.05rem; color: var(--gray); position: relative; }
.page-hero .hero-chip {
  display: inline-block; background: var(--red); color: #fff;
  padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 700; margin-bottom: 1.25rem; position: relative;
}

/* Menu Filters */
.menu-filters {
  padding: 2rem 0 0;
  background: #fff;
  position: sticky; top: 68px; z-index: 100;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.filter-scroll {
  display: flex; gap: 0.5rem; overflow-x: auto;
  padding: 0 1.5rem 1.5rem;
  scrollbar-width: none;
}
.filter-scroll::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0; display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.125rem; border-radius: 50px;
  background: var(--gray-light); border: 1.5px solid transparent;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); color: #fff; border-color: var(--red);
}

/* Menu Section */
.menu-section { padding: 4rem 0; }
.menu-category { margin-bottom: 3.5rem; }
.menu-cat-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--cream);
}
.menu-cat-header .cat-icon { font-size: 2rem; }
.menu-cat-header h2 {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
}
.menu-cat-header p { color: var(--gray); font-size: 0.9rem; margin-top: 0.1rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.menu-item {
  background: #fff; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(0,0,0,0.06);
  padding: 1.25rem;
  transition: all var(--transition);
  display: flex; gap: 1rem; align-items: flex-start;
}
.menu-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.menu-item-icon { font-size: 1.75rem; flex-shrink: 0; }
.menu-item-body { flex: 1; }
.menu-item-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.menu-item-body p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; margin-bottom: 0.75rem; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-weight: 800; color: var(--red); font-size: 1rem; }
.menu-tags { display: flex; gap: 0.3rem; }
.tag {
  padding: 0.15rem 0.5rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600;
}
.tag-veg { background: rgba(39,174,96,0.12); color: var(--green); }
.tag-hot { background: rgba(231,76,60,0.12); color: #e74c3c; }
.tag-new { background: rgba(52,152,219,0.12); color: #3498db; }

/* ============================================
   LOGIN / REGISTER PAGE
   ============================================ */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}
.auth-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--red-dark) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2rem; position: relative; overflow: hidden;
}
.auth-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(192,57,43,0.3) 0%, transparent 60%);
}
.auth-visual-content { position: relative; text-align: center; color: #fff; }
.auth-visual-emoji { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.auth-visual h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  margin-bottom: 0.75rem;
}
.auth-visual p { opacity: 0.7; font-size: 0.95rem; line-height: 1.7; max-width: 300px; margin: 0 auto 2rem; }
.auth-benefits { text-align: left; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.auth-benefits li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.auth-benefits li::before { content: '✓'; background: var(--green); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }

.auth-form-area {
  display: flex; flex-direction: column;
  justify-content: center; padding: 3rem 5vw;
  background: #fff;
}
.auth-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; border: 1.5px solid var(--gray-light); border-radius: 10px; overflow: hidden; }
.auth-tab {
  flex: 1; padding: 0.7rem 1rem; text-align: center;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  background: transparent; border: none; cursor: pointer;
  color: var(--gray); transition: all var(--transition);
}
.auth-tab.active { background: var(--dark); color: #fff; }

.auth-form { max-width: 420px; width: 100%; }
.auth-form h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.375rem; }
.auth-form .auth-subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--dark-2); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: #fff; outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}
.form-group input.error { border-color: #e74c3c; }
.form-error { color: #e74c3c; font-size: 0.8rem; margin-top: 0.3rem; display: none; }
.form-error.show { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.625rem; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--red); cursor: pointer; }
.form-check label { font-size: 0.825rem; color: var(--gray); line-height: 1.5; }
.form-check a { color: var(--red); }

.form-divider { text-align: center; margin: 1.25rem 0; color: var(--gray); font-size: 0.8rem; position: relative; }
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%;
  width: calc(50% - 1.5rem); height: 1px; background: rgba(0,0,0,0.1);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

.forgot-link { text-align: right; margin-top: -0.75rem; margin-bottom: 1.25rem; }
.forgot-link a { color: var(--red); font-size: 0.825rem; }

.success-msg {
  background: rgba(39,174,96,0.1); border: 1.5px solid rgba(39,174,96,0.3);
  border-radius: 10px; padding: 1rem; margin-bottom: 1.25rem;
  color: var(--green); font-size: 0.875rem; display: none;
}
.success-msg.show { display: block; }

/* Dashboard */
.dashboard-page { min-height: 100vh; padding-top: 68px; background: var(--gray-light); }
.dashboard-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff; padding: 2.5rem 0;
}
.dashboard-welcome h1 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.25rem; }
.dashboard-welcome p { opacity: 0.6; font-size: 0.9rem; }
.dashboard-content { padding: 2.5rem 0; }
.dashboard-grid { display: grid; grid-template-columns: 250px 1fr; gap: 2rem; }
.dashboard-sidebar { position: sticky; top: 88px; height: fit-content; }
.sidebar-menu {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.sidebar-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  font-size: 0.9rem; font-weight: 500; cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--gray-light);
}
.sidebar-item:hover, .sidebar-item.active { background: var(--cream); color: var(--red); }
.sidebar-item .icon { font-size: 1.1rem; width: 20px; flex-shrink: 0; }
.sidebar-item:last-child { border-bottom: none; color: var(--gray); }
.sidebar-item:last-child:hover { background: rgba(231,76,60,0.05); color: #e74c3c; }

.dashboard-main { display: flex; flex-direction: column; gap: 1.5rem; }
.dash-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.dash-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-item { text-align: center; padding: 1.25rem; background: var(--cream); border-radius: var(--radius-sm); }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--red); display: block; }
.stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; margin-top: 0.25rem; }

/* ============================================
   KONTAKT PAGE
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; padding: 4rem 0; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-item-body h4 { font-weight: 700; margin-bottom: 0.2rem; }
.contact-item-body p, .contact-item-body a { font-size: 0.9rem; color: var(--gray); }
.contact-item-body a:hover { color: var(--red); }
.contact-form-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-form-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ============================================
   IMPRESSUM / DATENSCHUTZ PAGES
   ============================================ */
.legal-page { padding: 8rem 0 5rem; }
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; margin-bottom: 0.5rem; }
.legal-content .legal-date { color: var(--gray); font-size: 0.875rem; margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.legal-content p { color: #444; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { color: #444; line-height: 1.8; margin-bottom: 0.4rem; }
.legal-content a { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-page { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .auth-form-area { padding: 5rem 2rem 3rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 3rem; }
  .hero-content { padding: 3rem 1.5rem 1.5rem; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-info { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { padding: 2rem 1.5rem; }
  .nav-links { display: none; }
  .btn-login span { display: none; }
  .btn-order { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.75rem; }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.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;
}

/* Print */
@media print {
  .site-header, .cookie-banner, .btn-order, .btn-primary { display: none !important; }
  body { background: #fff; color: #000; }
}
