.scorpi-sidecart {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.scorpi-sidecart-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 360px;
    height: 100%;
    background: #fff;
    box-shadow: -6px 0 25px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: .3s ease;
    display: flex;
    flex-direction: column;
}

.scorpi-sidecart-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.scorpi-sidecart-body {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.scorpi-sidecart-footer {
    padding: 16px;
    border-top: 1px solid #eee;
}

.scorpi-btn {
    display: block;
    text-align: center;
    padding: 12px;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 6px;
}

.scorpi-btn-cart {
    background: #f1f1f1;
    color: #333;
}

.scorpi-btn-checkout {
    background: #000;
    color: #fff;
}
