.erb-cart-drawer {
    position: fixed; inset: 0 0 0 auto; margin: 0; padding: 0;
    width: min(480px, 100%); max-width: 100%; height: 100%; height: 100dvh;
    max-height: 100dvh; border: 0; color: #202622; background: #fff;
    box-shadow: -12px 0 60px #172a2026; overflow: hidden;
    transform: translateX(100%); transition: transform .28s ease;
    font-family: inherit; box-sizing: border-box;
}
.erb-cart-drawer.is-visible { transform: translateX(0); }
.erb-cart-drawer::backdrop { background: #14221980; backdrop-filter: blur(2px); }
.erb-cart-drawer *, .erb-cart-drawer *::before, .erb-cart-drawer *::after { box-sizing: border-box; }
.erb-cart-drawer [hidden] { display: none !important; }
.erb-cart-drawer__panel { display: flex; flex-direction: column; height: 100%; }
.erb-cart-drawer__header { flex: 0 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid #e8ece8; }
.erb-cart-drawer__header h2 { margin: 0; font-size: 25px; font-weight: 700; line-height: 1.25; }
.erb-cart-drawer__header p { margin: 6px 0 0; font-size: 13px; color: #798178; }
.erb-cart-drawer button { font-family: inherit; cursor: pointer; }
.erb-cart-drawer__close { border: 0; background: #f2f5f1; width: 38px; height: 38px; border-radius: 50%; font-size: 28px; line-height: 1; color: #394137; }
.erb-cart-drawer__body { flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 0 24px; }
.erb-cart-drawer__status { margin: 0; padding: 0; color: #657061; font-size: 14px; line-height: 1.6; }
.erb-cart-drawer__status:not(:empty) { padding: 24px 0; }
.erb-cart-drawer__retry { border: 1px solid #d4ddd0; background: #fff; color: #296516; border-radius: 8px; padding: 10px 16px; margin-bottom: 18px; }
.erb-cart-drawer__item { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 16px; padding: 24px 0; border-bottom: 1px solid #edf0eb; }
.erb-cart-drawer__image { display: block; width: 84px; height: 92px; border-radius: 10px; overflow: hidden; background: #f5f6f2; }
.erb-cart-drawer__image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.erb-cart-drawer__name { color: #202622; font-size: 14px; font-weight: 600; line-height: 1.5; text-decoration: none; display: block; }
.erb-cart-drawer__name:hover { color: #36861f; }
.erb-cart-drawer__unit { margin: 5px 0 12px; font-size: 12px; color: #7a8276; }
.erb-cart-drawer__item-bottom { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.erb-cart-drawer__quantity { display: flex; align-items: center; height: 36px; border: 1px solid #dfe5da; border-radius: 7px; overflow: hidden; }
.erb-cart-drawer__quantity button { width: 32px; height: 34px; border: 0; color: #394333; background: #f7f9f5; font-size: 19px; }
.erb-cart-drawer__quantity input { width: 48px; min-width: 0; height: 34px; padding: 0 3px; border: 0; text-align: center; font: inherit; font-size: 14px; color: #202622; background: #fff; }
.erb-cart-drawer__price { font-size: 16px; font-weight: 700; white-space: nowrap; }
.erb-cart-drawer__old { display: block; text-align: right; font-size: 12px; font-weight: 400; color: #889081; }
.erb-cart-drawer__remove { display: block; border: 0; padding: 10px 0 0; background: none; font-size: 12px; color: #7a8276; }
.erb-cart-drawer__remove:hover { color: #b43f32; }
.erb-cart-drawer button:disabled { cursor: wait; opacity: .45; }
.erb-cart-drawer__footer { flex: 0 0 auto; padding: 20px 24px max(20px, env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid #e8ece8; box-shadow: 0 -8px 24px #22331106; }
.erb-cart-drawer__saving { font-size: 13px; color: #36861f; margin-bottom: 10px; }
.erb-cart-drawer__total { display: flex; justify-content: space-between; align-items: baseline; font-size: 16px; }
.erb-cart-drawer__total strong { font-size: 27px; font-weight: 700; }
.erb-cart-drawer__note { font-size: 12px; color: #7a8276; margin: 7px 0 18px; line-height: 1.4; }
.erb-cart-drawer__checkout, .erb-cart-drawer__continue { display: flex; width: 100%; align-items: center; justify-content: center; gap: 12px; min-height: 48px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; }
.erb-cart-drawer__checkout { background: #438c26; color: #fff; border: 1px solid #438c26; }
.erb-cart-drawer__checkout:hover { background: #34751b; color: #fff; }
.erb-cart-drawer__checkout[aria-disabled="true"] { opacity: .45; cursor: default; }
.erb-cart-drawer__continue { margin-top: 9px; background: #fff; color: #38452f; border: 1px solid #dce4d6; }
.erb-cart-drawer :focus-visible { outline: 2px solid #438c26; outline-offset: 3px; }
@media(max-width: 480px) {
    .erb-cart-drawer__header { padding: 18px; }
    .erb-cart-drawer__header h2 { font-size: 23px; }
    .erb-cart-drawer__body { padding: 0 18px; }
    .erb-cart-drawer__item { grid-template-columns: 70px minmax(0, 1fr); gap: 12px; padding: 18px 0; }
    .erb-cart-drawer__image { width: 70px; height: 80px; }
    .erb-cart-drawer__footer { padding: 16px 18px max(16px, env(safe-area-inset-bottom)); }
}
@media(prefers-reduced-motion: reduce) { .erb-cart-drawer { transition: none; } }
