Grand Curved Wingback Bedframe Available With Storage (2024)

1 / of 3

Loading...

£299.99

£549.99

'; tooltipHtml += '

In Total
You’ll Pay

'; if(retailerHasInterestBearingInstalments){ //New changes added(Line-no:173-175) setTimeout(function() { jQuery(".dividebuyTableBody").addClass("dividebuyTableBody-ibc"); }, 1500); tooltipHtml += '

Interest Rate
(Fixed)/APR

'; } tooltipHtml += '

Monthly Payment

'; tooltipHtml += '

'; for(value in instalments){ var month = instalments[value].key; var spendCost = instalments[value].value; var intererstRate = instalments[value].interest_rate / 100; var installments_details = calculateInstalmentAmountsForLoan(productPriceWithoutCurrency,intererstRate,month); if(isNaN(value)){ break; } if(parseFloat(productPriceWithoutCurrency) >= parseFloat(instalments[value].min_value) && parseFloat(productPriceWithoutCurrency) <= parseFloat(instalments[value].max_value)) { tooltipHtml += '

'; tooltipHtml += '

'+month+'

'; tooltipHtml += '

£'+parseFloat(installments_details['totalToPay']).toFixed(2)+'

'; if(retailerHasInterestBearingInstalments){ tooltipHtml += '

'+parseFloat(instalments[value].interest_rate).toFixed(2)+'%

'; } tooltipHtml += '

£'+calcNumber(installments_details['regularMonthlyInstalment'])+'

'; tooltipHtml += '

'; lastActiveInst = parseFloat(installments_details['regularMonthlyInstalment']).toFixed(2); lastActiveInstRate = parseFloat(instalments[value].interest_rate).toFixed(2); } else { // tooltipHtml += '

'; // tooltipHtml += '

Spend a minimum of £'+parseFloat(spendCost).toFixed(2)+' to unlock:

'; // tooltipHtml += '

'+month+' '; // tooltipHtml += 'payments of

'; // tooltipHtml += '

£'+ (instalments[value].value / instalments[value].key).toFixed(2) +'

'; // tooltipHtml += '

'; //New changes added(Line-no:211-224) var shortErrorMessage = parseFloat(productPriceWithoutCurrency) < parseFloat(instalments[value].min_value) ? "

Only available above

£" +parseFloat(instalments[value].min_value).toFixed(2) + "" : "

Only available below

£" + parseFloat(instalments[value].max_value).toFixed(2) + ""; tooltipHtml += '

'; tooltipHtml += '

'+month+'

'; tooltipHtml += '

' + shortErrorMessage + '

'; if(retailerHasInterestBearingInstalments){ tooltipHtml += '

'+parseFloat(instalments[value].interest_rate).toFixed(2)+'%

'; } tooltipHtml += '

£'+calcNumber(installments_details['regularMonthlyInstalment'])+'

'; tooltipHtml += '

'; lastActiveInst = parseFloat(installments_details['regularMonthlyInstalment']).toFixed(2); lastActiveInstRate = parseFloat(instalments[value].interest_rate).toFixed(2); } } tooltipHtml += '

