/** widget css zonbird **/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.grid-wrapper {
  display: grid;
  gap: 20px;
  max-width: 1380px;
  margin: 0 auto;
}

.section-day-deal {
  background: linear-gradient(45deg, #fff, #eee);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.day-deal-info {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.prices {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  font-size: 17px;
}

.promo-price {
  font-family: Montserrat;
  color: #caab31;
  font-weight: bold;
  font-size: 30px;
}

.section-day-deal h2 {
  font-size: 20px;
    font-family: Montserrat; 
    font-weight: 600;
}


.countdown .buy-now {
  font-family: Montserrat;
  font-weight: 600;
  border-radius: 6px;
  background-color: #caab31;
  color: white;
  border: none;
  padding:  0px 10px;
  font-size: 16px;
  cursor: pointer;
  width: fit-content;
  line-height: normal;
  height: 50px;
  }

.countdown .buy-now:hover {
  background-color: #c0a32f;
  color: white
}


.day-deal-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .section-day-deal {
    grid-template-columns: 2fr 1fr;
  }


}

.day-deal-title {
  color:#caab31 !important; 
  font-size: 30px; 
  font-family: Montserrat; 
  font-weight: 600;

}

@media (max-width: 768px) {

  .section-day-deal {
    grid-template-columns: 1fr;
  }

  .day-deal-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .day-deal-info {
    flex-direction: column
  }

  .day-deal-info h2 {
    text-align: center;
  }
  
  .day-deal-title {
    text-align: center;
  }
  .prices {
    justify-content: center;
  }
  
  .day-deal-image {
    margin: 0 auto;
    max-width: 50vw;
  }
  
}

.day-deal-image {
  position: relative;
}
.countdown {
  font-size: 30px;
  color: #000;
  font-family: Montserrat;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}




.discount {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #caab31;
  z-index: 2;
}


.countdown span {
    font-size: 30px;
  font-family: Montserrat;

}

.countdown .colon {
  font-size: 30px;
  font-family: Montserrat;
}

.countdown-item .label {
    font-size: 16px;

}