body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f2f2f2;
}

h1 a {
  text-decoration: none;
  color: blue;
}

h1 a:hover {
  color: rgb(0, 0, 105);
  border-bottom: 1px solid rgb(0, 0, 105);
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  border: 2PX solid white;
  text-align: center;
  transition: transform 0.2s ease-in-out;
}

.card:hover {
  border: 2px solid #25D366;
}

.card img {
  width: 90%;
  height: 200px;
  object-fit: contain;
  padding: 15px;
}

.card h3 {
  margin: 10px 0;
  font-size: 18px;
}

.card p {
  font-size: 14px;
  color: #555;
  padding: 0 10px;
  text-align: justify;
}

.card .Price-list {
  text-align: center;
  font-weight: bolder;
  margin-bottom: 0%;
}

.whatsapp-btn {
  display: inline-block;
  width: 100%;
  margin: 10px 0;
  padding: 10px 20px;
  background-color: #25D366;
  color: black;
  text-decoration: none;
  font-weight: bolder;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #000;
  color: white;
  transition: background-color 0.3s ease;
}

.disable-btn {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.6; /* Optional: make it look disabled */
}