/* product page */
/* .product-card {
  border: 1px solid #4A9C2D;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}
.product-card img {
  max-width: 100%;
  height: auto;
}

.product-card h5{
  line-height: 1.5;
} */

/* product inner page */
/* .card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
}

.card img {
  max-width: 100%;
  height: auto;
} */


/* product page */
.product-card {
  border: 1px solid #4A9C2D;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.product-card h5 {
  line-height: 1.5;
  font-size: 1.36rem;
}

/* product inner page */
.card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.btn-primary-nofill{
  background-color: #FFF !important;
  color: #4A9C2D !important;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .product-card, .card {
    padding: 10px;
  }

  .product-card h5, .card h5 {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .product-card, .card {
    padding: 8px;
  }

  .product-card img{
    width: 100% !important;
  }

  .product-card h5, .card h5 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .product-card, .card {
    padding: 5px;
  }

  .product-card h5, .card h5 {
    font-size: 1rem;
    text-align: center;
  }

  .product-card img, .card img {
    margin: 0 auto;
  }
}

