
/* Produits */
.shop-container{display:flex;flex-wrap:wrap;gap:20px;margin:20px;}
.shop-content{flex:3;display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:20px;}
.product-box{border:1px solid #ddd;padding:15px;border-radius:8px;background:#fff;display:flex;flex-direction:column;align-items:center;transition:0.3s;}
.product-box:hover{box-shadow:0 4px 15px rgba(0,0,0,0.1);}
.product-img{width:100%;height:180px;object-fit:cover;border-radius:6px;margin-bottom:10px;}
.product-info{text-align:center;}
.product-title{font-weight:bold;margin:5px 0;}
.product-description{font-size:0.9em;color:#555;margin-bottom:5px;}
.price{font-weight:bold;color:#28a745;margin-bottom:10px;}
.add-card{cursor:pointer;color:#28a745;font-size:1.3em;}
.add-card:hover{color:#1e7e34;}

/* Panier */
.card{flex:1;min-width:280px;border:1px solid #ddd;padding:15px;border-radius:8px;background:#fff;position:sticky;top:20px;height:max-content;}
.card-title{font-weight:bold;margin-bottom:10px;}
.card-content .card-item{display:flex;align-items:center;margin-bottom:10px;background:#f9f9f9;padding:10px;border-radius:6px;box-shadow:0 2px 6px rgba(0,0,0,0.1);}
.card-item img{width:60px;height:60px;object-fit:cover;margin-right:10px;border-radius:4px;}
.card-info{flex:1;display:flex;flex-direction:column;}
.card-product-title{font-weight:bold;margin-bottom:5px;}
.card-price{color:#28a745;font-weight:bold;margin-bottom:5px;}
.qty-input{width:50px;margin-top:5px;}
.remove-btn{cursor:pointer;color:red;font-size:1.2em;margin-left:5px;}
.total{display:flex;justify-content:space-between;font-weight:bold;margin-top:10px;}
.btn-buy{width:100%;padding:10px;background:#28a745;color:#fff;border:none;border-radius:6px;cursor:pointer;margin-top:10px;font-size:1em;}
.btn-buy:hover{background:#218838;}

@media(max-width:800px){.shop-container{flex-direction:column;}.card{position:static;width:100%;}}

