/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f8faf8;
  color: #333;
}

/* Navigation */
header {
  background: #2d572c;
  padding: 0.8rem;
}

header nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}

header nav ul li {
  margin: 0.5rem 1rem;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
  color: #ffcc00;
}

/* Page header */
.page-header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(to right, #e6f4ea, #f9fcf9);
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2d572c;
}

.page-header p {
  font-size: 1rem;
  color: #555;
}

/* Products grid */
.products-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  color: #2d572c;
}

.product-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #555;
}

.btn {
  display: inline-block;
  background: #2d572c;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #1c3b1b;
}

/* Footer */
footer {
  background: #2d572c;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #ffcc00;
  margin: 0 0.5rem;
  text-decoration: none;
}
