www.floriacharchives.com Open in urlscan Pro
2620:127:f00f:e::  Public Scan

Submitted URL: http://www.floriacharchives.com/
Effective URL: https://www.floriacharchives.com/
Submission: On March 08 via api from US — Scanned from CA

Form analysis 1 forms found in the DOM

POST /cart

<form action="/cart" method="post" novalidate="">
  <div id="CartContainer" class="fixed top-0 right-0 bottom-0 w-11/12 max-w-md bg-scheme-background text-scheme-text transform transition-transform overflow-hidden flex flex-col px-5" x-show="$store.drawer.cartDrawerOpen"
    x-transition:enter="transition ease duration-300" x-transition:enter-start="opacity-0 translate-x-full" x-transition:enter-end="opacity-100" x-transition:leave="transition ease duration-300" x-transition:leave-end="opacity-100 translate-x-full"
    @click.away.prevent="$store.drawer.cartDrawerOpen = false" role="dialog" aria-modal="true" data-cart-drawer="" aria-labelledby="CartTitle" style="display: none;">
    <div class="relative flex items-center justify-between py-4 border-b-theme-width border-scheme-border">
      <h1 class="font-heading text-base" id="CartTitle" tabindex="-1"> Carrito de compra - <span x-text="$store.cartCount.countWithText()">{{count}} elementos</span>
      </h1>
      <button @click.prevent="$store.drawer.cartDrawerOpen = false" class="block top-0">
        <span class="visually-hidden">Cerrar (esc)</span>
        <span class="inline-block w-7 h-7"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-close" viewBox="0 0 24 24">
            <path fill-rule="evenodd" d="M18.364 4.222l1.414 1.414L13.414 12l6.364 6.364-1.414 1.414L12 13.414l-6.364 6.364-1.414-1.414L10.586 12 4.222 5.636l1.414-1.414L12 10.586l6.364-6.364z" clip-rule="evenodd"></path>
          </svg></span>
      </button>
    </div>
    <template x-if="state &amp;&amp; !state.item_count">
      <div class="py-4">
        <p class="supports-cookies text-align--center" x-text="theme.strings.cartEmpty"></p>
        <p class="supports-no-cookies cookie-message" x-text="theme.strings.cartCookies"></p>
      </div>
    </template>
    <div class="py-4">
      <p class="supports-cookies text-align--center" x-text="theme.strings.cartEmpty">Su carrito actualmente está vacío.</p>
      <p class="supports-no-cookies cookie-message" x-text="theme.strings.cartCookies">Enable cookies to use the shopping cart</p>
    </div>
    <template x-if="state &amp;&amp; state.item_count">
      <div class="flex-auto flex flex-col overflow-hidden">
        <div class="py-4 flex-auto overflow-hidden overflow-y-auto px-5 -mx-5">
          <div class="grid grid-cols-1 gap-gutter">
            <template x-for="(item, index) in state.items" :key="item.key">
              <div class="flex py-4 transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
                <template x-if="!(item.featured_image.url === null)">
                  <div class="flex-shrink-0 w-20 md:w-28 mr-4">
                    <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                        <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                        <pre x-text="item.featured_image.src"></pre>
                      </a>
                  </div>
                </template>
                <div class="flex-auto pr-4">
                  <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
                  <template x-if="item.variant_title">
                    <p class="text-sm" x-text="item.variant_title"></p>
                  </template>
                  <template x-if="item.selling_plan_allocation">
                    <p class="text-sm mt-1 text-scheme-meta" x-text="item.selling_plan_allocation.selling_plan.name"></p>
                  </template>
                  <template x-for="property in flatProperties(item.properties)" :key="property.name">
                    <p class="text-sm">
                      <span x-text="property.name"></span>: <span x-text="property.value"></span>
                    </p>
                  </template>
                  <template x-if="item.line_level_discount_allocations.length">
                    <ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="Descuento">
                      <template x-for="allocation in item.line_level_discount_allocations">
                        <li class="">
                          <span x-text="allocation.discount_application.title"></span>
                          <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                        </li>
                      </template>
                    </ul>
                  </template>
                  <div class="flex mt-1 items-center -mx-4">
                    <button class="p-4 flex items-center justify-center" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Quitar uno ' + item.title">
                      <span class="inline-block w-3 h-3"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" class="icon" viewBox="0 0 20 20">
                          <path d="M17.543 11.029H2.1A1.032 1.032 0 0 1 1.071 10c0-.566.463-1.029 1.029-1.029h15.443c.566 0 1.029.463 1.029 1.029 0 .566-.463 1.029-1.029 1.029z"></path>
                        </svg>
                      </span>
                    </button>
                    <input type="text" name="updates[]" class="min-w-0 w-6 py-2 text-center text-base border-b-text border-current bg-transparent" min="1" aria-label="Cantidad" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
                      @keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
                    <button class="p-4 flex items-center justify-center" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Agrega uno ' + item.title">
                      <span class="inline-block w-3 h-3"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 20 20">
                          <path
                            d="M17.409 8.929h-6.695V2.258c0-.566-.506-1.029-1.071-1.029s-1.071.463-1.071 1.029v6.671H1.967C1.401 8.929.938 9.435.938 10s.463 1.071 1.029 1.071h6.605V17.7c0 .566.506 1.029 1.071 1.029s1.071-.463 1.071-1.029v-6.629h6.695c.566 0 1.029-.506 1.029-1.071s-.463-1.071-1.029-1.071z">
                          </path>
                        </svg></span>
                    </button>
                  </div>
                  <button class="none lg:inline-block mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
                    <small>Quitar </small>
                    <span class="visually-hidden" x-text="item.title"></span>
                  </button>
                </div>
                <div class="ml-1 text-right">
                  <template x-if="item.line_level_discount_allocations.length">
                    <div>
                      <span class="visually-hidden">Precio habitual</span>
                      <del class="line-through" x-html="formatMoney(item.original_price)"></del>
                      <span class="visually-hidden">Precio de oferta</span>
                      <span class="" x-html="formatMoney(item.final_line_price)"></span>
                    </div>
                  </template>
                  <template x-if="!item.line_level_discount_allocations.length">
                    <span class="" x-html="formatMoney(item.final_line_price)"></span>
                  </template>
                  <template x-if="item.unit_price_measurement">
                    <div class="text-sm">
                      <span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
                      <span x-text="item.unit_price_measurement.reference_unit"></span>
                    </div>
                  </template>
                  <template x-if="item.line_level_discount_allocations.length">
                    <ul class="hidden lg:block mt-1 text-sm text-scheme-accent" aria-label="Descuento">
                      <template x-for="allocation in item.line_level_discount_allocations">
                        <li class="">
                          <span x-text="allocation.discount_application.title"></span>
                          <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                        </li>
                      </template>
                    </ul>
                  </template>
                </div>
              </div>
            </template>
          </div>
          <div class="py-4">
            <label for="CartSpecialInstructions" class="text-sm"> Instrucciones especiales para el vendedor </label>
            <textarea name="note" id="CartSpecialInstructions" class="block mt-1 p-2 w-full border-theme-width border-scheme-border text-sm bg-transparent" :class="{ 'opacity-50 cursor-wait' : noteUpdating }" x-text="state.note"
              @keyup.debounce.1000ms="keyupOnInput($event)" @change="updateNote($event)">              </textarea>
          </div>
        </div>
        <div class="pt-4 lg:pt-8 pb-safe-bottom border-scheme-border border-t-theme-width">
          <div :class="{ 'opacity-50  cursor-wait': updating }">
            <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
              <p class="flex justify-between text-scheme-accent pb-2">
                <span class="visually-hidden">Descuento</span>
                <span x-text="application.title"></span>
                <span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
              </p>
            </template>
            <p class="flex justify-between text-lg">
              <span>Subtotal</span>
              <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
            </p>
            <p class="mt-4 text-sm accent-links-scheme text-right"> Impuesto incluido. Los <a href="/policies/shipping-policy">gastos de envío</a> se calculan en la pantalla de pagos. </p>
            <div class="text-right mt-4">
              <div>
                <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full w-full btn btn-solid-primary-text" :disabled="updating" value="Finalizar pedido">
              </div>
              <div class="w-full md:mt-2 additional-checkout-buttons Liquid error (snippets/cart-drawer line 237): Could not find asset snippets/button-style.liquid">
                <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </template>
  </div>
