
.grocery-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.grocery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.grocery-item {
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.grocery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.grocery-item h3 {
  font-size: 1.2em;
  margin: 10px 0 5px;
  color: #222;
}

.grocery-item p {
  color: #666;
  margin-bottom: 10px;
}

.grocery-item button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.grocery-item button:hover {
  background-color: #218838;
}

.grocery-item:hover {
  transform: scale(1.03);
}
