* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, Arial, sans-serif;
  background: #f8f8f8;
  color: #222;
  line-height: 1.5;
}

.container {
  width: 95%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.top-bar {
  background: #202020;
  color: #fff;
  padding: 16px 0;
}

.brand h1 {
  font-size: 26px;
  font-weight: 700;
}

.brand p {
  font-size: 13px;
  opacity: 0.85;
}

.nav {
  margin-top: 8px;
  display: flex;
  gap: 14px;
}

.nav a {
  font-size: 14px;
  color: #ffd46b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #ffd46b;
}

/* Sections */
section {
  padding: 30px 0;
  background: #fff;
  margin-top: 10px;
  border-radius: 8px;
}

/* Buttons */
.btn-primary {
  padding: 10px 22px;
  border: none;
  border-radius: 4px;
  background: #c62828;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
}

.btn-primary:hover {
  background: #a01f1f;
}

/* Menu */
.menu-intro {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.menu-categories a {
  background: #f0f0f0;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 13px;
}

.menu-categories a:hover {
  background: #e0e0e0;
}

.menu-block {
  margin-bottom: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.menu-block h3 {
  font-size: 18px;
  color: #c62828;
  margin-bottom: 6px;
}

.menu-block li {
  list-style: none;
  font-size: 14px;
  padding: 2px 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 999;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  width: 90%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}

.modal-close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.order-frame {
  width: 100%;
  height: 500px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-top: 8px;
}

.modal-fallback {
  text-align: right;
  font-size: 12px;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: #666;
  background: transparent;
}

/* Mobile */
@media (max-width: 600px) {
  .brand h1 { font-size: 22px; }
  .nav { flex-wrap: wrap; gap: 8px; }
}
