.bests{
  padding:70px 0 40px;
}

.bests__title{
  margin:0 0 26px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  font-size:36px;
  line-height:1.1;
  letter-spacing:-0.02em;
  color:#000;
}

.bests__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.bests__card{
  display:flex;
  flex-direction:column;
}

.bests__img{
  background:#fff;
  border-radius:18px;
  height:350px;
  overflow:hidden;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.bests__img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  padding:16px;
  transform:none;
 transform:scale(1.12);
}

.bests__img:hover img{
  transform:scale(1.05);
}

.bests__name{
  margin:14px 0 6px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  font-size:16px;
  color:#000;
}

.bests__name a{
  color:#000;
  text-decoration:none;
}

.bests__desc{
  margin:0 0 14px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:13px;
  line-height:1.35;
  color:rgba(0,0,0,.55);
  min-height:34px;
}

.bests__actions{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:14px;
}

.bests__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 22px;
  border-radius:10px;
  background:#FED845;
  color:#000!important;
  text-decoration:none;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:600;
  font-size:14px;
  border:0;
  transition:transform .18s,box-shadow .18s;
}

.bests__btn:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(15,23,42,.12);
}

/* quick add */

.bq{
  display:flex;
  align-items:center;
}

.bq__add{
  width:46px;
  height:46px;
  border-radius:10px;
  border:0;
  background:#FED845;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.bq__add img{
  width:28px;
  height:28px;
}

.bq__qty{
  display:flex;
  align-items:center;
  gap:10px;
}

.bq__btn{
  width:46px;
  height:46px;
  border-radius:10px;
  border:0;
  background:#FED845;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
}

.bq__n{
  min-width:18px;
  text-align:center;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
}

.bq.is-busy .bq__add,
.bq.is-busy .bq__btn{
  opacity:.6;
  pointer-events:none;
}

.bq__add[hidden],
.bq__qty[hidden]{
  display:none!important;
}

/* animation */

@keyframes bqPop{
  0%{transform:scale(1)}
  40%{transform:scale(1.08)}
  100%{transform:scale(1)}
}

.bq.is-pop .bq__add,
.bq.is-pop .bq__qty{
  animation:bqPop .25s ease-out;
}

/* responsive */

@media(max-width:980px){

  .bests__grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .bests__img img{
    height:360px;
  }

}

@media(max-width:520px){

  .bests{
    padding:52px 0 26px;
  }

  .bests__title{
    font-size:30px;
  }

  .bests__img{
    border-radius:18px;
  }

  .bests__img img{
    height:300px;
  }

  .bests__actions{
    gap:12px;
  }

}

a.added_to_cart.wc-forward{
  display:none !important;
}

.bests__title-wrap{
  display:flex;
  flex-direction:column;
  min-width:0;
  flex:1 1 auto;
}

.bests__sku{
  margin:-2px 0 10px;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-size:12px;
  line-height:1.35;
  font-weight:500;
  letter-spacing:.01em;
  color:#9ca3af;
}