.bwwm-sticky-cart {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.bwwm-sticky-cart.right {
    right: 0;
}

.bwwm-sticky-cart.left {
    left: 0;
}

.bwwm-cart-toggle {
    background: #222;
    color: #fff;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.bwwm-sticky-cart.left .bwwm-cart-toggle {
    border-radius: 0 8px 8px 0;
}

.bwwm-cart-toggle .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.bwwm-cart-count {
    background: #ff4757;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    padding: 2px 6px;
    margin-top: 5px;
}

.bwwm-cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex !important;
    flex-direction: column;
}

.bwwm-sticky-cart.left .bwwm-cart-sidebar {
    right: auto;
    left: -350px;
    transition: left 0.3s ease;
}

.bwwm-cart-sidebar.open {
    right: 0;
}

.bwwm-sticky-cart.left .bwwm-cart-sidebar.open {
    left: 0;
}

.bwwm-cart-header {
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.bwwm-cart-header h3 {
    margin: 0;
    font-size: 18px;
}

.bwwm-cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.bwwm-cart-content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.widget_shopping_cart_content .cart_list {
    margin-bottom: 20px;
}