@import url("https://fonts.googleapis.com/css2?family=Jost&display=swap");

body {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.headerBG {
  background-color: #25408f;
}

.logo {
  width: 500px;
  padding-bottom: 5px;
}

.offerimg {
  width: auto;
  height: 200px;
  object-fit: cover;
}

.offer-card {
  position: relative;
  border: 2px solid #28a745;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}
.offer-card:hover {
  transform: scale(1.02);
}

.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: #28a745;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.offerimg {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price-box {
  margin: 10px 0;
  font-size: 22px;
  font-weight: bold;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 20px;
}

.new-price {
  color: #d43f00;
  font-size: 26px;
}

.offer-card .btn-primary {
  background-color: #2c5530;
  border: none;
}

.offer-card .btn-primary:hover {
  background-color: #1e3e22;
}
