.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 2rem 3rem;
  justify-items: center;
}

.product-card {
  width: 280px;
  border: 1px solid #ccc;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-card img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card button {
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  border: none;
  background-color: #d2691e;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#lemon-options button, #rose-options button {
  margin: 0.3rem;
  padding: 0.4rem 1rem;
  background-color: #d2691e;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

select {
  margin-top: 5px;
  padding: 0.5rem;
  border-radius: 5px;
}


/* RWD */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 1.5rem;
  }

  .product-card {
    width: 100%;
  }

  .product-card img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
