*Excludes orders under $50. See Terms & Conditions
Beautyrest Classic Meyers Plush Firm King-size Mattress Set
 
Options:
Save for Later
Want to know when you'll get it? Go

What is “Estimated Delivery Date?”

This is an approximate delivery date and is not a guarantee. Delivery estimates are available only for select items to be delivered in the contiguous United States, excluding APO/FPO addresses and PO boxes. Your final shipping cost will be available at checkout.

Club O Rewards
Earn
$54.00 on This Product
Club O Members Earn in Club O dollars on this Product*.
Learn More

Overstock.com MasterCard®

$20 bonus after first use & 0% Intro APR*

Beautyrest Classic Meyers Plush Firm King-size Mattress Set

Overall Rating Rating 4.7  |  6 reviews  |  Write a review
Sale $1,079.99
Compare $1,399.00
Save $319.01 (23%)
Item #: 13054621
    This Beautyrest plush mattress set with firm top offers individually pocketed springs for unsurpassed motion separation, conformability, and durability. Get a great night's sleep and wake up rejuvenated with this luxurious mattress and boxspring set....more

People Who Viewed This Viewed

Sponsored Links What's This?
    We call it BeautyFeel; the unique comfort that comes from Beautyrest Super Pocketed Coil springs, performance foams and luxurious fabrics all working together. This Beautyrest mattress offers individually pocketed springs for unsurpassed motion separation, conformability and durability.

    • Set includes: Mattress, foundation (box spring)
    • Construction: Plush firm tight top
    • Support: Medium, plush firm (approximately a 6 on a scale of 1 to 10)
    • Materials: 1046 density 13.75 gauge pocketed coil springs, CertiPUR-US Foam Comfort Layers
    • Total Surround BeautyEdge Foam Encasement for maximized sleeping surface and sleeping comfort right to the edge
    • Luxurious BeautyStyle stretch knit fabrics and aesthetics
    • CertiPUR-US comes with comfort and confidence

    Dimensions

    • Mattress set: 22 inches high x 76 inches wide x 79.5 inches long
    • Mattress: 13 inches high x 76 inches wide x 79.5 inches long
    • Foundations: 9 inches high x 38 inches wide x 79.5 inches long

    Additional product details

    White glove home deliveries require a 4-hour window to complete delivery; this includes delivery of the mattress, set-up in the room of your choice, removal of all packaging and debris and removal of your old mattress upon request. Please note that there is no surcharge for additional flights of stairs. You will be contacted by the home delivery agent when the product is ready for delivery (typically 1 to 3 weeks), we recommend requesting product removal at the same time you schedule your home delivery appointment

    Photo is for illustration purposes only. Please note: Mattress sets are non-returnable upon signature at delivery.

    '); this.insertAttributeContainer($container); this.$attributesContainer = $container; }, insertAttributeContainer: function($container){ if(typeof options.insertAttributeContainer === 'function'){ options.insertAttributeContainer($container); } else { jQuery('#details_descMisc').after( $container ); } }, //saves the data and triggers the render fn() if the data is not empty setAttributeList: function(json){ var rowLimit = (!isOpen && options.initialVisibileAttributes) ? options.initialVisibileAttributes : 0; // Verify the returned JSON has some data. if(!jQuery.isEmptyObject(json)){ attributeList = json; this.renderFull(rowLimit); } }, fetchJsonFeatObject: function(lang, callback){ var _this = this; jQuery.ajax({ url: '/jsonAttributeTranslation.html?productId=' + os.Simplicity.productId + '&languageCode=' + lang, dataType: 'json', success: function(data) { if(typeof callback === 'function'){ callback( data ); } } }); }, sortLanguages: function(langs, sortArr){ //TODO: clean this method up var languageList = langs.languageList || []; var notInSortList = []; var sort = sortArr; var item; var sortedIndex; var sortedResult; if(typeof options.sortLanguages === 'function'){ return options.sortLanguages( langs ); } else if( !sortArr || !sortArr.length ){ return langs.languageList; } else { sortedResult = new Array(sort.length); for(var i=0, l=languageList.length; i -1){ sortedResult[sortedIndex] = item; } else { notInSortList.push(item); } } return sortedResult.concat(notInSortList); } }, renderFull: function(limit){ var _this = this; var prod_attr_list = attributeList; var insertAttributeMarkup = options.insertAttributeMarkup; var markup = this.getFullMarkup(prod_attr_list, limit, sortedLanguageDropdownJSON); if (markup.length) { this.$attributesContainer.html(markup); this.afterRenderFull(); } }, getFullMarkup: function(prod_attr_list, limit, prod_attr_dropdown){ //TODO: doT or handlebars template var rowCount = this.getRowCount( prod_attr_list.attributes ); var attributesToShow = ( limit !== undefined ) ? limit : options.initialVisibileAttributes; var attributeListMarkup = this.buildAttributeList( prod_attr_list.attributes, parseInt(attributesToShow) ); var buildToggle = (toggleVisibleAttributes === true && rowCount > options.initialVisibileAttributes ); if( attributeListMarkup.length ){ // Create full table using otag. return this.buildTable(prod_attr_dropdown, prod_attr_list, attributeListMarkup, buildToggle); } //if there are no attributes there is nothing to return return false; }, getRowCount: function(attributes){ var rowCount = 0; for(var index in attributes) { rowCount++; } return rowCount; }, buildToggle: function(){ if(isOpen === true){ return '
    Less
    '; } else { return '
    More
    '; } }, buildAttributeList: function(attributes, rowLimit){ //TODO: doT or handlebars template var markup = '
      '; var rowCount = 0; //normalize limit - if(rowLimit === NaN || rowLimit < 0){ rowLimit = 0; } // LOOP OVER THE OBJECT, WRITE LI ROWS FOR EACH AND THE DIV FOR THE LABEL. for(var index in attributes) { markup += '
    • '+ index +'
      '; // LOOP OVER THE VALUES, WRITE ALL VALUES INTO A SINGLE DIV. for(var i=0; i=1) { markup += ', '; } markup += attributes[index][i]; } // CLOSE THE DIV AND LI OPENED EARLIER. markup += '
    • '; // 0 or below is the same as no limit if(rowLimit > 0 && rowCount+1 === rowLimit){ break; } rowCount++; } markup += '
    '; return (rowCount) ? markup : ''; }, buildTable: function(languageList, attributeJson, attributeMarkup, buildToggle){ //TODO: doT or handlebars template // Create dropdown table using otag. var activeItem =''; var table_markup = ''; var languageItem; attributeMarkup = attributeMarkup || ''; table_markup += '

    ' + attributeJson.title + '

    ' if (languageList && languageList.length > 0){ table_markup += ''; if (attributeJson.tooltip != ""){ table_markup += '' } } table_markup += '
    '; //insert attribute markup - typically a ul table_markup += attributeMarkup; // LOOP COMPLETE - CLOSE THE UL AND WRITE THE RESULTS TO THE DOM. table_markup += '
    '; if(buildToggle === true){ table_markup += this.buildToggle(); } return table_markup; }, //use this to run plugins now that the markup is in the dom afterRenderFull: function(){ var _this = this; jQuery('#prodDescTab').addClass('hasAttributes'); this.attrRunToolTip(); jQuery('#attr-dropdown-select').on('change', function(){ _this.fetchJsonFeatObject(this.value, function(data){ _this.handleLanguageChange(data) }); }); jQuery('.attr-toggle').on('click', function(){ _this.toggleAttributes(); }); }, handleLanguageChange: function(json){ this.setAttributeList(json); s.linkTrackVars = "eVar34"; s.eVar34 = json.languageCode + '-' + os.Simplicity.productId; s.tl(this,'o','Translate Selected'); }, toggleAttributes: function(){ if(isOpen === true){ isOpen = false; this.renderFull(options.initialVisibileAttributes); } else { isOpen = true; this.renderFull(0); //0 shows ALL attributes } }, attrRunToolTip: function(){ os.ToolTips('.attr-icon-trigger', { offset: {x: 1,y: 2}, toolTipContent: function() { var _this = this, defaultMsg = 'Key product features have been translated for your convenience.', data = _this[0].attributes['data-tt-msg'], code = _this[0].attributes['data-tt-code'], msg = (data && data.value != 'undefined') ? data.value : defaultMsg, arCode = (code.value != 'ar') ? 'style="text-align:left"' : 'style="text-align:right"', $tt = jQuery('
    ' + msg + '
    '); return $tt; } }); } }.init(); }; jQuery(document).ready(function(){ // BEGIN ELEMENT: PP_01_ATTR_A os.ProductFeatures({ langDropdownJSON: eval({"languageList":[{"code":"es","name":"Spanish","nativeName":"Español"},{"code":"zh","name":"Chinese","nativeName":"简体中文"},{"code":"ja","name":"Japanese","nativeName":"日本語"},{"code":"fr","name":"French","nativeName":"Français"},{"code":"de","name":"German","nativeName":"Deutsch"},{"code":"ar","name":"Arabic","nativeName":"عربي"},{"code":"pt","name":"Portuguese","nativeName":"Português"},{"code":"en","name":"English","nativeName":"English"}]}), attributeJSON: eval({"attributes":{"Type":["Mattresses"],"Bed Size":["King"],"Mattress Type":["Pocketed Coil Spring"],"Thickness":["12 Inch","13 Inch"],"Comfort Level":["Medium"],"Density":["Over 5 Pound"],"Support":["Plush"],"Mattress Core Construction":["Innerspring"],"Mattress Top":["Tight Top"],"Recommended Foundation Type":["Other"]},"errorMessage":"","languageCode":"en","title":"Features","tooltip":"We're working on getting the whole site translated for you, but in the meantime, key product features have been translated for your convenience.","tooltipUrl":"attr_trans_q_icon.png"}), langSort: ['en','es','fr','pt','de','zh','ja','ar'] }); });
    Was this product information helpful?
    Yes No
    Thank you for your feedback.
     
     
     
    Thank you. Your feedback will help us create the best experience for our customers.

