/* [vd-split] product-mini — extracted verbatim from videos/css/video.css. Tokens (--vd-*) come from .vd in video.css. */
/* ---------- mini product card (kit + steps) + add-to-cart ----------
   Layout: thumbnail on the left, a column on the right with the name, the
   rounded review stars, then a foot row with the yellow price badge (category
   style) and a full "Ajouter" button. Compact but everything stays readable. */
.vd-prod { display: flex; align-items: flex-start; gap: 12px; padding: 10px; border: 1px solid var(--vd-line); border-radius: 12px; background: #fff; transition: border-color .15s ease, box-shadow .15s ease; }
.vd-prod:hover { border-color: #cfd4d9; box-shadow: var(--vd-shadow); }
/* Fixed, clipped box so a missing/broken image (its alt text) can never blow
   out the row and crush the content column. */
.vd-prod-thumb { flex: 0 0 60px; width: 60px; height: 60px; overflow: hidden; border-radius: 8px; line-height: 0; }
.vd-prod-img { width: 60px; height: 60px; object-fit: contain; background: var(--vd-bg-soft); border-radius: 8px; padding: 4px; }
.vd-prod-main { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1 1 auto; }
.vd-prod-namelink { text-decoration: none; color: var(--vd-ink); }
.vd-prod-name { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 700; font-size: 13.5px; line-height: 1.3; color: var(--vd-ink); }
.vd-prod .review-card-stars { margin: 0; }
.vd-prod-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 2px; }
/* yellow price badge — category / search-v2 style (#ffe066 on dark text) */
.vd-prod-price { flex: 0 0 auto; background: #ffe066; color: #232323; font-weight: 700; font-size: 14px; padding: 4px 10px; border-radius: 4px; }
.vd-prod-atc { margin: 0; flex: 0 0 auto; }
.vd-add-btn { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; background: var(--vd-primary); color: #fff; border: none; cursor: pointer; font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 999px; transition: background-color .15s ease, transform .05s ease; }
.vd-add-btn:hover { background: var(--vd-primary-dark); }
.vd-add-btn:active { transform: translateY(1px); }
.vd-add-btn svg { width: 16px; height: 16px; }
.vd-prod-oos { flex: 0 0 auto; color: var(--vd-muted); font-weight: 700; font-size: 12px; padding: 7px 12px; border: 1px solid var(--vd-line); border-radius: 999px; white-space: nowrap; }
