www.astiy.com Open in urlscan Pro
2606:4700:3036::6815:4a8f  Public Scan

Submitted URL: http://astiy.com/
Effective URL: https://www.astiy.com/
Submission: On October 31 via api from BD — Scanned from DE

Form analysis 4 forms found in the DOM

GET /search

<form action="/search" method="get" class="header-bar__search-form clearfix" role="search">
  <button type="submit" class="btn btn--search icon-fallback-text header-bar__search-submit">
    <span class="icon icon-search" aria-hidden="true"></span>
    <span class="fallback-text">Search</span>
  </button>
  <input type="search" name="q" value="" aria-label="Search" class="header-bar__search-input" placeholder="Search">
</form>

GET /search

<form action="/search" method="get" class="header-bar__search-form clearfix" role="search">
  <button type="submit" class="btn btn--search icon-fallback-text header-bar__search-submit">
    <span class="icon icon-search" aria-hidden="true"></span>
    <span class="fallback-text">Search</span>
  </button>
  <input type="search" name="q" value="" aria-label="Search" class="header-bar__search-input" placeholder="Search">
</form>

<form class="popup_normal_sub" id="popupNewsletter" style="display: block;">
  <input name="source" type="hidden" value="popup">
  <input type="email" id="sendEmail_order" name="email" class="Form__Input popupEmailBlur" required="required" aria-label="Enter your email" placeholder="Email address">
  <p class="popup_error"></p>
  <p class="fetch_popup_error" style="display: none;">Oops, subscription failed, please try again.</p>
</form>

POST /cart

