/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #fefefe, #e0f7fa);
  color: #333;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  padding: 40px 20px;
  background-color: #c62828;
  color: white;
  border-radius: 10px;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Product Section */
#products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.product-card {
  background-color: #fff;
  border: 2px solid #c62828;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.product-card img {
  max-width: 100%;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px 0 10px;
  color: #c62828;
}

.product-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.buy-btn {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.buy-btn:hover {
  background-color: #1b5e20;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #c62828;
  color: white;
  border-radius: 10px;
  margin-top: 40px;
}
