:root {
  --ink: #0d0f10;
  --sand: #f9f4ee;
  --accent: #dd4c2a;
  --accent-dark: #d94c18;
  --muted: #6c757d;
  --card-shadow: 0 25px 50px rgba(13, 15, 16, 0.08);
  --pill-bg: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Oswald", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

.gradient-hero {
  /*background: radial-gradient(120% 140% at 20% 20%, rgba(240, 93, 35, 0.35), transparent 50%),*/
  /*            radial-gradient(90% 120% at 80% 0%, rgba(13, 15, 16, 0.45), transparent 60%),*/
  /*            linear-gradient(135deg, #0f1113 0%, #101316 50%, #0c0e10 100%);*/
  background: url("../images/header.png") no-repeat left / cover;
}

.brand-mark {
  min-height: 40px;
  height: 40px;
  padding: 0 10px;
}

.topbar {
  background: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

.nav-link {
  color: #f7f7f7 !important;
  opacity: 0.85;
}

.nav-link:hover {
  opacity: 1;
}

.navbar .nav-link {
  white-space: nowrap;
}

.snow-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
}

.snow-toggle.is-off {
  opacity: 0.6;
}

.snow-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #38bdf8;
  mask: url('../images/icons/snow.png') center / contain;
}

.snow-toggle[aria-pressed="true"] .snow-icon {
  background-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.snow-toggle[aria-pressed="false"] .snow-icon {
  background-color: #9ca3af;
}

.snow-label {
  font-size: 0.8rem;
}

.snow-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1030;
}

@keyframes snow-fall {
  to {
    transform: translate3d(var(--drift), 120vh, 0);
  }
}

body.snow-hidden .snow-layer {
  display: none;
}

.city-select {
  min-width: 150px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.city-select option {
  color: #000;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.highlight {
  color: var(--accent);
  padding-top: 10px;
  display: block;
  margin: 0 auto;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background: radial-gradient(120% 140% at 100% 0%, rgba(221, 76, 42, 0.15), transparent 56%), #fff;
  box-shadow: var(--card-shadow);
}

.hero-card-top {
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(221, 76, 42, 0.14);
  color: #7a210f;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.hero-time {
  line-height: 1.35;
}

.hero-product {
  align-items: flex-start;
  gap: 14px;
}

.hero-img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(13, 15, 16, 0.08);
}

.hero-content {
  width: 100%;
}

.hero-title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.hero-description {
  line-height: 1.45;
  margin-bottom: 6px !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-price {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(240, 93, 35, 0.25);
  background: rgba(240, 93, 35, 0.12);
  font-size: clamp(0.85rem, 1.3vw, 0.9rem) !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  line-height: 1;
  text-shadow: none;
}

.hero-actions {
  margin-top: 6px;
}

.hero-actions .btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
}

@media (max-width: 767px) {
  .hero-card {
    padding: 1rem !important;
  }

  .hero-card-top {
    align-items: center !important;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero-time {
    width: auto;
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
  }

  .hero-product {
    flex-direction: column;
  }

  .hero-img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-product {
    align-items: center;
  }

  .hero-img {
    width: 150px;
    height: 150px;
  }
}

.pill-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--pill-bg);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.pill-pill.is-active {
  border-color: rgba(74, 222, 128, 0.6);
  background: rgba(74, 222, 128, 0.18);
}

.happy-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.happy-dot.is-active {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
}

.bg-primary-soft {
  background: rgba(240, 93, 35, 0.12);
}

.text-primary {
  color: var(--accent) !important;
}

.bg-dark-soft {
  background: rgba(13, 15, 16, 0.06);
}

.bg-accent {
  background: var(--accent);
  color: #fff;
}

.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  flex-wrap: nowrap;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.filter-scroll > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

.filter-scroll::-webkit-scrollbar {
  display: none;
}

.menu-filters {
  min-width: 0;
}

.category-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.category-nav-btn {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(13, 15, 16, 0.16);
  background: #fff;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.category-nav-btn:hover {
  border-color: rgba(13, 15, 16, 0.3);
  color: var(--ink);
}

.category-nav-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.icon-cart {
  width: 20px;
  height: 100%;
  display: inline-block;
  background: no-repeat center / contain;
  mask: url('../images/icons/shopping-basket2.png') center / contain no-repeat;
  background-color: #fff;
}

