/* style.css */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0; padding: 0;
  background: #f7fff7;
  color: #333;
}
header.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #2e7d32, #a5d6a7);
  color: white;
}
.products, .packages, .checkout {
  padding: 2rem;
  text-align: center;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.product-card, .package-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .3s ease;
}
.product-card:hover, .package-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 50%;
  border-radius: 8px;
  height: 250px;
  object-fit: cover;
}
.package-card img {
  width: 100%;
  border-radius: 8px;
  height: 180px;
  object-fit: cover;
}
button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: .5rem;
}
button:hover { background: #1b5e20; }
.checkout-box, .thankyou-box {
  max-width: 500px;
  margin: 3rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.bank-details {
  background: #f0f7f0;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
input[type=text] {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
footer {
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
