.rswptucoc_cart_item {
    position: relative;
}

.rswptucoc_cart_item td {
    padding: 10px;
    vertical-align: middle;
}

.rswptucoc_quantity_wrapper {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rswptucoc_increment,
.rswptucoc_decrement {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
}

.rswptucoc_increment:hover,
.rswptucoc_decrement:hover {
    background: #e0e0e0;
}

.rswptucoc_remove {
    text-decoration: none;
    color: #a00;
    font-size: 16px;
    line-height: 1;
}

.rswptucoc_remove:hover {
    color: #d00;
}

.rswptucoc_loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

@media (max-width: 600px) {
    .rswptucoc_cart_item td {
        display: block;
        text-align: left;
        padding: 5px 10px;
    }
}

.rswptucoc_quantity_wrapper input {
    width: 50px;
    padding: 7px;
    text-align: center;
    height: 30px;
}

.rswptucoc_quantity_wrapper.qty-input button {
    color: #000;
    border: 0;
    box-shadow: none;
    font-size: 16px;
    background: #f1f1f1;
    border-radius: 3px;
    width: 20px;
    height: 30px;
    text-align: center;
    padding: 0;
    line-height: 30px;
}