@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.bt-offer-heading__title {
  display: none;
  font-family: Inter;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: #413E3E;
  margin: 24px 0 18px;
  text-align: left;
  position: relative;
}
/* .bt-offer-heading__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 5px;
  width: 60px;
  background-color: var(--cart, #ff8419);
} */


.bt-offer-section {
  background: #f7f7f7;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  padding: 14px;
  margin-top: 20px;
}

.bt-offer-heading__column {
  width: 100%;
  min-width: 0;
  background: #fff;
  padding: 16px 14px;
  border-radius: 12px;
}
.bt-offer-heading {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
  /* margin-top: 20px; */
}

/* If there is an odd number of offer cards, make the last card full width */
.bt-offer-heading > .bt-offer-heading__column:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.bt-offer-heading__column h2 {
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: uppercase;
  margin: 0;
  color: #413E3E;
}
.bt-offer-heading__column .bt-free-deilivery-text h2 {
  margin-bottom: 22px;
}
.bt-offer-heading__column .bt-free-deilivery-text li {
  list-style: disc;
  margin-left: 20px;
}
.bt-offer-heading__badge {
  font-family: Inter;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  background: #000;
  color: #fff;
  width: fit-content;
  display: inline-block;
  padding: 4px 16px;
  border-radius: 100vw;
  height: fit-content;
}
.bt-offer-heading__column_heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}
.bt-offer-heading__column.bt-free-delivery {
  display: flex;
  justify-content: space-between;
}
.bt-offer-heading__column.bt-free-delivery img {
  width: 168px;
  display: block;
}
.bt-offer-heading__badge.bt-badge-green {
  background: #0FB522;
}
.bt-offer-heading__badge.bt-badge-blue {
  background: #2B6FD4;
}
.btyeeat-menu-offer__heading_badges {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  height: fit-content;
}
.bt-offer-heading__column_body_text, .bt-free-delivery-reason {
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  color: #565353;
  margin: 0;
}
.bt-offer-min-spend-amount-text {
  font-weight: 400;
  font-size: 16px;
  color: #FF8419;
  margin-block: 28px;
}
.bt-offer-heading__column_categories {
  gap: 8px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.bt-offer-heading__column_applicable_categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}
.bt-offer-category-exception-text {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #413E3E;
}
.bt-offer-heading__column_categories {
  font-family: "Inter";
  color: #413E3E;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .bt-offer-heading {
    grid-template-columns: 1fr;
  }

  .bt-offer-heading > .bt-offer-heading__column:last-child:nth-child(odd) {
    grid-column: auto;
  }
}


@media screen and (max-width: 400px) {
    .bt-offer-heading {
        gap: 14px;
    }
    .bt-offer-heading__column_body_text, .bt-free-delivery-reason {
        font-size: 16px;
    }
    
    .bt-offer-heading__column.bt-free-delivery img {
        width: 110px;
    }
}