/* General Styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

header {
  background-color: #1a1a1a; /* Dark Green */
  color: white;
  text-align: center;
  padding: 20px 0;
}

h1 {
  margin: 0;
    color: white;
  font-size: 2.5rem;
    font-family: "Archivo Black", sans-serif;
}

/* Product Section */
.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  gap: 30px;
}

.product-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  width: 320px;
  padding: 20px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h2 {
  margin: 15px 0 10px;
  font-size: 1.5rem;
  font-family: "Permanent Marker", cursive;
}

.product-card p {
  font-size: 1rem;
  color: #333333; /* Dark Gray Text */
  margin-bottom: 20px;
  font-family: "Noto Sans Gunjala Gondi", sans-serif;
}

/* PayPal Button Styling */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buy-now {
  background-color: #006400; /* Match header */
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

.buy-now:hover {
  background-color: #004d00; /* Darker green on hover */
}

.paypal-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: #666666;
}

.paypal-info img {
  height: 20px;
  margin-bottom: 5px;
}

.paypal-logo {
  height: 14px;
  margin-left: 5px;
}

/* Footer */
footer {
  margin-top: 50px;
  background: black; /* Darker Forest Green */font-family:sans-serif;
  color: white;
  text-align: center;
  padding: 20px 0;
}
