/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 50px;
}

.primary-nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.primary-nav a:hover {
  color: #2a7a4b;
}

/* Hero */
.hero {
  background: url("assets/banner-botanical-lavender.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.chip {
  padding: 0.5rem 1rem;
  border: 1px solid #2a7a4b;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  font-size: 0.9rem;
}

.chip.active {
  background: #2a7a4b;
  color: #fff;
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* ✅ Fixed product image sizing */
.product-card img {
  width: 100%;
  height: 180px;       /* uniform smaller height */
  object-fit: cover;   /* crops neatly without distortion */
  border-radius: 6px;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card .meta {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.5rem;
}

.price-row {
  margin: 0.75rem 0;
}

.price {
  font-weight: bold;
  color: #2a7a4b;
}

.badge {
  position: absolute;
  background: #2a7a4b;
  color: #fff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  top: 10px;
  left: 10px;
}

/* About & Contact */
#about, #contact {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
}

#about h2, #contact h2 {
  margin-bottom: 1rem;
  color: #2a7a4b;
}

/* Footer */
.site-footer {
  background: #2a7a4b;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

