/* 購物車樣式 */
.cart {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100;
}

/* 可以把之後其他的通用美化代碼也都寫在這裡 */
.scroll-smooth {
    scroll-behavior: smooth;
}