</form>

Text Content

Ir directamente al contenido


Cerrar (esc)
Menú
Cerrar menú

 * SHOP
 * FLORIACH ARCHIVES
 * LOOKBOOK
 * GALLERY
 * SUPPORT
 * ABOUT

 * Ingresar
 * Crear cuenta

 * Instagram


CARRITO DE COMPRA - {{COUNT}} ELEMENTOS

Cerrar (esc)



Su carrito actualmente está vacío.

Enable cookies to use the shopping cart

:

−


Quitar
Precio habitual Precio de oferta
/
−

Instrucciones especiales para el vendedor

Descuento

Subtotal

Impuesto incluido. Los gastos de envío se calculan en la pantalla de pagos.



DROP NOW

Menú




Ingresar
0 {{count}} elementos
 * BODIES BOMBER HOODIE
   
   BODIES BOMBER HOODIE
   
   65,00
   
   Green Pink
 * En oferta
   
   BAGGY SWEATPANTS
   
   BAGGY SWEATPANTS
   
   60,00 Precio habitual 65,00
   
   BROWN PINK
 * ???? PANTS
   
   ???? PANTS
   
   52,00

 * En oferta
   
   TORTURE MASK HOODIE
   
   TORTURE MASK HOODIE
   
   58,00 Precio habitual 64,00

 * En oferta
   
   LONG SLEEVE CHURCH TEE
   
   LONG SLEEVE CHURCH TEE
   
   37,00 Precio habitual 38,00

 * En oferta
   
   WAVY BELT
   
   WAVY BELT
   
   55,00 Precio habitual 69,00

 * LEAD SHOTS TEE
   
   LEAD SHOTS TEE
   
   42,00

 * En oferta
   
   FHS TEE (BASIC)
   
   FHS TEE (BASIC)
   
   26,00 Precio habitual 32,00

 * En oferta
   
   LONG SKIRT
   
   LONG SKIRT
   
   45,00 Precio habitual 50,00

 * En oferta
   
   METAL TSHIRT
   
   METAL TSHIRT
   
   28,00 Precio habitual 32,00

 * En oferta
   
   PELUXITO SHORTS
   
   PELUXITO SHORTS
   
   40,00 Precio habitual 42,00

 * SCARS PANTS
   
   SCARS PANTS
   
   42,00

 * En oferta
   
   GUILTY TEE
   
   GUILTY TEE
   
   De 32,00 Precio habitual 35,00

 * FHS TEE
   
   FHS TEE
   
   33,00

 * PLEATED CARGO PANTS
   
   PLEATED CARGO PANTS
   
   Agotado

 * En oferta
   
   FOOTBALL TEE
   
   FOOTBALL TEE
   
   De 32,00 Agotado Precio habitual 38,00

 * BUTCHER HOODIE
   
   BUTCHER HOODIE
   
   180,00

 * YETI PANTS
   
   YETI PANTS
   
   52,00

Todos

© 2024, FLORIACH ARCHIVES


PAGOS ACEPTADOS

 * American Express
 * Apple Pay
 * Google Pay
 * Maestro
 * Mastercard
 * PayPal
 * Shop Pay
 * Union Pay
 * Visa


Cerrar (esc)




 * La elección de una selección da como resultado una actualización de página
   completa.
 * Presione la tecla de espacio y luego las teclas de flecha para hacer una
   selección.