eticadenim.com Open in urlscan Pro
23.227.38.32  Public Scan

Submitted URL: http://www.eticadenim.com/
Effective URL: https://eticadenim.com/
Submission: On November 07 via api from US — Scanned from CA

Form analysis 3 forms found in the DOM

GET /search

<form class="main-search__form" action="/search" method="get" autocomplete="off">
  <div class="main-search__input-container">
    <input class="main-search__input" type="text" name="q" autocomplete="off" placeholder="Search our store" aria-label="Search">
    <button class="main-search__button" type="submit" aria-label="Search"><svg class="icon" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" focusable="false" role="presentation">
        <g transform="translate(3 3)" stroke="currentColor" stroke-width="1.5" fill="none" fill-rule="evenodd">
          <circle cx="7.824" cy="7.824" r="7.824"></circle>
          <path stroke-linecap="square" d="m13.971 13.971 4.47 4.47"></path>
        </g>
      </svg></button>
  </div>
  <script src="//eticadenim.com/cdn/shop/t/24/assets/search-suggestions.js?v=136224079820713396391717782208" defer=""></script>
  <search-suggestions></search-suggestions>
</form>

POST /contact#contact_form

<form method="post" action="/contact#contact_form" id="contact_form" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden" name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="prospect,newsletter">
  <p>
    <input type="email" placeholder="Your email" class="signup-form__email" value="" name="contact[email]" aria-label="Email" required="">
  </p>
  <button class="btn btn--secondary signup-form__button" type="submit">Subscribe</button>
</form>

POST /localization

<form method="post" action="/localization" id="footer-localization" accept-charset="UTF-8" class="form localization no-js-hidden" enctype="multipart/form-data"><input type="hidden" name="form_type" value="localization"><input type="hidden"
    name="utf8" value="✓"><input type="hidden" name="_method" value="put"><input type="hidden" name="return_to" value="/">
  <div class="localization__grid">
    <div class="localization__selector">
      <input type="hidden" name="country_code" value="CA">
      <country-selector><label class="label visually-hidden no-js-hidden" for="footer-localization-country-button">Country/Region</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-country-button">
            <span class="text-start">Canada (USD&nbsp;$)</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-country-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-country-opt-0" role="option" data-value="CA" aria-selected="true">
              <span class="pointer-events-none">Canada (USD&nbsp;$)</span>
            </li>
          </ul>
        </div>
      </country-selector>
    </div>
    <div class="localization__selector">
      <input type="hidden" name="locale_code" value="en">
      <custom-select id="footer-localization-language"><label class="label visually-hidden no-js-hidden" for="footer-localization-language-button">Language</label>
        <div class="custom-select relative w-full no-js-hidden"><button class="custom-select__btn input items-center" type="button" aria-expanded="false" aria-haspopup="listbox" id="footer-localization-language-button"
            style="--custom-select-button-width: 0px;">
            <span class="text-start">English</span>
            <svg width="20" height="20" viewBox="0 0 24 24" class="icon" role="presentation" focusable="false" aria-hidden="true">
              <path d="M20 8.5 12.5 16 5 8.5" stroke="currentColor" stroke-width="1.5" fill="none"></path>
            </svg>
          </button>
          <ul class="custom-select__listbox absolute invisible" role="listbox" tabindex="-1" aria-hidden="true" hidden="" aria-activedescendant="footer-localization-language-opt-0">
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-0" role="option" data-value="en" aria-selected="true">
              <span class="pointer-events-none">English</span>
            </li>
            <li class="custom-select__option flex items-center js-option" id="footer-localization-language-opt-1" role="option" data-value="es">
              <span class="pointer-events-none">Español</span>
            </li>
          </ul>
        </div>
      </custom-select>
    </div>
  </div>
  <script>
    customElements.whenDefined('custom-select').then(() => {
      if (!customElements.get('country-selector')) {
        class CountrySelector extends customElements.get('custom-select') {
          constructor() {
            super();
            this.loaded = false;
          }
          async showListbox() {
            if (this.loaded) {
              super.showListbox();
              return;
            }
            this.button.classList.add('is-loading');
            this.button.setAttribute('aria-disabled', 'true');
            try {
              const response = await fetch('?section_id=country-selector');
              if (!response.ok) throw new Error(response.status);
              const tmpl = document.createElement('template');
              tmpl.innerHTML = await response.text();
              const el = tmpl.content.querySelector('.custom-select__listbox');
              this.listbox.innerHTML = el.innerHTML;
              this.options = this.querySelectorAll('.custom-select__option');
              this.popular = this.querySelectorAll('[data-popular]');
              if (this.popular.length) {
                this.popular[this.popular.length - 1].closest('.custom-select__option').classList.add('custom-select__option--visual-group-end');
              }
              this.selectedOption = this.querySelector('[aria-selected="true"]');
              if (!this.selectedOption) {
                this.selectedOption = this.listbox.firstElementChild;
              }
              this.loaded = true;
            } catch {
              this.listbox.innerHTML = '<li>Error fetching countries, please try again.</li>';
            } finally {
              super.showListbox();
              this.button.classList.remove('is-loading');
              this.button.setAttribute('aria-disabled', 'false');
            }
          }
          setButtonWidth() {
            return;
          }
        }
        customElements.define('country-selector', CountrySelector);
      }
    });
  </script>
  <script>
    document.getElementById('footer-localization').addEventListener('change', (evt) => {
      const input = evt.target.closest('.localization__selector').firstElementChild;
      if (input && input.tagName === 'INPUT') {
        input.value = evt.detail ? evt.detail.selectedValue : evt.target.value;
        evt.currentTarget.submit();
      }
    });
  </script>
