/* =========================================================
   Vilana Contact – Premium Champagne / Pearl
   - warm light background, soft gold/brass accents
   - category colors stay (muted luxury tones)
========================================================= */

:root {
    /* Base */
    --bg: #fbf7f1;
    /* warm pearl */
    --paper: rgba(255, 255, 255, .92);
    --paper2: rgba(255, 255, 255, .78);

    /* Text */
    --text: #1f2937;
    --muted: rgba(31, 41, 55, .72);
    --muted2: rgba(31, 41, 55, .56);

    /* Lines */
    --line: rgba(52, 58, 64, .14);
    /* champagne line */
    --line2: rgba(52, 58, 64, .22);

    /* Luxury accent (bronze) */
    --accent: #b07a2a;
    /* bronze */
    --accent2: #caa25a;
    /* champagne gold */
    --accentSoft: rgba(176, 122, 42, .14);

    /* Soft shadow */
    --shadow: 0 20px 70px -55px rgba(15, 23, 42, .42);
    --shadow2: 0 14px 45px -38px rgba(15, 23, 42, .32);

    /* Category accents (muted premium, not neon) */
    --warm: #b65a3d;
    /* terracotta */
    --cold: #2f6ea8;
    /* steel blue */
    --salad: #2f7d4f;
    /* forest */
    --dessert: #7a4aa8;
    /* plum */
    --candy: #b23a7f;
    /* berry */
}

/* page background (если надо перетянуть из inline) */
body {
    background: var(--bg);
    color: var(--text);
}

/* =========================================================
   Panels (cards)
========================================================= */
.panel-base,
.panel-quick,
.panel-event,
.panel-menu,
.panel-options,
.panel-basket {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, var(--paper), var(--paper2));
    box-shadow: var(--shadow2);
    backdrop-filter: blur(10px);
}

.panel-quick {
    border-color: rgba(176, 122, 42, .18);
    box-shadow: var(--shadow);
}

/* Basket — слегка "дороже" рамка, но НЕ жёлтая */
.panel-basket {
    border-color: rgba(176, 122, 42, .22);
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(252, 248, 241, .86));
}

/* Hint box */
.panel-basket .border-amber-200 {
    border-color: rgba(176, 122, 42, .22) !important;
}

.panel-basket .bg-amber-50\/40 {
    background: rgba(176, 122, 42, .06) !important;
}

/* =========================================================
   Inputs (premium feel)
========================================================= */
input,
textarea,
select {
    border-color: rgba(52, 58, 64, .18) !important;
    background: rgba(255, 255, 255, .86);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(176, 122, 42, .55) !important;
    box-shadow: 0 0 0 4px rgba(176, 122, 42, .14) !important;
}

/* =========================================================
   Buttons – Premium Bronze (instead of amber)
========================================================= */
.btn-cta,
#btnQuickSend,
#btnWizardSend,
#btnNext {
    border-radius: 999px !important;
    border: 1px solid rgba(176, 122, 42, .35) !important;
    background: linear-gradient(180deg, #caa25a, #a56a1f) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: .2px;
    box-shadow: 0 18px 60px -45px rgba(15, 23, 42, .55);
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

#btnQuickSend:hover,
#btnWizardSend:hover,
#btnNext:hover {
    filter: brightness(1.03);
    box-shadow: 0 22px 70px -48px rgba(15, 23, 42, .62);
}

#btnQuickSend:active,
#btnWizardSend:active,
#btnNext:active {
    transform: translateY(1px);
}

#btnBack {
    border-radius: 999px !important;
    border: 1px solid var(--line2) !important;
    background: rgba(255, 255, 255, .78) !important;
    color: var(--text) !important;
}

#btnBack:hover {
    background: rgba(255, 255, 255, .92) !important;
}

#btnToggleWizard,
#btnToggleAdvancedMenu,
#menuReset {
    border-radius: 999px !important;
    border: 1px solid var(--line2) !important;
    background: rgba(255, 255, 255, .70) !important;
}

