/* ======================================
   ONLINE ÁR – kapszula badge az ár előtt
====================================== */

/* Ár sor */
.product-price,
.price,
.product-details-price{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ONLINE ÁR badge */
.product-price::before,
.price::before,
.product-details-price::before{
  content: "ONLINE ÁR";
  display: inline-flex;
  align-items: center;

  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  white-space: nowrap;

  color: #ffffff;
  background: linear-gradient(135deg,#2f3fa0,#ff8300);
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(47,63,160,.35);
}

/* ======================================
   AKCIÓS TERMÉK – ONLINE AKCIÓS ÁR
====================================== */
.price-sale::before,
.product-price.price-sale::before{
  content: "ONLINE AKCIÓS ÁR";
  background: linear-gradient(135deg,#dc2626,#ff8300);
  box-shadow: 0 6px 14px rgba(220,38,38,.35);
}

/* ======================================
   MOBIL FINOMHANGOLÁS
====================================== */
@media (max-width: 768px){
  .product-price,
  .price,
  .product-details-price{
    gap: 8px;
  }

  .product-price::before,
  .price::before,
  .product-details-price::before{
    font-size: 12px;
    padding: 5px 12px;
  }
}
/* ======================================KuPON sablon////

.lf-coupon-badge{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:10px;
  background:linear-gradient(135deg,#16a34a 0%,#22c55e 100%);
  color:#ffffff;
  font-family:Arial,Helvetica,sans-serif;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
  line-height:1.1;
}

.lf-coupon-top{
  font-size:11px;
  letter-spacing:.08em;
  font-weight:700;
  opacity:.95;
}

.lf-coupon-code{
  margin-top:3px;
  font-size:16px;
  font-weight:900;
  letter-spacing:.12em;
  background:rgba(255,255,255,.15);
  padding:3px 10px;
  border-radius:6px;
}