.card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-img-overlay {
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.card-text {
  font-size: 1rem;
  margin-bottom: 10px;
  align-self: start;
}

.btn {
  background-color: #b1915d !important;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.9rem;
  text-align: center; }


.btn:hover {
  background-color: #7F7F00;
}


.btn-custom{
  background-color: white;
  color: #b1915d;
  width: 15%;
  text-align: center;
  margin-bottom:15px

}

.container {
  max-width: 1140px;
}

@media (max-width: 1200px) {
  .card-img {
      height: 200px;
  }
  .product-divider {
      margin: 10px 0 -5px 0;
  }
  .btn-custom {
    width: 100%;
    margin-bottom: 10px;
}
}
@media (max-width: 768px) {
  .card-img {
      height: 200px;
  }
  .product-divider {
      margin: 10px 0 -5px 0;
  }
  .btn-custom {
    width: 100%;
    margin-bottom: 10px;
}
}

@media (max-width: 576px) {
  .card-img {
      height: 150px;
  }
  .price-tag {
      padding: 4px 8px;
      font-size: 0.9rem;
  }
  .product-divider {
      border-top: 1px solid #B48B2E;
      height: 1px;
      margin: 10px 0 -5px 0;
  }
  .btn-custom {
      width: 100%;
      margin-bottom: 10px;
  }
}

