.lpd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
}

.lpd-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lpd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.lpd-img img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #eee;
}

.lpd-info {
  padding: 15px;
  text-align: center;
}

.lpd-title {
  font-size: 1rem;
  margin: 10px 0;
  color: #222;
  min-height: 44px;
}

.lpd-price {
  font-weight: bold;
  color: #014421;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 10px;
}

.lpd-button {
  background-color: #014421;
  color: #FFD700;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.lpd-button:hover {
  background-color: #026d3c;
  color: #ffeb7a;
}

@media (max-width: 600px) {
  .lpd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
