www.mytheresa.com Open in urlscan Pro
2a02:26f0:6c00:29f::1176  Public Scan

Submitted URL: https://emm.mytheresa.com/u/nrd.php?p=eXsVhpsybe_133364_4427044_1_39&ems_l=4662921&i=1&d=OA%3D%3D%7CVEdU%7CMDQ%3D%7CMTIzMD...
Effective URL: https://www.mytheresa.com/en-fr/designers/prada.html?utm_source=EML&utm_medium=ww_16_210421_designer&utm_campaign=p8&eh=7d...
Submission: On September 02 via api from BE

Form analysis 5 forms found in the DOM

POST https://www.mytheresa.com/en-fr/customer/account/loginPost/

<form action="https://www.mytheresa.com/en-fr/customer/account/loginPost/" method="post" id="login-form-popup">
  <input name="form_key" type="hidden" value="ikNsFu2PHH00J5IP">
  <div class="fieldset">
    <div id="customer_flyout_login_input">
      <ul class="form-list">
        <li>
          <div class="input-box">
            <input dir="auto" name="login[username]" value="" id="email" type="email" class="input-text required-entry validate-email validate-latin-only" title="Your E-Mail" placeholder="Your E-Mail">
          </div>
        </li>
        <li>
          <div class="input-box">
            <input name="login[password]" type="password" class="input-text required-entry validate-password" id="pass" title="Password" placeholder="Password">
          </div>
        </li>
      </ul>
      <div class="buttons-set form-buttons btn-only">
        <button type="submit" class="button" name="send" id="send2"><span><span>login</span></span></button>
      </div>
    </div>
    <div id="customer_flyout_login_info">
      <p>If you have an account with us, log in using your email address and password.</p>
      <p class="forgot-pw"><a href="https://www.mytheresa.com/en-fr/customer/account/forgotpassword/">Did you forget your password?</a></p>
      <div class="new-users">
        <div class="buttons-set">
          <button type="button" class="button" onclick="window.location='https://www.mytheresa.com/en-fr/customer/account/login/';"><span><span>create an account</span></span></button>
        </div>
      </div>
    </div>
  </div>
  <div class="amasty_recaptcha"></div><input type="hidden" name="amasty_invisible_token" value="">
</form>

GET https://www.mytheresa.com/en-fr/catalogsearch/result/

<form id="search_mini_form_top_mobile" action="https://www.mytheresa.com/en-fr/catalogsearch/result/" method="get">
  <div class="form-search">
    <label for="search_top_mobile"><span class="icon icon-search">Search</span></label>
    <input id="search_top_mobile" type="text" name="q" placeholder="" value="" class="input-text ff-basic-autocomplete" autocomplete="off">
    <input type="hidden" name="mytrs" value="1">
    <input type="hidden" name="departmentgroup" value="WOMENSWEAR" id="search_top_mobile_department">
    <div id="search_autocomplete_top_mobile" class="search_autocomplete_top_mobile advanced-suggest" style="display: none; height: 1065px;"></div>
    <script type="text/javascript">
      //<![CDATA[
      var loadDataCallback = function(data) {
        data = sortResults(data);
        var suggestData = {};
        suggestData['productName'] = '';
        suggestData['searchTerm'] = '';
        suggestData['brand'] = '';
        suggestData['category'] = '';
        suggestData['noProducts'] = (!data.hasOwnProperty('productName')) ? ' no-products' : '';
        // Products
        var productTemplate = new Template('<li class="selectable-item" rel="#{attributes.deeplink}">' + '<div class="product-thumb"><img src="#{image}" title="#{title}" /></div>' + '<div class="product-details">' +
          '<span class="designer-name">#{attributes.designer}</span>' + '<span class="product-name">#{name}</span>' + '<span class="product-price #{attributes.extra_class}">#{attributes.price_formatted}</span>' +
          '<span class="product-price product-special-price">#{attributes.special_price_formatted}</span>' + '</div></li>');
        if (data.hasOwnProperty('productName')) {
          suggestData['productName'] = '<div class="suggestions product-suggestions overlay-col"><h2>Products</h2><ul>';
          for (var i = 0; i < data['productName'].length; i++) {
            suggestData['productName'] += productTemplate.evaluate(data['productName'][i]);
          }
          suggestData['productName'] += '</ul></div>';
        }
        var rowTemplate = new Template('<li class="selectable-item #{type}" title="#{title}">#{name} <span class="amount">(#{hitCount})</span></li>');
        var sections = {};
        sections['searchTerm'] = 'Suggestions';
        sections['brand'] = 'Designers';
        sections['category'] = 'Categories';
        var lastSection = '';
        for (var section in sections) {
          if (data.hasOwnProperty(section)) {
            lastSection = section;
          }
        }
        for (var section in sections) {
          if (data.hasOwnProperty(section)) {
            suggestData[section] = '<div class="suggestions ' + section + '-suggestions';
            if (section == lastSection) {
              suggestData[section] += ' last-section';
            }
            suggestData[section] += '"><h2>' + sections[section] + '</h2><ul>';
            data[section].each(function(item) {
              suggestData[section] += rowTemplate.evaluate(item);
            });
            suggestData[section] += '</ul></div>';
          }
        }

        function sortResults(data) {
          var results = {};
          var currentInput = $F('search');
          for (var i = 0; i < data.length; i++) {
            var item = data[i],
              attributes = item.attributes;
            item.title = item.name;
            //prepend baseUrl to image
            if (attributes.hasOwnProperty('image')) {
              attributes.image = 'https://www.mytheresa.com' + attributes.image;
            }
            //alter deeplink by prepending baseLink and appending tracking parameters
            if (attributes.hasOwnProperty('deeplink')) {
              attributes.deeplink = 'https://www.mytheresa.com/en-fr' + attributes.deeplink + '?q=' + encodeURI(attributes.sku) + '&queryFromSuggest=true' + '&userInput=' + encodeURI(currentInput);
            }
            //add CSS class if item has a special price
            if (attributes.hasOwnProperty('special_price_formatted') && attributes.special_price_formatted != '') {
              attributes.extra_class = 'has-special-price';
            }
            //special handling for items of type searchTerm
            if (item.type == 'searchTerm') {
              item.name = item.name.replace(new RegExp(currentInput, 'gi'), function(t) {
                return '<span class="search-term">' + t + '</span>'
              });
            }
            //push item onto results
            if (!results.hasOwnProperty(item.type)) {
              results[item.type] = [];
            }
            results[item.type].push(item);
          }
          return results;
        }
        var suggestTemplate = new Template('<div class="suggest-wrapper#{noProducts}"><div class="further-suggestions overlay-col">#{searchTerm}#{brand}#{category}</div>#{productName}<div class="markuparrow-suggest"></div></div>');
        return suggestTemplate.evaluate(suggestData);
      };
      jQuery(document).on('app-modules-init-end', function() {
        var isDepartmentEnabled = typeof window.isDepartmentEnable !== 'undefined' && window.isDepartmentEnable;
        var activeDepartment = (typeof window.activeDepartment !== 'undefined') ? window.activeDepartment : false;
        if ((typeof window.app !== 'undefined') && (typeof window.app.genderCookie !== 'undefined') && (typeof window.app.app !== 'undefined')) {
          if (!window.app.app.isHome()) {
            activeDepartment = window.app.genderCookie.get();
          }
        }
        if (isDepartmentEnabled && !activeDepartment) {
          var elementsToHide = ['header_search_wrapper_desktop', 'header_search_icon', 'search_mini_form_top_mobile', ];
          elementsToHide.forEach(function($el) {
            var searchForm = document.getElementById($el);
            if (searchForm) {
              searchForm.style.display = 'none';
            }
          });
        }
        if (isDepartmentEnabled && !!activeDepartment) {
          document.getElementById('search_top_mobile_department').value = activeDepartment;
        }
        if (typeof FactFinderSuggest !== 'undefined') {
          var searchForm = new FactFinderSuggest('search_mini_form_top_mobile', 'search_top_mobile', 'Search for...', loadDataCallback);
          var autocompleteParameters = 'store_code=fr_en';
          if (isDepartmentEnabled && activeDepartment) {
            autocompleteParameters += '&departmentgroup=' + activeDepartment;
          }
          searchForm.initAutocomplete('https://www.mytheresa.com/ffsuggest.php', 'search_autocomplete_top_mobile', autocompleteParameters);
        }
      });
      //]]>
    </script>
    <div class="button clear-btn"><span><span id="clear_search_term_btn_top_mobile" class="icon icon-x"></span></span></div>
    <button type="submit" title="Search" class="button">
      <span><span id="search_callout_top_mobile" class="icon icon-search"></span></span>
    </button>
  </div>
