.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000; opacity: 0; pointer-events: none;
    transition: opacity 0.25s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

.drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 420px;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
    padding: 24px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
}
.drawer-title { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 2px; }
.close-btn {
    width: 36px; height: 36px;
    border: 1.5px solid var(--gray-200); border-radius: 50%;
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--gray-600); transition: all var(--transition);
}
.close-btn:hover { background: var(--gray-100); }

.drawer-body { flex: 1; overflow-y: auto; padding: 16px; }

.cart-item {
    display: flex; gap: 12px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.cart-item-img {
    width: 64px; height: 64px;
    background: var(--gray-100); border-radius: 8px;
    overflow: hidden; flex-shrink: 0;
}
.cart-item-img img   { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info      { flex: 1; }
.cart-item-name      { font-size: 13px; font-weight: 500; margin-bottom: 6px; line-height: 1.4; }
.cart-item-price     { font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--red); }
.cart-qty            { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn {
    width: 24px; height: 24px;
    border: 1.5px solid var(--gray-200); border-radius: 6px;
    background: transparent; cursor: pointer; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition); font-family: 'Manrope', sans-serif;
}
.qty-btn:hover { border-color: var(--black); background: var(--black); color: white; }
.qty-num       { font-size: 13px; font-weight: 600; min-width: 20px; text-align: center; }

.drawer-foot { padding: 24px; border-top: 1px solid var(--border); }
.cart-total  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: 14px; color: var(--gray-600); }
.cart-total-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; }

.btn-checkout {
    width: 100%; height: 48px;
    background: var(--red); color: white;
    border: none; border-radius: 12px;
    font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: background var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-checkout:hover { background: var(--red-dark); }
.btn-checkout svg   { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

@media (max-width: 600px) { .drawer { width: 100%; } }
