:root {
  --bg-0: #111613;
  --bg-1: #1b241d;
  --paper: #e7dcc5;
  --paper-soft: #efe6d2;
  --ink: #1f1812;
  --muted: #695440;
  --brand: #b88953;
  --brand-strong: #996c3d;
  --olive: #2f3b2f;
  --card: #f6efdf;
  --line: rgba(42, 30, 21, 0.16);
  --shadow: 0 12px 28px rgba(25, 18, 13, 0.2);
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 210px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: radial-gradient(circle at 24% 8%, #2b352e 0%, var(--bg-0) 62%);
  color: var(--ink);
  min-height: 100dvh;
  overflow-x: hidden;
  padding: 12px;
}

.app-shell {
  width: min(430px, 100%);
  margin: 0 auto;
  background: var(--paper);
  border-radius: 28px;
  overflow: clip;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  min-height: calc(100dvh - 24px);
  padding-bottom: 18px;
}

.topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: calc(14px + env(safe-area-inset-top)) 16px 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.topbar h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #e8ddc8;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.top-actions { display: flex; gap: 8px; }

.icon-btn {
  border: 0;
  width: auto;
  height: 40px;
  border-radius: 0;
  background: transparent;
  color: #e8ddc8;
  font-size: 18px;
  display: grid;
  place-items: center;
  padding: 0;
}

.icon-img {
  width: 22px;
  height: 22px;
  display: block;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.insta-label {
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  line-height: 1;
  color: #e8ddc8;
  text-transform: lowercase;
}

.hero-panel {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 220px;
}

.hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 12, 0.1), rgba(12, 14, 12, 0.75));
}

.hero-logo {
  position: absolute;
  left: 16px;
  bottom: 62px;
  width: 126px;
}

.hero-tag {
  position: absolute;
  left: 16px;
  bottom: 22px;
  margin: 0;
  color: #e5ccb0;
  font-family: 'Caveat', cursive;
  font-size: 1.48rem;
}

.lang-switch {
  position: absolute;
  right: 12px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(20, 25, 21, 0.66);
  border: 1px solid rgba(232, 221, 200, 0.34);
  border-radius: 14px;
  padding: 4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.lang-btn {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #e8d9c3;
  padding: 7px 12px;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  min-width: 44px;
  transition: all 180ms ease;
}

.lang-btn.active {
  background: linear-gradient(145deg, #d7b289, var(--brand));
  color: #1f140c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 4px 12px rgba(184, 137, 83, 0.35);
}

.lang-btn:not(.active):hover {
  background: rgba(232, 221, 200, 0.12);
}

.lang-modal {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 137, 83, 0.14), transparent 42%),
    rgba(6, 6, 6, 0.9);
  display: grid;
  place-items: center;
  z-index: 40;
  padding: 18px;
  backdrop-filter: blur(4px);
}

.lang-modal.hidden {
  display: none;
}

.lang-modal-card {
  width: min(340px, 90vw);
  background:
    linear-gradient(170deg, rgba(24, 20, 16, 0.96), rgba(14, 12, 10, 0.96));
  border: 1px solid rgba(232, 221, 200, 0.22);
  border-radius: 20px;
  padding: 14px 14px 13px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.lang-modal-logo {
  width: 84px;
  display: block;
  margin: 0 auto 6px;
  opacity: 0.92;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.lang-modal-title {
  margin: 0 0 2px;
  color: #f1e4cf;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.lang-modal-sub {
  margin: 0 0 10px;
  color: #c2b097;
  font-size: 0.8rem;
  text-align: center;
}

.lang-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.lang-pick {
  border: 1px solid rgba(232, 221, 200, 0.32);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  color: #fff7ea;
  border-radius: 12px;
  min-height: 46px;
  font-weight: 700;
  text-align: center;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lang-pick:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 221, 200, 0.58);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);
}

.lang-pick:focus-visible {
  outline: 2px solid #b88953;
  outline-offset: 2px;
}

.lang-pick-main {
  font-size: 0.95rem;
  color: #fff6e8;
}

.search-wrap { padding: 12px 14px 2px; }

.search-box {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border-radius: 18px;
  border: 1px solid rgba(146, 109, 70, 0.36);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)),
    linear-gradient(160deg, #eee3cd, #e3d5bb);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 22px rgba(43, 30, 20, 0.1);
  overflow: hidden;
  position: relative;
}

.search-icon {
  display: grid;
  place-items: center;
  color: #6f5138;
  font-size: 1.02rem;
}

.search-box::after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto;
  background: radial-gradient(circle at 30% 30%, #dfc19a, #b88953);
  opacity: 0.7;
}

.search-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2a2018;
  padding: 13px 8px 13px 0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  outline: none;
}

.search-wrap input:focus {
  box-shadow: none;
}

.search-box:focus-within {
  border-color: rgba(184, 137, 83, 0.85);
  box-shadow:
    0 0 0 3px rgba(184, 137, 83, 0.24),
    0 12px 24px rgba(43, 30, 20, 0.14);
  transform: translateY(-1px);
}


.nonclub-wrap {
  margin-top: 10px;
  margin-left: -14px;
  margin-right: -14px;
  position: relative;
}

.nonclub-slider {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.nonclub-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 560ms ease;
}

.nonclub-slider .slide.active {
  opacity: 1;
}

.nonclub-banner {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 36%;
  display: block;
  border-radius: 0;
  border: 0;
  filter: saturate(1.08) contrast(1.1);
}