'; jQuery(".dividebuy-tooltip-content").html(tooltipHtml); jQuery("#dividebuy-lowest").html('£'+formatNumber(lastActiveInst)+' p/m, '+lastActiveInstRate+'%'); if(retailerHasInterestBearingInstalments){ jQuery(".dividebuy-representative-text").html(IBC_tooltip_text); } } // number formation for total function formatNumber(num) { return num.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, '$1,') } /** * A helper function to calculate the instalment costs of a given amount over a number of months, * with a defined monthly compound interest rate. * * This calculation is used twice within this function, hence the creation of this helper function. */ function calculateInstalmentAmount(amount, monthlyIR, numberOfMonths, roundingPrecision = 6) { return parseFloat( (amount * monthlyIR) / (1 - Math.pow(1 + monthlyIR, (numberOfMonths * -1))), roundingPrecision ); } function calculateInstalmentAmountsForLoan(loanAmount, interestRate, monthsInAgreement) { if(interestRate == '0') { instalment = loanAmount / monthsInAgreement; return { 'totalAmount' : loanAmount, 'interestRate' : 0, 'monthlyInterestRate' : 0, 'numberOfMonths' : monthsInAgreement, 'firstInstalment' : instalment, 'regularMonthlyInstalment' : instalment, 'totalToPay' : loanAmount, 'totalLoanValue' : loanAmount - instalment, 'interest' : 0, 'effectiveTerm' : monthsInAgreement - 1, } } // Calculate the monthly interest rate monthlyInterestRate = Math.pow((interestRate + 1) , (1 / 12)) - 1; // Establish the initial payment to be made by the customer // This is INTEREST FREE, and MUST be calculated in pence. loanAmountInPence = loanAmount * 100; initialRemainder = fmod(loanAmountInPence, monthsInAgreement); initialRegularInstalment = (loanAmountInPence - initialRemainder) / monthsInAgreement; firstInstalment = (initialRegularInstalment + initialRemainder) / 100; // The loan principle is the amount left after the initial payment has been made. This is the amount that is // actively being loaned, which will require interest loanPrincipal = loanAmount - firstInstalment; // Establish the monthly rate for this new loan principal amount, to be paid across one fewer instalments than // defined, as the first instalment has already been paid. // This is required as we need to calculate interest on the slightly lower amount of the loan principle, not // against the amount of the original order. monthlyInstalment = calculateInstalmentAmount(loanPrincipal, monthlyInterestRate, monthsInAgreement - 1); // Calculate the total to be paid, and the interest that includes totalToPay = (monthlyInstalment * (monthsInAgreement - 1)) + firstInstalment; interestToPay = totalToPay - loanAmount; return { 'totalAmount' : loanAmount, 'interestRate' : interestRate, 'monthlyInterestRate' : monthlyInterestRate, 'numberOfMonths' : monthsInAgreement, 'firstInstalment' : firstInstalment, 'regularMonthlyInstalment' : monthlyInstalment, 'totalToPay' : totalToPay, 'totalLoanValue' : totalToPay - firstInstalment, 'interest' : interestToPay, 'effectiveTerm' : monthsInAgreement - 1, } } function retailerHasInterestBearingInstalment() { var instalments = sortInstalment(unserialize('a:4:{i:0;a:6:{s:3:"key";s:1:"3";s:9:"min_value";s:6:"599.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"599.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:1;a:6:{s:3:"key";s:1:"6";s:9:"min_value";s:6:"600.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"600.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:2;a:6:{s:3:"key";s:1:"9";s:9:"min_value";s:6:"700.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"700.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:3;a:6:{s:3:"key";s:2:"12";s:9:"min_value";s:6:"800.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"800.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}}')); var interestBearingInstalmentFound = false; for (instalment in instalments) { if (instalments[value].is_ibc == '1') { interestBearingInstalmentFound = true; } } return interestBearingInstalmentFound; } function getRepresentativeAprExampleHtml(exampleAmount=2000){ if (! retailerHasInterestBearingInstalment()) { return ""; } // Get the representative APR as a percentage var interest_rate = ''; // var interest_rate = 11; var numberOfMonths = get_maximum_available_instalments(); var repAprExample = calculateInstalmentAmountsForLoan(exampleAmount,interest_rate/100,numberOfMonths); response = "Representative Example:A loan of £"+ parseFloat(exampleAmount).toFixed(2)+ " over "+ numberOfMonths+ " months" + " will cost you £" + parseFloat(repAprExample['regularMonthlyInstalment']).toFixed(2) + " per month " + "at a representative " + parseFloat(interest_rate).toFixed(2) + "% APR." + " The total cost after " + numberOfMonths + " months" + " is £" + parseFloat(repAprExample['totalToPay']).toFixed(2) + ", " + "which includes £" + parseFloat(repAprExample['interest']).toFixed(2) + " interest " + "at " + parseFloat(interest_rate).toFixed(2) + "% fixed and a £0 fee. " + "The total amount of credit is £" + parseFloat(repAprExample['totalLoanValue']).toFixed(2) + "." ; return response; } function get_maximum_available_instalments(){ var instalments = sortInstalment(unserialize('a:4:{i:0;a:6:{s:3:"key";s:1:"3";s:9:"min_value";s:6:"599.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"599.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:1;a:6:{s:3:"key";s:1:"6";s:9:"min_value";s:6:"600.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"600.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:2;a:6:{s:3:"key";s:1:"9";s:9:"min_value";s:6:"700.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"700.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}i:3;a:6:{s:3:"key";s:2:"12";s:9:"min_value";s:6:"800.00";s:9:"max_value";s:7:"6000.00";s:5:"value";s:6:"800.00";s:13:"interest_rate";s:4:"0.00";s:6:"is_ibc";i:0;}}')); var max = 0; instalments.forEach(instalment => { if ((instalment.key > max) && (instalment.is_ibc == '1') ) { max = parseInt(instalment.key); } }); return max; } function convertMonthsToYears(numberOfMonths) { fullYears = Math.floor(numberOfMonths / 12); results = []; if (parseInt(fullYears) !== 0) { results.push(fullYears + " years"); } remainingMonths = numberOfMonths - (fullYears * 12); if (parseInt(remainingMonths) !== 0) { results.push(remainingMonths + " months"); } return results.join(", "); } function sortInstalment(instalments){ return instalments.sort(function (x, y) { return x.key - y.key; }); } function fmod(dividend, divisor){ var multiplier = 0; while(divisor * multiplier < dividend) { ++multiplier; } --multiplier; return dividend - (divisor * multiplier); } function bcdiv(first,second,scale=2){ return parseFloat(first/second).toFixed(2); } function calcNumber(num) { return num.toString().match(/^-?\d+(?:\.\d{0,2})?/)[0]; } });

Fast check - won't affect your credit rating.

Grand Curved Wingback Bedframe Available With Storage (8)

Grand Curved Wingback Bedframe Available With Storage

£299.99

£549.99

View details

Bed Information
Bed Frame Size
BED SIZE FRAME LENGTH HEADBOARD WIDTH FOOTBOARD HEIGHT
3FT 210cm 105cm 30cm
4FT 210cm 135cm 30cm
4FT6 210cm 150cm 30cm
5FT 215cm 165cm 30cm
6FT 215cm 196cm 30cm

Description

The Grand Curve wingback bed is one of the latest trends to hit the market. The distinctive curved headboard design with luxurious deep buttoning helps create a focal point and sense of grandeur in the bedroom.

Note: Measurements for bed are listed under the image. All dimensions provided please allow +/-2cm as handmade.

Additional Information:

  • Headboard in image is 75" high
  • Cushioned to allow maximum comfort
  • Hand crafted in the UK
  • Bed in main image is cream naples (fabric samples are free to order as images may not show a true reflection of the colour supplied/filters can be used, link on top of homepage for fabric samples)

Storage Explained - Please Read Before Purchasing

Divan base with 2 drawers footend

If you are to select a 2 drawer divan as a storage option, you will be sent a 2 drawer footend divan base as per the image shown below.

Grand Curved Wingback Bedframe Available With Storage (9)

Ottoman Divan Gas Lift Storage - Footend Opening

If you are to select a divan ottoman gas lift base as an storage option, you will be sent a ottoman gas lift base shown below. This is two half bases with internal wood storage, almost like a double wardrobe.

Grand Curved Wingback Bedframe Available With Storage (10)

Metal Gas Lift Storage - Slatted Storage Base

The metal gas lift storage is designed by you putting items on the floor when lifting the metal slatted base for storage. If you select the metal gas lift storage you will recieve the mechanism shown below (bed in below image for illustration purposes only).

Grand Curved Wingback Bedframe Available With Storage (11)

Fabric Gallery

Want to view our full range of materials click here

Grand Curved Wingback Bedframe Available With Storage (12)Grand Curved Wingback Bedframe Available With Storage (13)

Grand Curved Wingback Bedframe Available With Storage (14)Grand Curved Wingback Bedframe Available With Storage (15)

The Ultimate Sleeping Experience

Key Features of Wingback Bed

Grand Curved Wingback Bedframe Available With Storage (16)

Timeless Design Aesthetic

Immerse yourself in timeless elegance with the king-size bed frame with storage that seamlessly blends classic design with modern aesthetics. This wingback king size bed frame effortlessly adapts to evolving decor trends while maintaining its regal allure.

Grand Curved Wingback Bedframe Available With Storage (17)

Exceptional Comfort

Indulge in supreme comfort with our wingback king size bed designed for a cozy sleeping experience. This king-size wingback bed with mattress combines style and comfort, ensuring you wake up refreshed and rejuvenated.

Grand Curved Wingback Bedframe Available With Storage (18)

Wingback Headboard

The Wingback Bed, featuring a grand wingback tall headboard, elevates your bedroom's ambiance with a touch of regality. Crafted with precision, this king-size wingback bed frame captures attention and serves as the crowning jewel of your sleep haven.

Grand Curved Wingback Bedframe Available With Storage (19)

Underbed Storage Options

Maximize your space with our Wingback Ottoman Bed. The wingback bed frame with drawers provides a discreet and convenient solution for organizing your bedroom essentials, combining functionality with style.

Grand Curved Wingback Bedframe Available With Storage (20)Grand Curved Wingback Bedframe Available With Storage (21)

  • Grand Curved Wingback Bedframe Available With Storage (22)

    Comprehensive Warranty

    Your investment is safeguarded with the Wingback Bed, offering a comprehensive 1-year warranty. Whether it's a king size wingback bed frame or another size, our commitment to quality extends to cover manufacturing defects, ensuring your peace of mind.

  • Grand Curved Wingback Bedframe Available With Storage (23)

    Fast and Reliable Shipping

    Experience swift and dependable shipping services when you order the Wingback bed with mattress. Our commitment to efficiency ensures that your bed is delivered to you promptly, ready to transform your bedroom into a luxurious retreat.

CUSTOMER RAVES

Indulging in the Wingback Bed was the best decision for my bedroom upgrade. The wingback design adds a touch of regality, and the plush comfort ensures a night of blissful sleep. It's more than a purchase; it's an investment in creating a space that reflects my personal style and comfort preferences. 10/10!

★★★★★

Sophie M.

Sleek lines, modern elegance – the Wingback Bed is a statement piece that effortlessly elevates any room. Assembling it was a breeze, and the quality surpassed my expectations. Definitely a worthwhile investment!

★★★★★

Alex C.

The Wingback Bed is a visual delight! The fabric feels luxurious, and the wingback design creates a cozy nook. It's not just a bed; it's an aesthetic experience. For those seeking a bed that combines aesthetics with reliability, the Wingback Bed is an excellent choice. I'm delighted with my purchase!

★★★★★

Elena R.

The Wingback Bed is more than a bed; it's a focal point in my room. I appreciate its sturdy construction and the enduring appeal of the wingback style. It's a piece that will be cherished for years.

★★★★★

Lindsay K.

Impressed by the Wingback Bed's durability and attention to detail. The craftsmanship is impeccable, and the design stands out. A perfect blend of functionality and artistry. Highly recommended!

★★★★★

Daniel B.

Frequently Asked Questions

What are the available sizes for the Wingback Bed?

The Wingback Bed is available in standard sizes, including single, double, King, and Super King.

What is the upholstery material used for the Wingback Bed?

The Wingback Bed is upholstered in a high-quality fabric that is both soft to the touch and durable.

Is assembly required for the Wingback Bed?

Yes, minimal assembly is required. Easy-to-follow instructions and all necessary hardware are included. We also offer installation with minimal added cost.

Can I customize the color of the upholstery?

Currently, the Wingback Bed is available in a curated selection of colors. Please check our product page for the available options.

What is the warranty period for the Wingback Bed?

The Wingback Bed comes with a 1-year warranty, covering manufacturing defects and craftsmanship issues. Please refer to our warranty policy for more details.

Can I request fabric samples before purchasing the Wingback Bed?

Yes, we offer fabric samples upon request. Click here to request your free samples.

Grand Curved Wingback Bedframe Available With Storage (24)Grand Curved Wingback Bedframe Available With Storage (25)

  • Grand Curved Wingback Bedframe Available With Storage (26)

  • Grand Curved Wingback Bedframe Available With Storage (27)

  • Grand Curved Wingback Bedframe Available With Storage (28)

  • Grand Curved Wingback Bedframe Available With Storage (29)

  • Grand Curved Wingback Bedframe Available With Storage (30)

  • Grand Curved Wingback Bedframe Available With Storage (31)

  • Grand Curved Wingback Bedframe Available With Storage (32)

Grand Curved Wingback Bedframe Available With Storage (2024)
Top Articles
Latest Posts
Article information

Author: Lilliana Bartoletti

Last Updated:

Views: 6153

Rating: 4.2 / 5 (53 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Lilliana Bartoletti

Birthday: 1999-11-18

Address: 58866 Tricia Spurs, North Melvinberg, HI 91346-3774

Phone: +50616620367928

Job: Real-Estate Liaison

Hobby: Graffiti, Astronomy, Handball, Magic, Origami, Fashion, Foreign language learning

Introduction: My name is Lilliana Bartoletti, I am a adventurous, pleasant, shiny, beautiful, handsome, zealous, tasty person who loves writing and wants to share my knowledge and understanding with you.