<form class="Cart Drawer__Content" action="/cart" method="POST" novalidate="">
  <div class="Drawer__Main" data-scrollable="">
    <div class="Cart__ShippingNotice Text--subdued buy_more_message" data-item-count="0" style="color: #000000;display:none;">
      <div class="Drawer__Container">
        <p style="margin: 0 0 0 0;" class="not_have_it"><strong><span style="color: #ff2a00;">❗Just buy 1 more item to get 5% OFF!</span></strong></p>
        <p style="margin: 0 0 0 0;" class="have_it"><span style="color: #00a235;"><strong>🎉 Extra 5% OFF! Checkout Now↓(Using the Coupon Code'save5')</strong></span></p>
      </div>
    </div>
    <div class="Cart__ShippingNotice Text--subdued frees_hippping_message" data-total-price="0" style="color: #000000;display:none;">
      <div class="Drawer__Container">
        <p style="margin: 0 0 0 0;" class="not_have_it"><span style="color: #ff2a00;"><strong>❗Just buy another <span id="free_shippping_money" class=""><span class="money" doubly-currency-usd="7900" doubly-currency-chf="7873.218999927315"
                  doubly-currency="CHF">SFr. 78.73 CHF</span></span> to get FREE shipping!</strong> </span></p>
        <p style="margin: 0 0 0 0;" class="have_it"><strong><span style="color: #00a235;">🚚 Free Shipping Now↓</span></strong></p>
      </div>
    </div>
    <div class="Drawer__Container">
      <input type="hidden" name="attributes[collection_mobile_items_per_row]" value="">
      <input type="hidden" name="attributes[collection_desktop_items_per_row]" value="">
      <div class="Cart__ItemList">
        <div class="Drawer__Main" data-scrollable="">
          <p class="Cart__Empty Heading u-h5">Your cart is currently empty.</p>
        </div>
        <script>
          $(function() {
            var cartCountSelector = '.cart-count, #cart-count a:first, #gocart p a, #cart .checkout em, .item-count';
            var cartTotalSelector = '#cart-price';
            $('.change_cart').click(function() {
              topbar.show();
              var id = $(this).data('line-id');
              var quantity = $(this).data('quantity');
              var line_item_id = 'item_' + id;
              var line_text_id = 'updates_' + id;
              $.ajax({
                url: "/cart/change.js",
                dataType: 'json',
                type: 'post',
                data: {
                  quantity: quantity,
                  id: id
                },
                success: function(itemData) {
                  // Update cart count and show cart link. 
                  /**
                  $.get('/',function(cart) {
                  var new_html = $(cart).find('.Cart__ItemList').html();
                  $('.Cart__ItemList').html(new_html);
                  $('.cart-page-link').click();
                  topbar.hide();
                  $('#call_convert_all').click();
                  });
                  */
                  $("input[id='" + line_text_id + "']").val(quantity);
                  $("a[data-minus-id='" + id + "']").data('quantity', quantity - 1 < 0 ? 0 : quantity - 1);
                  $("a[data-plus-id='" + id + "']").data('quantity', quantity + 1);
                  if (quantity == 0) {
                    $("div[id='" + line_item_id.split(':')[0] + "']").remove();
                  }
                  $.getJSON('/cart.js', function(cart) {
                    if (cart.item_count > 1) {
                      $('#discount').val('LN12')
                    } else {
                      $('#discount').val('')
                    }
                    $('.buy_more_message').data('item-count', cart.item_count);
                    $('.frees_hippping_message').data('total-price', cart.items_subtotal_price);
                    change_cart_notice();
                    if (cart.item_count == 0) {
                      $('.Cart__Empty').show();
                    }
                    topbar.hide();
                    $('#call_convert_all').click();
                    if (cartCountSelector && $(cartCountSelector).size()) {
                      var value = $(cartCountSelector).html() || '0';
                      $(cartCountSelector).html(value.replace(/[0-9]+/, cart.item_count)).removeClass('hidden-count');
                    }
                    if (cartTotalSelector && $(cartTotalSelector).size()) {
                      if (typeof Currency !== 'undefined' && typeof Currency.moneyFormats !== 'undefined') {
                        var newCurrency = '';
                        if ($('[name="currencies"]').size()) {
                          newCurrency = $('[name="currencies"]').val();
                        } else if ($('#currencies span.selected').size()) {
                          newCurrency = $('#currencies span.selected').attr('data-currency');
                        }
                        if (newCurrency) {
                          $(cartTotalSelector).html('<span class=money>' + Shopify.formatMoney(Currency.convert(cart.total_price, "USD", newCurrency), Currency.money_format[newCurrency]) + '</span>');
                        } else {
                          $(cartTotalSelector).html(Shopify.formatMoney(cart.total_price, "<span class=money>${{amount}} </span>"));
                        }
                      } else {
                        $(cartTotalSelector).html(Shopify.formatMoney(cart.total_price, "<span class=money>${{amount}} </span>"));
                      }
                    };
                  });
                },
                error: function(XMLHttpRequest) {
                  topbar.hide();
                }
              });
              return false;
            });
          })
        </script>
      </div>
    </div>
  </div>
  <div class="doubly-message" style="display: none;">All orders are processed in USD. While the content of your cart is currently displayed in <span class="selected-currency">CHF</span>, you will checkout using USD at the most current exchange rate.
  </div>
  <div class="cart__row" style="padding-top:0px;"></div>
  <div class="Drawer__Footer" data-drawer-animated-bottom="" style="display: none;">
    <button type="submit" name="checkout" class="Cart__Checkout Button Button--primary Button--full">
      <span>Checkout</span>
      <span class="Button__SeparatorDot" style="display:none;"></span>
      <span id="cart-price" style="display:none;"><span class="money" doubly-currency-usd="0" doubly-currency-chf="0" doubly-currency="CHF">SFr. 0.00 CHF</span></span>
    </button>
  </div>
</form>

Text Content

