	/* ================= PANIER ================= */
	.cart-link {
	  position: relative;
	  display: inline-flex;
	  align-items: center;
	  text-decoration: none;
	  margin-left: 100%;
	}

	.cart-icon {
	  font-size: 22px;
	}

	#cartCount {
	  position: absolute;
	  top: -6px;
	  right: -10px;
	  background: linear-gradient(135deg, #7b5cff, #a18bff);
	  color: #fff;
	  font-size: 11px;
	  font-weight: 800;
	  min-width: 18px;
	  height: 18px;
	  border-radius: 50%;
	  display: flex;
	  align-items: center;
	  justify-content: center;
		}

	.cart-page {
	  max-width: 1000px;
	  margin: 40px auto;
	}

	.cart-title {
	  font-size: 28px;
	  margin-bottom: 20px;
	}

	.cart-table {
	  background: #fff;
	  border-radius: 16px;
	  overflow: hidden;
	  box-shadow: 0 12px 30px rgba(0,0,0,.08);
	}

	.cart-head,
	.cart-row {
	  display: grid;
	  grid-template-columns: 2fr 1.5fr .5fr .8fr .5fr;
	  align-items: center;
	  padding: 14px 18px;
	}

	.cart-head {
	  background: #f5f5fb;
	  font-weight: 700;
	  font-size: 14px;
	}

	.cart-row {
	  border-top: 1px solid #eee;
	}

	.cart-product {
	  display: flex;
	  gap: 14px;
	  align-items: center;
	}

	.cart-product img {
	  width: 64px;
	  height: 80px;
	  object-fit: cover;
	  border-radius: 10px;
	}

	.cart-meta {
	  font-size: 14px;
	  color: #555;
	}

	.cart-remove {
	  color: #d33;
	  font-size: 14px;
	  text-decoration: none;
	}

	.cart-footer {
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  margin-top: 24px;
	}

	.cart-total {
	  font-size: 20px;
	  font-weight: 800;
	}

	.cart-pay {
	  padding: 14px 26px;
	  font-size: 16px;
	}
/* =========================
   PANIER – MOBILE CLEAN (PRO)
========================= */
@media (max-width: 768px) {

  .cart-table {
    background: transparent;
    box-shadow: none;
  }

  .cart-head {
    display: none;
  }

  .cart-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-areas:
      "img title"
      "img meta"
      "img qty"
      "img price"
      "img remove";
    gap: 10px 12px;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(20,20,30,.08);
  }

  /* Image */
  .cart-product img {
    grid-area: img;
    width: 72px;
    border-radius: 12px;
  }

  /* Titre */
  .cart-product strong {
    grid-area: title;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Variants */
  .cart-meta {
    grid-area: meta;
    font-size: 13px;
    color: #6b7280;
  }

  .cart-meta div {
    margin-bottom: 2px;
  }

  /* Quantité */
  .cart-qty {
    grid-area: qty;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cart-qty button {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
  }

  /* Prix */
  .cart-price {
    grid-area: price;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
  }

  /* Supprimer */
  .cart-remove {
    grid-area: remove;
    font-size: 13px;
    color: #7c3aed;
  }

  /* Footer sticky */
  .cart-footer {
    position: sticky;
    bottom: 0;
    background: var(--bg);
    padding: 16px;
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  }

  .cart-total {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .cart-pay,
  .cart-footer .btn.primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 999px;
  }
}
@media (max-width: 768px) {

  /* Rend visibles img + titre dans la grille */
  .cart-product {
    display: contents;
  }

}