.cart-button {
  min-height: 40px;
  height: 40px;
  position: relative;
  min-width: 72px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: radial-gradient(80% 120% at 15% 0%, rgba(240, 93, 35, 0.35), transparent 65%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 22px rgba(13, 15, 16, 0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.cart-button:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: radial-gradient(80% 120% at 15% 0%, rgba(240, 93, 35, 0.45), transparent 65%),
              linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 28px rgba(13, 15, 16, 0.3);
  transform: translateY(-1px);
}

.cart-button:active {
  transform: translateY(0);
}

.cart-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(240, 93, 35, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.navbar .cart-button {
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  padding: 0 10px;
  line-height: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 4px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), 0 8px 16px rgba(13, 15, 16, 0.28);
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
  text-align: center;
  --bs-badge-padding-x: 0.65em;
  --bs-badge-padding-y: 0.35em;
  --bs-badge-font-size: 0.75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
}

.city-select-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.side-city-select {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 10px;
  padding: 0.35rem 2.25rem 0.35rem 0.75rem;
}

.side-city-select:focus {
  border-color: rgba(240, 93, 35, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(240, 93, 35, 0.2);
}

.side-city-select option {
  color: #111;
}

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

.cart-items .cart-line {
  border: 1px solid rgba(13, 15, 16, 0.08);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}

.cart-items .cart-line h6 {
  margin: 0;
}

.cart-items .cart-line .price {
  font-weight: 600;
}

.cart-thumb {
  width: 25%;
  border-radius: 10px;
  object-fit: cover;
}

.cart-remove {
  width: 20px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(13, 15, 16, 0.2);
  border-radius: 999px;
  overflow: hidden;
}

.qty-btn {
  border: none;
  background: transparent;
  padding: 4px 10px;
  font-weight: 600;
  color: var(--ink);
}

.qty-btn:hover {
  background: rgba(13, 15, 16, 0.06);
}

.qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.toast-container {
  z-index: 1080;
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.city-tag {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-card,
.contact-card {
  border: 1px solid rgba(13, 15, 16, 0.06);
}

#about {
  /*background-color: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);*/
  background: url("../images/background.png") no-repeat center/cover;
  position: relative;
  margin-bottom: 0;
}

#about .about-surface {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(1rem, 2.1vw, 1.9rem);
  background: #ffffff;
  border: 1px solid rgba(13, 15, 16, 0.08);
  box-shadow: 0 22px 40px rgba(13, 15, 16, 0.08);
}

#about .about-surface::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(240, 93, 35, 0.2) 0%, rgba(240, 93, 35, 0) 70%);
  pointer-events: none;
}

#about .about-surface::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(13, 15, 16, 0.07) 0%, rgba(13, 15, 16, 0) 70%);
  pointer-events: none;
}

#about .row {
  position: relative;
  z-index: 1;
}

#about .about-block {
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  padding: clamp(1rem, 1.8vw, 1.5rem);
  background: #ffffff;
}

#about .about-block-intro {
  background:
    linear-gradient(160deg, rgba(240, 93, 35, 0.14), rgba(255, 255, 255, 0.94) 36%),
    #fff;
}

#about .about-block-points {
  background: #ffffff;
}

#about .about-kicker {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(13, 15, 16, 0.66);
}

#about .about-heading {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

#about .about-subheading {
  font-size: clamp(1.2rem, 2.2vw, 1.42rem);
  line-height: 1.25;
  color: var(--ink);
}

#about .about-text {
  font-size: clamp(0.97rem, 1.08vw, 1.03rem);
  line-height: 1.72;
  color: rgba(13, 15, 16, 0.78);
}

#about .about-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

#about .about-points li {
  position: relative;
  padding-left: 20px;
  color: rgba(13, 15, 16, 0.82);
  line-height: 1.65;
  font-size: clamp(0.95rem, 1.04vw, 1rem);
}

#about .about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 93, 35, 0.2);
}

#about .about-final {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(13, 15, 16, 0.12);
}

#about + #contact {
  padding-top: 0;
}

#contact {
  background: #ffffff;
}

#contact .contact-surface {
  position: relative;
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.9rem);
  background: #ffffff;
  border: 1px solid rgba(13, 15, 16, 0.08);
  box-shadow: 0 20px 38px rgba(13, 15, 16, 0.07);
}

#contact .contact-intro,
#contact .contact-card {
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  padding: clamp(1rem, 1.8vw, 1.5rem);
  background: #ffffff;
}

#contact .contact-intro {
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(240, 93, 35, 0.18), rgba(255, 255, 255, 0) 56%),
    #fff;
}

#contact .contact-kicker {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(13, 15, 16, 0.65);
}

#contact .contact-title {
  font-size: clamp(1.6rem, 2.7vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
}

