html.cart-drawer-open { overflow: hidden; }
.cart-drawer { position: fixed; inset: 0 0 0 auto; margin: 0; padding: 0; width: min(460px, 100%); max-width: 100%; height: 100dvh; max-height: 100dvh; border: 0; color: #211f1b; background: #fffdf8; box-shadow: -12px 0 40px #0002; }
.cart-drawer[open] { display: flex; flex-direction: column; }
.cart-drawer::backdrop { background: #0006; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid #d6d1c7; }
.cart-drawer-header h2 { margin: 0; font-size: 32px; }
.cart-drawer button { cursor: pointer; color: inherit; background: transparent; border: 1px solid #d6d1c7; }
.cart-drawer-close, .cart-drawer-remove { width: 36px; height: 36px; font-size: 24px; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 0 24px; }
.cart-drawer-item { display: grid; grid-template-columns: 80px minmax(0, 1fr) 36px; gap: 14px; padding: 22px 0; border-bottom: 1px solid #d6d1c7; }
.cart-drawer .cart-drawer-media { width: 80px; height: 80px; min-height: 0; aspect-ratio: 1; overflow: hidden; }
.cart-drawer-media img, .cart-drawer-media video { width: 100%; height: 100%; object-fit: cover; }
.cart-drawer-copy h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.2; }
.cart-drawer-copy p { margin: 0 0 12px; font-size: 14px; }
.cart-drawer-quantity { display: flex; align-items: center; gap: 12px; }
.cart-drawer-quantity button { width: 32px; height: 32px; font-size: 20px; }
.cart-drawer button:disabled { opacity: .35; cursor: default; }
.cart-drawer-footer { padding: 24px; border-top: 1px solid #d6d1c7; }
.cart-drawer-footer[hidden] { display: none; }
.cart-drawer-total { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.cart-drawer-checkout { display: block; padding: 18px; text-align: center; color: #fffdf8; background: #211f1b; font-weight: 700; text-decoration: none; }
