/* Cart Sidebar - Clean and Simple */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 384px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

#cart-sidebar.translate-x-full {
    transform: translateX(100%);
}

#cart-sidebar:not(.translate-x-full) {
    transform: translateX(0);
}

#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

#cart-overlay:not(.hidden) {
    display: block;
}

@media (max-width: 768px) {
    #cart-sidebar {
        max-width: 100%;
    }
}
