.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: #f9f6f1;
  padding: 15px;
  border: 1px solid #e4ddd3;
}


/* ===================== */
/* PRODUCTS LIST LAYOUT */
/* ===================== */
/* PRODUCTS LIST CONTAINER */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fdfaf6;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(80, 110, 85, 0.08);
}

/* HOVER EFFECT */
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(79, 111, 82, 0.18);
}

/* PRODUCT IMAGE */
.product-card img {
  width: 140px;
  height: auto;
  border-radius: 12px;
  flex-shrink: 0;
}


/* PRODUCT INFO */
.product-info {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TEXT STYLES */
.product-info h3 {
  font-size: 22px;
  color: #2f5d50;
  margin-bottom: 10px;
}

.product-info p {
  font-size: 15px;
  color: #5f6f63;
  margin-bottom: 12px;
}

.product-info ul {
  padding-left: 20px;
  margin-bottom: 4px;
}

.product-info ul li {
  font-size: 14px;
  color: #5f6f63;
  margin-bottom: 1px;
}

/* BUTTON */
.product-info .btn {
  align-self: flex-start;
  background: #6b8f71;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.product-info .btn:hover {
  background: #4f6f52;
  transform: translateY(-2px);
}

.product-content {
  flex: 1;
}

.product-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #2f5d50;
}

.product-content p {
  margin: 6px 0 12px;
  color: #6d7c72;
}

.product-content ul {
  margin: 0;
  padding-left: 18px;
}


.product-hero {
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.product-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(79, 111, 82, 0.25);
}

.product-details h2 {
  font-size: 42px;
  font-weight: 600;
  color: #3e6b57;
  margin-bottom: 16px;
}

.tagline {
  font-size: 18px;
  color: #8b9a91;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.description {
  font-size: 18px;
  color: #5f6f63;
  margin-bottom: 28px;
  max-width: 520px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 2px;
}

.features li {
  font-size: 17px;
  color: #4f5f56;
  margin-bottom: 2px;
}



.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(47, 93, 80, 0.65);
  z-index: 999;
}

.modal-content {
  background: #fdfaf6;
  width: 90%;
  max-width: 420px;
  margin: 10% auto;
  padding: 25px;
  border-radius: 12px;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  font-size: 15px;
  border: 1px solid #d8e2da;
  background: #ffffff;
  color: #3f4f46;
}

.modal-content button {
  width: 100%;
  padding: 12px;
  background: #6b8f71;
  color: #ffffff;
  border: none;
  border-radius: 8px;
}

.modal-content button:hover {
  background: #4f6f52;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 22px;
  color: #4f6f52;
}

/* DOT CONTAINER */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

/* EACH DOT */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 6px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

/* ACTIVE DOT */
.dot.active {
  background: #ffffff;
  transform: scale(1.2);
}
