.menu-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.menu-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #d4572a, #e67e22);
  color: white;
  border-radius: 15px;
  margin: 0 -20px 50px -20px;
}

.menu-header h1 {
  font-size: 48px;
  margin: 0 0 10px 0;
  font-weight: bold;
}

.menu-subtitle {
  font-size: 18px;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

.action-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-section {
  margin-bottom: 60px;
}

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

.category-header h2 {
  font-size: 32px;
  color: #d4572a;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
}

.category-header h2:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #d4572a;
  border-radius: 2px;
}

.category-description {
  font-size: 16px;
  color: #666;
  font-style: italic;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.plats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.plat-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.plat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.plat-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.plat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.plat-card:hover .plat-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.plat-card:hover .image-overlay {
  opacity: 1;
}

.plat-content {
  padding: 25px;
}

.plat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 15px;
}

.plat-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  margin: 0;
  flex: 1;
  transition: color 0.2s;
}

.plat-title:hover {
  color: #d4572a;
}

.plat-price {
  font-size: 22px;
  font-weight: bold;
  color: #d4572a;
  white-space: nowrap;
}

.plat-description {
  color: #666;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 15px;
}

.plat-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stock-info {
  font-size: 14px;
  font-weight: 500;
}

.stock-available {
  color: #28a745;
}

.stock-limited {
  color: #ffc107;
}

.stock-unavailable {
  color: #dc3545;
}

.menu-footer {
  margin-top: 80px;
  padding: 50px 0;
  background: #f8f9fa;
  border-radius: 15px;
  margin-left: -20px;
  margin-right: -20px;
}

.cta-section {
  text-align: center;
}

.cta-section h3 {
  font-size: 28px;
  color: #333;
  margin: 0 0 15px 0;
}

.cta-section p {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s;
  font-weight: 600;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, #d4572a, #e67e22);
  color: white;
  box-shadow: 0 4px 15px rgba(212, 87, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 87, 42, 0.4);
}

.btn-outline-secondary {
  background-color: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-secondary:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-light {
  background-color: rgba(255,255,255,0.9);
  color: #333;
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background-color: white;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

@media (max-width: 768px) {
  .menu-header {
    margin: 0 -10px 30px -10px;
    padding: 30px 20px;
  }
  
  .menu-header h1 {
    font-size: 36px;
  }
  
  .menu-subtitle {
    font-size: 16px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .plats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .category-header h2 {
    font-size: 28px;
  }
  
  .menu-footer {
    margin-left: -10px;
    margin-right: -10px;
    padding: 40px 20px;
  }
  
  .cta-section h3 {
    font-size: 24px;
  }
}