🎁 Enjoy your shopping with 40% OFF on Everything! & Coupon :SAVE5 (EXTRA 5% OFF
over 1 item)🛍️
US DollarEuroBritish Pound SterlingCanadian DollarAustralian DollarIsraeli New
ShekelIndian RupeeAfghan AfghaniAlbanian LekAzerbaijani ManatAlgerian
DinarAngolan KwanzaArgentine PesoArmenian DramAruban FlorinBahamian
DollarBahraini DinarBangladeshi TakaBarbadian DollarBelarusian RubleBelize
DollarBermudan DollarBhutanese NgultrumBitcoinBolivian
BolivianoBosnia-Herzegovina Convertible MarkBotswanan PulaBrazilian RealBrunei
DollarBulgarian LevBurundian FrancCambodian RielCape Verdean EscudoCentral
African CFA FrancCFA Franc BCEAOCFP FrancCzech Republic KorunaCayman Islands
DollarChilean PesoChinese YuanColombian PesoComorian FrancCongolese FrancCosta
Rican ColonCroatian KunaCuban Convertible PesoCuban PesoDanish KroneDjiboutian
FrancDominican PesoEast Caribbean DollarEgyptian PoundEritrean NakfaEthiopian
BirrFalkland Islands PoundFijian DollarGambian DalasiGeorgian LariGhanaian
CediGibraltar PoundGold OunceGuatemalan QuetzalGuernsey PoundGuinean
FrancGuyanaese DollarHaitian GourdeHonduran LempiraHong Kong DollarHungarian
ForintIcelandic KronaIMF Special Drawing RightsIndonesian RupiahIranian
RialIraqi DinarIsle of Man PoundJamaican DollarJapanese YenJersey PoundJordanian
DinarKazakhstani TengeKenyan ShillingKuwaiti DinarKyrgystani SomLaotian
KipLatvian LatsLebanese PoundLesotho LotiLiberian DollarLibyan DinarLithuanian
LitasMacanese PatacaMacedonian DenarMalagasy AriaryMalawian KwachaMalaysian
RinggitMaldivian RufiyaaMauritanian OuguiyaMauritian RupeeMexican PesoMoldovan
LeuMongolian TugrikMoroccan DirhamMozambican MeticalMyanmar KyatNamibian
DollarNepalese RupeeNetherlands Antillean GuilderNew Taiwan DollarNew Zealand
DollarNicaraguan CordobaNigerian NairaNorth Korean WonNorwegian KroneOmani
RialPakistani RupeePanamanian BalboaPapua New Guinean KinaParaguayan
GuaraniPeruvian Nuevo SolPhilippine PesoPolish ZlotyQatari RialRomanian
LeuRussian RubleRwandan FrancSaint Helena PoundSamoan TalaSao Tome and Principe
DobraSalvadoran ColonSaudi RiyalSerbian DinarSeychellois RupeeSierra Leonean
LeoneSilver OunceSingapore DollarSolomon Islands DollarSomali ShillingSouth
African RandSouth Korean WonSri Lankan RupeeSudanese PoundSurinamese DollarSwazi
LilangeniSwedish KronaSwiss FrancSyrian PoundTajikistani SomoniTanzanian
ShillingThai BahtTongan PaʻangaTrinidad and Tobago DollarTunisian
DinarTurkmenistani ManatTurkish LiraUgandan ShillingUkrainian HryvniaUnited Arab
Emirates DirhamUruguayan PesoUzbekistan SomVanuatu VatuVenezuelan
BolivarVietnamese DongYemeni RialZambian Kwacha
 CHF
 *  USD
 *  EUR
 *  GBP
 *  CAD
 *  AUD
 *  ILS
 *  INR
 *  AFN
 *  ALL
 *  AZN
 *  DZD
 *  AOA
 *  ARS
 *  AMD
 *  AWG
 *  BSD
 *  BHD
 *  BDT
 *  BBD
 *  BYN
 *  BZD
 *  BMD
 *  BTN
 *  BTC
 *  BOB
 *  BAM
 *  BWP
 *  BRL
 *  BND
 *  BGN
 *  BIF
 *  KHR
 *  CVE
 *  XAF
 *  XOF
 *  XPF
 *  CZK
 *  KYD
 *  CLP
 *  CNY
 *  COP
 *  KMF
 *  CDF
 *  CRC
 *  HRK
 *  CUC
 *  CUP
 *  DKK
 *  DJF
 *  DOP
 *  XCD
 *  EGP
 *  ERN
 *  ETB
 *  FKP
 *  FJD
 *  GMD
 *  GEL
 *  GHS
 *  GIP
 *  XAU
 *  GTQ
 *  GGP
 *  GNF
 *  GYD
 *  HTG
 *  HNL
 *  HKD
 *  HUF
 *  ISK
 *  XDR
 *  IDR
 *  IRR
 *  IQD
 *  IMP
 *  JMD
 *  JPY
 *  JEP
 *  JOD
 *  KZT
 *  KES
 *  KWD
 *  KGS
 *  LAK
 *  LVL
 *  LBP
 *  LSL
 *  LRD
 *  LYD
 *  LTL
 *  MOP
 *  MKD
 *  MGA
 *  MWK
 *  MYR
 *  MVR
 *  MRO
 *  MUR
 *  MXN
 *  MDL
 *  MNT
 *  MAD
 *  MZN
 *  MMK
 *  NAD
 *  NPR
 *  ANG
 *  TWD
 *  NZD
 *  NIO
 *  NGN
 *  KPW
 *  NOK
 *  OMR
 *  PKR
 *  PAB
 *  PGK
 *  PYG
 *  PEN
 *  PHP
 *  PLN
 *  QAR
 *  RON
 *  RUB
 *  RWF
 *  SHP
 *  WST
 *  STD
 *  SVC
 *  SAR
 *  RSD
 *  SCR
 *  SLL
 *  XAG
 *  SGD
 *  SBD
 *  SOS
 *  ZAR
 *  KRW
 *  LKR
 *  SDG
 *  SRD
 *  SZL
 *  SEK
 *  CHF
 *  SYP
 *  TJS
 *  TZS
 *  THB
 *  TOP
 *  TTD
 *  TND
 *  TMT
 *  TRY
 *  UGX
 *  UAH
 *  AED
 *  UYU
 *  UZS
 *  VUV
 *  VEF
 *  VND
 *  YER
 *  ZMW

