$105.00 - $170.00

Mink 613 straight

Mink 613 straight

Our luxury Mink 613 Bundles are custom colored from our Mink Brazilian Line

Number of Bundles needed for a full head:
18”-20”- 3 bundles | 20”-26”- 4 bundles | 28” and Up- 5 bundles.

Color: Natural Shades Of Brown. Please leave us a comment if you would like your hair on the darker or lighter shades, But Can Be Dyed Any Color You Prefer

Lengths:18"-30"
Item Type: Hair Extension
Price: The price is for any 1 bundle
Weight: 3.5 Oz per bundle ( 100 grams)
Material: Human Hair
Human hair type: 100% virgin hair
Short Description:
(1) 100% Virgin Brazilian Hair
(2)Can Be Flat Iron, Wash and Blow Dried, and Can be Dyed Any Color You Prefer
(3)Doesn't Shed or Tangle
(4) Last more than 1 year or 2
(5) Pay by Paypal, Debit or Credit Card

Processing Time: 2-3 Business Days

Delivery Time: 2-3 Business Day Express Shipping and 4-6 Business Day Regular Shipping.

Tracking numbers are automatically emailed once hair has been shipped, after 2-3 Business days

// Set your publishable key. Remember to change this to your live publishable key in production! // See your keys here: https://dashboard.stripe.com/apikeys const stripe = Stripe('pk_test_51H5Yw2CmVwWT38OeT8LDDyv1EbFsH0f5VxyFWwmnoKaa4aFn3GoxlTfvpzitHhQJg0JgLcX5w5QwkMYPorA6mqXq00eLwaJO7e'); const elements = stripe.elements(); const options = { amount: 9900, // $99.00 USD currency: 'USD', paymentMethodTypes: ['klarna', 'afterpay_clearpay', 'affirm'], // the country that the end-buyer is in countryCode: 'US', }; const PaymentMessageElement = elements.create('paymentMethodMessaging', options); PaymentMessageElement.mount('#payment-method-messaging-element');
Stripe::Checkout::Session.create({ mode: 'payment', payment_method_types: ['card'], payment_method_types: ['card', 'afterpay_clearpay'], line_items: [{ price_data: { currency: 'usd', product_data: { name: 'T-shirt', }, # Make sure the total amount fits within Afterpay transaction amount limits: # https://stripe.com/docs/payments/afterpay-clearpay#collection-schedule unit_amount: 2000, }, quantity: 1, }], shipping_address_collection: { # Specify which shipping countries Checkout should provide as options for shipping locations allowed_countries: ['AU', 'CA', 'GB', 'NZ', 'US'], }, # If you already have the shipping address, provide it in payment_intent_data: # payment_intent_data: { # shipping: { # name: 'Jenny Rosen', # address: { # line1: '1234 Main Street', # city: 'San Francisco', # state: 'CA', # country: 'US', # postal_code: '94111', # }, # }, # }, success_url: 'https://example.com/success', cancel_url: 'https://example.com/cancel', })