/* Emplacement : /assets/css/panier.css */
.afl-cart-table { display: flex; flex-direction: column; gap: 1rem; }
.afl-cart-line { display: grid; grid-template-columns: 90px 1fr auto auto auto; align-items: center; gap: 1rem; background: var(--afl-white); border-radius: var(--afl-radius); padding: 1rem; box-shadow: var(--afl-shadow); border: 1px solid #f1f5f9; }
.afl-cart-line__image { width: 90px; height: 90px; border-radius: 10px; overflow: hidden; background: #F1F5F9; display: block; }
.afl-cart-line__image img { width: 100%; height: 100%; object-fit: cover; }
.afl-cart-line__info h6 { margin: 0 0 0.3rem; }
.afl-cart-line__info h6 a { color: var(--afl-dark); }
.afl-cart-line__unit { font-size: 0.82rem; color: var(--afl-gray); }
.afl-cart-line__total { font-weight: 800; color: var(--afl-primary-dark); min-width: 90px; text-align: right; }
.afl-cart-line__remove { background: none; border: none; color: var(--afl-danger); font-size: 1.1rem; }
.afl-cart-summary { background: var(--afl-white); border-radius: var(--afl-radius); padding: 1.8rem; box-shadow: var(--afl-shadow); position: sticky; top: 100px; border: 1px solid #f1f5f9; }
.afl-cart-summary h5 { margin-bottom: 1.2rem; }
.afl-cart-summary__row { display: flex; justify-content: space-between; margin-bottom: 0.8rem; color: var(--afl-gray); }
.afl-cart-summary__row--total { font-size: 1.2rem; font-weight: 800; color: var(--afl-dark); border-top: 2px solid #e2e8f0; padding-top: 0.8rem; margin-top: 0.5rem; }
@media (max-width: 767.98px) {
  .afl-cart-line { grid-template-columns: 70px 1fr; grid-template-areas: "image info" "qty qty" "total remove"; }
  .afl-cart-line__image { grid-area: image; width: 70px; height: 70px; }
  .afl-cart-line__info { grid-area: info; }
  .afl-cart-line__qty { grid-area: qty; justify-content: center; margin-top: 0.5rem; }
  .afl-cart-line__total { grid-area: total; text-align: left; }
  .afl-cart-line__remove { grid-area: remove; justify-self: end; }
}