#btnToggleWizard:hover,
#btnToggleAdvancedMenu:hover,
#menuReset:hover {
    background: rgba(255, 255, 255, .92) !important;
}

/* =========================================================
       Stepper dots (bronze)
    ========================================================= */
.step-dot-done,
.step-dot-active {
    background: linear-gradient(180deg, #caa25a, #a56a1f) !important;
    border-color: rgba(176, 122, 42, .65) !important;
    color: #fff !important;
}

/* =========================================================
       Menu categories – accordion category colors (CSS-driven)
       Works with JS classes:
       cat-rail cat-warm, cat-chip cat-warm, cat-dot cat-warm, cat-head cat-warm etc.
    ========================================================= */
.cat-rail {
    border-left: 4px solid rgba(52, 58, 64, .18);
}

.cat-dot {
    background: rgba(52, 58, 64, .22);
}

.cat-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(252, 248, 241, .84));
}

.cat-chip {
    border: 1px solid rgba(52, 58, 64, .18);
    background: rgba(52, 58, 64, .04);
    color: rgba(31, 41, 55, .78);
}

/* warm */
.cat-warm.cat-rail {
    border-left-color: var(--warm);
}

.cat-warm.cat-dot {
    background: var(--warm);
}

.cat-warm.cat-chip {
    border-color: color-mix(in srgb, var(--warm) 22%, #fff 0%);
    background: color-mix(in srgb, var(--warm) 8%, #fff 92%);
    color: color-mix(in srgb, var(--warm) 74%, #111 26%);
}

/* cold */
.cat-cold.cat-rail {
    border-left-color: var(--cold);
}

.cat-cold.cat-dot {
    background: var(--cold);
}

.cat-cold.cat-chip {
border-color: color-mix(in srgb, var(--cold) 22%, #fff 0%);
    background: color-mix(in srgb, var(--cold) 8%, #fff 92%);
color: color-mix(in srgb, var(--cold) 74%, #111 26%);
}

/* salad */
.cat-salad.cat-rail {
    border-left-color: var(--salad);
}

.cat-salad.cat-dot {
    background: var(--salad);
}

.cat-salad.cat-chip {
    border-color: color-mix(in srgb, var(--salad) 22%, #fff 0%);
    background: color-mix(in srgb, var(--salad) 8%, #fff 92%);
    color: color-mix(in srgb, var(--salad) 74%, #111 26%);
}

/* dessert */
.cat-dessert.cat-rail {
    border-left-color: var(--dessert);
}

.cat-dessert.cat-dot {
    background: var(--dessert);
}

.cat-dessert.cat-chip {
    border-color: color-mix(in srgb, var(--dessert) 22%, #fff 0%);
    background: color-mix(in srgb, var(--dessert) 8%, #fff 92%);
    color: color-mix(in srgb, var(--dessert) 74%, #111 26%);
}

/* candy */
.cat-candy.cat-rail {
    border-left-color: var(--candy);
}

.cat-candy.cat-dot {
    background: var(--candy);
}

.cat-candy.cat-chip {
    border-color: color-mix(in srgb, var(--candy) 22%, #fff 0%);
    background: color-mix(in srgb, var(--candy) 8%, #fff 92%);
    color: color-mix(in srgb, var(--candy) 74%, #111 26%);
}

/* =========================================================
       Add buttons in menu list (premium + selected highlight)
    ========================================================= */
.btn-add-base {
    border-radius: 12px !important;
    border: 1px solid var(--line) !important;
    background: rgba(255, 255, 255, .84) !important;
    color: rgba(31, 41, 55, .92) !important;
}

.btn-add:hover {
    background: rgba(255, 255, 255, .96) !important;
    border-color: rgba(176, 122, 42, .35) !important;
}

.btn-added {
    border-color: rgba(176, 122, 42, .55) !important;
    background: linear-gradient(180deg, rgba(202, 162, 90, .92), rgba(165, 106, 31, .92)) !important;
    color: #fff !important;
}

/* Selected cards border – subtle bronze */
#menuSelected .border-amber-200 {
    border-color: rgba(176, 122, 42, .22) !important;
}

/* Accordion arrow rotation helper (как у тебя) */
.acc-open svg {
    transform: rotate(180deg);
}

/* Toast stays premium */
#toast {
    background: rgba(17, 24, 39, 0.92);
    color: #fff;
}

/* =========================================================
       FIX: kill amber/yellow chips in Menü-Kategorien
       Put at END of contact.css
    ========================================================= */

/* общий чип (кол-во блюд) — всегда pearl/bronze, без yellow */
#menuCategories .cat-chip {
    border-color: rgba(52, 58, 64, .18) !important;
    background: rgba(255, 255, 255, .86) !important;
    color: rgba(31, 41, 55, .78) !important;
}

/* warm — терракота (НЕ жёлтый) */
#menuCategories .cat-warm.cat-chip {
    border-color: color-mix(in srgb, var(--warm) 22%, #fff 0%) !important;
    background: color-mix(in srgb, var(--warm) 10%, #fff 90%) !important;
    color: color-mix(in srgb, var(--warm) 78%, #111 22%) !important;
}

/* cold */
#menuCategories .cat-cold.cat-chip {
    border-color: color-mix(in srgb, var(--cold) 22%, #fff 0%) !important;
    background: color-mix(in srgb, var(--cold) 10%, #fff 90%) !important;
    color: color-mix(in srgb, var(--cold) 78%, #111 22%) !important;
}

/* salad */
#menuCategories .cat-salad.cat-chip {
    border-color: color-mix(in srgb, var(--salad) 22%, #fff 0%) !important;
    background: color-mix(in srgb, var(--salad) 10%, #fff 90%) !important;
    color: color-mix(in srgb, var(--salad) 78%, #111 22%) !important;
}

/* dessert */
#menuCategories .cat-dessert.cat-chip {
    border-color: color-mix(in srgb, var(--dessert) 22%, #fff 0%) !important;
    background: color-mix(in srgb, var(--dessert) 10%, #fff 90%) !important;
    color: color-mix(in srgb, var(--dessert) 78%, #111 22%) !important;
}

/* candy */
#menuCategories .cat-candy.cat-chip {
    border-color: color-mix(in srgb, var(--candy) 22%, #fff 0%) !important;
    background: color-mix(in srgb, var(--candy) 10%, #fff 90%) !important;
    color: color-mix(in srgb, var(--candy) 78%, #111 22%) !important;
}

/* чип сделать аккуратнее (премиум типографика/размер) */
#menuCategories .cat-chip {
    font-size: 11px !important;
    letter-spacing: .25px;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    line-height: 1.1 !important;
}

/* =========================================================
       PREMIUM RESET (no bronze) + UI typography
       Paste at END of /css/contact.css
    ========================================================= */

/* 1) Новая премиум-палитра: Ivory + Midnight Navy */
:root {
    --bg: #fbf7f1;
    /* можно оставить */
    --paper: rgba(255, 255, 255, .94);
    --paper2: rgba(255, 255, 255, .84);

    --text: #0f172a;
    /* slate-900 */
    --muted: rgba(15, 23, 42, .72);
    --muted2: rgba(15, 23, 42, .55);

    --line: rgba(15, 23, 42, .14);
    --line2: rgba(15, 23, 42, .22);

    /* НОВЫЙ акцент (премиум, без золота) */
    --accent: #0b1f3b;
    /* midnight navy */
    --accent2: #102a52;
    /* чуть светлее */
    --accentSoft: rgba(11, 31, 59, .16);

    --shadow: 0 22px 80px -60px rgba(2, 6, 23, .45);
    --shadow2: 0 16px 55px -45px rgba(2, 6, 23, .34);

    /* Категории оставляем цветными, но благородными */
    --warm: #a44a3f;
    /* terracotta muted */
    --cold: #2a6aa0;
    /* steel blue */
    --salad: #2b7a53;
    /* forest */
    --dessert: #6b46a2;
    /* plum */
    --candy: #a12f74;
    /* berry */
}

/* 2) Типографика: кнопки/инпуты = modern sans (перебьёт твой inline "всё Cormorant") */
button,
input,
textarea,
select {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif !important;
    letter-spacing: .2px;
}

/* Заголовки можно оставить на Cormorant (если хочешь) */
h1,
h2,
h3 {
    font-family: "Cormorant SC", serif;
}

/* 3) Кнопки: премиум "navy" (вместо bronze/amber) */
#btnQuickSend,
#btnWizardSend,
#btnNext {
    border-radius: 999px !important;
    border: 1px solid rgba(11, 31, 59, .28) !important;
    background: linear-gradient(180deg, var(--accent2), var(--accent)) !important;
    color: #fff !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 65px -52px rgba(2, 6, 23, .65) !important;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

#btnQuickSend:hover,
#btnWizardSend:hover,
#btnNext:hover {
    filter: brightness(1.04);
    box-shadow: 0 22px 80px -58px rgba(2, 6, 23, .72) !important;
}

#btnQuickSend:active,
#btnWizardSend:active,
#btnNext:active {
    transform: translateY(1px);
}

/* Secondary buttons */
#btnBack,
#btnToggleWizard,
#btnToggleAdvancedMenu,
#menuReset {
    border-radius: 999px !important;
    border: 1px solid var(--line2) !important;
    background: rgba(255, 255, 255, .82) !important;
    color: var(--text) !important;
}

#btnBack:hover,
#btnToggleWizard:hover,
#btnToggleAdvancedMenu:hover,
#menuReset:hover {
    background: rgba(255, 255, 255, .96) !important;
}

/* 4) Focus ring: navy (премиально) */
input:focus,
textarea:focus,
select:focus,
button:focus-visible {
    outline: none !important;
    border-color: rgba(11, 31, 59, .55) !important;
    box-shadow: 0 0 0 4px var(--accentSoft) !important;
}

/* 5) Stepper dots тоже navy */
.step-dot-done,
.step-dot-active {
    background: linear-gradient(180deg, var(--accent2), var(--accent)) !important;
    border-color: rgba(11, 31, 59, .55) !important;
    color: #fff !important;
}

/* 6) Убрать остатки amber/yellow в меню-блоке (жёстко) */
#menuSelectBox [class*="bg-amber-"] {
    background: rgba(255, 255, 255, .92) !important;
}

#menuSelectBox [class*="border-amber-"] {
    border-color: var(--line2) !important;
}

#menuSelectBox [class*="text-amber-"] {
    color: var(--text) !important;
}

/* 7) Чип "xx Gerichte" сделать премиум нейтральным */
#menuCategories .cat-chip {
    border-color: var(--line2) !important;
    background: rgba(255, 255, 255, .88) !important;
    color: rgba(15, 23, 42, .76) !important;
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 11px !important;
    letter-spacing: .22px;
    padding: 4px 10px !important;
    border-radius: 999px !important;
}

/* 8) "Hinzugefügt" (выбрано) — navy (вместо bronze) */
#menuSelectBox button[disabled],
#menuSelectBox button[aria-disabled="true"],
.btn-added {
    border-color: rgba(11, 31, 59, .40) !important;
    background: linear-gradient(180deg, var(--accent2), var(--accent)) !important;
    color: #fff !important;
}

/* 9) Ссылки (AGB/Datenschutz) — тоже navy */
a.text-amber-700 {
    color: rgba(11, 31, 59, .92) !important;
}

a.text-amber-700:hover {
    color: rgba(16, 42, 82, .95) !important;
}

/* MOBILE: меню-категории на всю ширину экрана */
#menuSelectBox,
#menuCategories {
    width: 100% !important;
    max-width: none !important;
}

/* сами аккордеоны (каждая категория) тоже на 100% */
#menuCategories>div {
    width: 100% !important;
}
/* =========================================================
   MENU PICKER MODAL (Visual Struktur style)
   add to END of contact.css
========================================================= */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .55);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 9999;
}

.modal-sheet {
  width: min(760px, 96vw);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(15,23,42,.92), rgba(2,6,23,.88));
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
  overflow: hidden;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.modal-title {
  color: rgba(255,255,255,.92);
  font-weight: 800;
  letter-spacing: .2px;
}

.modal-close {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}
.modal-close:hover { background: rgba(255,255,255,.10); }

.modal-body {
  padding: 16px 16px 18px;
}

.modal-search {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.modal-search input {
  flex: 1;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.92) !important;
  padding: 10px 14px !important;
}
.modal-search input::placeholder { color: rgba(255,255,255,.55); }

.modal-reset {
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.88) !important;
  padding: 10px 14px !important;
  font-weight: 800 !important;
}
.modal-reset:hover { background: rgba(255,255,255,.12) !important; }

.modal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
}

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

.modal-col {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.modal-col-title {
  padding: 12px 12px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .25px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.modal-list {
  max-height: 340px;
  overflow: auto;
  padding: 6px;
}

.modal-items {
  max-height: 340px;
  overflow: auto;
  padding: 10px;
  display: grid;
  gap: 10px;
}

@media (max-width: 720px) {
  .modal-list, .modal-items { max-height: 46vh; }
}

/* category buttons */
.modal-cat {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  font-weight: 800;
  text-align: left;
}
.modal-cat:hover { background: rgba(255,255,255,.10); }
.modal-cat.is-active {
  border-color: rgba(255,255,255,.20);
  background: linear-gradient(180deg, rgba(16,42,82,.55), rgba(11,31,59,.35));
}

/* item rows */
.modal-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
}
.modal-item:hover { background: rgba(255,255,255,.10); }

.modal-item input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.modal-item-title { font-weight: 900; }
.modal-item-desc  { margin-top: 2px; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.25; }

.modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.modal-apply {
  width: min(520px, 92%);
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: linear-gradient(180deg, var(--accent2), var(--accent)) !important;
  color: #fff !important;
  font-weight: 900 !important;
  padding: 12px 18px !important;
  box-shadow: 0 22px 80px -58px rgba(0,0,0,.70) !important;
}
.modal-apply:hover { filter: brightness(1.04); }

/* helper */
.hidden { display: none !important; }
/* ================================
   MENU SHEET (mobile fit)
================================ */
html.is-locked, body.is-locked { overflow: hidden !important; }

.v-sheet.hidden { display: none !important; }

.v-sheet {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.v-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.v-sheet__panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100dvh;            /* ✅ mobile safe */
  background: #0b0f17;
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -20px 60px rgba(0,0,0,.45);
}

/* desktop: dialog-ish */
@media (min-width: 900px) {
  .v-sheet__panel {
    width: min(980px, 92vw);
    height: min(86vh, 860px);
    left: 50%;
    transform: translateX(-50%);
    bottom: 4vh;
    border-radius: 22px;
    overflow: hidden;
  }
}

.v-sheet__head {
  padding: 14px 14px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.v-sheet__title { font-weight: 800; letter-spacing: .2px; }
.v-sheet__sub { margin-top: 2px; font-size: 12px; opacity: .75; }

.v-sheet__close {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
}

.v-sheet__tools{
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.v-sheet__search{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 12px 12px;
  outline: none;
}

.v-sheet__reset{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.10);
  color: #fff;
  padding: 12px 14px;
  font-weight: 800;
}

.v-sheet__body{
  flex: 1;
  min-height: 0;           /* ✅ allows inner scroll */
  overflow: hidden;        /* ✅ prevent double scroll */
}

.v-sheet__cols{
  height: 100%;
  display: grid;
  grid-template-columns: 1fr;  /* mobile = one column */
}

/* desktop split */
@media (min-width: 900px) {
  .v-sheet__cols{ grid-template-columns: 340px 1fr; }
}

.v-sheet__col{
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.v-sheet__coltitle{
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .3px;
  opacity: .85;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.v-sheet__list{
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px 10px 14px;
  display: grid;
  gap: 10px;
}

.v-cat{
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.v-cat.is-active{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.v-cat__name{ font-weight: 900; }
.v-cat__count{ opacity: .7; font-weight: 900; }

.v-sheet__items{
  overflow: auto;                 /* ✅ scroll items */
  -webkit-overflow-scrolling: touch;
  padding: 10px 10px 18px;
  display: grid;
  gap: 10px;
  background: rgba(255,255,255,.03);
}

.v-item{
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.v-item__chk{ margin-top: 3px; }
.v-item__name{ font-weight: 900; }
.v-item__desc{ margin-top: 4px; font-size: 12px; opacity: .75; line-height: 1.25; }

.v-empty{
  padding: 14px;
  opacity: .75;
  font-weight: 700;
}

.v-sheet__foot{
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0,0,0,.15);
}

.v-sheet__apply{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
}
/* CONTACT — force desktop header nav visible (safety fix) */
@media (min-width: 768px) {
  body.contact-wrap header nav[aria-label="Hauptnavigation"] {
    display: flex !important;
    gap: 2rem !important;
    align-items: center !important;
  }
  body.contact-wrap header nav[aria-label="Hauptnavigation"] a {
    display: inline-block !important;
  }
  body.contact-wrap header [aria-label="Sprachumschalter"] {
    display: flex !important;
    align-items: center !important;
    gap: .5rem !important;
  }
}

/* =========================================================
   MENU SHEET — Улучшенные toggle кнопки (✓ vs +)
   КЛИК НА ВЕСЬ БЛОК
========================================================= */

/* Клик на весь item */
.v-sheet__item {
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}

.v-sheet__item:active {
  transform: scale(0.98);
}

/* Базовая кнопка toggle (невыбрано = "+") */
.v-sheet__toggle {
  min-width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .65);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  pointer-events: none; /* не блокирует клик на item */
}

/* Выбранное состояние (✓) — яркий акцент! */
.v-sheet__toggle.is-on {
  border: 1.5px solid rgba(76, 175, 80, .65) !important;
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, .85), 
    rgba(56, 142, 60, .75)) !important;
  color: #ffffff !important;
  box-shadow: 
    0 4px 12px rgba(76, 175, 80, .35),
    inset 0 1px 2px rgba(255, 255, 255, .25);
}

/* Hover эффект на весь item */
.v-sheet__item:hover .v-sheet__toggle {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .25);
  transform: scale(1.05);
}

.v-sheet__item:hover .v-sheet__toggle.is-on {
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, .95), 
    rgba(56, 142, 60, .85)) !important;
  transform: scale(1.05);
  box-shadow: 
    0 6px 16px rgba(76, 175, 80, .45),
    inset 0 1px 2px rgba(255, 255, 255, .35);
}

/* Подсветка выбранного элемента целиком */
.v-sheet__item:has(.v-sheet__toggle.is-on) {
  background: rgba(76, 175, 80, .12) !important;
  border-color: rgba(76, 175, 80, .25) !important;
}

.v-sheet__item:has(.v-sheet__toggle.is-on):hover {
  background: rgba(76, 175, 80, .16) !important;
}

/* Счётчик выбранных блюд */
#menuCount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, .90), 
    rgba(56, 142, 60, .80));
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(76, 175, 80, .3);
}

/* Hint текст с акцентом */
#menuRowHint {
  font-weight: 700;
  color: rgba(76, 175, 80, .92) !important;
}

/* Кнопка "Übernehmen" с зелёным акцентом */
.v-sheet__apply {
  border: 1.5px solid rgba(76, 175, 80, .45) !important;
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, .25), 
    rgba(56, 142, 60, .20)) !important;
  color: #fff !important;
}

.v-sheet__apply:hover {
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, .35), 
    rgba(56, 142, 60, .30)) !important;
  border-color: rgba(76, 175, 80, .55) !important;
}