Cart 0
Search
🎁 Enjoy your shopping with 40% OFF on Everything! & Coupon :SAVE5 (EXTRA 5% OFF
over 1 item)🛍️
MENU
US DollarEuroBritish Pound SterlingCanadian DollarAustralian DollarIsraeli New
ShekelIndian RupeeAfghan AfghaniAlbanian LekAzerbaijani ManatAlgerian
DinarAngolan KwanzaArgentine PesoArmenian DramAruban FlorinBahamian
DollarBahraini DinarBangladeshi TakaBarbadian DollarBelarusian RubleBelize
DollarBermudan DollarBhutanese NgultrumBitcoinBolivian
BolivianoBosnia-Herzegovina Convertible MarkBotswanan PulaBrazilian RealBrunei
DollarBulgarian LevBurundian FrancCambodian RielCape Verdean EscudoCentral
African CFA FrancCFA Franc BCEAOCFP FrancCzech Republic KorunaCayman Islands
DollarChilean PesoChinese YuanColombian PesoComorian FrancCongolese FrancCosta
Rican ColonCroatian KunaCuban Convertible PesoCuban PesoDanish KroneDjiboutian
FrancDominican PesoEast Caribbean DollarEgyptian PoundEritrean NakfaEthiopian
BirrFalkland Islands PoundFijian DollarGambian DalasiGeorgian LariGhanaian
CediGibraltar PoundGold OunceGuatemalan QuetzalGuernsey PoundGuinean
FrancGuyanaese DollarHaitian GourdeHonduran LempiraHong Kong DollarHungarian
ForintIcelandic KronaIMF Special Drawing RightsIndonesian RupiahIranian
RialIraqi DinarIsle of Man PoundJamaican DollarJapanese YenJersey PoundJordanian
DinarKazakhstani TengeKenyan ShillingKuwaiti DinarKyrgystani SomLaotian
KipLatvian LatsLebanese PoundLesotho LotiLiberian DollarLibyan DinarLithuanian
LitasMacanese PatacaMacedonian DenarMalagasy AriaryMalawian KwachaMalaysian
RinggitMaldivian RufiyaaMauritanian OuguiyaMauritian RupeeMexican PesoMoldovan
LeuMongolian TugrikMoroccan DirhamMozambican MeticalMyanmar KyatNamibian
DollarNepalese RupeeNetherlands Antillean GuilderNew Taiwan DollarNew Zealand
DollarNicaraguan CordobaNigerian NairaNorth Korean WonNorwegian KroneOmani
RialPakistani RupeePanamanian BalboaPapua New Guinean KinaParaguayan
GuaraniPeruvian Nuevo SolPhilippine PesoPolish ZlotyQatari RialRomanian
LeuRussian RubleRwandan FrancSaint Helena PoundSamoan TalaSao Tome and Principe
DobraSalvadoran ColonSaudi RiyalSerbian DinarSeychellois RupeeSierra Leonean
LeoneSilver OunceSingapore DollarSolomon Islands DollarSomali ShillingSouth
African RandSouth Korean WonSri Lankan RupeeSudanese PoundSurinamese DollarSwazi
LilangeniSwedish KronaSwiss FrancSyrian PoundTajikistani SomoniTanzanian
ShillingThai BahtTongan PaʻangaTrinidad and Tobago DollarTunisian
DinarTurkmenistani ManatTurkish LiraUgandan ShillingUkrainian HryvniaUnited Arab
Emirates DirhamUruguayan PesoUzbekistan SomVanuatu VatuVenezuelan
BolivarVietnamese DongYemeni RialZambian Kwacha
 CHF
 *  USD
 *  EUR
 *  GBP
 *  CAD
 *  AUD
 *  ILS
 *  INR
 *  AFN
 *  ALL
 *  AZN
 *  DZD
 *  AOA
 *  ARS
 *  AMD
 *  AWG
 *  BSD
 *  BHD
 *  BDT
 *  BBD
 *  BYN
 *  BZD
 *  BMD
 *  BTN
 *  BTC
 *  BOB
 *  BAM
 *  BWP
 *  BRL
 *  BND
 *  BGN
 *  BIF
 *  KHR
 *  CVE
 *  XAF
 *  XOF
 *  XPF
 *  CZK
 *  KYD
 *  CLP
 *  CNY
 *  COP
 *  KMF
 *  CDF
 *  CRC
 *  HRK
 *  CUC
 *  CUP
 *  DKK
 *  DJF
 *  DOP
 *  XCD
 *  EGP
 *  ERN
 *  ETB
 *  FKP
 *  FJD
 *  GMD
 *  GEL
 *  GHS
 *  GIP
 *  XAU
 *  GTQ
 *  GGP
 *  GNF
 *  GYD
 *  HTG
 *  HNL
 *  HKD
 *  HUF
 *  ISK
 *  XDR
 *  IDR
 *  IRR
 *  IQD
 *  IMP
 *  JMD
 *  JPY
 *  JEP
 *  JOD
 *  KZT
 *  KES
 *  KWD
 *  KGS
 *  LAK
 *  LVL
 *  LBP
 *  LSL
 *  LRD
 *  LYD
 *  LTL
 *  MOP
 *  MKD
 *  MGA
 *  MWK
 *  MYR
 *  MVR
 *  MRO
 *  MUR
 *  MXN
 *  MDL
 *  MNT
 *  MAD
 *  MZN
 *  MMK
 *  NAD
 *  NPR
 *  ANG
 *  TWD
 *  NZD
 *  NIO
 *  NGN
 *  KPW
 *  NOK
 *  OMR
 *  PKR
 *  PAB
 *  PGK
 *  PYG
 *  PEN
 *  PHP
 *  PLN
 *  QAR
 *  RON
 *  RUB
 *  RWF
 *  SHP
 *  WST
 *  STD
 *  SVC
 *  SAR
 *  RSD
 *  SCR
 *  SLL
 *  XAG
 *  SGD
 *  SBD
 *  SOS
 *  ZAR
 *  KRW
 *  LKR
 *  SDG
 *  SRD
 *  SZL
 *  SEK
 *  CHF
 *  SYP
 *  TJS
 *  TZS
 *  THB
 *  TOP
 *  TTD
 *  TND
 *  TMT
 *  TRY
 *  UGX
 *  UAH
 *  AED
 *  UYU
 *  UZS
 *  VUV
 *  VEF
 *  VND
 *  YER
 *  ZMW

