/* Side Cart Quantity Selector */
.xoo-wsc-qty-selector-wrapper {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .leftSide {
    flex: 0 0 auto;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .leftSide label.qntLabel {
    font-weight: 700;
    font-size: 14px;
    line-height: 14px;
    margin: 0;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .rightSide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .rightSide .qty-button {
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    padding: 5px 10px;
    background: transparent;
    color: #1a2433;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 32px;
    text-align: center;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .rightSide .qty-button:hover {
    background: #f5f5f5;
    border-color: #EC008C;
    color: #EC008C;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .rightSide .qty-input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    background: #fff;
}

.xoo-wsc-qty-selector-wrapper .custom-quantity-wrapper .rightSide .qty-input:focus {
    outline: none;
    border-color: #EC008C;
    box-shadow: 0 0 0 2px rgba(236, 0, 140, 0.1);
}

/* Remove number input spinner arrows */
.xoo-wsc-qty-selector-wrapper .qty-input::-webkit-outer-spin-button,
.xoo-wsc-qty-selector-wrapper .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.xoo-wsc-qty-selector-wrapper .qty-input[type=number] {
    -moz-appearance: textfield;
}

/* Price and subtotal update transitions */
.xoo-wsc-pprice,
.xoo-wsc-smr-ptotal {
    transition: all 0.3s ease;
}

.xoo-wsc-pprice.updating,
.xoo-wsc-smr-ptotal.updating {
    opacity: 0.6;
    transform: scale(0.95);
}

/* Cart footer totals smooth update */
.xoo-wsc-ft-totals {
    transition: all 0.3s ease;
}

.xoo-wsc-ft-amt-value {
    transition: all 0.3s ease;
}

