.digamma-restaurant-menu .menu-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.menu-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Menu item details */
.menu-item-details {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.item-info {
  display: grid;
  gap: 0.5rem;
}

.item-info h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #2e2e2e;
  font-family: Raleway, sans-serif;
}

.item-info .description {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.item-info .price {
  font-weight: bold;
  color: #2e2e2e;
  margin: 0;
  font-size: 1.1rem;
}

.item-price {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tax-line {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.tax-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

/* Add to cart button */
.add-to-cart {
  padding: 0.75rem 1.5rem;
  background-color: #2e2e2e;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.added_to_cart {
  color: #bd904f !important;
}

.add-to-cart:hover {
  background-color: #bd904f;
}

.menu-image-container {
  position: relative;
}

.title-container {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-content: center;
  gap: 10px;
}

.digamma-restaurant-menu .menu-image-container .menu-item-image .time-preparation {
  position: absolute;
}

.time-preparation {
  width: 110px;
  color: #fff;
  background-color: #bd904f;
  padding: 10px;
  text-align: center;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
  .menu-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .digamma-restaurant-menu .menu-item {
    grid-template-columns: 1fr;
  }
  
  .menu-item-details {
    grid-template-columns: 1fr;
  }
  
  .menu-item-image {
    max-width: 100%;
  }
  
  .menu-categories {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .category-header {
    padding: 0.75rem 1rem;
  }
  
  .category-header h2 {
    font-size: 1.25rem;
  }
}