/* --- Menu Page Styles --- */
.menu-container {
  padding-top: 10px;
  padding-bottom: 20px;
}

.back-link-container {
  text-align: center;
  margin-bottom: 30px;
}

.back-link {
  font-family: "Montserrat", sans-serif;
  color: #4d6052;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #a87c69;
}

.back-link .fas {
  margin-right: 8px;
}

.menu-category {
  margin-bottom: 40px;
  text-align: center;
}

.menu-category:last-of-type {
  margin-bottom: 20px;
}

.category-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5em;
  color: #a87c69;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e7e5e0;
  max-width: 450px;
  margin: 0 auto;
}

.menu-category .menu-item:last-of-type {
  border-bottom: none;
}

.item-name {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  color: #4d6052;
  text-align: left;
}

.item-price {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  color: #4d6052;
  text-align: right;
  white-space: nowrap;
  padding-left: 20px;
}

/* --- Sundaes Toppings Styles --- */
#sundaes-section .menu-item {
  border-bottom: none;
  padding-bottom: 5px;
}

.toppings-container {
  max-width: 450px;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e5e0;
  text-align: center;
}

.toppings-list {
  color: #7a8a7e;
  font-style: italic;
  font-size: 1.05em;
  line-height: 1.5;
}

/* --- Responsive Menu --- */
@media (max-width: 600px) {
  .category-name {
    font-size: 1.3em;
  }

  .item-name,
  .item-price {
    font-size: 1em;
  }

  .menu-item {
    padding: 12px 0;
    max-width: 100%;
  }

  .toppings-container {
    max-width: 100%;
  }
}
