.builder-product-quantity{
    margin-bottom: 30px;
}
.builder-product-quantity.style-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.style-minimal .qty-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 6px;
}

.style-minimal .qty-down,
.style-minimal .qty-up {
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.builder-product-quantity.style-modern {
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-modern .qty-input {
    width: 70px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #007bff;
    font-size: 16px;
}

.style-modern .qty-down,
.style-modern .qty-up {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    cursor: pointer;
}

.builder-product-quantity.style-premium {
    display: flex;
    align-items: center;
    gap: 12px;
}

.style-premium .qty-input {
    width: 65px;
    text-align: center;
    border: 1px solid #d4af37;
    border-radius: 6px;
    padding: 6px;
    font-family: 'Georgia', serif;
}

.style-premium .qty-down,
.style-premium .qty-up {
    background: #d4af37;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 40px;
    height: 40px;
    font-weight: bold;
    cursor: pointer;
}

.builder-product-quantity.style-compact {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    max-width: max-content;
}

.style-compact .qty-input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 6px;
}

.style-compact .qty-down,
.style-compact .qty-up {
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
}