#contact .contact-copy {
  margin-bottom: 1.1rem !important;
  font-size: clamp(0.96rem, 1.06vw, 1.02rem);
  line-height: 1.68;
  color: rgba(13, 15, 16, 0.76);
  max-width: 50ch;
}

#contact .contact-actions .btn {
  border-radius: 11px;
  font-weight: 600;
  min-height: 42px;
  padding-left: 1.15rem !important;
  padding-right: 1.15rem !important;
}

#contact .contact-head {
  gap: 12px;
}

#contact .contact-label {
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--ink);
}

#contact .contact-time {
  font-size: 0.92rem;
  color: rgba(13, 15, 16, 0.62);
}

#contact .contact-subtext {
  font-size: 0.92rem;
  color: rgba(13, 15, 16, 0.56);
}

#contact .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

#contact .contact-item {
  border-radius: 12px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background: #f8f9fb;
  padding: 10px 12px;
}

#contact .contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(13, 15, 16, 0.52);
  margin-bottom: 4px;
}

#contact .contact-item-value {
  display: inline-flex;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
  word-break: break-word;
  text-decoration: none;
  transition: color 0.2s ease;
}

#contact .contact-item-value:hover {
  color: var(--accent-dark);
}

.text-sushi {
  color: var(--accent);
  font-weight: 500 !important;

  text-shadow:
          0 0 6px rgba(255, 106, 42, 0.55),
          0 0 18px rgba(255, 106, 42, 0.35),
          0 0 36px rgba(255, 106, 42, 0.18);
}

#about .text-sushi {
  color: var(--accent-dark);
  text-shadow: none;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  #about .about-surface {
    border-radius: 18px;
    padding: 0.9rem;
  }

  #about .about-block {
    border-radius: 14px;
    padding: 1rem;
  }

  #about .about-subheading {
    font-size: 1.2rem;
  }

  #about .about-points {
    gap: 8px;
  }

  #contact .contact-surface {
    border-radius: 18px;
    padding: 0.9rem;
  }

  #contact .contact-intro,
  #contact .contact-card {
    border-radius: 14px;
    padding: 1rem;
  }

  #contact .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  #about .about-text,
  #about .about-points li {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  #contact .contact-copy,
  #contact .contact-item-value {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  #contact .contact-actions .btn {
    width: 100%;
  }
}

footer {
  background: url("../images/background.png")  no-repeat center/cover;
}

.footer-link {
  color: white;
}

.footer-link:hover {
  color: var(--accent);
}

.order-button {
  padding: 7px 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}


#logo {
  width: 100px;
}


#categoryFilters button {
  font-size: 16px;
}


@media (max-width: 768px) {
  .menu-filters {
    flex: 1 1 100%;
    width: 100%;
  }

  .category-nav-btn {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    width: 44px;
    height: 40px;
    min-height: 40px;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: radial-gradient(80% 120% at 15% 0%, rgba(240, 93, 35, 0.35), transparent 65%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 22px rgba(13, 15, 16, 0.22);
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 0.55);
    background: radial-gradient(80% 120% at 15% 0%, rgba(240, 93, 35, 0.45), transparent 65%),
                linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 28px rgba(13, 15, 16, 0.3);
  }
}

@media (max-width: 576px) {
  .city-select {
    min-width: 100%;
  }
}

.compact-menu-header {
  padding-bottom: 0.2rem;
}

.compact-menu-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compact-menu-navbar .navbar-brand.brand-mark {
  min-height: 0;
  height: auto;
  padding: 0;
  margin-right: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.compact-menu-navbar #logo {
  width: auto;
  height: 56px;
  max-height: 56px;
  display: block;
}

.compact-menu-hero-copy {
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(165px, 0.95fr) minmax(280px, 1.7fr) minmax(220px, 1.05fr);
  gap: 0.45rem;
  width: min(100%, 860px);
}

.compact-menu-hero-item {
  min-height: 58px;
  padding: 0.45rem 0.62rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(11, 13, 15, 0.78), rgba(11, 13, 15, 0.58)),
    radial-gradient(120% 140% at 0% 0%, rgba(221, 76, 42, 0.3), rgba(221, 76, 42, 0) 58%);
  box-shadow: 0 12px 22px rgba(13, 15, 16, 0.2);
  display: flex;
  align-items: center;
}

.compact-menu-hero-item-title {
  background:
    linear-gradient(135deg, rgba(11, 13, 15, 0.84), rgba(11, 13, 15, 0.62)),
    radial-gradient(130% 120% at 20% 0%, rgba(221, 76, 42, 0.36), rgba(221, 76, 42, 0) 62%);
}