Cart 0
 * 🎉 NEW IN 🎉 + -
   * 10-24-2022
   * 10-22-2022
   * 10-21-2022
 * 🔥 HOT SALE 🔥
 * 🍂 OUTERWEAR 🍂
 * 👚 TOPS 👚 + -
   * TOPS
   * BLOUSES & SHIRTS
   * SWEATSHIRTS & HOODIES
 * 👗 CHIC DRESSES 👗 + -
   * CASUAL DRESSES
   * MINI DRESSES
   * MIDI DRESSES
   * MAXI DRESSES
   * VACATION DRESSES
 * 🧥 SWEATER & CARDIGAN 🧥
 * ✨ TWO PIECES SETS ✨
 * 💰 SHOP BY PRICE 💰 + -
   * UNDER $30
   * $30-$39.99
   * $40-$49.99
   * OVER $50
 * Search

 * 🎉 NEW IN 🎉
   * 10-24-2022
   * 10-22-2022
   * 10-21-2022
 * 🔥 HOT SALE 🔥
 * 🍂 OUTERWEAR 🍂
 * 👚 TOPS 👚
   * TOPS
   * BLOUSES & SHIRTS
   * SWEATSHIRTS & HOODIES
 * 👗 CHIC DRESSES 👗
   * CASUAL DRESSES
   * MINI DRESSES
   * MIDI DRESSES
   * MAXI DRESSES
   * VACATION DRESSES
 * 🧥 SWEATER & CARDIGAN 🧥
 * ✨ TWO PIECES SETS ✨
 * 💰 SHOP BY PRICE 💰
   * UNDER $30
   * $30-$39.99
   * $40-$49.99
   * OVER $50