</form>

GET https://www.mytheresa.com/en-fr/catalogsearch/result/

<form id="search_mini_form" action="https://www.mytheresa.com/en-fr/catalogsearch/result/" method="get">
  <div class="form-search">
    <label for="search"><span class="icon icon-search">Search</span></label>
    <input id="search" type="text" name="q" placeholder="Search for..." value="" class="input-text ff-basic-autocomplete" autocomplete="off">
    <input type="hidden" name="mytrs" value="1">
    <input type="hidden" name="departmentgroup" value="WOMENSWEAR" id="search_department">
    <div id="search_autocomplete" class="search_autocomplete advanced-suggest" style="display: none;"></div>
    <script type="text/javascript">
      //<![CDATA[
      var loadDataCallback = function(data) {
        data = sortResults(data);
        var suggestData = {};
        suggestData['productName'] = '';
        suggestData['searchTerm'] = '';
        suggestData['brand'] = '';
        suggestData['category'] = '';
        suggestData['noProducts'] = (!data.hasOwnProperty('productName')) ? ' no-products' : '';
        // Products
        var productTemplate = new Template('<li class="selectable-item" rel="#{attributes.deeplink}">' + '<div class="product-thumb"><img src="#{image}" title="#{title}" /></div>' + '<div class="product-details">' +
          '<span class="designer-name">#{attributes.designer}</span>' + '<span class="product-name">#{name}</span>' + '<span class="product-price #{attributes.extra_class}">#{attributes.price_formatted}</span>' +
          '<span class="product-price product-special-price">#{attributes.special_price_formatted}</span>' + '</div></li>');
        if (data.hasOwnProperty('productName')) {
          suggestData['productName'] = '<div class="suggestions product-suggestions overlay-col"><h2>Products</h2><ul>';
          for (var i = 0; i < data['productName'].length; i++) {
            suggestData['productName'] += productTemplate.evaluate(data['productName'][i]);
          }
          suggestData['productName'] += '</ul></div>';
        }
        var rowTemplate = new Template('<li class="selectable-item #{type}" title="#{title}">#{name} <span class="amount">(#{hitCount})</span></li>');
        var sections = {};
        sections['searchTerm'] = 'Suggestions';
        sections['brand'] = 'Designers';
        sections['category'] = 'Categories';
        var lastSection = '';
        for (var section in sections) {
          if (data.hasOwnProperty(section)) {
            lastSection = section;
          }
        }
        for (var section in sections) {
          if (data.hasOwnProperty(section)) {
            suggestData[section] = '<div class="suggestions ' + section + '-suggestions';
            if (section == lastSection) {
              suggestData[section] += ' last-section';
            }
            suggestData[section] += '"><h2>' + sections[section] + '</h2><ul>';
            data[section].each(function(item) {
              suggestData[section] += rowTemplate.evaluate(item);
            });
            suggestData[section] += '</ul></div>';
          }
        }

        function sortResults(data) {
          var results = {};
          var currentInput = $F('search');
          for (var i = 0; i < data.length; i++) {
            var item = data[i],
              attributes = item.attributes;
            item.title = item.name;
            //prepend baseUrl to image
            if (attributes.hasOwnProperty('image')) {
              attributes.image = 'https://www.mytheresa.com' + attributes.image;
            }
            //alter deeplink by prepending baseLink and appending tracking parameters
            if (attributes.hasOwnProperty('deeplink')) {
              attributes.deeplink = 'https://www.mytheresa.com/en-fr' + attributes.deeplink + '?q=' + encodeURI(attributes.sku) + '&queryFromSuggest=true' + '&userInput=' + encodeURI(currentInput);
            }
            //add CSS class if item has a special price
            if (attributes.hasOwnProperty('special_price_formatted') && attributes.special_price_formatted != '') {
              attributes.extra_class = 'has-special-price';
            }
            //special handling for items of type searchTerm
            if (item.type == 'searchTerm') {
              item.name = item.name.replace(new RegExp(currentInput, 'gi'), function(t) {
                return '<span class="search-term">' + t + '</span>'
              });
            }
            //push item onto results
            if (!results.hasOwnProperty(item.type)) {
              results[item.type] = [];
            }
            results[item.type].push(item);
          }
          return results;
        }
        var suggestTemplate = new Template('<div class="suggest-wrapper#{noProducts}"><div class="further-suggestions overlay-col">#{searchTerm}#{brand}#{category}</div>#{productName}<div class="markuparrow-suggest"></div></div>');
        return suggestTemplate.evaluate(suggestData);
      };
      jQuery(document).on('app-modules-init-end', function() {
        var isDepartmentEnabled = typeof window.isDepartmentEnable !== 'undefined' && window.isDepartmentEnable;
        var activeDepartment = (typeof window.activeDepartment !== 'undefined') ? window.activeDepartment : false;
        if ((typeof window.app !== 'undefined') && (typeof window.app.genderCookie !== 'undefined') && (typeof window.app.app !== 'undefined')) {
          if (!window.app.app.isHome()) {
            activeDepartment = window.app.genderCookie.get();
          }
        }
        if (isDepartmentEnabled && !activeDepartment) {
          var elementsToHide = ['header_search_wrapper_desktop', 'header_search_icon', 'search_mini_form', ];
          elementsToHide.forEach(function($el) {
            var searchForm = document.getElementById($el);
            if (searchForm) {
              searchForm.style.display = 'none';
            }
          });
        }
        if (isDepartmentEnabled && !!activeDepartment) {
          document.getElementById('search_department').value = activeDepartment;
        }
        if (typeof FactFinderSuggest !== 'undefined') {
          var searchForm = new FactFinderSuggest('search_mini_form', 'search', 'Search for...', loadDataCallback);
          var autocompleteParameters = 'store_code=fr_en';
          if (isDepartmentEnabled && activeDepartment) {
            autocompleteParameters += '&departmentgroup=' + activeDepartment;
          }
          searchForm.initAutocomplete('https://www.mytheresa.com/ffsuggest.php', 'search_autocomplete', autocompleteParameters);
        }
      });
      //]]>
    </script>
    <div class="button clear-btn"><span><span id="clear_search_term_btn" class="icon icon-x"></span></span></div>
    <button type="submit" title="Search" class="button">
      <span><span id="search_callout" class="icon icon-search"></span></span>
    </button>
  </div>
</form>