.nonclub-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.06), rgba(12, 10, 8, 0.22));
}

.quick-cats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(165deg, rgba(239, 230, 210, 0.5), rgba(228, 216, 191, 0.45));
  border: 1px solid rgba(121, 85, 50, 0.16);
  border-radius: 14px;
}

.qcat {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  position: relative;
  transition: transform 160ms ease;
}

.qcat:hover {
  transform: translateY(-2px);
}

.qcat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 14%;
  width: 1px;
  height: 72%;
  background: linear-gradient(
    to bottom,
    rgba(139, 102, 67, 0.04),
    rgba(139, 102, 67, 0.28),
    rgba(139, 102, 67, 0.04)
  );
  filter: blur(0.2px);
}

.qcat-bubble {
  width: 108px;
  height: 86px;
  margin: 0 auto 6px;
  border-radius: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  position: relative;
  border: 0;
  overflow: hidden;
}

.qcat.active .qcat-bubble {
  outline: 0;
  transform: none;
}

.qcat-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #3f2b1d;
  line-height: 1.15;
  min-height: 2.3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.qcat.active .qcat-name {
  position: relative;
}

.qcat.active .qcat-name::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 58%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 137, 83, 0), rgba(184, 137, 83, 0.95), rgba(184, 137, 83, 0));
  box-shadow: 0 0 10px rgba(184, 137, 83, 0.45);
}

.qcat-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.section-title {
  margin: 0;
  padding: 0 14px;
  font-size: 1.03rem;
  font-weight: 700;
  color: #2b1f16;
}

.offer-block { margin-top: 2px; }

.offer-card {
  margin: 8px 14px 2px;
  border-radius: 20px;
  padding: 14px;
  color: #fff3e1;
  background: linear-gradient(135deg, #7f5a33 0%, #b88953 55%, #3a2819 100%);
  box-shadow: var(--shadow);
}

.offer-badge {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.offer-card h2 {
  margin: 8px 0 4px;
  font-size: 1.08rem;
}

.offer-card p { margin: 0; }

.deal-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(148px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 8px 14px 2px;
  scrollbar-width: none;
}

.deal-rail::-webkit-scrollbar { display: none; }

.deal-card {
  border-radius: 16px;
  padding: 12px;
  color: #fff;
  box-shadow: var(--shadow);
}

.deal-card h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.deal-card p { margin: 0; font-size: 0.82rem; opacity: 0.92; }

.list-block { margin-top: 10px; }

.section-banner-wrap {
  padding: 0 14px 8px;
}

.section-banner-card {
  position: relative;
}

.section-banner {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(121, 85, 50, 0.28);
}

.section-banner-title {
  position: absolute;
  left: 48px;
  top: 45%;
  transform: translateY(-50%);
  margin: 0;
  max-width: 62%;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  color: #e8ddc8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.menu-list {
  display: grid;
  gap: 9px;
  padding: 8px 14px;
}

.acc-block {
  display: grid;
  gap: 8px;
}

.acc-head {
  width: 100%;
  border: 1px solid rgba(121, 85, 50, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(165deg, #f2e7d2, #e3d4b8);
  border-radius: 14px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #2f1d14;
  font-size: 1rem;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(53, 36, 23, 0.09);
  position: relative;
  overflow: hidden;
}

.acc-head::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, #d0a273, #9e6f40);
}

.acc-head.active {
  border-color: rgba(184, 137, 83, 0.7);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(165deg, #f4e9d7, #e8dac1);
  box-shadow: 0 12px 24px rgba(53, 36, 23, 0.14);
  transform: translateY(-1px);
}

.acc-plus {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #f2e8d6;
  background: linear-gradient(140deg, #a97845, #7f5935);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 6px 12px rgba(54, 34, 19, 0.22);
}

.acc-list {
  display: grid;
  gap: 8px;
  padding: 0 4px 1px 6px;
}

.acc-list-enter {
  animation: accReveal 220ms ease both;
  transform-origin: top center;
}

@keyframes accReveal {
  from {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.list-block .section-title {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  padding-top: 2px;
  padding-bottom: 2px;
}

.acc-list .item-card {
  border-radius: 12px;
  border: 1px solid rgba(121, 85, 50, 0.18);
  background: linear-gradient(170deg, #f8efde, #ede0c8);
  padding: 10px 10px;
}

.item-card {
  background: var(--card);
  border-radius: 16px;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
}

.item-name {
  margin: 0;
  font-weight: 700;
  color: #2f1d14;
}

.item-meta {
  margin: 2px 0 0;
  color: #6e5543;
  font-size: 0.82rem;
}

.item-price {
  margin-top: 8px;
  font-weight: 800;
  color: #4e341f;
}

.item-cta {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--brand-strong), #cf9b63);
  color: #fff;
  font-size: 1.1rem;
}

.notes {
  padding: 10px 14px 0;
  color: #6f5642;
  font-size: 0.64rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.notes p { margin: 0 0 4px; }


@media (max-width: 560px) {
  body {
    padding: 0;
    background: var(--paper);
  }

  .app-shell {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    padding-bottom: 14px;
  }

  .hero-panel {
    min-height: 208px;
  }

  .hero-img {
    height: 208px;
  }

  

  .hero-panel,
  .search-wrap,
  .quick-cats,
  .offer-block,
  .deals-block,
  .list-block,
  .notes {
    width: 100%;
  }
}

@media (min-width: 700px) {
  .app-shell {
    width: min(500px, 100%);
  }
}






