body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to top, rgb(110, 231, 249) 10%, #ffffff 70%);
  min-height: 100vh;
  margin: 0;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

main {
  padding: 20px;
}

#product-container {
  display: flex;
  justify-content: center;
}

.product {
  width: 95%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
}

.product-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.product-info {
  flex: 1;
  min-width: 250px;
}

.product-info h2 {
  font-size: 2.5rem;
  color: #0b4b75;
  margin-bottom: 10px;
}

.product-info h3 {
  font-size: 2rem;
  color: #0b4b75;
  margin-bottom: 15px;
}

.product-description {
  margin-bottom: 13px;
  line-height: 1.5;
  color: #0b4b75;
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.buttons button, .buttons a button {
  flex: 1;
  min-width: 140px;
  height: 40px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

button.order {
  background: #0b4b75;
  color: white;
  border: none;
}

button.order:hover {
  background: #004466;
}

button.reserve {
  background: white;
  color: #0b4b75;
  border: 2px solid #006699;
}

button.reserve:hover {
  background: #e6f7ff;
}

.best-served {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 5px;
}

.best-served h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #0b4b75;
  text-align: center;
}

.served-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 5px;
}

.dish {
  text-align: center;
  flex: 1 1 120px;
  max-width: 200px;
}
.container{
  padding-top: 30px;
  padding-left: 30px;
}
.dish img {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  border: 1px solid #ccc;
  object-fit: cover;  
}

.dish p {
  margin-top: 8px;
  font-size: 1.1rem;
  color: #0b4b75;
  font-weight: 700;
}

/* 📱 Small screens (mobile) */
@media (max-width: 576px) {
  .product-info h2 {
    font-size: 1.6rem;
  }
  .product-info h3 {
    font-size: 1.3rem;
  }
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  .buttons button, .buttons a button {
    width: 100%;
  }
  .dish img {
    width: 120px;
    height: 120px;
  }
}

/* Tablets (768px–1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .product {
    padding: 40px;
  }
  body {
    height: 100vh;
  }
  .product-info h2 {
    font-size: 2.6rem;
  }
  .product-info h3 {
    font-size: 2.2rem;
  }
  .product-img {
    width: 45%;
    min-width: 300px;
  }
  .buttons button, .buttons a button {
    font-size: 1.3rem;
    height: 45px;
  }
  .dish img {
    width: 200px;
    height: 200px;
  }
  .dish p {
    font-size: 1.3rem;
  }
}