POST https://www.mytheresa.com/en-fr/emarsys/index/index/nlp/0/

<form action="https://www.mytheresa.com/en-fr/emarsys/index/index/nlp/0/" method="post" id="newsletter-validate-detail">
  <div class="form-subscribe">
    <div class="field-row">
      <label for="newsletter">Sign up for our newsletter:</label>
      <input dir="auto" name="email" type="email" id="newsletter" value="" placeholder="your email address here…" class="input-text required-entry validate-email validate-latin-only">
      <button type="submit" disabled="disabled" style="background-color : #efeeea; color: grey">sign up</button>
    </div>
  </div>
</form>

<form id="wishlist-add-to-cart-form">
  <input name="form_key" type="hidden" value="hrSmZYvjO6WiSCVf">
  <input type="hidden" name="super_attribute[142]" id="wishlist-addto-option" value="">
  <input type="hidden" name="product" id="wishlist-addto-product" value="">
</form>

Text Content

JavaScript seems to be disabled in your browser.
You must have JavaScript enabled in your browser to utilize the functionality of
this website.

We use our own and third-party cookies to offer you the best possible service.
By continuing to browse on mytheresa.com or clicking on "OK", you consent to the
use of cookies.

OK

   
 * Women
 * Men
 * Kids
   

 * France | English
 * My wishlist
 * My account
   
   
   WELCOME!
   
    * 
    * 
   
   login
   
   If you have an account with us, log in using your email address and password.
   
   Did you forget your password?
   
   create an account
   
 * Signup for Newsletter

Menu


Shopping bag 0