/* Стилизация текста в item */
.v-sheet__itemText {
  flex: 1;
}

.v-sheet__itemName {
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 4px;
}

.v-sheet__itemDesc {
  font-size: 12px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.35;
}

/* Cat button улучшения */
.v-sheet__catTitle {
  font-weight: 900;
  font-size: 14px;
}

.v-sheet__catMeta {
  font-size: 11px;
  opacity: .7;
  font-weight: 800;
}
/* =========================================================
   PREMIUM FORM INPUTS (Date, Time, Number, Select)
========================================================= */

/* Все инпуты - базовый premium стиль */
input[type="date"],
input[type="time"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
select,
textarea {
  border-radius: 14px !important;
  border: 1px solid rgba(15, 23, 42, .18) !important;
  background: rgba(255, 255, 255, .94) !important;
  color: var(--text) !important;
  padding: 12px 16px !important;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.2s ease !important;
}

/* Focus - премиум navy glow */
input[type="date"]:focus,
input[type="time"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
select:focus,
textarea:focus {
  outline: none !important;
  border-color: rgba(11, 31, 59, .45) !important;
  background: rgba(255, 255, 255, 1) !important;
  box-shadow: 
    0 0 0 3px rgba(11, 31, 59, .12),
    0 4px 12px rgba(11, 31, 59, .08) !important;
}

/* Hover */
input[type="date"]:hover,
input[type="time"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
select:hover,
textarea:hover {
  border-color: rgba(15, 23, 42, .28) !important;
  background: rgba(255, 255, 255, .98) !important;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
  color: rgba(15, 23, 42, .45) !important;
  font-weight: 400 !important;
}

/* Select - убрать стандартную стрелку и добавить кастомную */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f172a' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 40px !important;
}

/* Number input - убрать стрелки (spinner) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Date & Time inputs - premium календарь иконка */
input[type="date"],
input[type="time"] {
  position: relative;
}

/* Стиль для calendar/clock picker (браузерный) */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover,
input[type="time"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Checkbox & Radio - premium стиль */
input[type="checkbox"],
input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  border-radius: 4px !important;
  border: 1.5px solid rgba(15, 23, 42, .25) !important;
  background: rgba(255, 255, 255, .95) !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  accent-color: var(--accent) !important;
}

input[type="radio"] {
  border-radius: 50% !important;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  background: linear-gradient(135deg, var(--accent2), var(--accent)) !important;
  border-color: var(--accent) !important;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
  border-color: rgba(15, 23, 42, .35) !important;
}

/* Labels - premium typography */
label {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 600 !important;
  color: rgba(15, 23, 42, .88) !important;
  letter-spacing: 0.2px;
}

/* Disabled state */
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background: rgba(15, 23, 42, .04) !important;
}

/* Error state (если нужно) */
input.field-error,
select.field-error,
textarea.field-error {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, .1) !important;
}
/* =========================================================
   FIX: Категории на всю ширину (как блюда слева)
========================================================= */

