
/* PVettese Atelier v37 — suivi colis */
.pvShipBadge{
  display:inline-flex;align-items:center;gap:5px;
  border-radius:999px;padding:5px 8px;
  font-size:11px;font-weight:800;
  background:#f2eff1;color:#555;
  white-space:nowrap;
}
.pvShipBadge[data-status="Livré"]{background:#edf8f0;color:#26733b}
.pvShipBadge[data-status="En livraison"]{background:#fff6e8;color:#9a6200}
.pvShipBadge[data-status="En transit"]{background:#eef5ff;color:#326b9e}
.pvShipBadge[data-status="Expédié"]{background:#f2efff;color:#6754a7}
.pvShipBadge[data-status="Incident"]{background:#fff0f0;color:#a33}
.pvTrackBtn{
  border:0;border-radius:10px;min-height:36px;
  padding:7px 10px;font-weight:700;cursor:pointer;
  background:#fff0f6;color:#b62f6d;
}
.pvShippingBox{
  margin-top:12px;padding:12px;border:1px solid var(--line);
  border-radius:14px;background:#fffafd;
}
.pvShippingGrid{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;margin-top:8px
}
.pvShippingItem{
  border:1px solid var(--line);border-radius:11px;padding:9px 10px;
  min-width:0
}
.pvShippingItem span:first-child{
  display:block;font-size:11px;color:var(--muted);font-weight:700;margin-bottom:3px
}
.pvShippingValue{font-size:13px;overflow-wrap:anywhere}
@media(max-width:760px){
  .pvShippingGrid{grid-template-columns:1fr}
  .pvTrackBtn{width:100%;margin-top:8px}
}
