/* Cart Sidebar */
#deli-cart-sidebar.open {
    transform: translateX(0);
}

#deli-cart-sidebar.open ~ .deli-cart-overlay {
    display: block;
}

/* Toast notification */
.deli-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 99999;
    background: #333;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}

.deli-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Cart icon pulse */
#deli-cart-icon.pulse {
    animation: cartPulse 0.6s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* Cart badge */
.deli-cart-badge {
    display: flex;
}
