.menu-image-container {
  max-width: 900px;
  margin: 0 auto 3rem;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.menu-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.breakfast-menu {
  max-width: 900px;
  margin: 0 auto 3rem;
  background-color: var(--light-text);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.breakfast-title {
  font-family: "Meow Script", cursive;
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  text-align: center;
}

.breakfast-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 0.5rem;
}

.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.breakfast-item {
  margin-bottom: 1.5rem;
}

.breakfast-item-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breakfast-item-price {
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.breakfast-item-desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.breakfast-item-allergens {
  font-size: 0.85rem;
  color: #777;
}

.breakfast-section-title {
  grid-column: 1 / -1;
  text-align: center;
  margin: 1.5rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  position: relative;
}

.breakfast-section-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.allergen-info {
  grid-column: 1 / -1;
  background-color: var(--secondary-color);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.5rem;
}

.allergen-item {
  font-size: 0.9rem;
}

.price-notice-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.side-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.side-item-name {
  font-weight: 500;
}

.side-item-price {
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
}

.note {
  font-style: italic;
  text-align: center;
  grid-column: 1 / -1;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.price {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .breakfast-grid {
    grid-template-columns: 1fr;
  }

  .breakfast-title {
    font-size: 2.5rem;
  }

  .breakfast-item-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .breakfast-item-price {
    margin-top: 0.2rem;
  }

  .side-item {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
}
