/* Public menu page and dynamic menu widgets - 4.0.46 */
.vdp-menu-page .page-hero,
.vdp-menu-hero {
  background: radial-gradient(circle at 12% 18%, rgba(255,255,255,.16), transparent 32%), linear-gradient(135deg, var(--primary-dark, #1f3b32), var(--primary, #9B7654));
  color: #fff;
  padding: clamp(110px, 15vw, 180px) 0 clamp(62px, 9vw, 105px);
  position: relative;
  overflow: hidden;
}
.vdp-menu-hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -35% 35%;
  height: 280px;
  background: rgba(255,255,255,.10);
  filter: blur(10px);
  border-radius: 999px;
  transform: rotate(-8deg);
}
.vdp-menu-hero .container { position: relative; z-index: 2; }
.vdp-menu-hero h1 { color: inherit; }
.vdp-menu-hero .lead { color: rgba(255,255,255,.88); }
.vdp-menu-hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:26px; }
.vdp-menu-public-section { background: var(--soft, #f7f3ed); }
.vdp-menu-list { display:grid; gap:34px; }
.vdp-menu-category {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(28, 37, 34, .08);
  border-radius: 32px;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 22px 70px rgba(25, 34, 30, .08);
}
.vdp-menu-category-head {
  display:flex;
  align-items:flex-start;
  gap:16px;
  margin-bottom:22px;
}
.vdp-menu-category-head > span {
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background: color-mix(in srgb, var(--primary, #9B7654), #fff 82%);
  color: var(--primary-dark, #1f3b32);
  flex:0 0 auto;
  font-size:25px;
}
.vdp-menu-category h3 { margin:0; font-size: clamp(1.55rem, 3vw, 2.3rem); }
.vdp-menu-category-desc { margin:8px 0 0; color: var(--muted, #68736e); max-width: 760px; }
.vdp-menu-subcategory { margin-top: 26px; }
.vdp-menu-subcategory > h4 {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary-dark, #1f3b32);
  border-bottom: 1px solid rgba(28,37,34,.10);
  padding-bottom: 12px;
  margin: 0 0 18px;
}
.vdp-menu-items {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:16px;
}
.vdp-menu-item {
  display:grid;
  grid-template-columns: 112px minmax(0,1fr);
  gap:16px;
  align-items:stretch;
  background:#fff;
  border:1px solid rgba(28,37,34,.08);
  border-radius:24px;
  padding:12px;
  box-shadow: 0 12px 34px rgba(25,34,30,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.vdp-menu-item:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(25,34,30,.10); border-color: color-mix(in srgb, var(--primary,#9B7654), #fff 45%); }
.vdp-menu-item.is-featured { border-color: color-mix(in srgb, var(--primary,#9B7654), #fff 35%); }
.vdp-menu-item-image { border-radius:18px; overflow:hidden; background: color-mix(in srgb, var(--primary,#9B7654), #fff 88%); min-height:112px; }
.vdp-menu-item-image img { width:100%; height:100%; object-fit:cover; display:block; }
.vdp-menu-item-body { min-width:0; padding:4px 4px 4px 0; }
.vdp-menu-item-head { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.vdp-menu-item-head h4 { margin:0; font-size:1.08rem; line-height:1.25; color: var(--ink, #1c2522); }
.vdp-menu-item-head strong { white-space:nowrap; color: var(--primary-dark, #1f3b32); font-size:1.05rem; }
.vdp-menu-item p { margin:9px 0 0; color: var(--muted,#68736e); font-size:.95rem; line-height:1.55; }
.vdp-menu-badges { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
.vdp-menu-badges span { font-size:.74rem; font-weight:800; padding:5px 8px; border-radius:999px; background: color-mix(in srgb, var(--primary,#9B7654), #fff 86%); color: var(--primary-dark,#1f3b32); }
.vdp-menu-item small { display:block; margin-top:10px; color: color-mix(in srgb, var(--muted,#68736e), #000 8%); }
.vdp-empty-public-box { text-align:center; background:#fff; border:1px dashed rgba(28,37,34,.20); border-radius:28px; padding:44px 24px; color:var(--muted,#68736e); }
.vdp-empty-public-box i { font-size:44px; color:var(--primary,#9B7654); }
.vdp-empty-public-box h3 { margin:12px 0 8px; color:var(--ink,#1c2522); }
@media (max-width: 900px) {
  .vdp-menu-items { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .vdp-menu-category { border-radius:24px; padding:18px; }
  .vdp-menu-category-head { gap:12px; }
  .vdp-menu-category-head > span { width:44px; height:44px; border-radius:15px; font-size:22px; }
  .vdp-menu-item { grid-template-columns: 86px minmax(0,1fr); gap:12px; border-radius:20px; }
  .vdp-menu-item-image { min-height:86px; border-radius:14px; }
  .vdp-menu-item-head { display:block; }
  .vdp-menu-item-head strong { display:block; margin-top:4px; }
}
