/* VásárRadar V14 – egységes termékkártyák + tagolt leírás */
.grid{align-items:stretch}
.grid>.product-card{height:100%}
.product-card{display:flex;flex-direction:column;height:100%}
.product-card .product-img{height:220px;min-height:220px;flex:0 0 220px}
.product-card .product-body{display:flex;flex-direction:column;flex:1;min-height:250px}
.product-card h3{
  min-height:68px;max-height:68px;margin:11px 0 10px;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;
  overflow:hidden;text-overflow:ellipsis;
}
.product-card .price{margin:6px 0 10px}
.product-card .meta{min-height:32px;line-height:1.45}
.product-card .card-actions{margin-top:auto;padding-top:16px}
.product-card .card-actions .btn{min-width:112px}

/* Hosszú partnerleírások olvasható blokkokban */
.description-content{display:flex;flex-direction:column;gap:14px}
.description-content>p{margin:0;line-height:1.78;color:var(--ink-soft)}
.description-content .desc-section{
  background:#FAF9F6;border:1px solid var(--line);border-radius:15px;padding:17px 18px;
}
.description-content .desc-section h3{margin:0 0 9px;font-size:17px;letter-spacing:-.015em}
.description-content .desc-section p{margin:0;color:var(--ink-soft);line-height:1.72}
.description-content .description-list{margin:5px 0 0;padding-left:21px;color:var(--ink-soft);display:grid;gap:7px}
.description-content .description-list li{line-height:1.55}
.description-content .desc-lead{font-size:15px;color:var(--ink);line-height:1.8;margin-bottom:4px}

/* Főkategória oldal – egyértelmű hierarchia */
.main-category-grid .category-card{min-height:164px}
.category-parent-note{display:flex;align-items:center;gap:7px;color:var(--ink-soft);font-size:13px;margin-top:5px}
.category-parent-note svg{width:15px;height:15px}

@media(max-width:580px){
  .product-card .product-img{height:200px;min-height:200px;flex-basis:200px}
  .product-card h3{min-height:64px;max-height:64px;-webkit-line-clamp:3}
  .product-card .product-body{min-height:240px}
  .description-content .desc-section{padding:15px}
}

/* VásárRadar V16 – szponzorált kártya megjelenés helyreállítása */
.product-card.sponsored-card{
  position:relative;
  overflow:hidden;
  border:2px solid rgba(200,158,146,.95) !important;
  background:linear-gradient(180deg,#fff 0%,#fff 68%,rgba(231,210,204,.23) 100%) !important;
  box-shadow:0 18px 46px rgba(107,81,72,.14) !important;
}
.product-card.sponsored-card:before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;
  height:5px;
  z-index:7;
  background:linear-gradient(90deg,#6B5148,#C89E92,#6B5148);
}
.product-card.sponsored-card:hover{
  transform:translateY(-6px);
  border-color:#B98576 !important;
  box-shadow:0 24px 58px rgba(107,81,72,.20) !important;
}
.product-card.sponsored-card .sponsor-ribbon{
  position:absolute !important;
  z-index:8 !important;
  top:16px !important;
  left:16px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;
  width:auto !important;
  max-width:calc(100% - 32px);
  padding:8px 11px !important;
  margin:0 !important;
  border-radius:10px !important;
  background:#6B5148 !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.34) !important;
  box-shadow:0 8px 20px rgba(52,56,58,.18) !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:820 !important;
  letter-spacing:.035em !important;
  text-transform:uppercase !important;
}
.product-card.sponsored-card .sponsor-ribbon svg{
  width:14px !important;
  height:14px !important;
  flex:0 0 14px;
  stroke-width:2.2;
}
.product-card.sponsored-card .product-img{
  background:linear-gradient(180deg,#fff 0%,#FBF5F2 100%) !important;
}
.product-card.sponsored-card .badge.sponsored{
  display:inline-flex;
  width:max-content;
  background:#E7D2CC !important;
  border-color:#D7B8AF !important;
  color:#5B443D !important;
  font-weight:820 !important;
}
.product-card.sponsored-card .price{color:#5B443D}
@media(max-width:580px){
  .product-card.sponsored-card .sponsor-ribbon{top:12px !important;left:12px !important;padding:7px 9px !important;font-size:10px !important}
}
