/* ═══════════════════════════════════════════════════════════
   4 КАЗАНИ — стилі меню
═══════════════════════════════════════════════════════════ */
:root {
  --red:        #B4181C;
  --red-deep:   #8E1216;
  --red-soft:   #C8342F;
  --black:      #1B1512;
  --ink:        #2A211C;
  --ink-mid:    #5A4B3E;
  --ink-soft:   #9C8B7B;
  --cream:      #FBF5EA;
  --cream-mid:  #F3EADA;
  --cream-dark: #E7DAC4;
  --card:       #FFFFFF;
  --gold:       #C79A3E;
  --gold-light: #E0BE6C;
  --orange:     #E7912E;
  --topbar-h:   54px;
  --maxw:       640px;

  --mandala: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 80 80'%3E%3Cdefs%3E%3Cstyle%3E.l%7Bstroke:%23B4181C;stroke-width:.5;fill:none;opacity:.14%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='l' points='40,4 46,16 60,16 50,26 54,40 40,32 26,40 30,26 20,16 34,16'/%3E%3Cpolygon class='l' points='40,76 46,64 60,64 50,54 54,40 40,48 26,40 30,54 20,64 34,64'/%3E%3Cpolygon class='l' points='4,40 16,46 16,60 26,50 40,54 32,40 40,26 26,30 16,20 16,34'/%3E%3Cpolygon class='l' points='76,40 64,46 64,60 54,50 40,54 48,40 40,26 54,30 64,20 64,34'/%3E%3Ccircle class='l' cx='40' cy='40' r='10'/%3E%3Ccircle class='l' cx='40' cy='40' r='18'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 3.5rem;
  background:
    radial-gradient(ellipse at 50% 30%, #FFFDF8 0%, var(--cream) 55%, var(--cream-mid) 100%);
  overflow: hidden;
  text-align: center;
}
.hero-ornament {
  position: absolute; inset: 0;
  background-image: var(--mandala);
  opacity: .9;
  pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(231,145,46,.10), transparent 45%);
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 460px; }
.hero-logo-wrap {
  width: 100%;
  margin-bottom: 1.4rem;
  animation: rise .8s cubic-bezier(.2,.7,.2,1) both;
}
.hero-logo { width: min(300px, 78%); height: auto; margin: 0 auto; filter: drop-shadow(0 10px 30px rgba(140,18,22,.18)); }
.hero-sub {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 1.1rem;
  animation: rise .8s .08s cubic-bezier(.2,.7,.2,1) both;
}
.hero-sub-text {
  font-size: .66rem; font-weight: 700; letter-spacing: .32em;
  text-transform: uppercase; color: var(--ink-mid);
}
.hero-dot { width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); opacity: .8; }
.hero-slogan {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.2rem, 9vw, 3.1rem);
  font-weight: 700; line-height: 1;
  color: var(--red);
  margin-bottom: 2rem;
  animation: rise .8s .16s cubic-bezier(.2,.7,.2,1) both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 100px;
  background: var(--red); color: #fff;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  box-shadow: 0 10px 26px rgba(180,24,28,.32);
  transition: transform .18s, box-shadow .18s, background .18s;
  animation: rise .8s .24s cubic-bezier(.2,.7,.2,1) both;
}
.hero-cta svg { width: 17px; height: 17px; animation: bob 1.8s ease-in-out infinite; }
.hero-cta:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(180,24,28,.4); }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ═══ STICKY BRAND BAR ═══ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  height: var(--topbar-h);
  background: rgba(251,245,234,.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(180,24,28,.14);
  box-shadow: 0 2px 14px rgba(90,40,10,.06);
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.15rem; gap: 12px;
}
.topbar-brand { display: flex; align-items: center; }
.topbar-logo { height: 32px; width: auto; }
.topbar-hours { text-align: right; line-height: 1.1; }
.topbar-hours-label { display: block; font-size: .5rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }
.topbar-hours-time { font-size: .74rem; font-weight: 800; color: var(--red); letter-spacing: .02em; }

/* ═══ CATEGORY NAV ═══ */
.category-nav {
  position: sticky; top: var(--topbar-h); z-index: 90;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 3px 12px rgba(0,0,0,.045);
}
.category-nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; gap: 6px; padding: 9px 1rem;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  border: 1.5px solid rgba(27,21,18,.1);
  background: #fff; color: var(--ink-mid);
  font-size: .68rem; font-weight: 700; letter-spacing: .02em;
  white-space: nowrap; transition: all .18s;
}
.cat-btn .cat-icon { font-size: .85rem; line-height: 1; }
.cat-btn:hover { border-color: rgba(180,24,28,.35); color: var(--red); }
.cat-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
  box-shadow: 0 3px 12px rgba(180,24,28,.28);
}

/* ═══ MENU CONTENT ═══ */
.menu-content { max-width: var(--maxw); margin: 0 auto; padding: 0 0 4rem; }
.category-section { scroll-margin-top: calc(var(--topbar-h) + 46px); }
.category-header { display: flex; align-items: center; gap: 11px; padding: 26px 16px 12px; }
.cat-section-icon {
  font-size: 1.15rem; width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fff, var(--cream-mid));
  border: 1px solid var(--cream-dark); border-radius: 12px;
  box-shadow: 0 2px 8px rgba(90,40,10,.06);
}
.category-header h2 { font-size: 1.22rem; font-weight: 800; color: var(--black); letter-spacing: .01em; flex: 1; }
.cat-count {
  font-size: .58rem; font-weight: 700; color: var(--red);
  background: rgba(180,24,28,.09); padding: 4px 10px; border-radius: 100px;
  flex-shrink: 0; letter-spacing: .02em;
}

