tapis laine

Active filters

  • Dimension: 3’9’’ x 5’5’’
  • Dimension: 6' 2.8'' x 8' 10.3''
  • Dimension: 8' 2.42'' x 11' 5.8''
  • Dimension: 5'3 x 7'6
  • Main color: Grey
  • Main color: blue

blue and white wool rug

Handwoven Berber rug in natural wool. Blue chevron pattern on an off-white background. Pure lines, texture, and geometry.

€239

Moroccan rug Taniri

Authentic Moroccan rug in natural wool in ivory color and blue stripes, the rugs are hand woven to order according to the desired dimensions, if the desired dimension is not available via the list, please contact us to prepare an invoice according to your needs.

€115 €229

Berber Rug Tounza

moroccan berber grey rug  ✔ handmade by moroccan waivers ✔ BONUS : FREE Leather ottoman pouf with your wool rug !

€325 €649

Berber Rug Tassaout

Berber beni ouarain rug woven in thick natural wool in ivory tone, with contoured diamond patterns dotted with blue wool. Short fringes on one side.

€115 €229

Grey Rug Zahra

The color and design of the Zahra Berber carpet as well as its authenticity present it as the perfect candidate to bring together a room with Scandinavian decor and make it unique! It is made of a mix of ivory and black wool, which gives a gray effect to this beautiful rug. It is a handcrafted...

€133 €265

Beni Ourain Rug Tarna

Tarna, a cozy blue rug with white diamond shaped stripes; this luxury carpet is made of 100% wool.It is hand knotted following an ancient weaving technique in Morocco, due to this; the fringed finish can only be applied to one side of the rug, which makes it more authentic.

€86 €172

Rug Aghilass

Do you like the ocean blue color ? Then you will love this handmade art work for sure; The Aghilass wool carpet instantly adds elegance and the sense of warmth to your room. It looks pleasant from far and near and it is one rug capable of adding a feeling of coziness to your home. It is designed...

€115 €229

Rug Noumnsa

This is one of the most exquisite Moroccan wool carpets. To create this rug, the waver inspired her design from honeycombs and the result; an amazing rug that will leave you speechless! The dark blue color adds a modern touch to your living space. It is hand knotted to last for long. It is truly...

€670 €1,340

Beni Ourain rug Kabaouen

If you like the original Beni ourains, then one of the best rugs to choose is the Kabaouen rug. This hand-woven piece of art can transform the style of any room and be a wonderful addition to your decor. The rug is comfortable, luxurious, made from 100% wool and is dyed with natural ingredients;...

€115 €229

Grey Moroccan rug

Original Beni Ourain Berber carpet 100% wool hand-woven in Morocco. The rug is woven in 2 colors white and black, a mix that gives you a gray rug with large diamonds. Finished with white wool fringes on one side.

€327 €654
/* * Custom code goes here. * A template should always ship with an empty custom.js */ $(document).ready( function() { / * to make sure the script runs after page load * / $ ('.text-muted').each(function(event){ / * select all divs with the item class * / var max_length = 200 ; / * set the max content length before a read more link will be added * / if ( $(this).html().length > max_length ) { / * check for content length * / var short_content = fixhtml( $(this).html().substr(0,max_length),'less_text'); var long_content = fixhtml($(this).html(),'more_text'); var readmore = btnhtml($( "#readmore" ).val(),'read_more'); var readless = btnhtml($( "#readless" ).val(),'read_less'); $(this).html(""); $(this).append(short_content ); $(this).append( readmore ); $(this).append( long_content); $(this).append( readless ); $(this).find( '.less_text' ).show (); $(this).find( '.read_more' ).show(); $(this).find( '.read_less' ).hide(); $(this).find( '.more_text' ).hide (); $(document).on('click','.read_more',function(event){ / * find the a.read_more element within the new html and bind the following code to it * / event.preventDefault(); / * prevent the a from changing the url * / $(this).hide(); / * hide the read more button * / $(this).parents( '.text-muted' ).find( '.read_less' ).show(); / * show the read less button * / $(this).parents( '.text-muted' ).find( '.more_text' ).show(); / * show the .more_text span * / $(this).parents( '.text-muted' ).find( '.less_text' ).hide(); / * hide the short text span * / }); $(document).on('click','.read_less',function(event){ / * find the a.read_more element within the new html and bind the following code to it * / event.preventDefault(); / * prevent the a from changing the url * / $(this).parents( '.text-muted' ).find( '.read_more' ).show(); / * show the read more button * / $( this ).parents( '.text-muted' ).find( '.read_less' ).hide(); / * hide the read more button * / $( this ).parents( '.text-muted' ).find( '.more_text' ).hide (); / * hide the .more_text span * / $( this ).parents( '.text-muted' ).find( '.less_text' ).show (); / * show the short text span * / }); } }); }); function fixhtml ( html, classname ) { const $div = document.createElement('div'); $div.innerHTML = html; $div.classList.add(classname); console.log($($div)); return ($($div)); } function btnhtml ( html, classname ) { const $a = document.createElement('a'); $a.innerHTML = html; $a.classList.add(classname); return ($($a)); }