This site has limited support for your browser. We recommend switching to Edge, Chrome, Safari, or Firefox.

Free Shipping & Complimentary Exchanges – USA & Canada

Top Rated Room 502 Concierge Service

KAFTAN DRESS MODEL 6 JESSICA - BLACK - Room 502
KAFTAN DRESS MODEL 6 JESSICA - BLACK - Room 502
KAFTAN DRESS MODEL 6 JESSICA - BLACK - Room 502
KAFTAN DRESS MODEL 6 JESSICA - BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Little Black Dress Luxury Travel & Work Dress - Wrinkle free
Sleeveless Stretch Luxury LBT Dress Room 502 Woman Fashion
Little Black Dress Luxury Travel & Work Dress - Wrinkle free
Little Black Luxury Dress Wrinkle free work & travel dress Room 502 Fashion
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
DRAWSTRING DRESS MODEL 1 VERONICA BLACK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA BLACK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA BLACK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
COUTURE RUFFLE BLOUSE - TINA - BLACK - Room 502
COUTURE RUFFLE BLOUSE - TINA - BLACK - Room 502
COUTURE RUFFLE BLOUSE - TINA - BLACK - Room 502
COUTURE RUFFLE BLOUSE - TINA - BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
MICHELLE DRESS MODEL 19 - PRINT - Room 502
MICHELLE DRESS MODEL 19 - PRINT - Room 502
MICHELLE DRESS MODEL 19 - PRINT - Room 502
MICHELLE DRESS MODEL 19 - PRINT - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Final Edition or –$200 Applied. Final Edition or –$200 Applied.
MARIE "EVERYDAY COUTURE SHIRT" MODEL 11 - BLUE - Room 502
MARIE "EVERYDAY COUTURE SHIRT" MODEL 11 - BLUE - Room 502
MARIE "EVERYDAY COUTURE SHIRT" MODEL 11 - BLUE - Room 502
MARIE "EVERYDAY COUTURE SHIRT" MODEL 11 - BLUE - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
CHARLOTTE SHIRTDRESS BORDEAUX
CHARLOTTE SHIRTDRESS BORDEAUX - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Sleeveless Silk dress with pockets
Sleeveless Silk dress with pockets
Sleeveless Silk dress with pockets
Luxury Sleeveless Print Dress by Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Woman in a patterned caftan and jeans standing outside a building.
SilkShirtdress-Room502-CaftanDress
Woman in a patterned caftan and jeans standing outside a building.
SilkShirtdress-Room502-CaftanDress
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
DRAWSTRING DRESS MODEL 1 VERONICA PINK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA PINK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA PINK - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA PINK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
COTTON STRAPLESS DRESS MODEL 3 - RULA - WHITE - Room 502
COTTON STRAPLESS DRESS MODEL 3 - RULA - WHITE - Room 502
COTTON STRAPLESS DRESS MODEL 3 - RULA - WHITE - Room 502
COTTON STRAPLESS DRESS MODEL 3 - RULA - WHITE - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
BLANCA SHIRTDRESS MODEL 13 - BLUE - Room 502
BLANCA SHIRTDRESS MODEL 13 - BLUE - Room 502
BLANCA SHIRTDRESS MODEL 13 - BLUE - Room 502
BLANCA SHIRTDRESS MODEL 13 - BLUE - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Carlyne Classic Shirt in White
Person wearing a white shirt and blue jeans sitting on stone steps.
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
ANAIS SMOKED COTTON VOILE PRINT DRESS - Room 502
ANAIS SMOKED COTTON VOILE PRINT DRESS - Room 502
ANAIS SMOKED COTTON VOILE PRINT DRESS - Room 502
ANAIS SMOKED COTTON VOILE PRINT DRESS - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Final Edition or –$200 Applied. Final Edition or –$200 Applied.
PRINTED PAULA BLOUSE MODEL 14 - Room 502
PRINTED PAULA BLOUSE MODEL 14 - Room 502
PRINTED PAULA BLOUSE MODEL 14 - Room 502
PRINTED PAULA BLOUSE MODEL 14 - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
JEANNE LONG DRESS MODEL 15 - BLACK - Room 502
JEANNE LONG DRESS MODEL 15 - BLACK - Room 502
JEANNE LONG DRESS MODEL 15 - BLACK - Room 502
JEANNE LONG DRESS MODEL 15 - BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
COUTURE PRINT RUFFLE BLOUSE - TINA - Room 502
COUTURE PRINT RUFFLE BLOUSE - TINA - Room 502
COUTURE PRINT RUFFLE BLOUSE - TINA - Room 502
COUTURE PRINT RUFFLE BLOUSE - TINA - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Woman in a black and white patterned dress standing outdoors on a city street.
Black and white patterned dress on a light gray background
Woman in a black and white patterned dress standing outdoors on a city street.
Black and white patterned dress on a light gray background
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
RULA DRESS MODEL 3 - PINK - Room 502
RULA DRESS MODEL 3 - PINK - Room 502
RULA DRESS MODEL 3 - PINK - Room 502
RULA DRESS MODEL 3 - PINK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
PAULA BLOUSE MODEL 14 BLACK - Room 502
PAULA BLOUSE MODEL 14 BLACK - Room 502
PAULA BLOUSE MODEL 14 BLACK - Room 502
PAULA BLOUSE MODEL 14 BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
MICHELLE DRESS MODEL 19 - BLACK - Room 502
MICHELLE DRESS MODEL 19 - BLACK - Room 502
MICHELLE DRESS MODEL 19 - BLACK - Room 502
MICHELLE DRESS MODEL 19 - BLACK - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
Final Edition – $200 Reduction Applied. Final Edition – $200 Reduction Applied.
JEANNE DRESS MODEL 15 - PRINT - Room 502
JEANNE DRESS MODEL 15 - PRINT - Room 502
JEANNE DRESS MODEL 15 - PRINT - Room 502
JEANNE DRESS MODEL 15 - PRINT - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
DRAWSTRING DRESS MODEL 1 VERONICA WHITE - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA WHITE - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA WHITE - Room 502
DRAWSTRING DRESS MODEL 1 VERONICA WHITE - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif
RESORT DRESS MODEL 7 CLAUDIA - KHAKI GREEN - Room 502
RESORT DRESS MODEL 7 CLAUDIA - KHAKI GREEN - Room 502
assign product_tags = product.tags | join: ',' | append: ',' assign preorder = false assign is_preorder_meta = false assign on_sale = false assign badge_container_class = 'badge-box-container' | append: ' ' | append: settings.badge_alignment | append: ' ' | append: settings.badge_font_size assign badge_class = 'badge-box' assign show_saving = settings.show_saving_badge if settings.show_preorder_badge if product.metafields.theme.preorder.type == 'boolean' and product.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if current_variant.metafields.theme.preorder.type == 'boolean' and current_variant.metafields.theme.preorder.value == true assign is_preorder_meta = true endif if product_tags contains '_preorder' or is_preorder_meta assign preorder_badge_text = 'products.product.pre_order' | t assign preorder_badge_class = badge_class | append: ' preorder-box' assign preorder = true endif endif if settings.show_sold_out_badge and product.available == false assign sold_badge_text = 'products.product.sold_out' | t assign sold_badge_class = badge_class | append: ' sold-box' else if settings.show_custom_badge if product.metafields.theme.badge != blank and product.metafields.theme.badge.type == 'single_line_text_field' assign custom_badge_text = product.metafields.theme.badge.value endif if custom_badge_text == blank and product_tags contains '_badge_' assign custom_badge_text = product_tags | split: '_badge_' assign custom_badge_text = custom_badge_text[1] | split: ',' | first | replace: '_', ' ' endif assign custom_badge_class = badge_class | append: ' custom-box' endif if settings.show_automatic_new_badge and preorder == false assign product_created_timestamp = product.created_at | date: '%s' | plus: 0 assign days_in_seconds = settings.badge_new_date_limit | times: 24 | times: 60 | times: 60 assign current_date_timestamp = "now" | date: '%s' assign check_date_timestamp = current_date_timestamp | minus: days_in_seconds if product_created_timestamp > check_date_timestamp assign new_badge_text = 'products.product.new' | t endif assign new_badge_class = badge_class | append: ' new-box' endif if product.compare_at_price > product.price and settings.sale_tags_enable assign on_sale = true endif if on_sale assign sale_badge_class = badge_class | append: ' sale-box' assign sale_badge_text = 'products.product.on_sale' | t endif if on_sale and show_saving assign price = current_variant.price assign price_compare = current_variant.compare_at_price assign price_difference = price_compare | minus: price assign test_variants = product.variants | where: 'compare_at_price' | where: 'available', true assign discount = price_difference | money_without_trailing_zeros if test_variants.size > 0 for variant in test_variants assign variant_price_difference = variant.compare_at_price | minus: variant.price if variant_price_difference > price_difference assign price = variant.price assign price_compare = variant.compare_at_price assign price_difference = variant_price_difference endif endfor endif if settings.currency_code_enable assign discount = price_difference | money_without_trailing_zeros | append: ' ' | append: cart.currency.iso_code endif if settings.saving_badge_type == 'percentage' assign percent_off = price_difference | times: 1.00 | divided_by: price_compare | times: 100 assign discount = percent_off | floor | append: '%' endif if product.variants.size == 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_html' | t: discount: discount endif if product.variants.size > 1 and price_difference > 0 assign sale_badge_text = 'products.product.save_badge_up_to_html' | t: discount: discount endif endif endif

LIMITED & ETHICAL PRODUCTION | FREE DELIVERY, EXCHANGES & RETURNS FOR USA & CANADA | FLAT FEE INTERNATIONAL SHIPPING | TOP RATE CONCIERGE CUSTOMER SERVICE.