/* ===== Carrito MARA ===== */
:root{--cart-teal:#2A9E99;--cart-dark:#1A1A1A;--cart-cream:#F2EDE4;}
#cart-fab{position:fixed;bottom:1.5rem;right:1.5rem;z-index:120;width:52px;height:52px;border-radius:50%;background:var(--cart-teal);border:none;box-shadow:0 6px 22px rgba(42,158,153,0.45);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:transform .25s}
#cart-fab:hover{transform:scale(1.06)}
#cart-count{position:absolute;top:-4px;right:-4px;min-width:20px;height:20px;padding:0 5px;border-radius:10px;background:#1A1A1A;color:#fff;font:600 11px/20px -apple-system,system-ui,sans-serif;display:none;align-items:center;justify-content:center;text-align:center;border:2px solid #F2EDE4}
#cart-overlay{position:fixed;inset:0;background:rgba(20,20,20,0.4);backdrop-filter:blur(2px);opacity:0;visibility:hidden;transition:opacity .35s;z-index:130}
#cart-overlay.show{opacity:1;visibility:visible}
#cart-drawer{position:fixed;top:0;right:0;height:100%;width:380px;max-width:90vw;background:var(--cart-cream);z-index:140;display:flex;flex-direction:column;transform:translateX(100%);transition:transform .38s cubic-bezier(.4,0,.2,1);box-shadow:-8px 0 40px rgba(0,0,0,0.18);font-family:'Cormorant Garamond',Georgia,serif}
#cart-drawer.open{transform:translateX(0)}
.cart-head{display:flex;align-items:center;justify-content:space-between;padding:1.5rem 1.6rem;border-bottom:1px solid rgba(0,0,0,0.08)}
.cart-head span{font-size:1.4rem;letter-spacing:0.04em}
#cart-x{background:none;border:none;font-size:1.8rem;line-height:1;cursor:pointer;color:#1A1A1A}
#cart-body{flex:1;overflow-y:auto;padding:1rem 1.6rem}
.cart-empty{text-align:center;color:#8A8A8A;font-size:1.05rem;margin-top:3rem;line-height:1.7}
.cart-item{display:flex;gap:0.9rem;align-items:center;padding:0.9rem 0;border-bottom:1px solid rgba(0,0,0,0.06)}
.cart-item img{width:62px;height:62px;object-fit:cover;border-radius:4px;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:1.02rem;line-height:1.25}
.cart-item-price{font-size:0.95rem;color:var(--cart-teal);margin-top:2px}
.cart-item-x{background:none;border:none;font-size:1.4rem;color:#bbb;cursor:pointer;line-height:1;padding:0 2px}
.cart-item-x:hover{color:#1A1A1A}
.cart-foot{padding:1.3rem 1.6rem;border-top:1px solid rgba(0,0,0,0.08)}
.cart-total{display:flex;justify-content:space-between;align-items:baseline;font-size:1.15rem;margin-bottom:1rem}
.cart-total strong{font-size:1.35rem;font-weight:500}
.cart-btn{width:100%;padding:1rem;background:var(--cart-teal);color:#fff;border:none;font-family:inherit;font-size:0.95rem;letter-spacing:0.12em;text-transform:uppercase;cursor:pointer;transition:background .3s}
.cart-btn:hover{background:#228B86}
.cart-note{font-size:0.8rem;color:#8A8A8A;text-align:center;margin-top:0.8rem;line-height:1.5}
@media(max-width:640px){#cart-fab{top:0.9rem;right:1rem;width:42px;height:42px}}
