.custom-qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.custom-qty-control button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}
.custom-qty-control .qty-value {
    min-width: 20px;
    text-align: center;
}
.qty-loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.custom-qty-control .qty-minus{
    background-color:#D31920;
}
.custom-qty-control .qty-plus{
    background-color:#D31920;
}
.custom-qty-control-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
