/* css/cart-styles.css */
.scwp-cart-sidebar {
    position: fixed; top: 0; right: -400px; width: 380px; height: 100%;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(5px);
    color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    z-index: 10000; padding: 25px;
    display: flex; flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scwp-close-cart-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
}
.scwp-cart-sidebar.is-open {
    right: 0;
}
.scwp-cart-overlay {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0,0,0,0.6);
    z-index: 9999; opacity: 0;
    transition: opacity 0.4s ease-in-out;
}
.scwp-cart-overlay.is-open {
    display: block;
    opacity: 1;
}
.scwp-cart-item .cart-item-title { font-weight: normal; color: #fff; margin: 0 0 5px 0; font-size: 15px; line-height: 1.3; }
.scwp-cart-item .cart-item-meta { display: none; }
.scwp-cart-item .cart-item-price { margin: 0; font-weight: normal; font-size: 15px; }
#scwp-cart-footer .button {
    border-radius: 25px;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}