body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #333;
}

body {
  font-family: 'Inter', sans-serif;
}


header {
  background: linear-gradient(135deg, #116530, #3aa655); /* green gradient */
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 4px solid #0e4d25; /* bold bottom edge */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* subtle shadow */
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); /* pop the text */
}

header p {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: #e2ffe9;
}


.products {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.product {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 320px;
  transition: transform 0.2s ease;
}

.product:hover {
  transform: scale(1.02);
}


.product img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product p {
  font-size: 1.2rem;
  color: #28a745;
  font-weight: 600;
  margin: 0.5rem 0;
}

.product label {
  margin-right: 0.5rem;
  font-weight: 500;
}

.product input[type="number"] {
  padding: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 60px;
  margin-bottom: 1rem;
}


.product h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #222;
  font-weight: bold;
}


.order-btn {
  padding: 0.6rem 1.2rem;
  background: #25d366;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

.order-btn:hover {
  background: #1ebe57;
}


.price {
  color: #28a745;
  font-size: x-large;

}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
