/*
==================================================
🃏 Preview Card Prodotto
Descrizione: card sponsorizzata mock (griglia categoria)
Data: 23/09/2025
==================================================
*/
/* ===========================================
   Preview Card Prodotto — versione finale
   =========================================== */

/* Card container */
.adv-preview--card .card-prodotto{
  position: relative;
  width: 280px;
  background: #fff;
  border: none;
  border-radius: 0;
  overflow: visible;               /* il logo può uscire fuori */
  display: flex;
  flex-direction: column;
}

/* Area immagine (crop) */
.adv-preview--card .card-img-wrapper{
  position: relative;
  width: 280px;
  height: 415px;
  overflow: hidden;                /* crop */
  border-radius: 0;
}
.adv-preview--card .card-img-wrapper > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;     /* inquadratura alta */
  border-radius: 0;
  display: block;
}

/* Badge sponsorizzato */
.adv-preview--card .adv-badge{
  position: absolute;
  top: 14px; left: 14px;
  z-index: 30;
  display: inline-flex; align-items: center;
  background: #facc15; color:#111; font-weight:700;
  font-size: .9rem; line-height:1; padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* Logo brand 90×90 — FUORI dal frame */
.adv-preview--card .card-brand{
  position: absolute;
  top: -20px;                      /* esce sopra */
  right: -20px;                    /* esce a destra */
  width: 90px; height: 90px;
  background: transparent;
  border: none; border-radius: 0; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  z-index: 40;
}
.adv-preview--card .card-brand img{
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}

/* Body testi (stessa larghezza della card) */
.adv-preview--card .card-body{
  width: 280px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}

/* Tipografia body */
.adv-preview--card .card-crumb{ color:#6b7280; font-size:.9rem; }
.adv-preview--card .card-title{
  font-size: 1.15rem; line-height: 1.25; font-weight: 800;
  color: #e44a2d; margin: 4px 0 2px;
}
.adv-preview--card .card-price{ font-size:1.05rem; font-weight:700; color:#111; }
.adv-preview--card .card-soldby{ color:#6b7280; font-size:.95rem; }
.adv-preview--card .card-soldby .soldby-name{ color:#e44a2d; font-weight:700; }

/* CTA rettangolare */
.adv-preview--card .card-cta{
  margin-top: 12px;
  display: block; width: 100%;
  background: #111; color:#fff; text-align:center;
  text-decoration: none; font-weight: 700; font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: 0;                 /* nessun radius */
}
/* 🔧 Rimuovi completamente il filo/bordo gold in preview */
.adv-preview--card .card-prodotto.card--sponsored,
.adv-preview--card .card-prodotto.card--sponsored .card-img-wrapper {
  border: none !important;
  box-shadow: none !important;
}