﻿:root {
  --surface: rgba(255, 255, 255, 0.9);
  --text: #111827;
  --muted: #4b5563;
  --line: #d1d5db;
  --chip: #f3f4f6;
  --accent: #f97316;
  --accent-dark: #9a3412;
  --green: #065f46;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: #f9fafb;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 10%, #1f2937 0%, rgba(31, 41, 55, 0) 28%),
    radial-gradient(circle at 85% 20%, #7c2d12 0%, rgba(124, 45, 18, 0) 32%),
    linear-gradient(160deg, #0b0d12 0%, #121722 45%, #0d1018 100%);
  position: relative;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.22;
  pointer-events: none;
}

.orb-1 {
  width: 240px;
  height: 240px;
  background: #f97316;
  top: -60px;
  left: -40px;
}

.orb-2 {
  width: 280px;
  height: 280px;
  background: #22d3ee;
  right: -80px;
  bottom: 80px;
}

.side-photo {
  position: fixed;
  top: 170px;
  width: 130px;
  height: 190px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.34);
  z-index: 1;
}

.side-photo.left {
  left: 18px;
  transform: rotate(-6deg);
}

.side-photo.right {
  right: 18px;
  transform: rotate(6deg);
}

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

.hero,
.main-grid,
.category-showcase,
.footer {
  position: relative;
  z-index: 3;
}

.hero {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.brand-block,
.hero-media {
  border-radius: 24px;
  overflow: hidden;
}

.brand-block {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 24px;
  backdrop-filter: blur(6px);
}

.kicker {
  margin: 0 0 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  color: #fdba74;
}

.brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 4px;
}

.brand-slogan {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.09em;
  font-weight: 800;
  color: #e5e7eb;
}

h1 {
  margin: 8px 0 6px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-copy {
  margin: 0;
  max-width: 52ch;
  color: #d1d5db;
  font-size: 15px;
}

.meta-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meta-row span {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fef3c7;
}

.hero-media {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.category-showcase {
  margin-top: 14px;
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.photo-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.photo-cat-btn {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: #0f172a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.photo-cat-btn img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
  filter: brightness(0.82);
}

.photo-cat-btn:hover img {
  transform: scale(1.06);
  filter: brightness(0.9);
}

.photo-cat-btn.active {
  outline: 2px solid #f59e0b;
  outline-offset: 2px;
}

.photo-cat-title {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(15, 23, 42, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.main-grid {
  margin-top: 16px;
  margin-bottom: 26px;
}

.content {
  min-width: 0;
}

.is-hidden {
  display: none;
}

.glass,
.panel,
.toolbar,
.menu-category {
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(9px);
}

.panel {
  border-radius: 20px;
  padding: 14px;
}

.panel h2 {
  margin: 2px 0 12px;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.category-list {
  display: grid;
  gap: 8px;
}

.category-btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 13px;
  background: var(--chip);
  color: #1f2937;
  cursor: pointer;
  text-align: left;
  transition: all 160ms ease;
}

.category-btn:hover,
.category-btn.active {
  background: #fed7aa;
  border-color: #fdba74;
  transform: translateY(-1px);
}

.visual-panel {
  margin-top: 10px;
}

.mini-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mini-gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  aspect-ratio: 1 / 1;
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.toolbar {
  border-radius: 16px;
  padding: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.back-btn {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e293b;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.toolbar input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}

.toolbar button {
  border: 1px solid #f59e0b;
  background: #f59e0b;
  color: #111827;
  border-radius: 10px;
  padding: 0 14px;
  font-weight: 800;
  cursor: pointer;
}

.menu-root {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.menu-category {
  border-radius: 18px;
  padding: 14px;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  border-bottom: 1px dashed #d1d5db;
  padding-bottom: 10px;
}

.menu-head h3 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.item-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 999px;
  padding: 6px 9px;
}

.item-list {
  margin-top: 8px;
}

.item-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  border-bottom: 1px dashed #e5e7eb;
  padding: 10px 0;
}

.item-row:last-child {
  border-bottom: 0;
}

.item-name {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.item-note {
  margin-top: 3px;
  font-size: 12px;
  color: #6b7280;
}

.item-price {
  align-self: start;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  font-weight: 800;
  color: #9a3412;
  background: #ffedd5;
  border: 1px solid #fdba74;
  border-radius: 10px;
  padding: 6px 8px;
  min-width: 72px;
  text-align: center;
}

.empty-state {
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  border-radius: 14px;
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  padding: 14px;
}

.footer {
  padding-bottom: 24px;
}

.footer p {
  margin: 0;
  color: #cbd5e1;
  font-size: 12px;
}

@media (max-width: 1320px) {
  .side-photo {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .photo-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 18px));
  }

  .brand-block {
    padding: 16px;
  }

  .hero-media img {
    min-height: 210px;
  }

  .photo-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .menu-head h3 {
    font-size: 24px;
  }

  .toolbar {
    flex-direction: column;
  }

  .toolbar button {
    height: 42px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .bg-orb,
  .toolbar,
  .category-showcase,
  .footer,
  .side-photo {
    display: none !important;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .main-grid {
    display: block;
  }

  .menu-category {
    break-inside: avoid;
    margin-bottom: 10px;
  }
}
