


/* Sidebar styles */
#wpc-cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1000;
}

#wpc-cart-sidebar.open {
    right: 0;
}

.wpc-cart-sidebar-content {
    overflow-y: auto;
    height: 100%;
}

.wpc-cart-sidebar-content h2 {
    margin-top: 0;
}

.sibebar__header {
    padding: 20px;
}

#wpc-cart-items {
    margin-bottom: 20px;
}

.wpc-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.wpc-cart-item img {
    max-width: 50px;
    margin-right: 10px;
}

.wpc-cart-item-info {
    flex-grow: 1;
}

.wpc-cart-item-info h4 {
    margin: 0;
}

.wpc-cart-item-remove {
    color: red;
    cursor: pointer;
}