YOUR SHOPPING BAG





 1.  New Arrivals
      * Shop by category
      * View All
      * Current week
        * View All
        * Thursday
        * Wednesday
        * Tuesday
        * Monday
        * Friday
      * Previous weeks
      * Loungewear
      * Essentials
      * Outerwear
      * Gifts
      * Runway Edit
      * Soon to be gone
      * Vacation Shop
      * Evening
      * Wedding guest
      * Bridal
      * Workwear
     
      * JUST IN
      * This week
      * Previous weeks
      * Clothing
      * Shoes
      * Bags
      * Accessories
     
      * DISCOVER
      * Exclusives
      * Loungewear
      * Essentials
      * New designers
      * Outerwear
      * Workwear
      * Runway styles
      * Soon to be gone
      * Vacation Shop
      * Evening
      * Wedding guest
      * Bridal
      * Gifts
      * Stories
      * Videos
     
     
      * COPERNI
        
        
        NEW ARRIVALS
        
        SHOP NOW

 2.  Designers
      * Shop by category
      * View All
      * Acne Studios
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Alexander McQueen
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Balenciaga
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Bottega Veneta
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Brunello Cucinelli
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Burberry
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Chloé
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Dolce & Gabbana
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * FENDI
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Golden Goose
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Gucci
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Fine jewelry
        * Exclusives
      * Isabel Marant
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Isabel Marant, Étoile
        * View All
        * Clothing
      * Jimmy Choo
        * View All
        * Shoes
        * Bags
        * Exclusives
      * LOEWE
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Maison Margiela
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Prada
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Roger Vivier
        * View All
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Saint Laurent
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
        * Exclusives
      * Valentino
        * View All
        * Clothing
        * Accessories
        * Exclusives
      * New designers
     
      * Top 20
      * Acne Studios
      * Alexander McQueen
      * Balenciaga
      * Bottega Veneta
      * Brunello Cucinelli
      * Burberry
      * Chloé
      * Dolce & Gabbana
      * FENDI
      * Golden Goose
     
      *  
      * Gucci
      * Isabel Marant
      * Isabel Marant, Étoile
      * Jimmy Choo
      * LOEWE
      * Maison Margiela
      * Prada
      * Roger Vivier
      * Saint Laurent
      * Valentino
      *  
      * Designer A-Z
      * New designers A-Z
     
      * BRAND HIGHLIGHTS
      * CHRISTOPHER ESBER
      * DIOR Eyewear
      * EÉRA
      * ERES
      * GIA BORGHINI
      * Jacquemus
      * Jil Sander
      * KHAITE
      * Lemaire
      * Nensi Dojaka
      * SIR
      * The Row
      * Tom Ford
      * Totême
      * WARDROBE.NYC
     
     
      * BOTTEGA VENETA
        
        Shop now

 3.  Clothing
      * Shop by category
      * View All
      * Dresses
        * View All
        * Mini dresses
        * Midi dresses
        * Maxi dresses
        * Cocktail dresses
        * Gowns
        * Casual dresses
        * Printed dresses
        * Tunics and kaftans
        * Leather dresses
        * Summer dresses
      * Tops
        * View All
        * T-shirts
        * Blouses
        * Shirts
        * Sweatshirts
        * Short-sleeved tops
        * Long-sleeved tops
        * Sleeveless tops
        * Casual Tops
        * Evening tops
      * Knitwear
        * View All
        * Sweaters
        * Cardigans
        * Cashmere
        * Turtlenecks
        * Knit dresses
      * Jackets
        * View All
        * Blazers
        * Leather jackets
        * Casual jackets
        * Bomber jackets
        * Evening jackets
        * Vests & gilets
        * Outerwear
        * Shearling jackets
        * Puffer & down jackets
        * Faux-fur jackets
        * Capes & ponchos
        * Ski jackets
      * Suits & co-ords
      * Pants
        * View All
        * Wide-leg pants
        * Straight pants
        * Cropped pants
        * Leather pants
        * Skinny pants
        * Casual pants
        * Culottes
        * Leggings
        * High-waisted pants
        * Ski pants
        * Tapered Pants
      * Jeans
        * View All
        * Skinny jeans
        * Cropped jeans
        * Straight jeans
        * Flared jeans
        * Wide-leg jeans
        * Boyfriend jeans
        * Distressed jeans
        * High-waisted jeans
        * Mid-rise jeans
        * Low-rise jeans
      * Skirts
        * View All
        * Miniskirts
        * Midi skirts
        * Maxi skirts
        * Pencil skirts
        * Leather skirts
      * Coats
        * View All
        * Short coats
        * Knee-length coats
        * Long coats
        * Trench coats
        * Wool coats
        * Parkas
        * Leather coats
        * Puffer & down coats
        * Evening coats
        * Shearling coats
        * Faux-fur coats
      * Skiwear
        * View All
        * Ski Accessories
        * Ski Boots
        * Ski Jackets
        * Ski Pants
        * Ski Suits
        * Ski Sweaters
      * Activewear
        * View All
        * Sports outerwear
        * Sports tops
        * Sports bras
        * Sports leggings
        * Sports pants
        * Sports shorts
      * Beachwear
        * View All
        * Bikinis
        * Swimsuits
        * Beach dresses
        * Cover-ups
      * Shorts
      * Jumpsuits
      * Leather
        * View All
        * Leather dresses
        * Leather tops
        * Leather coats
        * Leather jackets
        * Leather skirts
        * Leather shorts
        * Leather jumpsuits
        * Faux leather
        * Leather pants
     
      * Top brands
      * Acne Studios
      * Balenciaga
      * Balmain
      * Brunello Cucinelli
      * Dolce & Gabbana
      * ETRO
      * Gucci
      * KHAITE
      * Isabel Marant, Étoile
      * Max Mara
      * Prada
      * Saint Laurent
      * Valentino
      * Zimmermann
      * Show all designers
     
      * Discover
      * New arrivals
      * Exclusives
      * Essentials
      * New designers
      * Summer dresses
      * Investment blazers
      * Romantic tops
      * Summery sets
     
     
      * JONATHAN SIMKHAI
        
        
        JACKETS OF THE SEASON
        
        Shop now

 4.  Shoes
      * Shop by category
      * View All
      * Sneakers
        * View All
        * Low-top sneakers
        * High-top sneakers
        * Slip-on sneakers
        * Sports sneakers
        * Classic Sneakers
      * Sandals
        * View All
        * Flat sandals
        * Mid-heel sandals
        * High-heel sandals
        * Thong sandals
      * Ankle boots
        * View All
        * Flat ankle boots
        * Mid-heel ankle boots
        * High-heel ankle boots
        * Winter boots
      * Flat shoes
        * View All
        * Loafers
        * Slippers
        * Brogues
        * Ballet flats
      * Pumps
        * View All
        * Mid-heel pumps
        * High-heel pumps
        * Kitten heels
      * Boots
        * View All
        * Flat boots
        * Mid-heel boots
        * High-heel boots
        * Winter boots
        * Over-the-knee boots
      * Espadrilles
        * View All
        * Flat espadrilles
        * High espadrilles
      * Wedges
      * Mules
      * Platform shoes
      * Trending shoes
        * View All
        * Color-Pop Shoes
        * Heavy duty boots
        * Square-toe shoes
        * Western boots
        * Chunky Sandals
        * Luxe lounge flats
      * Evening shoes
      * Bridal shoes
      * Heeled shoes
        * View All
        * Mid heels
        * High heels
      * Summer shoes
     
      * Top brands
      * Amina Muaddi
      * Balenciaga
      * Bottega Veneta
      * Christian Louboutin
      * Gianvito Rossi
      * Golden Goose
      * Gucci
      * Isabel Marant
      * Jimmy Choo
      * Maison Margiela
      * Prada
      * Roger Vivier
      * Saint Laurent
      * Valentino Garavani
      * Show all designers
     
      * DISCOVER
      * New arrivals
      * Exclusives
      * Essentials
      * Color-pop shoes
      * Chunky sandals
      * Luxe lounge flats
      * Sign up for our Shoe Club
     
     
      * ISABEL MARANT
        
        
        BOOTIES
        
        Shop now

 5.  Bags
      * Shop by category
      * View All
      * Shoulder bags
      * Totes
      * Crossbody bags
      * Shoppers
      * Evening bags
      * Clutches
      * Beach bags
      * Top-handle bags
      * Bucket bags
      * Backpacks
      * Belt bags
      * Contemporary bags
      * Travel & luggage
      * Trending bags
        * View All
        * Slouchy bags
        * Mini Bags
        * Raffia Bags
        * Color-Pop Bags
        * Chain bags
     
      * Top brands
      * Balenciaga
      * Bottega Veneta
      * Burberry
      * By Far
      * Chloé
      * FENDI
      * Givenchy
      * Gucci
      * Jacquemus
      * LOEWE
      * Maison Margiela
      * Prada
      * Saint Laurent
      * Valentino Garavani
      * Show all designers
     
      * Discover
      * New arrivals
      * Exclusives
      * Classics
      * Raffia bags
      * Gucci Horsebit
      * Saint Laurent Loulou
      * LOEWE Puzzle
      * Bottega Veneta Cassette
      * Balenciaga Hourglass
     
     
      * SAINT LAURENT
        
        SHOP NOW

 6.  Accessories
      * Shop by category
      * View All
      * Jewelry
        * View All
        * Necklaces
        * Earrings
        * Rings
        * Bracelets
        * Brooches
        * Fine jewelry
        * Semi-fine jewelry
        * Fashion jewelry
      * Sunglasses
      * Belts
      * Small leather goods
        * View All
        * Wallets
        * Pouches
        * Card holders
        * Phone cases
      * Fine jewelry
      * Scarves
      * Hats
      * Summer accessories
      * Hair accessories
      * Gloves
      * Glasses
      * Watches
      * Hosiery
      * Lifestyle
        * View All
        * Cushions
        * Blankets
        * Dog Accessories
      * Gifts
     
      * Top brands
      * Acne Studios
      * Balenciaga
      * Bottega Veneta
      * Burberry
      * Celine Eyewear
      * Dior Eyewear
      * Dolce & Gabbana
      * Gucci
      * Isabel Marant
      * Jacquemus
      * LOEWE
      * Prada
      * Saint Laurent
      * Valentino Garavani
      * Show all designers
     
      * Discover
      * New arrivals
      * Exclusives
      * Classics
      * Summer accessories
      * Iconic belts
      * Bridal accessories
      * Gift ideas
      * Gift card
     
     
      * BOTTEGA VENETA
        
        
        BELTS
        
        Shop now

 7.  Vacation Shop
      * Shop by category
      * View All
      * Vacation essentials
      * Summer dresses
      * Bikinis
      * Swimsuits
      * Cover-Ups
      * Summer shoes
      * Beach bags
      * Summer accessories
      * Sunglasses
     
      * Vacation Shop
     
     SHOP NOW
     
     SUNGLASSES
     
     SHOP NOW
     
     SUMMER DRESSES
     
     SHOP NOW
     
     COVER-UPS
     
     SHOP NOW
     
     SWIMSUITS
     
     SHOP NOW
     
     BEACH BAGS
     
     SHOP NOW
     
     BIKINIS
     
     SHOP NOW
     
     SUMMER ACCESSORIES
     
     SHOP NOW
     
     SUMMER SHOES

 8.  Sale
      * Shop by category
      * View All
      * Previous seasons
        * View All
        * Clothing
        * Bags
        * Shoes
        * Accessories
     
      *  
     
     
      * SALE
        
        Shop sale

 9.  New Arrivals
      * Shop by category
      * View All
      * Current Week
      * Previous Weeks
      * Loungewear
      * Essentials
      * Office Attire
      * Dress code
      * Runway Edit
      * Tailoring Edit
      * Summer Wardrobe
      * Outdoor & Activewear
      * The Gift Shop
     
      * Just in
      * Clothing
      * Shoes
      * Bags
      * Accessories
     
     
      * BALENCIAGA
        
        
        NEW ARRIVALS
        
        Shop Now

 10. Designers
      * Shop by category
      * View All
      * Acne Studios
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Alexander McQueen
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * AMIRI
        * View All
        * Clothing
        * Shoes
        * Accessories
      * Balenciaga
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Berluti
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Bottega Veneta
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Brunello Cucinelli
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Burberry
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Christian Louboutin
        * View All
        * Shoes
        * Bags
        * Accessories
      * Dolce & Gabbana
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * FENDI
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Gucci
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * LOEWE
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Loro Piana
        * View All
        * Clothing
        * Shoes
        * Accessories
      * Maison Margiela
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Moncler
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Prada
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Saint Laurent
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Thom Browne
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
      * Tom Ford
        * View All
        * Clothing
        * Shoes
        * Bags
        * Accessories
     
      * Top 20
      * Acne Studios
      * Alexander McQueen
      * AMIRI
      * Balenciaga
      * Berluti
      * Bottega Veneta
      * Brunello Cucinelli
      * Burberry
      * Christian Louboutin
      * Dolce & Gabbana
     
      *  
      * FENDI
      * Gucci
      * LOEWE
      * Loro Piana
      * Maison Margiela
      * Moncler
      * Prada
      * Saint Laurent
      * Thom Browne
      * Tom Ford
      *  
      * Designer A-Z
      * New Designer
     
      * Shop by category
      * Clothing
      * Shoes
      * Bags
      * Accessories
      * Exclusive styles
     
     
      * PRE-FALL 2021
        
        Shop now

 11. Clothing
      * Shop by category
      * View All
      * Jackets
        * View All
        * Puffer
        * Gilets
        * Bombers
        * Casual
        * Overshirts
        * Denim
        * Leather & Suede
        * Lightweight
      * Blazers
      * Knitwear
        * View All
        * Sweaters
          * V-neck
          * Crew neck
        * Cardigans
        * Polo sweaters
        * Cashmere
        * Turtlenecks
        * Zip-up
      * Sweats
        * View All
        * Sweatshirts
        * Hoodies
        * Sweatpants
      * Shirts
        * View All
        * Casual shirts
          * Short-sleeved shirts
          * Long-sleeved shirts
        * Formal shirts
      * T-shirts
        * View All
        * Short-sleeved T-shirts
        * Long-sleeved T-shirts
      * Pants
        * View All
        * Casual pants
        * Sweatpants
        * Formal pants
        * Chinos
        * Drawstring
        * Cargo
        * Slim-leg
        * Wide-leg
      * Coats
        * View All
        * Puffer
        * Overcoats
          * Single breasted
          * Double breasted
        * Parkas
        * Trench coats & raincoats
      * Polo shirts
        * View All
        * Short-sleeved polo shirts
        * Long-sleeved polo shirts
      * Shorts
      * Jeans
        * View All
        * Slim-fit jeans
        * Straight-leg jeans
      * Tailoring
        * View All
        * Suits
          * Day suits
          * Evening suits
        * Suit jackets
        * Suit pants
      * Activewear
        * View All
        * Jackets
        * Tops
        * Bottoms
      * Underwear & Nightwear
      * Swimwear
     
      * Top brands
      * Acne Studios
      * AMI PARIS
      * AMIRI
      * Balenciaga
      * Bottega Veneta
      * Brunello Cucinelli
      * Burberry
      * Gucci
      * Loro Piana
      * Maison Margiela
      * Moncler
      * Prada
      * Thom Browne
      * Tom Ford
      * Show all designers
     
      * Discover
      * New clothing arrivals
      * Essential clothing
      * Exclusive clothing
     
     
      * TIMELESS ESSENTIALS
        
        Shop now

 12. Shoes
      * Shop by category
      * View All
      * Sneakers
        * View All
        * Sports sneakers
        * Designer sneakers
        * High-Top
        * Low-Top
      * Loafers
      * Sandals & slides
      * Slippers
      * Formal shoes
      * Boots
        * View All
        * Chelsea boots
        * Lace up boots
        * Hiking boots
        * Ankle boots
      * Derby shoes
      * Espadrilles
     
      * Top brands
      * Alexander McQueen
      * Balenciaga
      * Bottega Veneta
      * Christian Louboutin
      * Golden Goose
      * Gucci
      * Loro Piana
      * Maison Margiela
      * Prada
      * Rick Owens
      * Saint Laurent
      * Tod's
      * Tom Ford
      * Valentino Garavani
      * Show all designers
     
      * Discover
      * New shoe arrivals
      * Essential shoes
      * Exclusive shoes
     
     
      * TOM FORD
        
        
        DESIGNER SNEAKERS
        
        Shop now

 13. Bags
      * Shop by category
      * View All
      * Crossbody bags
      * Totes
      * Pouches
      * Belt bags
      * Backpacks
      * Briefcases
      * Travel bags
      * Mini Bags
     
      * Top brands
      * Balenciaga
      * Berluti
      * Bottega Veneta
      * Christian Louboutin
      * FENDI
      * Gucci
      * LOEWE
      * Maison Margiela
      * Marni
      * Prada
      * Saint Laurent
      * Thom Browne
      * Tom Ford
      * Valentino Garavani
      * Show all designers
     
      * Discover
      * New bag arrivals
      * Essential bags
      * Exclusive bags
     
     
      * JACQUEMUS
        
        
        MINI BAGS
        
        Shop now

 14. Accessories
      * Shop by category
      * View All
      * Wallets
        * View All
        * Billfolds
        * Card holders
        * Zip wallets
      * Belts
      * Jewelry
        * View All
        * Bracelets
        * Necklaces
        * Rings
        * Earrings
      * Hats
      * Sunglasses
      * Scarves
      * Ties & bowties
      * Travel & Lifestyle
      * Gloves
      * Washbags
      * Glasses
      * Tech Accessories
      * Socks
      * Key rings
      * Cufflinks & tie clips
     
      * Top brands
      * Acne Studios
      * Alexander McQueen
      * Balenciaga
      * Bottega Veneta
      * Burberry
      * Dior Eyewear
      * FENDI
      * Gucci
      * LOEWE
      * Maison Margiela
      * Prada
      * Saint Laurent
      * Thom Browne
      * Tom Ford
      * Show all designers
     
      * Discover
      * New accessory arrivals
      * Essential accessories
      * Exclusive accessories
     
     
      * BOTTEGA VENETA
        
        
        TECH ACCESSORIES
        
        Shop now

 15. Sale
      * Shop by category
      * View All
      * Previous seasons
        * View All
        * Clothing
          * Coats
          * Jackets
          * Knitwear
          * Shirts
          * Sweats
          * T-shirts
          * Trousers
          * Jeans
          * Polo shirts
          * Blazers
          * Tailoring
          * Shorts
          * Activewear
          * Underwear & Nightwear
          * Swimwear
        * Shoes
          * Sneakers
          * Boots
          * Loafers
          * Derby shoes
          * Sandals & slides
          * Formal shoes
        * Bags
        * Accessories
     
      *  
     
     
      * SALE
        
        Shop Sale

 16. New Arrivals
      * Shop by category
      * View All
      * Current Week
      * Previous weeks
     
      * JUST IN
      * 
      * View all
      * Girls
      * Boys
      * Baby
      * Previous weeks
      * Sign up to NL
      *  
      * 
     
      * DISCOVER
      * 
      * Essentials
      * Matching sets
      * Mini icons
      * Occasionwear
      * Unisex styles
      * Vacation shop
      * 
     
      *  
      * 
     
     
      * PALM ANGELS KIDS
        
        
        NEW ARRIVALS
        
        Shop now

 17. Designers
      * Shop by category
      * View All
     
      * TOP 20 BRANDS
      * 
      * Acne Studios Kids
      * Alexander McQueen Kids
      * Balenciaga Kids
      * Balmain Kids
      * Bonpoint
      * Burberry Kids
      * Chloé Kids
      * Dolce & Gabbana Kids
      * FENDI Kids
      * Golden Goose Kids
      *  
      * 
     
      *  
      * 
      * Gucci Kids
      * Moncler Enfant
      * Mini Rodini
      * Molo
      * Monnalisa
      * Polo Ralph Lauren Kids
      * Stella McCartney Kids
      * The Animals Observatory
      * Zimmermann Kids
      * Kids Designer A-Z
      * 
     
      * DISCOVER
      * 
      * Essentials
      * Matching sets
      * Mini icons
      * New arrivals
      * Unisex styles
      * Vacation shop
     
     
      * FENDI KIDS
        
        SHOP NOW

 18. Girls
      * Shop by category
      * View All
      * New arrivals
      * Clothing
        * View All
        * Girls' Coats & Jackets
        * Girls' Dresses & Playsuits
        * Girls' Jeans
        * Girls' Knitwear
        * Girls' Leggings
        * Girls' Shorts & Skirts
        * Girls' Sweatpants
        * Girls' Sweatshirts & Hoodies
        * Girls' Swimwear
        * Girls' Tops & Shirts
        * Girls' Pants
        * Girls' T-shirts
      * Shoes
        * View All
        * Girls' Boots
        * Girls' Sandals
        * Loafers & Ballet Flats
        * Girls' Sneakers
      * Accessories
        * View All
        * Girls' Accessories
        * Girls' Hats, Scarves & Gloves
     
      * SHOP BY CATEGORY
      * 
      * View all clothing
      * View all shoes
      * View all accessories
      * Dresses & playsuits
      * Sneakers
      * T-Shirts
      * Shorts & skirts
      * Sandals
      * Sweatshirts & hoodies
      * Swimwear
      * Tops & shirts
      * Loafers & ballet flats
      * Knitwear
      * Pants
      * Bags & backpacks
      *  
      * 
     
      * TOP GIRLS' BRANDS
      * 
      * Balmain Kids
      * Bonpoint
      * Burberry Kids
      * Chloé Kids
      * Dolce & Gabbana Kids
      * FENDI Kids
      * Golden Goose Kids
      * Gucci Kids
      * Il Gufo
      * Mini Rodini
      * Moncler Enfant
      * Moschino Kids
      * Stella McCartney Kids
      * The Animals Observatory
      * Kids designers A-Z
      * 
     
      * DISCOVER
      * 
      * Essentials
      * Matching sets
      * Mini icons
      * New arrivals
      * Unisex styles
      * Vacation shop
     
     
      * STELLA MCCARTNEY KIDS
        
        SHOP NOW

 19. Boys
      * Shop by category
      * View All
      * New arrivals
      * Clothing
        * View All
        * Boys' Coats & Jackets
        * Boys' Jeans
        * Boys' Knitwear
        * Boys' Shorts
        * Boys' Sweatpants
        * Boys' Sweatshirts & Hoodies
        * Boys' Swimwear
        * Boys' Tops & Shirts
        * Boys' Pants
        * Boys' T-shirts
      * Shoes
        * View All
        * Boys' Sandals
        * Loafers
        * Boys' Sneakers
        * Boys' Boots
      * Accessories
        * View All
        * Boys' Accessories
        * Boys' Hats, Scarves & Gloves
     
      * SHOP BY CATEGORY
      * 
      * View all clothing
      * View all shoes
      * View all accessories
      * T-Shirts
      * Sweatshirts & hoodies
      * Shorts
      * Sneakers
      * Knitwear
      * Tops & shirts
      * Swimwear
      * Sweatpants
      * Pants
      * Shoes
      * Sandals
      *  
      * 
     
      * TOP BOYS' BRANDS
      * 
      * Burberry Kids
      * Brunello Cucinelli Kids
      * Dolce & Gabbana Kids
      * FENDI Kids
      * Gucci Kids
      * Il Gufo
      * KENZO Kids
      * Loro Piana Kids
      * Moncler Enfant
      * Polo Ralph Lauren Kids
      * Stella McCartney Kids
      * Stone Island Junior
      * The Marc Jacobs Kids
      * Versace Kids
      * Kids designers A-Z
      * 
     
      * DISCOVER
      * 
      * Essentials
      * Matching sets
      * Mini icons
      * New arrivals
      * Unisex styles
      * Vacation shop
     
     
      * OFF-WHITE KIDS
        
        SHOP NOW

 20. Baby
      * Shop by category
      * View All
      * New arrivals
      * Baby Dresses & Playsuits
      * Baby Onesies
      * Baby Gifts & Accessories
      * Diaper Bags
      * Baby Outerwear
      * Baby Outfits
      * Baby Tops
      * Baby Bottoms
      * Baby Sweatshirts
      * Baby Knitwear
      * Baby Shoes
     
      * SHOP BY CATEGORY
      * 
      * View all clothing
      * View all shoes
      * Onesies & bodysuits
      * Dresses & playsuits
      * Outfits
      * Tops
      * Baby gifts & accessories
      * Diaper bags
      * Knitwear
      * Sweatshirts & hoodies
      * Bottoms
      *  
      * 
     
      * TOP BABY BRANDS
      * 
      * Bonpoint
      * Burberry Kids
      * Caramel
      * Chloé Kids
      * Dolce & Gabbana Kids
      * Emporio Armani Kids
      * FENDI Kids
      * Gucci Kids
      * Moncler Enfant
      * Moschino Kids
      * Polo Ralph Lauren Kids
      * Stella McCartney Kids
      * Tartine et Chocolat
      * Versace Kids
      * Kids Designer A-Z
      * 
     
      * DISCOVER
      * 
      * Baby gift ideas
      * Essentials
      * Matching sets
      * Mini icons
      * New arrivals
      * Vacation shop
     
     
      * DOLCE & GABBANA KIDS
        
        Shop now

 21. Shoes
      * Shop by category
      * View All
      * Sneakers
      * Boots
      * Sandals
      * Loafers & Ballet Flats
      * Unisex Shoes
      * Summer Shoes
     
      * SHOP BY CATEGORY
      * 
      * Girls' shoes
      * Girls' sneakers
      * Girls' loafers and ballet flats
      * Girls' sandals
      * Boys' shoes
      * Boys' sandals
      * Boys' loafers
      * Boys' sneakers
      * Baby shoes
      *  
      * 
     
      * TOP KIDS' SHOE BRANDS
      * 
      * adidas Originals Kids
      * Alexander McQueen Kids
      * Ancient Greek Sandals Kids
      * Balenciaga Kids
      * Burberry Kids
      * Chloé Kids
      * Dolce & Gabbana Kids
      * FENDI Kids
      * Golden Goose Kids
      * Gucci Kids
      * Nike Kids
      * Sophia Webster Mini
      * Tod's Junior
      * VEJA Kids
      * Kids designers A-Z
      * 
     
      * DISCOVER
      * 
      * Unisex shoes
      * Summer shoes
     
     
      * GOLDEN GOOSE KIDS
        
        Shop now

 22. Essentials
      * Shop by category
      * View All
     
      * KIDS' ESSENTIALS
      * 
      * Essentials
      * Matching sets
      * Mini icons
      * Occasionwear
      * Unisex styles
      *  
      * 
     
      *  
      * 
      * 
     
      *  
      * 
     
     
      * MOLO
        
        Shop now

 23. Vacation Shop
      * Shop by category
      * View All
      * Summer accessories
      * Swimwear
      * Summer shoes
     
      * SUMMER STYLES
      * 
      * Girls' dresses & playsuits
      * Girls' T-shirts
      * Girls' shorts & skirts
      * Girls' swimwear
      * Girls' tops & shirts
      * Boys' T-shirts
      * Boys' shorts
      * Boys' swimwear
      * Baby onesies & bodysuits
      * Baby dresses & playsuits
      * Baby outfits
      * Baby tops
      * Baby bottoms
      *  
      * 
     
      * TOP BRANDS
      * 
      * Ancient Greek Sandals Kids
      * CAMILLA Kids
      * Dolce & Gabbana Kids
      * FENDI Kids
      * Il Gufo
      * Marysia Bumby
      * Melissa Odabash Kids
      * Polo Ralph Lauren Kids
      * Poupette St Barth Kids
      * Sophia Webster Mini
      * Stella McCartney Kids
      * The Animals Observatory
      * Vilebrequin Kids
      * Zimmermann Kids
      * Kids designers A-Z
      * 
     
      * DISCOVER
      * 
      * Summer shoes
      * Summer accessories
      * Swimwear
     
     
      * POLO RALPH LAUREN KIDS
        
        Shop now

 24. Sale
      * Shop by category
      * View All
      * Previous seasons
        * View All
        * Girls
          * Clothing
          * Shoes
          * Accessories
        * Boys
          * Clothing
          * Shoes
          * Accessories
        * Baby
          * Clothing
          * Shoes
          * Accessories
     
      * GIRLS
      * 
      * View all
      * Girls' clothing
      * Girls' shoes
      * Girls' accessories
      *  
      * 
     
      * BOYS
      * 
      * View all
      * Boys' clothing
      * Boys' shoes
      * Boys' accessories
      * 
     
      * BABY
      * View all
     
      * SHOP SALE