/* ── items ── */
.items-list { display: flex; flex-direction: column; gap: 11px; padding: 0 12px; }
.item-card {
  display: flex; align-items: stretch; gap: 14px;
  padding: 15px; background: var(--card);
  border-radius: 18px; border: 1px solid rgba(27,21,18,.055);
  box-shadow: 0 3px 14px rgba(90,40,10,.06);
  transition: box-shadow .2s, transform .2s;
  position: relative; overflow: hidden;
}
.item-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--red), var(--orange));
  opacity: 0; transition: opacity .2s;
}
.item-card:hover { box-shadow: 0 8px 26px rgba(90,40,10,.12); transform: translateY(-2px); }
.item-card:hover::before { opacity: 1; }

.item-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.item-name { font-size: 1.02rem; font-weight: 700; color: var(--black); line-height: 1.28; margin-bottom: 5px; }
.item-desc { font-size: .74rem; font-weight: 400; color: var(--ink-mid); line-height: 1.55; margin-bottom: 9px; }

.item-addons { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-bottom: 10px; }
.item-addons-label {
  font-size: .56rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-soft); margin-right: 2px;
}
.item-addon-tag {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: .6rem; font-weight: 600; padding: 3px 9px; border-radius: 100px;
  border: 1px dashed var(--gold); background: #FFFBF2; color: #8A6A25; white-space: nowrap;
}
.addon-price { font-weight: 800; color: var(--orange); }

.item-meta-row { display: flex; align-items: baseline; gap: 6px; margin-top: auto; margin-bottom: 8px; }
.item-price { font-size: 1.3rem; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -.01em; }
.item-price .currency { font-size: .66rem; font-weight: 700; color: var(--ink-soft); }
.item-grams { font-size: .7rem; font-weight: 500; color: var(--ink-soft); }

.item-bottom-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.item-tags { display: flex; flex-wrap: wrap; gap: 5px; flex: 1; min-width: 0; }
.item-tag { display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .03em; padding: 3px 9px; border-radius: 100px; white-space: nowrap; }

.like-btn {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  color: #C3B3A3; padding: 5px 9px; border-radius: 100px;
  transition: color .18s, background .18s;
}
.like-btn:hover { background: rgba(180,24,28,.07); color: var(--red); }
.like-btn.liked { color: var(--red); }
.like-btn.liked .like-icon { fill: var(--red); stroke: var(--red); }
.like-icon { width: 15px; height: 15px; flex-shrink: 0; stroke: currentColor; transition: fill .18s, stroke .18s; }
.like-count { font-size: .72rem; font-weight: 800; line-height: 1; }

.item-photo-wrap { flex-shrink: 0; width: 108px; height: 108px; border-radius: 14px; overflow: hidden; align-self: center; box-shadow: 0 3px 10px rgba(90,40,10,.12); }
.item-photo { width: 100%; height: 100%; object-fit: cover; }

.section-divider { height: 1px; background: var(--cream-dark); margin: 22px 16px 0; }

/* ═══ INFO BLOCK ═══ */
.info-block {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, var(--red) 0%, var(--red-deep) 100%);
  border-radius: 22px; padding: 2rem 1.6rem; margin: 2rem 12px 0; color: #fff;
}
.info-block-orn { position: absolute; inset: 0; background-image: var(--mandala); opacity: .5; filter: invert(1) brightness(2); pointer-events: none; }
.info-block > * { position: relative; }
.info-block-slogan { font-family: 'Caveat', cursive; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; margin-bottom: .3rem; }
.info-block-title { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.info-block-text { font-size: .8rem; line-height: 1.65; color: rgba(255,255,255,.9); margin-bottom: 1.4rem; }
.info-rows { display: flex; flex-direction: column; gap: 1rem; }
.info-row { display: flex; align-items: center; gap: 12px; }
.info-row-icon {
  width: 36px; height: 36px; flex-shrink: 0; font-size: 1rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.info-row-label { font-size: .54rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.info-row-value { font-size: .84rem; font-weight: 700; color: #fff; margin-top: 2px; }
.info-soon {
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.18);
  font-size: .68rem; font-weight: 600; letter-spacing: .03em; color: var(--gold-light); text-align: center;
}
.page-foot { text-align: center; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); padding: 2rem 1rem 1rem; }

/* ═══ SCROLL TOP ═══ */
.scroll-top-btn {
  position: fixed; bottom: 20px; right: 16px; z-index: 79;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(180,24,28,.4);
  opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
  transition: opacity .25s, transform .25s, background .2s;
}
.scroll-top-btn svg { width: 20px; height: 20px; }
.scroll-top-btn.visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top-btn:hover { background: var(--red-deep); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 480px) {
  .item-photo-wrap { width: 92px; height: 92px; }
  .item-price { font-size: 1.2rem; }
  .category-header h2 { font-size: 1.1rem; }
  .item-name { font-size: .96rem; }
}
@media (min-width: 700px) {
  .item-photo-wrap { width: 124px; height: 124px; }
  .hero { min-height: 92vh; }
}