We use cookies to give you a better shopping experience. By continuing to use
our services or create an account on our website, you agree to our Privacy
Policy and Cookie Policy. I agree cancel
GET EXTRA 10% OFF

EXTRA 10% OFF
Enter your email address
to reveal your 10% off coupon code
Save money with discounts!
10% off on orders over 2 items, code: SAVE10
5% off on orders over 1 item, code: SAVE5
Yay! You're back!
Get ready to see some cute styles heading your way!

Oops, subscription failed, please try again.

Reveal Code
CONTINUE SHOPPING
CONTINUE SHOPPING
By clicking "REVEAL CODE", you agree to receive marketing emails. You can
unsubscribe at any time.

 * 
   
 * 
 * 






CHIC COLLECTIONS

TOPS

SWEATER & CARDIGAN

CASUAL DRESSES

TWO PIECES SETS


TOPS - HOT SALE

Regular price SFr. 66.76 CHF Sale price SFr. 48.82 CHF

10 reviews


Regular price SFr. 58.79 CHF Sale price SFr. 39.85 CHF

5 reviews


Regular price SFr. 56.80 CHF Sale price SFr. 39.85 CHF

11 reviews


Regular price SFr. 57.79 CHF Sale price SFr. 39.85 CHF

No reviews


Regular price SFr. 56.80 CHF Sale price SFr. 39.85 CHF

No reviews


Regular price SFr. 66.76 CHF Sale price SFr. 43.84 CHF

11 reviews


Regular price SFr. 57.79 CHF Sale price SFr. 39.85 CHF

No reviews


Regular price SFr. 49.82 CHF Sale price SFr. 34.87 CHF

5 reviews



VIEW MORE




BEST SELLER - WEEKLY

Regular price SFr. 66.76 CHF Sale price SFr. 48.82 CHF

10 reviews


Regular price SFr. 64.77 CHF Sale price SFr. 47.83 CHF

16 reviews


Regular price SFr. 90.68 CHF Sale price SFr. 62.78 CHF

8 reviews


Regular price SFr. 69.75 CHF Sale price SFr. 48.82 CHF

8 reviews



VIEW MORE


SWEATER & CARDIGAN - HOT SALE

Regular price SFr. 69.75 CHF Sale price SFr. 48.82 CHF

8 reviews


Regular price SFr. 64.77 CHF Sale price SFr. 47.83 CHF

16 reviews


Regular price SFr. 73.74 CHF Sale price SFr. 49.82 CHF

7 reviews


Regular price SFr. 88.69 CHF Sale price SFr. 57.79 CHF

12 reviews


Regular price SFr. 90.68 CHF Sale price SFr. 62.78 CHF

8 reviews


Regular price SFr. 66.76 CHF Sale price SFr. 47.83 CHF

10 reviews


Regular price SFr. 66.76 CHF Sale price SFr. 49.82 CHF

No reviews


Regular price SFr. 76.73 CHF Sale price SFr. 51.81 CHF

10 reviews



VIEW MORE




CASUAL DRESSES - HOT SALE

Regular price SFr. 55.80 CHF Sale price SFr. 39.85 CHF

10 reviews


Regular price SFr. 54.80 CHF Sale price SFr. 38.86 CHF

No reviews


Regular price SFr. 56.80 CHF Sale price SFr. 39.85 CHF

10 reviews


Regular price SFr. 62.78 CHF Sale price SFr. 45.83 CHF

12 reviews


Regular price SFr. 62.78 CHF Sale price SFr. 46.83 CHF

No reviews


Regular price SFr. 55.80 CHF Sale price SFr. 39.85 CHF

8 reviews


Regular price SFr. 60.78 CHF Sale price SFr. 39.85 CHF

No reviews


Regular price SFr. 59.79 CHF Sale price SFr. 39.85 CHF

29 reviews



VIEW MORE


TWO PIECES SETS - HOT SALE

Regular price SFr. 60.78 CHF Sale price SFr. 39.85 CHF

16 reviews


Regular price SFr. 84.70 CHF Sale price SFr. 60.78 CHF

6 reviews


Regular price SFr. 58.79 CHF Sale price SFr. 39.85 CHF

13 reviews


Regular price SFr. 51.81 CHF Sale price SFr. 37.86 CHF

No reviews


