.menu-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.menu-modal-content {
  background: black;
  width: 90%;
  max-width: 680px;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background:
    /* This is the inner color of your box (matches your previous dark theme) */
    linear-gradient(#000000, #000000) padding-box,
    /* This is the border gradient */
    linear-gradient(to bottom, #b67c09 0%, #c7a26b 20%, #f0b653 50%, #BD9457 80%, #6E4E10 100%) border-box;
}

.category-container {
  display: flex;
  flex-direction: column;
}

.menu-title {
  font-size: 60px;
  background: linear-gradient(to bottom,
      #FFF0DA 0%,
      #94641E 20%,
      #FFF2DB 40%,
      #EAC885 45%,
      #FBF5D1 70%,
      #BD9A4B 85%,
      #ECD8A3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #BD9457;
  font-family: 'Alumni Sans SC', sans-serif;
  font-weight: 200;
  font-size: 70px;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 220, 150, 0.4)) drop-shadow(0 0 10px rgba(231, 183, 110, 0.35)) drop-shadow(0 0 10px rgba(219, 172, 102, 0.2)) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4));
  display: inline-block;
}

.item-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.item-first-part {
  display: flex;
  gap: 15px;
}

.item-container img {
  width: 90px;
  height: 68px;
  border-radius: 10px;
  object-fit: cover;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 80%;
}

.item-title,
.item-price {
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.item-composition {
  color: #FFFFFF99;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;

}


.active-tag {
  background: linear-gradient(200deg,
      #442f01 0%,
      #b97c09 20%,
      #d4ab41 50%,
      #b97c09 80%,
      #442f01 100%) !important;
}

.active-tag:hover {
  filter: brightness(1.2) contrast(1.1);
}

/* gpt */


.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray-text);
}

.filter-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-top: 10px;
}

.tag {
  background: transparent;
  border: 1px solid #333;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 18px;
  cursor: pointer;
  overflow-y: auto;
  border: 1px solid transparent;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
  background:
    /* This is the inner color of your box (matches your previous dark theme) */
    linear-gradient(#000000, #000000) padding-box,
    /* This is the border gradient */
    linear-gradient(to bottom, #b67c09 0%, #c7a26b 20%, #f0b653 50%, #BD9457 80%, #6E4E10 100%) border-box;
}

.tag.active {
  background: var(--gold);
  color: black;
  border-color: var(--gold);
}

.menu-sections .menu-category-title {
  font-size: 25px;
  font-weight: 500;
}

.menu-item {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.item-info h3 {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin: 0;
}

.item-info p {
  color: var(--gray-text);
  font-size: 0.85rem;
  margin-top: 5px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.p-btn,
.p-num {
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--gray-text);
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.p-num.active {
  border-color: var(--gold);
  color: var(--gold);
}