/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #f5f5f5;
  background-color: #1a1a1a; /* Rich dark backdrop for contrast */
}
body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #222; /* Slightly lighter for page content */
}

/* Navigation Menu */
nav {
  display: flex;
  gap: 20px;
  background-color: #111;
  padding: 15px;
  border-radius: 4px;
}
nav a {
  color: #c8e6c9; /* Leafy green accent */
  text-decoration: none;
  font-weight: 600;
}
nav a:hover {
  color: #ffffff;
}

/* Headers & Titles */
h1, h2, h3, h4 {
  margin: 25px 0 10px;
  color: #e0e0e0;
  font-weight: 600;
}

/* Product Category Grid */
ul.product-list {
  list-style: none;
  columns: 3;
  gap: 15px;
}
ul.product-list li {
  padding: 6px 0;
}

/* Image Gallery / Product Photos */
.product-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border: 2px solid #444;
  border-radius: 6px;
  margin: 15px;
}

/* Testimonials */
.testimonials {
  background-color: #333;
  border-left: 6px solid #c8e6c9;
  padding: 20px;
  margin: 30px 0;
}
.testimonials p {
  font-style: italic;
  color: #ddd;
}

/* Contact Section */
.contact {
  background-color: #2a2a2a;
  padding: 25px;
  border-radius: 6px;
}
.contact p, .contact a {
  color: #f5f5f5;
  margin-bottom: 8px;
}
.contact a:hover {
  color: #c8e6c9;
}

/* Footer */
footer {
  text-align: center;
  margin: 40px 0 20px;
  color: #888;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  ul.product-list { columns: 2; }
  nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  ul.product-list { columns: 1; }
}
