
/* Slide panier */

.panier-slide {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 90vw;
  max-width: 400px;
  height: 100vh;
  background: #111;
  color: white;
  box-shadow: -3px 0 10px rgba(0,0,0,0.6);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  font-family: 'TAModernTimes';
}
.panier-slide.open {
  right: 0;
}
.panier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.panier-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}
.panier-body {
  flex: 1;
  overflow-y: auto;
}
.liste-produits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ligne-produit {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}
.ligne-produit img.miniature {
  width: 50px;
  height: auto;
  border-radius: 4px;
  margin-right: 10px;
}
.nom-produit {
  flex: 1;
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
}
.prix-produit {
  font-weight: bold;
  margin-left: 10px;
  color: white;
}
.supprimer-item {
  background: none;
  border: none;
  color: #f55;
  font-size: 1.1rem;
  cursor: pointer;
  margin-left: 8px;
}
.totaux-panier {
  margin-top: 1rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}
.totaux-panier p {
  margin: 0.3rem 0;
  color: white!important;
}
.btn-checkout {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  text-align: center;
  background: #2c8249;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}
.btn-checkout:hover {
  background: #1d5e35;
}
@media (max-width: 768px) {
  .panier-slide {
    width: 100vw;
  }
}
