/* Menu & Pricing - matched to hibachinow.com/menu structure */

.hn-menu {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: 7.5rem 0 4rem;
}

/* Red hero price card */
.hn-menu__hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
  color: #fff;
  background: linear-gradient(to bottom right, #ef4444, #dc2626, #b91c1c);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .hn-menu__hero { padding: 2rem; }
}

.hn-menu__hero-deco {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  opacity: 0.05;
  pointer-events: none;
}

.hn-menu__hero-deco--tr {
  top: 0; right: 0;
  width: 12rem; height: 12rem;
  transform: translate(4rem, -4rem);
}

.hn-menu__hero-deco--bl {
  bottom: 0; left: 0;
  width: 9rem; height: 9rem;
  transform: translate(-3rem, 3rem);
}

.hn-menu__hero-inner { position: relative; z-index: 1; }

.hn-menu__hero-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.hn-menu__hero-head h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: #fff;
}

.hn-menu__hero-head p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.hn-menu__hero-rule {
  display: block;
  width: 4rem;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
}

.hn-menu__price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .hn-menu__price-grid { gap: 1rem; }
}

@media (min-width: 1024px) {
  .hn-menu__price-grid { grid-template-columns: repeat(3, 1fr); }
}

.hn-menu__glass {
  text-align: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.hn-menu__glass--min {
  grid-column: span 2;
}

@media (min-width: 1024px) {
  .hn-menu__glass--min { grid-column: span 1; }
}

.hn-menu__glass-label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.hn-menu__glass-price {
  margin: 0.5rem 0;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.hn-menu__glass-meta {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.6);
}

.hn-menu__hero-fine {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.hn-menu__hero-fine--soft {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

/* State search bar */
.hn-menu__state {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

@media (min-width: 640px) {
  .hn-menu__state {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    align-items: center;
  }
}

.hn-menu__state-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  min-width: 0;
}

.hn-menu__pin {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #fef2f2;
  color: #b91c1c;
}

.hn-menu__pin svg { width: 1rem; height: 1rem; }

.hn-menu__state-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #030712;
}

.hn-menu__state-sub {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #6b7280;
}

.hn-menu__search {
  position: relative;
  width: 100%;
}

.hn-menu__search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.hn-menu__search input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #f9fafb;
  padding: 0 0.75rem 0 2.25rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}

.hn-menu__search input::placeholder { color: #9ca3af; }

.hn-menu__search input:focus {
  outline: none;
  border-color: #fca5a5;
  background: #fff;
  box-shadow: 0 0 0 2px #fecaca;
}

/* Protein / Extras panels */
.hn-menu__panel {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.hn-menu__panel-head {
  padding: 1rem 1.25rem;
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: #fff;
}

.hn-menu__panel-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.hn-menu__panel-head p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hn-menu__rows { padding: 0.5rem 1.25rem; }

.hn-menu__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.hn-menu__row:last-child { border-bottom: 0; }

.hn-menu__row-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1;
}

.hn-menu__row-name h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375;
  color: #111827;
}

.hn-menu__upgrade {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
  flex-shrink: 0;
}

.hn-menu__row-price {
  text-align: right;
  flex-shrink: 0;
}

.hn-menu__included {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #16a34a;
}

.hn-menu__upgrade-price,
.hn-menu__flat {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.hn-menu__extra {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hn-menu__includes {
  margin: 0;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid #f3f4f6;
}

/* CTA */
.hn-menu__cta {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(to right, #ef4444, #dc2626);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .hn-menu__cta { padding: 2rem; }
}

.hn-menu__cta-deco {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  opacity: 0.1;
  pointer-events: none;
}

.hn-menu__cta-deco--tl {
  top: 0; left: 0;
  width: 10rem; height: 10rem;
  transform: translate(-5rem, -5rem);
}

.hn-menu__cta-deco--br {
  bottom: 0; right: 0;
  width: 8rem; height: 8rem;
  transform: translate(4rem, 4rem);
}

.hn-menu__cta-inner { position: relative; z-index: 1; }

.hn-menu__cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.hn-menu__cta p {
  margin: 0 0 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.hn-menu__cta-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  background: #fff;
  color: #dc2626;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.hn-menu__cta-btn:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}