/* =============================================
   ESTILOS DO CARDÁPIO ONLINE
   ============================================= */

/* Container geral do menu */
.menu-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 90px; /* Space for the sticky bottom bar */
}

/* Cabeçalho minimalista do cardápio */
.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-header .back-btn {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s;
}

.menu-header .back-btn:active {
  background: rgba(255, 255, 255, 0.2);
}

.menu-header .title {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--cream);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* Título de Categoria */
.category-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--orange);
  letter-spacing: 2px;
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Lista de Itens */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cartão do Item do Menu */
.menu-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, background 0.2s;
}

.menu-item:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.08);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.menu-item-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}

.menu-item-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin: 0;
}

.menu-item-price {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--star);
  white-space: nowrap;
  background: rgba(255, 184, 0, 0.1);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 184, 0, 0.2);
}

/* Barra inferior fixa (Sticky Bottom CTA) */
.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  z-index: 100;
}

.sticky-bottom-cta .wrap-inner {
  width: 100%;
  max-width: 440px;
}

.sticky-bottom-cta .btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #31d07a;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(49, 208, 122, 0.3);
}

.sticky-bottom-cta .btn-order svg {
  width: 22px;
  height: 22px;
}
