:root{
  --brand-green: #1f513f;
  --overlay: #e8dfce;
  --text-dk: #3b3a38;
  --page-bg: #f1f1f1;
}

* { box-sizing: border-box; }
html,body { height: 100%; }
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--page-bg);
  color: var(--text-dk);
}

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.main-header {
  background: var(--brand-green);
  color: #fff;
  padding: 0 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  font-family: "Stuart", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.menu-icon {
  font-size: 2.5rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .main-header {
    padding: 0 16px;
  }
  .header-inner {
    padding: 12px 0;
  }
}


.products-page {
  padding: 32px 0;
}
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.product-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.product-card .fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .fill {
  transform: scale(1.04);
}

.product-card .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: var(--text-dk);
  background: linear-gradient(
    to top,
    rgba(232, 223, 206, 0.95) 60%,
    rgba(232, 223, 206, 0.7) 80%,
    rgba(232, 223, 206, 0.3) 100%
  );
  backdrop-filter: blur(4px);
}

.product-card h2 {
  margin: 0 0 10px;
  font-family: "Stuart", Georgia, serif;
  font-size: 1.25rem;
}
.body-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.4;
}
.body-text + .cta {
  margin-top: 12px;
}

.cta {
  background: var(--brand-green);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.cta:hover,
.cta:focus {
  background: #163b2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .main-header {
    padding: 10px 0;
  }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 10px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .menu-icon {
    font-size: 1.8rem;
  }
  .product-card {
    min-height: 400px;
  }
  .product-card .overlay {
    padding: 16px;
    background: rgba(232,223,206,0.92);
  }
  .product-card h2 {
    font-size: 1.1rem;
  }
  .body-text {
    font-size: 0.95rem;
  }
  .cta {
    width: 100%;
    text-align: center;
  }
}
