.cqb-offers {
	font-family:"Poppins", Sans-serif;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 20px;
}
@media (max-width: 768px) {
	.cqb-offers {
		  grid-template-columns: 1fr 1fr 1fr;

		
	}}


.cqb-offer {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 3px solid #d5d5d5;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cqb-offer input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cqb-offer.is-active {
  border-color: #4F9D43;
	background-color: #f3fff2;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.cqb-offer__badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: black;
  color: #fff;
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
}

.cqb-offer__label {
    font-weight: 700;
    font-size: 12px;
	padding: 25px 1px 1px 1px;
	text-align: center;
}

.cqb-offer__price {
  font-size: 20px;
  font-weight: 700;
	color: #4F9D43;
	text-align: center
}

.cqb-offer__description {
font-size: 12px;
    color: #ffffff;
    background: #639b4e;
    padding: 5px;
    border-radius: 5px;
    text-align: center;
}

.cqb-offer__cart-label {
  font-size: 12px;
  color: #666;
}
