/**
 * Theme Name:     Divi Child
 * Author:         Elegant Themes
 * Template:       Divi
 * Text Domain:	   divi-child
 * Description:    Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
 */

.offers-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 10px;
}

.offers-title {
  text-align: center;
}

.offer-card {
  padding-top: 20px;
  display: flex;
  text-align: center;
  flex-direction: column;
  width: calc(100% / 5 - 10px);
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  max-width: 220px;
}

.offer-card .img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.offer-card .buy-button {
  margin-top: 10px;
  font-size: 12px;
  background-color: #e7141c;
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 2px 20px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.offer-card .buy-button:hover {
  background-color: #b70007;
}

.offer-card .title,
.offer-card .old-price,
.offer-card .new-price,
.offer-card .validity {
  padding: 0px !important;
}

.offer-card .title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
}

.offer-card .old-price {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1px;
}

.offer-card .new-price {
  margin-top: 5px;
  color: #0c9600;
  font-weight: bold;
  font-size: 20px;
}

.offer-card .validity {
  padding-bottom: 10px !important;
  padding-top: 10px !important;
  line-height: 15px;
  margin-top: 10px;
  font-size: 10px;
  background-color: #f7f7f7;
  height: 100%;
  max-height: 50px;
  margin-top: auto;
}

@media screen and (max-width: 768px) {
  .offers-container {
    flex-direction: column;
    align-items: center;
  }

  .offer-card {
    width: 100%;
    margin: 10px 0;
  }

  .offer-card .title {
    font-size: 12px;
  }

  .offer-card .old-price {
    font-size: 11px;
  }

  .offer-card .new-price {
    font-size: 16px;
  }

  .offer-card .validity {
    font-size: 9px;
  }

  .offer-card .buy-button {
    padding: 2px 15px;
    font-size: 12px;
  }
}
