/* Side Cart Drawer Styles */
.skilltest-side-cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 99998;
}
.skilltest-side-cart-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.skilltest-side-cart {
    position: fixed;
    top: 0; right: -400px;
    width: 400px; max-width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 99999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}
.skilltest-side-cart.is-open {
    right: 0;
}

.skilltest-side-cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.skilltest-side-cart-header h2 { margin: 0; font-size: 1.5rem; }
.skilltest-side-cart-close {
    background: none; border: none; font-size: 2rem; cursor: pointer; line-height: 1;
}

.skilltest-side-cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}
.skilltest-side-cart-content.is-loading::after {
    content: "";
    position: absolute; top:0; left:0; right:0; bottom:0;
    background: rgba(255,255,255,0.7);
    z-index: 10;
}

.skilltest-drawer-progress {
    background: #e0f2fe; color: #0369a1;
    padding: 10px; border-radius: 4px; margin-bottom: 20px; text-align: center; font-size: 0.9rem;
}

.skilltest-drawer-items { list-style: none; margin: 0; padding: 0; }
.skilltest-drawer-item { border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 15px; }
.skilltest-drawer-item-name { font-weight: bold; margin-bottom: 5px; }
.skilltest-drawer-qty-controls { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.skilltest-qty-btn { background: #eee; border: none; padding: 5px 10px; cursor: pointer; border-radius: 3px; }
.skilltest-drawer-remove { background: none; border: none; color: #b81c23; text-decoration: underline; cursor: pointer; padding: 0; font-size: 0.85rem; }

.skilltest-drawer-totals { font-size: 1.2rem; text-align: right; margin-bottom: 20px; }

.skilltest-btn {
    display: block; width: 100%; padding: 15px; text-align: center;
    background: #2563eb; color: #fff; text-decoration: none; font-weight: bold; border-radius: 4px;
}
.skilltest-btn:hover { background: #1d4ed8; }

/* Trigger Button */
.skilltest-cart-trigger {
    position: fixed; bottom: 20px; right: 20px;
    background: #111; color: #fff; border: none;
    padding: 15px 20px; border-radius: 30px; font-size: 1.2rem;
    cursor: pointer; z-index: 99990; box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}