Search


Search



4 days only – flash sale

4 days only – flash sale

Enjoy up to 40% off all sale

Up to 40% off all sale

4 days only – flash sale

Up to 40% off all sale





HOW CAN WE HELP YOU?

+33 1 76607013

Available 24/7

customercare@mytheresa.com

For more information, please refer to our customer care page.


PLEASE CHOOSE THE DESTINATION OF DELIVERY.

Your region

Your delivery destination

Your language

Continue to Shopping

Please note: the items in your shopping bag may be deleted if you change your
region or your delivery destination.

english deutsch italiano français العربیة 简体中文 한국어 español

Prada’s roots date back to 1913, but it was Miuccia Prada who transformed the
business into the fashion powerhouse as we know it today. Joined by Raf Simons
as co-creative director in 2020, the brand never strays from defining premium
luxury with an immaculate attention to detail.

Never one to follow trends, Prada is renowned for setting the tone of the future
of fashion, and leads where others dare to follow. Whether celebrating feminism
or experimenting with feathers, the brand utilizes their archive of timeless
designs as a canvas for cutting-edge, coolly-contemporary pieces that continue
to define the landscape of fashion.













 * Women
 * Designers
 * Prada



1036 products

Sort by Price low-to-high Price high-to-low New items

 * 1
 * 2
 * 3
 * 4
 * 5
 * Next
 * 




