.card-container {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 10px;
  padding: 20px;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(195, 195, 195, 0.796);
  text-decoration: none;
  color: black;

}
/* mobile device show 2 */
@media (max-width: 768px) {
/* CSS rules for landscape orientation */
.card-container {
grid-template-columns: repeat(2,1fr);
padding: 10px !important;

}
.product-image {
  height: 150px !important;
}
}

.product-image {
  width: 100%;
  object-fit: cover;
  height: 200px;
  object-fit: contain;
}

.product-info {
  padding: 15px;
  position: relative;
}

.product-name {
  font-size: 1rem;
  margin: 0;
}

.product-weight {
  color: #666;
  margin: 5px 0;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.product-price {
  font-size: 1.2rem;
  color: #333;
  font-weight: bold;
}

.add-button {
  display: inline-block;
  width: 36px !important;
  height: 36px !important;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0;
}



.head
{ padding: 0px 20px;}