Regular price SFr. 79.72 CHF Sale price SFr. 58.79 CHF

16 reviews


Regular price SFr. 81.71 CHF Sale price SFr. 60.78 CHF

No reviews


Regular price SFr. 96.66 CHF Sale price SFr. 62.78 CHF

9 reviews


Regular price SFr. 89.68 CHF Sale price SFr. 62.78 CHF

No reviews



VIEW MORE

1.About the materials and sizes of our products: there are notes on the details
page of each of our products. Please choose the right size according to the size
chart. If there are other questions, you can ask them in the product details
page.
2.About the color difference of our products: due to the external lighting and
other factors when taking photos, slight color difference cannot be avoided, but
it is basically the same as the real pictures in the details page.

3.About the delivery: Our products are shipped from the United States. It will
be delivered to you as soon as possible. It will be worth the wait.
4.About the refund: We guarantee to refund your money to your account within 30
days.
5.About the return or exchange: Please contact our Customer Service
service@astiy.com to get the return address. Only if our products have quality
problems, we will accept return request.And please allow a little bit color and
size difference, this is inevitable.





MOST POPULAR ITEMS

 * Astiy Retro Tan Print Outerwear
   astiy
   $66.99 $48.99
   
 * Astiy Sweet Pink Plain 3/4 Sleeve Maxi Dress
   astiy
   $63.99 $44.99
   
 * Astiy Special Mock Neck Print Top
   astiy
   $58.99 $39.99
   
 * Astiy Mod Color Block Turtleneck Sweater
   astiy
   $64.99 $47.99
   
 * Astiy Boston Red Striped Gray Dolman Sweater
   astiy
   $69.99 $48.99
   
 * Astiy Popular Plain High Neck Top
   astiy
   $64.99 $43.99
   
 * Astiy Pink Geometric Long Sleeve Top
   astiy
   $58.99 $39.99
   
 * Astiy Hoodie Khaki Diamond Elbow Patch Long Cardigan Sweater
   astiy
   $90.99 $62.99
   
 * Astiy Cool Black Plain Long Sleeve Midi Dress
   astiy
   $71.99 $47.99
   
 * Astiy Blue Long Sleeve Round Neck Sweater
   astiy
   $71.99 $53.99
   
 * Astiy Black Plain High-Neck Wrap Top
   astiy
   $66.99 $43.99
   
 * Astiy Argyle Chevron Sweater
   astiy
   $69.99 $48.99
   
 * Astiy Grass Green Oversized Turtleneck Knit Sweater
   astiy
   $76.99 $51.99
   
 * Astiy Breezy Blue Check Collared Outerwear
   astiy
   $74.99 $49.99
   
 * Astiy Black Plain Mock Neck Sweater
   astiy
   $71.99 $49.99
   
 * Astiy Black And White Color Block Top
   astiy
   $56.99 $39.99
   
 * Astiy Brown Plain Mock Neck Sweater
   astiy
   $70.99 $49.99
   
 * Astiy Navy Button Front Long Sleeve Henley Top
   astiy
   $56.99 $39.99
   
 * Astiy Black Long Sleeve Midi Dress
   astiy
   $57.99 $39.99
   
 * Astiy Autumn Flower Print Round Neck Long Sleeve Top
   astiy
   $55.99 $39.99
   





QUICK SHOP

 * HOT SALE
 * TOPS
 * SWEATER & CARDIGAN
 * CASUAL DRESSES
 * TWO PIECES SETS


HELP & SUPPORT

 * FAQ
 * How to Measure
 * Shipping & Delivery
 * Cancellation Policy
 * Return/Exchange
 * Track My Order


COMPANY INFO

 * About Us
 * Contact Us


FOLLOW US

 * Facebook
 * Instagram

--------------------------------------------------------------------------------

astiy.com 2022 © All Rights Reserved

Privacy Statement | Terms of Service


CART

❗Just buy 1 more item to get 5% OFF!

🎉 Extra 5% OFF! Checkout Now↓(Using the Coupon Code'save5')

❗Just buy another SFr. 78.73 CHF to get FREE shipping!

🚚 Free Shipping Now↓

Your cart is currently empty.

All orders are processed in USD. While the content of your cart is currently
displayed in CHF, you will checkout using USD at the most current exchange rate.

Checkout SFr. 0.00 CHF

Use left/right arrows to navigate the slideshow or swipe left/right if using a
mobile device

 * choosing a selection results in a full page refresh