Showing most helpful review on this product.

  • 5 Stars 5
  • 4 Stars 0
  • 3 Stars 1
  • 2 Stars 0
  • 1 Stars 0

Overall Rating: 4.7

Most Helpful Reviews

  • very satisfied

    My husband and I had our old bed for 16 years, finally bought this bed and am very pleased with the product. My husband works different hours then me and I don't wake up when he gets out of bed. Plenty of room for us and our lab. Would recommend this product worth every penny spent. Received within 1 week of ordering, drivers put bed up and took old mattresses with them.

View All Most Helpful Reviews

Most Recent Reviews

  • Positive review.

    My husband and purchased this mattress last April. My back couldn't be happier. No more back pain. Mattress is firm without being hard. Good night sleep for both of us. It was shipped in a timely manner. The gentleman who brought the new mattress took the old one away. One less thing for me to do. Thanks Overstock.

    • How did the color on site compare with the actual product? exact
    • Please tell us about the quality of the product. excellent
    • How accurate was the on site description of the product? exact
    Flag

    lalathe1st from Tallahssee, Fla,

  • Extremely Happy

    Knowing that you can't compare mattresses by name I visited 3 mattress stores and continued to find the plush firm most comfortable for me, regardless of the manufacturer. I then looked on Overstock, found this mattress, and saved almost $600. I have fibromyalgia and this is my third bed in 1 1/2 years. Finally, I am getting some of the most restfull sleep I have had in years.

    • How did the color on site compare with the actual product? Almost identical to picture
    • Please tell us about the quality of the product. Excellent quality
    • How accurate was the on site description of the product? Extremely accurate
    Flag

    vagirl47 from Virginia,

  • Great mattress for a discount price

    my husband has lower back issues and this mattress is just firm enough to support his back so he can sleep without waking up in pain. The top plush layer is great, it provides just enough cushion that you don't feel like you lying on a flat, hard board. It is individually coiled so it minimizes sagging and although we have only had it a little over a month and there is no evidence of sagging at all. Our last mattress sagged after two weeks.

    • How accurate was the on site description of the product? very
    Flag

    jlh77 from Milford, Delaware,

  • Great Mattress

    This felt like taking a huge risk when we bought a mattress offline. We were pleasantly surprised. This is a fantastic mattress, you cannot beat the price of it as you would pay at least $1000 in a furniture store for something comparable. Both my husband and I are sleeping great after 2 weeks. No complaints, great quality and wonderful service with the oversize delivery.

    Flag

    srn45 from Michigan,

  • not as happy

    Not as happy as I thought I would be-the mattress is not the same comfort throughout-example lumpy.

    Flag

    brookebingamon from Cincinnati,oh,

View All Most Recent Reviews

Product Q&A

Ask a Question

Be the first to ask a question about this product.
Shipping:

Standard (5-10 Business Days) *

1-4 week delivery after the item ships:**

Delivered by freight carrier. See Oversized Item Delivery Policy.

Mattress Return Policy:

Mattress Sets are non-returnable upon signature at delivery. Mattresses are non-returnable if opened or taken out of their plastic wrapping.
More details

NOTE:

This item cannot be shipped to Alaska or Hawaii.
More details

Oversized Item Delivery Policy:

This item will be shipped via freight carrier to your home, excluding rural routes, remote areas not in close proximity to areas commonly serviced by freight carriers, islands, APO/FPO addresses, P.O. Boxes, Alaska and Hawaii. Please provide your daytime and evening phone numbers during check out so our carrier can contact you to schedule delivery. Refer to our Oversized Item Delivery Policy for additional information.
More details

* For your safety, some orders go through our loss prevention department. If we select your order for this process, we will immediately notify you that there may be up to a 3-day delay on your order.

** Most Oversize orders are delivered within 1-4 weeks. Some orders may take 6 weeks to be delivered.