/* Cart panel */
.sp-cart-panel {
    position: fixed;
    right: -33%; /* sākuma stāvoklis */
    top: 0;
    width: 32.5%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
    z-index: 9998;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-top: 10px;
}

/* Active panel */
.sp-cart-panel.active {
    right: 0;
}

.sp-cart-toggle {
    position: absolute;
    left: -40px;
    top: 25%;
    transform: translateY(-50%);
    background: green;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
}


.sp-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    margin-top: 10px;
}

.sp-cart-items {
    flex: 1;
    overflow-y: auto;
    margin-top: 15px;
}

.sp-cart-footer {
    margin-top: 15px;
}

.sp-cart-details-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(0, 122, 0, 0.753);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.sp-cart-details-btn:hover {
    background: rgba(0, 122, 0, 0.6);
    text-decoration: none !important;
    color: white;
}

#sp-checkout {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
}
#sp-checkout:hover {
    background: rgba(0, 0, 0, 0.5);
    text-decoration: none !important;
    color: white;
}