/* Контейнер категорий */
#menuCats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch !important; /* убирает центрирование */
}

/* Каждая категория - кнопка на всю ширину */
.v-cat {
  width: 100% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  text-align: left !important;
  padding: 12px 14px !important;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.v-cat:hover {
  background: rgba(255,255,255,.10);
}

.v-cat.is-active {
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.18) !important;
}

/* Текст категории */
.v-cat > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left !important;
}

.v-sheet__catTitle {
  font-weight: 900;
  font-size: 14px;
  text-align: left !important;
}

.v-sheet__catMeta {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 800;
  text-align: left !important;
}

/* Убрать любое центрирование */
.v-sheet__list {
  text-align: left !important;
}
/* =========================================================
   FIX: Яркая подсветка активной категории
========================================================= */

.v-cat.is-active {
  background: rgba(76, 175, 80, 0.18) !important;
  border-color: rgba(76, 175, 80, 0.45) !important;
  border-left: 3px solid #4CAF50 !important;
}

.v-cat.is-active .v-sheet__catTitle {
  color: rgba(76, 175, 80, 0.95) !important;
}

.v-cat.is-active .v-sheet__catMeta {
  color: rgba(76, 175, 80, 0.75) !important;
}

/* Hover на активной категории */
.v-cat.is-active:hover {
  background: rgba(76, 175, 80, 0.22) !important;
}
/* =========================================================
   ПОДСВЕТКА АКТИВНОЙ КАТЕГОРИИ (усиленная)
========================================================= */

