/* LeonCrest Cart — Panneau latéral */

.lccart-overlay { position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);opacity:0;visibility:hidden;transition:opacity 0.3s,visibility 0.3s;z-index:99998; }
.lccart-overlay.lccart-active { opacity:1;visibility:visible; }

.lccart-panel { position:fixed;top:0;right:-420px;width:420px;max-width:100vw;height:100vh;background:#fff;box-shadow:-2px 0 20px rgba(0,0,0,0.15);transition:right 0.3s ease;z-index:99999;display:flex;flex-direction:column;overflow:hidden;font-family:'Inter',sans-serif; }
.lccart-panel.lccart-active { right:0; }

.lccart-header { background:#0a0a0a;color:#fff;padding:20px 24px;display:flex;justify-content:space-between;align-items:center;border-bottom:2px solid #C5A55A;flex-shrink:0; }

.lccart-shipping { padding:14px 24px;background:#fafafa;border-bottom:1px solid #f0f0f0;flex-shrink:0; }
.lccart-shipping p { margin:0;font-size:13px;color:#6b6b6b; }

.lccart-content { flex:1;overflow-y:auto;padding:20px 24px; }

.lccart-product { display:flex;gap:14px;margin-bottom:12px; }
.lccart-product-img { width:72px;height:72px;background:#fafafa;flex-shrink:0;overflow:hidden;display:flex;align-items:center;justify-content:center; }
.lccart-product-img img { width:100%;height:100%;object-fit:contain;padding:4px; }
.lccart-product-info { flex:1;min-width:0; }
.lccart-product-name { margin:0 0 2px;font-size:14px;font-weight:500;color:#1a1a1a;line-height:1.3; }
.lccart-product-attrs { margin:0 0 8px;font-size:12px;color:#999; }
.lccart-product-bottom { display:flex;justify-content:space-between;align-items:center; }
.lccart-product-price { margin:0;font-size:15px;font-weight:600;color:#1a1a1a; }

.lccart-qty { display:flex;align-items:center;gap:10px;border:1px solid #e8e8e8;padding:3px 8px; }
.lccart-qty-btn { background:none;border:none;color:#999;font-size:15px;cursor:pointer;padding:0;width:22px;height:22px;display:flex;align-items:center;justify-content:center;transition:color 0.2s; }
.lccart-qty-btn:hover { color:#1a1a1a; }
.lccart-qty-value { font-size:13px;font-weight:500;min-width:18px;text-align:center; }

.lccart-remove { background:none;border:none;color:#999;font-size:12px;text-decoration:underline;cursor:pointer;padding:0;margin-bottom:16px;transition:color 0.2s; }
.lccart-remove:hover { color:#1a1a1a; }

.lccart-empty { text-align:center;padding:60px 24px; }
.lccart-empty svg { margin-bottom:12px;opacity:0.3; }
.lccart-empty p { margin:0;font-size:14px;color:#999; }

.lccart-footer { padding:20px 24px;border-top:1px solid #f0f0f0;background:#fff;flex-shrink:0; }
.lccart-btn-checkout { display:flex;align-items:center;justify-content:center;width:100%;height:50px;background:#0a0a0a;color:#fff;font-family:'Inter',sans-serif;font-size:13px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;text-decoration:none;transition:all 0.3s; }
.lccart-btn-checkout:hover { background:#C5A55A;color:#0a0a0a; }

/* Hide native PS cart modal */
#blockcart-modal,.blockcart-modal,.modal-backdrop { display:none!important; }
body.modal-open { overflow:auto!important;padding-right:0!important; }

@media (max-width:480px) { .lccart-panel { width:100vw;right:-100vw; } }