PRADA

 * Show all
 * Clothing
 * Shoes
 * Bags
 * Accessories
 * Exclusives


FILTER


CATEGORY

Show all Accessories Shoes Bags Clothing Exclusives



DESIGNER

 * Top 10
 * P

Prada



SIZE

XS S M L XL 3XS XXS XXL 24 25 26 27 28 29 30 31 EU 34 EU 34,5 EU 35 EU 35,5 EU
36 EU 36,5 EU 37 EU 37,5 EU 38 EU 38,5 EU 39 EU 39,5 EU 40 EU 40,5 EU 41 EU 41,5
EU 42 65CM 70CM 75CM 80CM 85CM 90CM 95CM One size fits all



COLOURS

beige black blue brown gold green grey metallic multicoloured neutrals orange
pink purple red silver white yellow



PATTERN

animal-print checked embellished embroidered exotic floral patterned plain polka
dots printed striped




 * * NEW ARRIVAL
   Prada
   
   
   QUILTED NYLON SNOW BOOTS
   
   € 850
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 41
      IT 41
      
    * EU 41.5
      IT 41,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * * NEW ARRIVAL
   Prada
   
   
   RE-NYLON GABARDINE DOWN JACKET
   
   € 2,300
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * * NEW ARRIVAL
   Prada
   
   
   DOWN VEST
   
   € 1,250
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   MONOCHROME SQUARE SUNGLASSES
   
   € 260
   product available
   add to shopping bag add to wishlist
 * 
 * * Runway
   Prada
   
   
   FAUX FUR SHAWL
   
   € 1,200
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 44
      FR 40
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * * NEW ARRIVAL
   * Runway
   Prada
   
   
   FAUX FUR COAT
   
   € 2,600
   available sizes
    * IT 38
      FR 34
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   QUILTED DOWN JACKET
   
   € 2,300
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * * NEW ARRIVAL
   Prada
   
   
   RE-EDITION 2000 SATIN SHOULDER BAG
   
   € 1,300
   sold out
   sold out
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LEATHER PUMPS
   
   € 750
   available sizes
    * EU 35
      IT 35
      
    * EU 37
      IT 37
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 40
      IT 40
      
    * EU 41
      IT 41
      
    * EU 41.5
      IT 41,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * * Runway
   Prada
   
   
   WOOL AND SILK CRÊPE MIDI DRESS
   
   € 2,300
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
   
   Please choose your size:
   
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   DENIM MINIDRESS
   
   € 1,150
   available sizes
    * IT 36
      FR 32
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * * Runway
   Prada
   
   
   LEATHER DERBY SHOES
   
   € 950
   available sizes
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   RE-NYLON SHEARLING-LINED BUCKET HAT
   
   € 750
   available sizes
    * S
      
    * M
      
    * L
      
   
   Please choose your size:
   
    * S
    * M
    * L
   
   add to shopping bag add to wishlist
 * * Runway
   Prada
   
   
   WOOL-BLEND TURTLENECK SWEATER
   
   € 830
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   HIGH-RISE STRAIGHT JEANS
   
   € 690
   available sizes
    * 24
      
    * 25
      
    * 26
      
    * 27
      
    * 28
      
    * 29
      
    * 30
      
   
   Please choose your size:
   
    * 24
    * 25
    * 26
    * 27
    * 28
    * 29
    * 30
    * 31
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   PATENT LEATHER SLIPPERS
   
   € 690
   available sizes
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   MONOLITH NYLON AND LEATHER BOOTS
   
   € 950
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * Prada
   
   
   PADDED RE-NYLON COAT
   
   € 2,100
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   RE-NYLON QUILTED JACKET
   
   € 1,600
   sold out
   sold out
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * Prada
   
   
   HIGH-RISE RELAXED STRAIGHT JEANS
   
   € 750
   available sizes
    * 25
      
    * 26
      
    * 27
      
    * 28
      
    * 29
      
    * 31
      
   
   Please choose your size:
   
    * 24
    * 25
    * 26
    * 27
    * 28
    * 29
    * 30
    * 31
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LOGO TERRY BUCKET HAT
   
   € 420
   available sizes
    * S
      
    * M
      
    * L
      
   
   Please choose your size:
   
    * S
    * M
    * L
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   MOHAIR-BLEND POLO SWEATER
   
   € 890
   available sizes
    * IT 36
      FR 32
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   RE-NYLON AND WOOL MINISKIRT
   
   € 880
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 48
      FR 44
      
    * IT 50
      FR 46
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * Prada
   
   
   LEATHER LOAFERS
   
   € 690
   available sizes
    * EU 36.5
      IT 36,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   RE-NYLON AND LEATHER ANKLE BOOTS
   
   € 1,100
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
   
   add to shopping bag add to wishlist
 * Prada
   
   
   QUILTED NYLON DOWN JACKET
   
   € 1,900
   available sizes
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LEATHER BOMBER JACKET
   
   € 3,950
   available sizes
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   WHEEL GABARDINE SNEAKERS
   
   € 650
   available sizes
    * EU 37.5
      IT 37,5
      
    * EU 39.5
      IT 39,5
      
    * EU 40.5
      IT 40,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
    * EU 35.5
      IT 35,5
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   MINI SAFFIANO-LEATHER SHOULDER BAG
   
   € 1,250
   product available
   add to shopping bag add to wishlist
 * * NEW ARRIVAL
   Prada
   
   
   RE-NYLON AND WOOL DRESS
   
   € 1,500
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * 
 * * Runway
   Prada
   
   
   SABLÉ AND JACQUARD GOWN
   
   € 2,400
   available sizes
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
   
   Please choose your size:
   
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * Prada
   
   
   MONOLITH LEATHER PLATFORM LOAFERS
   
   € 790
   available sizes
    * EU 39
      IT 39
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   RE-NYLON SMALL PADDED TOTE
   
   € 1,450
   product available
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   STRETCH WOOL-BLEND TURTLENECK SWEATER
   
   € 850
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   JACQUARD WOOL-BLEND LEGGINGS
   
   € 1,150
   available sizes
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * Prada
   
   
   LEATHER SANDALS
   
   € 650
   available sizes
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   CLEO MINI LEATHER SHOULDER BAG
   
   € 2,200
   product available
   add to shopping bag add to wishlist
 * Prada
   
   
   SINGLE-BREASTED LEATHER COAT
   
   € 4,900
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   FUNNEL-NECK DOWN AND COTTON COAT
   
   € 1,850
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   FUNNEL-NECK DOWN AND COTTON COAT
   
   € 1,850
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LOGO CLIP-ON SINGLE EARRING
   
   € 480
   product available
   add to shopping bag add to wishlist
 * * Runway
   Prada
   
   
   JACQUARD WOOL-BLEND TURTLENECK TOP
   
   € 830
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 48
      FR 44
      
    * IT 50
      FR 46
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   STRETCH-WOOL STIRRUP PANTS
   
   € 850
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
    * IT 50
      FR 46
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * Prada
   
   
   SYMBOLE STERLING SILVER EARRINGS
   
   € 480
   product available
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   HOUNDSTOOTH WOOL PARKA
   
   € 2,650
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
   
   Please choose your size:
   
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   MOHAIR AND WOOL COAT
   
   € 3,200
   available sizes
    * IT 40
      FR 36
      
    * IT 44
      FR 40
      
   
   Please choose your size:
   
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LEATHER LOAFERS
   
   € 750
   sold out
   sold out
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
   
   add to shopping bag add to wishlist
 * Prada
   
   
   LEATHER-TRIMMED NYLON BOOTS
   
   € 790
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 41
      IT 41
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * 
 * * Runway
   Prada
   
   
   RE-NYLON REVERSIBLE FAUX FUR COAT
   
   € 2,885
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * Prada
   
   
   LOGO HOOP EARRING
   
   € 480
   product available
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   SYMBOLE LOGO STERLING SILVER SINGLE EARRING
   
   € 480
   product available
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   NYLON DOWN JACKET
   
   € 1,900
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   NYLON PARKA
   
   € 1,600
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
    * IT 48
      FR 44
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * Prada
   
   
   RE-NYLON AND COTTON SHIRT DRESS
   
   € 1,380
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * 
 * Prada
   
   
   MONOLITH LEATHER KNEE-HIGH BOOTS
   
   € 1,500
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36
      IT 36
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 39
      IT 39
      
    * EU 39.5
      IT 39,5
      
    * EU 40
      IT 40
      
    * EU 40.5
      IT 40,5
      
    * EU 41
      IT 41
      
    * EU 41.5
      IT 41,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * * NEW ARRIVAL
   Prada
   
   
   RE-EDITION 2000 QUILTED SHEARLING SHOULDER BAG
   
   € 1,850
   product available
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   WOOL-BLEND TURTLENECK MIDI DRESS
   
   € 1,400
   available sizes
    * IT 36
      FR 32
      
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   LOGO COTTON POPLIN SHIRT
   
   € 890
   available sizes
    * IT 38
      FR 34
      
    * IT 40
      FR 36
      
    * IT 42
      FR 38
      
    * IT 44
      FR 40
      
    * IT 46
      FR 42
      
   
   Please choose your size:
   
    * IT 36
      FR 32
    * IT 38
      FR 34
    * IT 40
      FR 36
    * IT 42
      FR 38
    * IT 44
      FR 40
    * IT 46
      FR 42
    * IT 48
      FR 44
    * IT 50
      FR 46
   
   add to shopping bag add to wishlist
 * 
 * Prada
   
   
   RE-NYLON BACKPACK
   
   € 1,200
   product available
   add to shopping bag add to wishlist
 * Prada
   
   
   MONOLITH LEATHER ANKLE BOOTS
   
   € 1,100
   available sizes
    * EU 35
      IT 35
      
    * EU 35.5
      IT 35,5
      
    * EU 36.5
      IT 36,5
      
    * EU 37
      IT 37
      
    * EU 37.5
      IT 37,5
      
    * EU 38
      IT 38
      
    * EU 38.5
      IT 38,5
      
    * EU 40
      IT 40
      
    * EU 41
      IT 41
      
    * EU 41.5
      IT 41,5
      
   
   Please choose your size:
   
    * EU 35
      IT 35
    * EU 35.5
      IT 35,5
    * EU 36
      IT 36
    * EU 36.5
      IT 36,5
    * EU 37
      IT 37
    * EU 37.5
      IT 37,5
    * EU 38
      IT 38
    * EU 38.5
      IT 38,5
    * EU 39
      IT 39
    * EU 39.5
      IT 39,5
    * EU 40
      IT 40
    * EU 40.5
      IT 40,5
    * EU 41
      IT 41
    * EU 41.5
      IT 41,5
   
   add to shopping bag add to wishlist
 * 
 * 

