:root {
  --bg-main: #ffffff;
  --bg-card: #fdfdfd;
  --text-main: #2d2d2d;
  --text-muted: #666666;
  --accent-gold: #8b6e3f;
  --accent-gold-hover: #a67c00;
  --accent-bg: rgba(139, 110, 63, 0.08);
  --border-color: #ebebeb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 50px;
}

/* Language Switcher */
.lang-switcher-container {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.lang-btn img {
  border-radius: 2px;
}

.lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 120px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
}
.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: var(--accent-bg);
  color: var(--accent-gold);
}

.lang-option img {
  border-radius: 2px;
}

/* Layout */
.app-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.header {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease-out forwards;
}

.logo-container {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo {
  width: 100%;
  height: auto;
  display: block;
}

.brand-name {
  display: none; /* Text is already in the logo */
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-weight: 300;
  letter-spacing: 2px;
}

/* Navigation Badges */
.nav-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.badge:hover, .badge:active {
  background: var(--accent-bg);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Pre-Order CTA Button */
.preorder-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(139, 110, 63, 0.4);
  transition: all 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.preorder-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 110, 63, 0.5);
}

.preorder-cta:active {
  transform: translateY(1px);
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(139, 110, 63, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(139, 110, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 110, 63, 0); }
}

/* Loyalty Promo Banner (Landing) */
.promo-banner-inline {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #fdfbf7 0%, #f9f3e6 100%);
  border: 1px solid #d4af37;
  padding: 12px 20px;
  border-radius: 16px;
  margin: 25px auto 0;
  max-width: 320px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.promo-icon {
  font-size: 24px;
  background: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.promo-text strong {
  font-size: 14px;
  color: #8b6e3f;
  letter-spacing: 0.5px;
}

.promo-text small {
  font-size: 12px;
  color: var(--text-muted);
}

/* Menu section */
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.category-section {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.category-header {
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.category-title {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--text-main);
  background: var(--bg-main);
  display: inline-block;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.category-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-color);
  z-index: 0;
}

.category-subtitle {
  color: var(--accent-gold);
  margin-top: 4px;
  letter-spacing: 1px;
}

.menu-list {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 5px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed var(--border-color);
}

.menu-item:last-child {
  border-bottom: none;
}

.item-info {
  flex: 1;
  padding-right: 15px;
}

.item-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-main);
}

.item-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
  background: transparent;
}
.item-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.item-translated-desc {
  color: var(--accent-gold);
  font-style: italic;
  font-size: 14px; /* Increased from 11px */
  margin-top: 4px;
  line-height: 1.3;
}

.item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--accent-gold);
  font-size: 16px;
  white-space: nowrap;
}

.tax-info {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 30px;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* Info Section */
.info-section {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 25px 20px;
  border: 1px solid var(--border-color);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card {
  margin-bottom: 25px;
  font-size: 14px;
}

.info-card p {
  margin-bottom: 8px;
}

.hours {
  color: var(--text-muted);
  margin-bottom: 15px !important;
}

.review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2d2d2d;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,255,255, 0.2);
}

.stars {
  color: #ffb400; /* Google yellow */
  font-size: 12px;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  font-size: 28px;
  color: var(--text-muted);
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 11px;
  color: #bbbbbb;
  padding-bottom: 20px;
}

.impressum-link {
  background: none;
  border: none;
  color: #bbbbbb;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  opacity: 0.7;
}

.impressum-details {
  margin-top: 15px;
  padding: 15px;
  background: #fdfdfd;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  text-align: left;
  font-size: 10px;
  line-height: 1.4;
  color: #666666;
}

.hidden {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.hero-text {
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  margin-bottom: 25px;
}

.loyalty-hero-sticker {
  position: absolute;
  top: 40%; /* Moved down from 20px */
  right: 15px; /* Slightly closer to the edge */
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50%);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  transform: translateY(-50%) rotate(6deg); /* Added translateY for better centering */
  transition: transform 0.2s ease, filter 0.2s ease;
  z-index: 10;
  cursor: pointer;
}

.loyalty-hero-sticker:active {
  transform: rotate(6deg) scale(0.95);
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.4));
}

.google-rating-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 20;
}

.google-rating-badge:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.google-rating-badge:active {
  transform: scale(0.96);
}

.rating-icon {
  width: 28px;
  height: 28px;
  background: #4285F4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(66,133,244,0.3);
}

.rating-info {
  display: flex;
  flex-direction: column;
}

.rating-score {
  font-weight: 700;
  font-size: 15px;
  color: #202124;
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.rating-score i {
  font-size: 11px;
  color: #fbbc04;
}

.rating-count {
  font-size: 10px;
  color: #5f6368;
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}

.rating-arrow {
  color: #b0b0b0;
  font-size: 11px;
  flex-shrink: 0;
  margin-left: 2px;
}

/* Guide Section */
.guide-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.guide-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-align: center;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.step-num {
  background: var(--accent-gold);
  color: #fff;
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
}

.step-content strong {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 2px;
}

.step-content p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.hidden { display: none !important; }
