
/* PVettese Atelier v22 — achats collectionneurs + impression ventes */

.pvPurchasedWorks{
  margin-top:16px;
  border-top:1px solid var(--line);
  padding-top:14px;
}
.pvPurchasedWorks h3{
  margin:0 0 10px;
  font-size:17px;
}
.pvPurchaseSummary{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.pvPurchaseSummary .badge{
  font-size:12px;
}
.pvPurchaseList{
  display:grid;
  gap:8px;
}
.pvPurchaseItem{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) auto;
  gap:10px;
  align-items:center;
  padding:9px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#fffafc;
}
.pvPurchaseItem img{
  width:56px;
  height:56px;
  object-fit:contain;
  border-radius:9px;
  background:white;
}
.pvPurchaseText{
  min-width:0;
}
.pvPurchaseText strong{
  display:block;
  font-size:14px;
  overflow-wrap:anywhere;
}
.pvPurchaseMeta{
  color:var(--muted);
  font-size:11px;
  margin-top:3px;
}
.pvPurchasePrice{
  font-weight:700;
  white-space:nowrap;
  font-size:13px;
}

@media(max-width:760px){
  .pvPurchaseItem{
    grid-template-columns:48px minmax(0,1fr);
  }
  .pvPurchaseItem img{
    width:48px;
    height:48px;
  }
  .pvPurchasePrice{
    grid-column:2;
  }
}