1036 products

Sort by Price low-to-high Price high-to-low New items

 * 1
 * 2
 * 3
 * 4
 * 5
 * Next
 * 




BOTTEGA VENETA WARDROBE 02

SHOP NOW
SHOP NOW


ZIMMERMANN

SHOP NOW
SHOP NOW



PRADA

Any accessory from Prada comes packed with instant recognition. A structured
saffiano leather backpack featuring the brand's metallic logo imbues
contemporary cool, while sculptural boots often exemplify the mood for the new
season. Sneakers are seen on the runway lending a futuristic touch to feminine
designs, while a pair of Prada sunglasses has the power to become a cult-classic
the second it appears at Fashion Week.

DISCOVER MORE AT MYTHERESA: Prada sunglasses | Prada sneakers | Prada boots |
Prada crossbody bags
 

Prada for Men




SHOP WHENEVER, WHEREVER WITH THE APP



SERVICE & SECURITY

Fast delivery Delivery within 1 business day Free returns within 30 days
Convenient return service Secure payment and data protection SSL encryption for
secure transactions and personal data

MYTHERESA

 * About us
 * Trust & services
 * Press
 * Careers
 * Investor Relations
 * Affiliates

CUSTOMER SERVICE

 * Contact us
 * Shipping information
 * Secure payment
 * Exchanges
 * Returns
 * After Sale Service
 * Gift card

GET TREND UPDATES, STYLE TIPS AND MORE

Sign up for our newsletter: sign up
I agree that Mytheresa may insert analytical web beacons into the newsletter and
create a personalized user profile based on my purchase and usage behavior,
including sending a notification when I have placed something in the shopping
cart. Further details can be found in our Privacy Policy, clause 5. I understand
that I can revoke my consent at any time by emailing privacy@mytheresa.com.
 * Wish list
 * Receive personal notifications

Follow us on

 * mytheresa on Linkedin
 * mytheresa on Facebook
 * mytheresa on Twitter
 * mytheresa on Pinterest
 * mytheresa on Instagram
 * mytheresa on YouTube
 * mytheresa on iTunes
    * Follow us: mytheresa_wechat
      Follow mytheresa on Wechat
    * mytheresa on Weibo




payment methods:

delivered by:



 * terms of use
 * privacy policy
 * imprint

copyright © 2006-2021 mytheresa.com