.compact-menu-hero-item-pill {
  border-color: rgba(74, 222, 128, 0.56);
  background:
    linear-gradient(130deg, rgba(17, 56, 34, 0.72), rgba(17, 44, 30, 0.46)),
    radial-gradient(120% 120% at 0% 0%, rgba(74, 222, 128, 0.2), rgba(74, 222, 128, 0) 62%);
}

.compact-menu-hero-eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.22;
}

.compact-menu-hero-title {
  color: #fff;
  font-size: clamp(0.98rem, 1.1vw, 1.14rem);
  font-weight: 700;
  line-height: 1.18;
}

.compact-menu-hero-brand {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
  text-shadow:
    0 0 5px rgba(255, 106, 42, 0.48),
    0 0 14px rgba(255, 106, 42, 0.28);
}

.compact-menu-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  color: #ddfdea;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.25;
}

.compact-menu-hero-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

.compact-menu-mobile-hero {
  margin-top: 0.18rem;
  padding-bottom: 0.45rem;
}

.compact-menu-mobile-hero-card {
  padding: 0.62rem 0.72rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(11, 13, 15, 0.84), rgba(11, 13, 15, 0.62)),
    radial-gradient(140% 140% at 0% 0%, rgba(221, 76, 42, 0.34), rgba(221, 76, 42, 0) 60%);
  box-shadow: 0 14px 26px rgba(13, 15, 16, 0.24);
}

.compact-menu-mobile-eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.compact-menu-mobile-title {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.compact-menu-mobile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ddfdea;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
}

.compact-menu-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(12, 14, 16, 0.82), rgba(12, 14, 16, 0.6)),
    radial-gradient(110% 180% at 0% 0%, rgba(221, 76, 42, 0.34), rgba(221, 76, 42, 0) 58%);
  box-shadow: 0 20px 40px rgba(13, 15, 16, 0.2);
}

.compact-menu-title {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.compact-menu-copy {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}

.compact-menu-page {
  background: linear-gradient(180deg, #fff 0%, #f7f3ee 100%);
}

.compact-menu-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #151b22, #252d37);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(13, 15, 16, 0.24);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.compact-menu-scroll-top:hover {
  background: linear-gradient(145deg, #dd4c2a, #b93c1d);
}

.compact-menu-scroll-top:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(221, 76, 42, 0.35), 0 12px 24px rgba(13, 15, 16, 0.28);
}

.compact-menu-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

#menu.compact-menu-page,
.compact-menu-section,
.compact-menu-contact {
  scroll-margin-top: 96px;
}

.compact-menu-directory {
  position: sticky;
  top: 12px;
  z-index: 12;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(13, 15, 16, 0.08);
  backdrop-filter: blur(12px);
}

.compact-menu-directory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.compact-menu-directory-count,
.compact-menu-section-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(13, 15, 16, 0.06);
  color: rgba(13, 15, 16, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.compact-menu-directory-scroll {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.compact-menu-directory-scroll::-webkit-scrollbar {
  display: none;
}

.compact-menu-directory-scroll .btn {
  flex: 0 0 auto;
  border-radius: 999px;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
  white-space: nowrap;
}

.compact-menu-section {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px rgba(13, 15, 16, 0.06);
}

.compact-menu-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.compact-menu-section-title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.compact-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.compact-menu-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(221, 76, 42, 0.08), rgba(255, 255, 255, 0) 56%),
    #fcf9f5;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.compact-menu-card:hover {
  transform: translateY(-1px);
  border-color: rgba(221, 76, 42, 0.2);
  box-shadow: 0 14px 24px rgba(13, 15, 16, 0.08);
}

.compact-menu-card-image-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(248, 243, 235, 0.95));
  overflow: hidden;
}

.compact-menu-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
  filter: drop-shadow(0 10px 16px rgba(13, 15, 16, 0.14));
}

.compact-menu-card-body {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}

.compact-menu-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
}

.compact-menu-card-title-wrap {
  min-width: 0;
}

.compact-menu-card-title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.15;
}

.compact-menu-card-lead {
  margin: 0.3rem 0 0;
  color: rgba(13, 15, 16, 0.56);
  font-size: 0.83rem;
  line-height: 1.4;
}

.compact-menu-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
}

