.cart-drawer { position: fixed; top: 0; right: 0; width: 350px; height: 100%; background: #fff; box-shadow: -2px 0 8px rgba(0,0,0,0.2); transform: translateX(100%); transition: transform 0.4s ease; z-index: 9999; } body.show-cart .cart-drawer { transform: translateX(0); }