/* Базовая категория */
.v-cat {
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 800;
}

.v-cat:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
}

/* АКТИВНАЯ категория - яркая зелёная подсветка */
.v-cat.is-active {
  background: rgba(76, 175, 80, 0.25) !important;
  border: 2px solid #4CAF50 !important;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15) !important;
}

.v-cat.is-active:hover {
  background: rgba(76, 175, 80, 0.30) !important;
}

/* Текст в активной категории */
.v-cat.is-active .v-sheet__catTitle,
.v-cat.is-active .v-sheet__catMeta {
  color: #4CAF50 !important;
}
/* =========================================
   TOP CONTACT BLOCK — Premium
========================================= */
.top-contact {
  --tc-bg: #f8f5ef;
  --tc-surface: #ffffff;
  --tc-border: #e9dfd0;
  --tc-text: #1f2937;
  --tc-muted: #6b7280;
  --tc-accent: #b8945c;
  --tc-accent-2: #8f6a3a;

  position: relative;
  padding: clamp(32px, 6vw, 64px) 16px clamp(20px, 4vw, 36px);
  background:
    radial-gradient(1100px 300px at 50% -80px, rgba(184, 148, 92, 0.13), transparent 70%),
    var(--tc-bg);
}

.top-contact__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.top-contact__title {
  margin: 0;
  font-family:"Cormorant SC", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--tc-text);
  text-wrap: balance;
}

