/* Product Form */
.product-form {
  width: 22rem;
  max-width: 90%;
  margin: 2rem auto;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-form {
    width: 95%;
    padding: 1rem;
  }

  .product-item {
    width: 100%;
    max-width: 350px;
  }
}

/* Product Item - Fixed Size */
.product-item {
  width: 100%; /* Takes available space */
  max-width: 280px; /* Prevents it from getting too big */
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  margin: 0 auto; /* Centers each item */
}

.product-item:hover {
  transform: scale(1.02);
}

/* Product Title */
.product__title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  color: #333;
  margin-bottom: 0.5rem;
  color: yellow;
}

/* Product Price */
.product__price {
  text-align: center;
  font-size: 1.2rem;
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Product Description */
.product__description {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-form,
  .product-item {
    width: 100%;
  }
}
