#usc-cart-dropdown {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 20px rgba(0,0,0,0.1);
    z-index: 99999;
    transition: right 0.3s ease;
}

#usc-cart-dropdown.usc-open {
    right: 0;
}

#usc-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
}

.usc-cart-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.usc-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.usc-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.usc-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.usc-item-details {
    flex: 1;
}

.usc-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.usc-item-price {
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 8px;
}

.usc-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.usc-qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 3px;
    cursor: pointer;
}

.usc-remove {
    background: none;
    border: none;
    font-size: 24px;
    color: #ff4444;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usc-remove:hover {
    background: #ff4444;
    color: white;
}

.usc-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.usc-subtotal {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.usc-buttons {
    display: flex;
    gap: 10px;
}

.usc-view-cart, .usc-checkout {
    flex: 1;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.usc-view-cart {
    background: #f0f0f0;
    color: #333;
}

.usc-checkout {
    background: #4CAF50;
    color: white;
}

.usc-count-badge {
    background: #ff4444;
    color: white;
    border-radius: 50%;
    padding: 2px 0;
    position: absolute;
    top: -5px;
    right: -13px;
    font-weight: 600;
    font-size: 12px;
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
}

/* Make sure our cart button is clickable */
.usc-cart-trigger {
    position: relative;
    cursor: pointer;
}