.compact-menu-card-price strong {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.compact-menu-card-price span {
  margin-top: 0.18rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compact-menu-card-description {
  margin: 0;
  color: rgba(13, 15, 16, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.compact-menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.compact-menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.compact-menu-meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(13, 15, 16, 0.06);
  color: rgba(13, 15, 16, 0.68);
  font-size: 0.78rem;
  line-height: 1;
}

.compact-menu-actions {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.compact-menu-actions .btn {
  min-height: 34px;
  border-radius: 999px;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
  font-weight: 600;
}

.compact-menu-contact {
  padding-top: 0.25rem;
}

.compact-menu-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(13, 15, 16, 0.08);
  background:
    radial-gradient(130% 130% at 100% 0%, rgba(221, 76, 42, 0.12), rgba(255, 255, 255, 0) 60%),
    #fff;
  box-shadow: 0 18px 34px rgba(13, 15, 16, 0.06);
}

.compact-menu-contact-grid {
  display: grid;
  gap: 0.65rem;
}

.compact-menu-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: #f8f9fb;
  border: 1px solid rgba(13, 15, 16, 0.06);
}

.compact-menu-contact-label {
  color: rgba(13, 15, 16, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compact-menu-contact-item a,
.compact-menu-contact-item span:last-child {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
}

.compact-menu-contact-item a:hover {
  color: var(--accent-dark);
}

@media (max-width: 1199px) {
  .compact-menu-hero-copy {
    grid-template-columns: minmax(145px, 0.9fr) minmax(245px, 1.45fr) minmax(200px, 1fr);
    gap: 0.36rem;
    width: min(100%, 760px);
  }

  .compact-menu-hero-item {
    min-height: 52px;
    padding: 0.4rem 0.54rem;
  }

  .compact-menu-hero-title {
    font-size: 1rem;
  }

  .compact-menu-hero-pill {
    font-size: 0.68rem;
  }
}

@media (max-width: 992px) {
  .compact-menu-header {
    padding-bottom: 0.5rem;
  }

  .compact-menu-navbar #logo {
    height: 50px;
    max-height: 50px;
  }

  .compact-menu-mobile-hero {
    padding-bottom: 0.62rem;
  }

  .compact-menu-mobile-hero-card {
    padding: 0.74rem 0.84rem;
  }

  .compact-menu-mobile-title {
    font-size: 1rem;
  }

  .compact-menu-mobile-pill {
    font-size: 0.76rem;
  }

  .compact-menu-directory {
    position: static;
  }

  .compact-menu-grid,
  .compact-menu-contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .compact-menu-navbar {
    gap: 0.55rem;
  }

  .compact-menu-mobile-hero {
    padding-bottom: 0.58rem;
  }

  .compact-menu-mobile-hero-card {
    padding: 0.66rem 0.7rem;
  }

  .compact-menu-mobile-eyebrow {
    font-size: 0.69rem;
  }

  .compact-menu-mobile-title {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .compact-menu-mobile-pill {
    font-size: 0.72rem;
  }

  .compact-menu-intro {
    flex-direction: column;
    align-items: start;
  }

  .compact-menu-directory-head,
  .compact-menu-section-head,
  .compact-menu-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  #menu.compact-menu-page .compact-menu-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  #menu.compact-menu-page .compact-menu-card-image-wrap {
    width: 100%;
    height: 220px;
    aspect-ratio: auto;
  }

  #menu.compact-menu-page .compact-menu-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    filter: none;
  }

  .compact-menu-card-price {
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .compact-menu-scroll-top {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
  }

  .compact-menu-navbar {
    gap: 0.45rem;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }

  .compact-menu-navbar .navbar-brand {
    margin-left: 0.2rem;
  }

  .compact-menu-navbar #logo {
    height: 46px;
    max-height: 46px;
  }

  .compact-menu-mobile-hero {
    padding-bottom: 0.72rem;
  }

  .compact-menu-mobile-hero-card {
    padding: 0.72rem 0.66rem;
    border-radius: 14px;
  }

  .compact-menu-mobile-eyebrow {
    font-size: 0.68rem;
  }

  .compact-menu-mobile-title {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .compact-menu-mobile-pill {
    font-size: 0.7rem;
    white-space: normal;
  }

  .compact-menu-intro,
  .compact-menu-directory,
  .compact-menu-section,
  .compact-menu-card,
  .compact-menu-contact-card {
    padding: 0.85rem;
    border-radius: 18px;
  }

  #menu.compact-menu-page .compact-menu-card {
    grid-template-columns: 1fr;
  }

  .compact-menu-actions {
    width: 100%;
  }

  .compact-menu-actions .btn {
    flex: 1 1 auto;
  }
}
