.nfwpc-grid{
  --nfwpc-cols:4;
  --nfwpc-gap:16px;
  --nfwpc-image-height:280px;
  --nfwpc-button-radius:6px;
  --nfwpc-title-lines:2;
  display:grid;
  grid-template-columns:repeat(var(--nfwpc-cols),minmax(0,1fr));
  gap:var(--nfwpc-gap);
}
.nfwpc-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.nfwpc-card--light{
  color:#111827;
}
.nfwpc-card--dark{
  color:#ffffff;
}
.nfwpc-discount-strip{
  min-height:78px;
  color:#fff;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  align-items:center;
  padding:10px 14px;
}
.nfwpc-discount__number-wrap{
  display:flex;
  align-items:baseline;
  line-height:.85;
  white-space:nowrap;
}
.nfwpc-discount__number{
  font-size:52px;
  font-weight:800;
}
.nfwpc-discount__symbol{
  font-size:31px;
  font-weight:800;
}
.nfwpc-discount__main{
  text-transform:uppercase;
  font-size:20px;
  font-weight:800;
  line-height:1.02;
}
.nfwpc-discount__sub{
  font-size:13px;
  font-weight:700;
  line-height:1.2;
  margin-top:6px;
}
.nfwpc-image-box{
  position:relative;
  margin:6px;
  height:var(--nfwpc-image-height);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.nfwpc-image{
  width:100%;
  height:100%;
  object-fit:contain;
}
.nfwpc-image--placeholder{
  background:linear-gradient(135deg,#f3f4f6,#e5e7eb);
}
.nfwpc-buy-button{
  position:absolute;
  left:8%;
  right:8%;
  bottom:6px;
  min-height:56px;
  border-radius:var(--nfwpc-button-radius);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  color:#fff;
  z-index:2;
  transition:all .2s ease;
}
.nfwpc-buy-button:hover{
  color:#fff;
  transform:translateY(-1px);
}
.nfwpc-buy-button--icon-right{
  flex-direction:row-reverse;
}
.nfwpc-card-body{
  padding:8px 18px 16px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.nfwpc-title{
  margin:0;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:var(--nfwpc-title-lines);
  overflow:hidden;
  line-height:1.28;
  min-height:calc(1.28em * var(--nfwpc-title-lines));
}
.nfwpc-old-price{
  margin-top:12px;
}
.nfwpc-price{
  margin-top:14px;
  display:flex;
  align-items:baseline;
  gap:7px;
  line-height:.9;
}
.nfwpc-price__currency{
  font-size:16px;
  font-weight:800;
}
.nfwpc-price__value{
  font-size:42px;
  font-weight:900;
}
.nfwpc-cash-text{
  margin-top:10px;
}
.nfwpc-installment{
  margin-top:8px;
}
.nfwpc-delivery-badge{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 12px;
  margin-top:auto;
  text-align:center;
}
.nfwpc-delivery-badge__text-2{
  font-weight:800;
}
.nfwpc-empty{
  padding:14px;
  border:1px dashed #cbd5e1;
  border-radius:12px;
  background:#fff;
}
@media (max-width:1024px){
  .nfwpc-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:767px){
  .nfwpc-grid{grid-template-columns:1fr;}
}