</form>

Text Content

Skip to content
Search
 * New Arrivals
 * Womens
 * Mens
 * Brand Story
 * Lookbook
 * Sale




Account Search Cart

 * New Arrivals
 * Womens
    * Featured
       * New Arrivals
       * Holiday 2024
       * Brand Favorites
       * Sale
   
    * Category
       * All
       * Jeans
       * Tops
       * Dresses
       * Jumpsuits
       * Skirts
       * Shorts
       * Jackets
   
    * Fit
       * Slim & Skinny
       * Straight
       * Wide & Flare
       * Baggy
   
    * New Arrivals
    * Brand Favorites

 * Mens
    * Tops
    * Bottoms

 * Brand Story
 * Lookbook
 * Sale

 * New Arrivals
 * Womens
    * Featured
       * New Arrivals
       * Holiday 2024
       * Brand Favorites
       * Sale
   
    * Category
       * All
       * Jeans
       * Tops
       * Dresses
       * Jumpsuits
       * Skirts
       * Shorts
       * Jackets
   
    * Fit
       * Slim & Skinny
       * Straight
       * Wide & Flare
       * Baggy
   
    * New Arrivals
      Brand Favorites

 * Mens
    * Tops
    * Bottoms

 * Brand Story
 * Lookbook
 * Sale

Best Sellers

Quick buy
Tyler Vintage Straight - Chrome Diopside
$198.00

Quick buy
Romi French Wide Leg - Onyx
$178.00

Quick buy
Finn Slim Straight - Marine
$208.00

Quick buy
Delia Denim Shell Top - Kaan
$100.80 $168.00
Sale

Quick buy
River Crop Jacket - Arcadia
$268.00

Quick buy
Altin Loose Fit Crop - Desert Island
$115.00 $192.00
Sale




STATEMENT DENIM

HOLIDAY 2024 COLLECTION


NEW ARRIVALS


DENIM


BEST SELLERS


BRAND FAVORITES

Play


JOIN US @ÉTICADENIM


Follow us on social
 * Facebook
 * Instagram
 * TikTok
 * Pinterest

Customer Care
 * Contact Us
 * Stockists
 * Find Your Size
 * Ordering & Delivery
 * Returns & Exchanges
 * Gift Cards

Company
 * Brand Story
 * InCloud Production
 * Terms of Service
 * Privacy Policy
 * CA Supply Chains Act

Newsletter

Sign up for exclusive offers, original stories, events and more.



Subscribe
Country/Region
Canada (USD $)
 * Canada (USD $)

Language
English
 * English
 * Español

© 2024 ÉTICA Denim.
Your cart
Close




Checkout
Close
Your cart is empty
Start shopping


✕

eticadenim

Shop the Men's Collection.
October 24

✕

eticadenim

ETICA FALL 2024
October 7

✕

eticadenim

Etica Men's has arrived. Shop the collection now!
September 30

✕

eticadenim

Everyday Denim.
September 2

✕

eticadenim

A Denim Story.
August 31