@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@900&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --ink: #0f0f10;
  --bg: #fff;
  --soft: #f5f4f1;
  --line: #eceae5;
  --muted: #7a7872;
  --gold: #c9a45a;
  --gold-deep: #a88440;
  --red: #d64545;
  --red-soft: #fce7e7;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4 {
  color: var(--ink);
  letter-spacing: -.07em;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

header.nav {
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
}

.nav-inner {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: grid;
}

.logo {
  letter-spacing: -.02em;
  color: var(--ink);
  font-family: Playfair Display, serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.nav-search {
  width: 100%;
  max-width: 560px;
  position: relative;
}

.nav-search input {
  background: var(--soft);
  width: 100%;
  color: var(--ink);
  border: 1px solid #0000;
  border-radius: 14px;
  outline: none;
  padding: 13px 16px 13px 44px;
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .15s, background .15s;
}

.nav-search input::placeholder {
  color: #9a988f;
}

.nav-search input:focus {
  border-color: var(--ink);
  background: #fff;
}

.nav-search svg {
  color: #9a988f;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.nav-icon {
  background: var(--soft);
  border-radius: 14px;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}

.layout {
  grid-template-columns: 200px 1fr 380px;
  align-items: start;
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 24px 60px;
  display: grid;
}

.side {
  background: #fff;
  flex-direction: column;
  gap: 2px;
  display: flex;
  position: sticky;
  top: 84px;
}

.side a {
  color: var(--ink);
  border-radius: 12px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  font-size: 14.5px;
  font-weight: 500;
  transition: background .15s;
  display: flex;
}

.side a:hover {
  background: var(--soft);
}

.side a.active {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

.main {
  min-width: 0;
}

.stories {
  scrollbar-width: none;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 6px;
  display: flex;
  overflow-x: auto;
}

.stories::-webkit-scrollbar {
  display: none;
}

.story {
  cursor: pointer;
  text-align: left;
  color: #fff;
  border: 0;
  border-radius: 18px;
  flex-direction: column;
  flex: 0 0 156px;
  justify-content: flex-end;
  height: 220px;
  padding: 14px;
  transition: transform .18s, box-shadow .18s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.story:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -18px #00000059;
}

.story:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000 40%, #000000b3 100%);
  position: absolute;
  inset: 0;
}

.story .bg {
  z-index: 0;
  position: absolute;
  inset: 0;
}

.story .body {
  z-index: 2;
  position: relative;
}

.story .tag {
  color: var(--ink);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #fffffff2;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 4px 8px;
  font-size: 10.5px;
  font-weight: 700;
  display: inline-block;
}

.story h3 {
  color: #fff;
  letter-spacing: -.01em;
  font-size: 16px;
  line-height: 1.1;
}

.story .ring {
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 10px;
  box-shadow: 0 0 0 3px #ffffff4d;
}

.sec-head {
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 18px;
  display: flex;
}

.sec-head h2 {
  letter-spacing: -.03em;
  font-size: 28px;
  line-height: 1;
}

.sec-head .more {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
  display: inline-flex;
}

.sec-head .more:hover {
  color: var(--ink);
}

.more-icon {
  transition: transform .2s;
}

.dishes {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  flex-direction: column;
  padding: 10px 12px 14px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
}

.card:hover {
  border-color: #dcd6c6;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -18px #0f0f102e;
}

.card .img {
  aspect-ratio: 1;
  background: var(--soft);
  border-radius: 12px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.card .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter .2s;
}

.card.in-cart .img img {
  filter: brightness(.55);
}

.qty-badge {
  color: #fff;
  letter-spacing: -.05em;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  display: none;
  position: absolute;
  inset: 0;
}

.card.in-cart .qty-badge {
  display: flex;
}

.card .img .disc {
  background: var(--red);
  color: #fff;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 11.5px;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 8px;
}

.price-old-row {
  color: var(--muted);
  min-height: 14px;
  margin-bottom: 4px;
  font-size: 12.5px;
  line-height: 1;
  text-decoration: line-through;
}

.ctrl {
  align-items: stretch;
  min-height: 44px;
  margin-bottom: 8px;
  display: flex;
}

.add {
  background: var(--ink);
  color: #fff;
  letter-spacing: -.03em;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s, transform .1s;
  display: flex;
}

.add:hover {
  background: var(--gold-deep);
}

.add:active {
  transform: scale(.98);
}

.qty-ctrl {
  background: var(--red);
  color: #fff;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 44px;
  display: flex;
  overflow: hidden;
}

.qty-ctrl button {
  color: #fff;
  place-items: center;
  width: 48px;
  height: 44px;
  font-size: 20px;
  font-weight: 600;
  transition: background .12s;
  display: grid;
}

.qty-ctrl button:hover {
  background: #ffffff1f;
}

.qty-ctrl .q-mid {
  text-align: center;
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 0 4px;
  display: flex;
}

.qty-ctrl .qn {
  letter-spacing: -.03em;
  font-size: 14px;
  font-weight: 700;
}

.name {
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.meta {
  color: var(--muted);
  font-size: 12.5px;
}

.cart {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 18px;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 100px);
  padding: 22px 18px 18px;
  display: flex;
  position: sticky;
  top: 84px;
  overflow-y: auto;
}

.cart::-webkit-scrollbar {
  width: 6px;
}

.cart::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.cart-title {
  letter-spacing: -.04em;
  font-size: 22px;
  font-weight: 700;
}

.cart-empty {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 0 14px;
  display: flex;
}

.cart-empty .emo {
  font-size: 42px;
  line-height: 1;
}

.cart-empty .emo-text {
  color: var(--muted);
  letter-spacing: -.02em;
  font-size: 14.5px;
  font-weight: 500;
}

.cart-items {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.ci {
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  display: grid;
}

.ci .thumb {
  background: var(--soft);
  border-radius: 9px;
  width: 42px;
  height: 42px;
  overflow: hidden;
}

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

.ci .nm {
  color: var(--ink);
  letter-spacing: -.02em;
  font-size: 13px;
  line-height: 1.3;
}

.ci .gr {
  color: var(--muted);
  margin-top: 2px;
  font-size: 11.5px;
}

.ci .qb {
  background: var(--soft);
  border-radius: 8px;
  align-items: center;
  height: 28px;
  display: flex;
}

.ci .qb button {
  place-items: center;
  width: 26px;
  height: 28px;
  font-size: 14px;
  display: grid;
}

.ci .qb span {
  text-align: center;
  min-width: 18px;
  font-size: 12.5px;
  font-weight: 600;
}

.cart-total {
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0 4px;
  display: flex;
}

.cart-total .lbl {
  color: var(--muted);
  font-size: 14px;
}

.cart-total .val {
  letter-spacing: -.05em;
  font-size: 24px;
  font-weight: 700;
}

.cart-row {
  background: var(--soft);
  border-radius: 14px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.cart-row-ico {
  font-size: 18px;
}

.cart-row-lbl {
  letter-spacing: -.02em;
  flex: 1;
  font-size: 14.5px;
}

.cart-row-qty {
  align-items: center;
  gap: 8px;
  display: flex;
}

.cart-row-qty button {
  width: 24px;
  height: 24px;
  color: var(--muted);
  border-radius: 6px;
  place-items: center;
  font-size: 16px;
  transition: color .12s, background .12s;
  display: grid;
}

.cart-row-qty button:hover {
  color: var(--ink);
  background: #0000000d;
}

.cart-row-qty span {
  text-align: center;
  min-width: 14px;
  font-size: 14px;
  font-weight: 700;
}

.cart-comment {
  background: var(--soft);
  color: var(--ink);
  resize: none;
  letter-spacing: -.02em;
  border: 0;
  border-radius: 14px;
  outline: none;
  width: 100%;
  min-height: 42px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
}

.cart-comment::placeholder {
  color: #9a988f;
}

.cart-comment:focus {
  box-shadow: inset 0 0 0 1px var(--ink);
  background: #fff;
}

.deliv-title {
  letter-spacing: -.04em;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}

.deliv-tabs {
  background: var(--soft);
  border-radius: 14px;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  display: grid;
}

.deliv-tab {
  height: 38px;
  color: var(--muted);
  letter-spacing: -.02em;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
}

.deliv-tab.active {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.deliv-card {
  background: var(--soft);
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  display: flex;
}

.deliv-row {
  align-items: flex-start;
  gap: 10px;
  display: flex;
}

.deliv-row-ico {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.2;
}

.deliv-row-body {
  flex: 1;
  min-width: 0;
}

.deliv-row-lbl {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
  font-size: 11.5px;
  font-weight: 600;
}

.deliv-row-val {
  color: var(--ink);
  letter-spacing: -.02em;
  font-size: 14px;
  line-height: 1.35;
}

.cart-cta {
  background: var(--ink);
  color: #fff;
  letter-spacing: -.03em;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: background .15s, opacity .15s;
  display: flex;
}

.cart-cta:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.cart-cta:not(:disabled):hover {
  background: var(--gold-deep);
}

.ph-0 {
  background: linear-gradient(135deg, #0f0f10 0%, #2a2926 60%, #6b5320 100%);
}

.ph-1 {
  background: linear-gradient(135deg, #a88440 0%, #c9a45a 60%, #e8cb87 100%);
}

.ph-2 {
  background: linear-gradient(135deg, #3b2c1a 0%, #5e4626 100%);
}

.ph-3 {
  background: linear-gradient(135deg, #0f0f10 0%, #2a2926 100%);
}

.ph-4 {
  background: linear-gradient(135deg, #7c1d1d 0%, #b23838 100%);
}

.ph-5 {
  background: linear-gradient(135deg, #1f3a2e 0%, #3b6e55 100%);
}

.ph-6 {
  background: linear-gradient(135deg, #1c1b18 0%, #4a3d1d 100%);
}

.ph-7 {
  background: linear-gradient(135deg, #2a1f3a 0%, #5e4688 100%);
}

.ph-8 {
  background: linear-gradient(135deg, #1a2a3b 0%, #2a5e8a 100%);
}

.ph-9 {
  background: linear-gradient(135deg, #1a3b2a 0%, #2a8a5e 100%);
}

.ph-10 {
  background: linear-gradient(135deg, #3b1a1a 0%, #8a2a2a 100%);
}

.ph-11 {
  background: linear-gradient(135deg, #1a1a3b 0%, #2a2a8a 100%);
}

.cart-fab {
  background: var(--ink);
  color: #fff;
  z-index: 50;
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 32px #00000040;
}

.cart-fab-badge {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

@media (max-width: 1100px) {
  .layout {
    grid-template-columns: 200px 1fr;
  }

  .cart {
    display: none;
  }

  .cart-fab {
    display: flex;
  }

  .dishes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-search {
    display: none;
  }

  .layout {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px 14px 80px;
  }

  .side {
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
    z-index: 30;
    background: #fff;
    flex-direction: row;
    gap: 0;
    margin: 0 -14px;
    padding: 8px 0;
    position: sticky;
    top: 60px;
    overflow-x: auto;
  }

  .side::-webkit-scrollbar {
    display: none;
  }

  .side a {
    white-space: nowrap;
    border-radius: 999px;
    flex: none;
    padding: 8px 14px;
    font-size: 14px;
  }

  .side a:first-child {
    margin-left: 14px;
  }

  .side a:last-child {
    margin-right: 14px;
  }

  .dishes {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .story {
    flex: 0 0 130px;
    height: 180px;
  }

  .story h3 {
    font-size: 14px;
  }

  .sec-head h2 {
    font-size: 22px;
  }

  .card {
    border-radius: 14px;
    padding: 8px 8px 12px;
  }

  .card .img {
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .name {
    font-size: 13px;
  }

  .add, .qty-ctrl {
    height: 40px;
  }

  .qty-ctrl button {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .nav-inner {
    gap: 10px;
    padding: 10px 14px;
  }

  .logo {
    font-size: 24px;
  }

  .dishes {
    grid-template-columns: repeat(2, 1fr);
  }

  .story {
    flex: 0 0 116px;
    height: 158px;
    padding: 10px;
  }

  .story h3 {
    font-size: 13px;
  }

  .story .tag {
    margin-bottom: 6px;
    padding: 3px 6px;
    font-size: 9.5px;
  }

  .add {
    height: 38px;
    font-size: 13px;
  }

  .qty-ctrl {
    height: 38px;
  }

  .qty-ctrl button {
    width: 40px;
    height: 38px;
    font-size: 18px;
  }

  .sec-head {
    margin: 4px 0 12px;
  }

  .sec-head h2 {
    font-size: 20px;
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/