.top-contact__lead {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--tc-muted);
}

/* Grid */
.top-contact__grid {
  margin-top: clamp(20px, 3.2vw, 30px);
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 820px) {
  .top-contact__grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.info-card {
  position: relative;
  display: grid;
  grid-template-columns: 28px auto;
  grid-template-areas:
    "icon label"
    "icon value";
  gap: 2px 10px;
  align-items: center;
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--tc-border);
  background: linear-gradient(180deg, #fff, #fffcf8);
  color: var(--tc-text);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.info-card:hover {
  transform: translateY(-1px);
  border-color: #d8c5a8;
  box-shadow:
    0 12px 28px rgba(31, 41, 55, 0.08),
    0 2px 8px rgba(31, 41, 55, 0.05);
}

.info-card:focus-visible {
  outline: 2px solid #caa772;
  outline-offset: 2px;
}

.info-card__icon {
  grid-area: icon;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  background: #f3ece2;
  color: #6f5532;
}

.info-card__label {
  grid-area: label;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tc-muted);
}

.info-card__value {
  grid-area: value;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.35;
  color: var(--tc-text);
  overflow-wrap: anywhere;
}

/* Accent card (WhatsApp) */
.info-card--accent {
  border-color: #d7c29f;
  background:
    linear-gradient(180deg, #fffefc, #fff7eb);
}

.info-card--accent .info-card__icon {
  background: #f8e7ce;
  color: #7a572a;
}

/* Static card (non-link) */
.info-card--static {
  cursor: default;
}

.info-card--static:hover {
  transform: none;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  border-color: var(--tc-border);
}
