/** Shopify CDN: Minification failed

Line 485:21 Expected identifier but found whitespace
Line 511:19 Expected identifier but found whitespace
Line 1930:26 Expected identifier but found whitespace
Line 1956:26 Expected identifier but found whitespace
Line 2207:0 Unexpected "}"
Line 3239:21 Expected identifier but found whitespace
Line 3266:21 Expected identifier but found whitespace
Line 3287:21 Expected identifier but found whitespace
Line 3302:21 Expected identifier but found whitespace
Line 3331:21 Expected identifier but found whitespace
... and 10 more hidden warnings

**/
/* ==========================================================
   ERICKA J HOMEPAGE
   ========================================================== */


/* ==========================================================
   01. VARIABLES
   ========================================================== */

.ericka-home {
  --ej-green: #c5e02d;
  --ej-black: #232323;
  --ej-white: #ffffff;
  --ej-glow: 0 0 20px #c5e02d;

  --ej-page-width: 1280px;
  --ej-content-width: 1280px;

  --ej-section-spacing: 96px;
  
  --ej-font-heading: "Bebas Neue", sans-serif;
  --ej-font-body: "Jost", sans-serif;

  --ej-home-bg-color: #000000;
  --ej-home-bg-desktop: none;
  --ej-home-bg-mobile: var(--ej-home-bg-desktop);

  --ej-home-bg-position-desktop: center top;
  --ej-home-bg-position-mobile: center top;

  --ej-home-bg-opacity: 1;

  --ej-card-gap: 16px;
  --ej-card-padding: 16px;

  --ej-border-width: 3px;
  --ej-border-color: var(--ej-green);
  
}


/* ==========================================================
   02. HOMEPAGE BASE
   ========================================================== */

.ericka-home {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-color: var(--ej-home-bg-color);
  color: var(--ej-white);

  isolation: isolate;
}




/* ==========================================================
   03. GLOBAL BACKGROUND
   ========================================================== */

.ericka-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image: var(--ej-home-bg-desktop);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  background-attachment: fixed;

  pointer-events: none;
}

/* ==========================================================
   04. SHARED SECTION LAYOUT
   ========================================================== */

.ericka-home-section {
  position: relative;
  width: 100%;
}

.ericka-home-container {
  width: calc(100% - (var(--ej-page-padding) * 2));
  max-width: var(--ej-content-width);
  margin-inline: auto;
}


/* ==========================================================
   05. SHARED TYPOGRAPHY
   ========================================================== */

.ericka-home-heading {
  margin: 0;

  font-family: var(--ej-font-heading);
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;
}

.ericka-home-body {
  font-family: var(--ej-font-body);
}

.ericka-home .ej-green {
  color: var(--ej-green);
}

.ej-registered {
  display: inline-block;

  font-family: Arial, sans-serif;
  font-size: 0.45em;
  line-height: 1;

  vertical-align: top;

  position: relative;
  top: 0.08em;

  margin-left: 0.05em;
}


/* ==========================================================
   06. SHARED BUTTONS
   ========================================================== */

.ericka-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 10px 24px;

  border: 0;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-weight: 700;

  text-decoration: none;
  text-transform: uppercase;

  cursor: pointer;
}


/* ==========================================================
   07. SHARED MEDIA
   ========================================================== */

.ericka-home img,
.ericka-home video {
  display: block;

  max-width: 100%;
}


/* ==========================================================
   08. HOMEPAGE SETTINGS
   ========================================================== */

.ericka-home-settings-section,
.ericka-home-settings {
  display: none;
}

/* ==========================================================
   09. LAID LOOKS WE LOVE
   ========================================================== */

.ericka-home-looks {
  padding-block: var(--ej-section-spacing);
}


/* ==========================================================
   LOOKS HEADER
   ========================================================== */

.ericka-home-looks__header {
  margin-bottom: 36px;
  text-align: center;
}

.ericka-home-looks__heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;

  font-size: 128px;
  line-height: 0.9;
}

.ericka-home-looks__heading-green {
  color: var(--ej-green);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.ericka-home-looks__heading-white {
  color: var(--ej-white);
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.ericka-home-looks__subheading {
  margin-top: 36px;

  font-size: 22px;
  line-height: 1.4;

  color: var(--ej-white);
}


/* ==========================================================
   LOOKS GRID
   ========================================================== */

.ericka-home-looks__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: 24px;

  gap: var(--ej-card-gap);
}


/* ==========================================================
   LOOK CARD
   ========================================================== */

.ericka-home-looks__card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 500px;

  overflow: hidden;

  border:
  var(--ej-border-width)
  solid
  var(--ej-border-color);

box-shadow: var(--ej-glow);

  background: #111;
}


/* ==========================================================
   LOOK IMAGE
   ========================================================== */

.ericka-home-looks__image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  z-index: 0;
}

.ericka-home-looks__placeholder {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.08);
}

.ericka-home-looks__placeholder-svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   LOOK IMAGE OVERLAY
   ========================================================== */

.ericka-home-looks__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.08) 52%,
      rgba(0, 0, 0, 0.72) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   LOOK CONTENT
   ========================================================== */

.ericka-home-looks__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 640px;

  padding: 24px 16px 48px;
}

.ericka-home-looks__copy {
  margin-bottom: 18px;

  text-align: center;
}


/* ==========================================================
   LOOK TITLE
   ========================================================== */

.ericka-home-looks__title {
  margin: 0;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.92;

  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   LOOK OPTIONAL SUBTITLE
   ========================================================== */

.ericka-home-looks__card-subtitle {
  margin-top: 5px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;

  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   LOOK BUTTON
   ========================================================== */

.ericka-home-looks__button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 42px;

  padding: 8px 16px;

  border: 0;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (min-width: 768px) and (max-width: 1280px)  {

  .ericka-home-looks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ericka-home-looks__card,
  .ericka-home-looks__content {
    min-height: 520px;
  }

  h2{font-size: 96px !important;}

}


/* ==========================================================
   MOBILE LOOKS — STICKY FIX
   ========================================================== */

@media (max-width: 767px) {

  /* --------------------------------------------------------
     Shopify section wrapper
     -------------------------------------------------------- */

  .ericka-home-looks-section {
    overflow: visible !important;
    contain: none !important;
  }


  /* --------------------------------------------------------
     Tall scroll section
     -------------------------------------------------------- */

  .ericka-home-looks[
    data-ericka-looks-scroll-active="true"
  ] {
    position: relative !important;

    height: var(
      --ericka-looks-scroll-height,
      380svh
    ) !important;

    min-height: var(
      --ericka-looks-scroll-height,
      380svh
    ) !important;

    padding-block: 0 !important;

    overflow: visible !important;
    contain: none !important;
  }


  /* --------------------------------------------------------
     Sticky viewport
     -------------------------------------------------------- */

.ericka-home-looks[
  data-ericka-looks-scroll-active="true"
] > .ericka-home-container {
  position: -webkit-sticky !important;
  position: sticky !important;

  top: calc(
    -1 * var(--ericka-looks-sticky-offset, 0px)
  ) !important;

  width: 100%;

  min-height: 100svh !important;

  display: flex;
  flex-direction: column;

  padding-bottom: 96px;

  overflow: clip;
}


  /* ========================================================
     HEADER
     ======================================================== */

.ericka-home-looks__header {
  position: relative;
  z-index: 5;

  flex: 0 0 auto;

  margin-bottom: 20px;
}

  .ericka-home-looks__heading {
    gap: 8px;

    font-size: 96px;
  }

  .ericka-home-looks__subheading {
    margin-top: 56px;
    font-size: 22px;
    max-width: 339px;
    place-self: center;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 5%;
  }


  /* ========================================================
     CARD STAGE
     ======================================================== */

      .ericka-home-looks__grid {
        position: relative;
        z-index: 2;

        display: grid;
        grid-template-columns: 1fr;

        width: 100%;

        flex: 1 1 auto;
        min-height: 0;

        gap: 0;
      }


  /* ========================================================
     CARD BASE
     ======================================================== */

    .ericka-home-looks__card {
      grid-area: 1 / 1;

      width: 100%;

      /*
      * Leaves room for:
      * header
      * dots
      * bottom padding
      */
      height: min(
        580px,
        calc(100svh - 220px)
      );

      min-height: 0;
      max-height: 68svh;

      opacity: 0;
      visibility: hidden;

      transform:
        translateY(16px)
        scale(0.99);

      pointer-events: none;

      transition:
        opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.5s;
    }

    .ericka-home-looks__heading-white{
      color: var(--ej-green);
    }


  /* ========================================================
     ACTIVE CARD
     ======================================================== */

      .ericka-home-looks__card.is-active {
        z-index: 3;

        opacity: 1;
        visibility: visible;

        transform:
          translateY(0)
          scale(1);

        pointer-events: auto;

        transition:
          opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
          visibility 0s;
      }


  /* ========================================================
     PREVIOUS CARD
     ======================================================== */


.ericka-home-looks__card.is-before {
  transform:
    translateY(-16px)
    scale(0.99);
}


  /* ========================================================
     NEXT CARD
     ======================================================== */

.ericka-home-looks__card.is-after {
  transform:
    translateY(16px)
    scale(0.99);
}


  /* ========================================================
     CARD HEIGHT
     ======================================================== */

      .ericka-home-looks__content {
        min-height: 0;
        height: 100%;
      }


  /* ========================================================
     TYPOGRAPHY
     ======================================================== */

  .ericka-home-looks__title {
    font-size: 60px;
  }

  .ericka-home-looks__card-subtitle {
    font-size: 60px;
  }

}

@media (max-width: 767px) {

  .ericka-home-looks__dots {
    position: relative;
    z-index: 6;

    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    width: 100%;

    margin-top: 14px;
  }

  .ericka-home-looks__dot {
    width: 7px;
    height: 7px;

    padding: 0;

    border: 0;
    border-radius: 999px;

    background: var(--ej-white);

    cursor: pointer;

    transition:
      width 0.25s ease,
      background-color 0.25s ease;
  }

  .ericka-home-looks__dot.is-active {
    width: 24px;

    background: #f72585;
  }

}




/* ==========================================================
   10. ONCE YOU GO ERICKA J
   ========================================================== */



/* ==========================================================
   SECTION / FULL-WIDTH EFFECT
   ========================================================== */

.ericka-home-videos {
  position: relative;

  width: 100%;

  padding-block: var(--ej-section-spacing);

  overflow: clip;
}


/*
 * This belongs to the SECTION, not to the 1280px container.
 */

.ericka-home-videos__effect {
  position: absolute;

  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;

  pointer-events: none;
}


.ericka-home-videos__effect-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/*
 * Only the actual content is constrained
 * to the normal homepage container.
 */

.ericka-home-videos .ericka-home-container {
  position: relative;

  z-index: 2;
}


/* ==========================================================
   HEADER
   ========================================================== */

.ericka-home-videos__header {
  position: relative;

  z-index: 5;

  margin-bottom: 48px;

  text-align: center;
}

.ericka-home-videos__heading {
  margin: 0;

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 400;
  line-height: 0.84;

  text-transform: uppercase;
}

.ericka-home-videos__subheading {
  margin-top: 10px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 400;
  line-height: 0.88;

  text-transform: uppercase;
}
.ericka-home-videos__mobile-heading {
  display: none;
}


/* ==========================================================
   SLIDER STAGE
   ========================================================== */

.ericka-home-videos__stage {
  position: relative;

  display: grid;

  grid-template-columns: 1fr;

  align-items: center;
  justify-items: center;

  width: 100%;

  cursor: grab;

  touch-action: pan-y;

  user-select: none;
  -webkit-user-select: none;
}

.ericka-home-videos__stage.is-dragging {
  cursor: grabbing;
}

/* ==========================================================
   CARD BASE
   ========================================================== */

.ericka-home-videos__card {
  grid-area: 1 / 1;

  position: relative;

  width: 440px;
  max-width: 440px;

  padding: 20px;

  background: var(--ej-white);
  color: var(--ej-black);

  opacity: 0;
  visibility: hidden;

  transform:
    translate3d(0, 20px, 0)
    scale(0.86);

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease,
    padding 0.45s ease;

  will-change:
    transform,
    opacity;

  pointer-events: none;
}


/* ==========================================================
   ACTIVE
   ========================================================== */

.ericka-home-videos__card.is-active {
  z-index: 4;

  padding: 24px;

  opacity: 1;
  visibility: visible;

  transform:
    translate3d(0, 0, 0)
    scale(1);

  pointer-events: auto;
}


/* ==========================================================
   PREVIOUS
   ========================================================== */

.ericka-home-videos__card.is-prev {
  z-index: 2;

  opacity: 1;
  visibility: visible;

  transform:
    translate3d(-430px, 20px, 0)
    scale(0.86);

  pointer-events: auto;
}


/* ==========================================================
   NEXT
   ========================================================== */

.ericka-home-videos__card.is-next {
  z-index: 2;

  opacity: 1;
  visibility: visible;

  transform:
    translate3d(430px, 20px, 0)
    scale(0.86);

  pointer-events: auto;
}
/* ==========================================================
   PREVIEW MEDIA
   ========================================================== */

.ericka-home-videos__media {
  position: relative;

  display: block;

  width: 100%;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;

  overflow: hidden;
}

.ericka-home-videos__media:disabled {
  cursor: default;
}

.ericka-home-videos__preview {
  display: block;

  width: 100%;
  height: auto;

  object-fit: cover;
}

.ericka-home-videos__preview-placeholder {
  width: 100%;

  aspect-ratio: 4 / 5;

  background: #eeeeee;
}

.ericka-home-videos__placeholder-svg {
  display: block;

  width: 100%;
  height: 100%;
}


/* ==========================================================
   PLAY BUTTON
   ========================================================== */

.ericka-home-videos__play {
  position: absolute;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  display: flex;

  align-items: center;
  justify-content: center;

  width: 62px;
  height: 62px;

  border-radius: 50%;

  background: rgba(0, 0, 0, 0.72);
  color: var(--ej-green);

  pointer-events: none;
}

.ericka-home-videos__play-icon {
  position: relative;

  left: 2px;

  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.ericka-home-videos__content {
  padding-top: 20px;
}


/* ==========================================================
   RATING
   ========================================================== */

.ericka-home-videos__rating {
  display: flex;

  align-items: center;

  gap: 2px;
}

.ericka-home-videos__star {
  color: #d5d5d5;

  font-size: 18px;
  line-height: 1;
}

.ericka-home-videos__star.is-active {
  color: var(--ej-green);
}


/* ==========================================================
   TITLE
   ========================================================== */

.ericka-home-videos__title {
  margin:
    12px
    0
    0;

  font-family: var(--ej-font-body);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;

  text-transform: uppercase;
  color: #6C7B19;
}


/* ==========================================================
   REVIEW TEXT
   ========================================================== */

.ericka-home-videos__text {
  margin-top: 14px;

  font-family: var(--ej-font-body);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ej-black);
}

.ericka-home-videos__text p {
  margin:
    0
    0
    12px;
}

.ericka-home-videos__text p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   AUTHOR
   ========================================================== */

.ericka-home-videos__author {
  margin-top: 16px;

  font-family: var(--ej-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: var(--ej-black);
}

/* ==========================================================
   SIDE CARD DARKENING
   ========================================================== */

.ericka-home-videos__card::after {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 20;

  background: rgba(0, 0, 0, 0);

  pointer-events: none;

  transition:
    background-color 0.45s ease;
}


.ericka-home-videos__card.is-prev::after,
.ericka-home-videos__card.is-next::after {
  background: rgba(0, 0, 0, 0.32);
}


.ericka-home-videos__card.is-active::after {
  background: rgba(0, 0, 0, 0);
}


/* ==========================================================
   NAVIGATION
   ========================================================== */

.ericka-home-videos__navigation {
  position: relative;

  z-index: 6;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 40px;
}


/* ==========================================================
   NAV ARROWS
   ========================================================== */

.ericka-home-videos__nav-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 26px;
  height: 26px;

  flex: 0 0 auto;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
}


/* ==========================================================
   DOTS
   ========================================================== */

.ericka-home-videos__dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 6px;
}

.ericka-home-videos__dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 999px;

  background: var(--ej-white);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background-color 0.25s ease;
}

.ericka-home-videos__dot.is-active {
  width: 24px;

  background: var(--ej-green);
}


/* ==========================================================
   VIDEO MODAL
   ========================================================== */

.ericka-home-videos__modal {
  position: fixed;

  inset: 0;

  z-index: 999999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 24px;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.ericka-home-videos__modal.is-open {
  opacity: 1;
  visibility: visible;

  pointer-events: auto;
}


/* ==========================================================
   MODAL BACKDROP
   ========================================================== */

.ericka-home-videos__modal-backdrop {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  padding: 0;

  border: 0;

  background: rgba(0, 0, 0, 0.88);

  cursor: pointer;
}


/* ==========================================================
   MODAL DIALOG
   ========================================================== */

.ericka-home-videos__modal-dialog {
  position: relative;

  z-index: 2;

  width: min(
    90vw,
    560px
  );

  max-height: 90svh;

  background: var(--ej-black);
}


/* ==========================================================
   MODAL CONTENT
   ========================================================== */

.ericka-home-videos__modal-content {
  width: 100%;
}


/* ==========================================================
   MODAL VIDEO
   ========================================================== */

.ericka-home-videos__modal-video {
  display: block;

  width: 100%;
  height: auto;

  max-height: 86svh;

  object-fit: contain;

  background: var(--ej-black);
}


/* ==========================================================
   MODAL CLOSE
   ========================================================== */

.ericka-home-videos__modal-close {
  position: absolute;

  top: -18px;
  right: -18px;

  z-index: 5;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;

  cursor: pointer;
}


/* ==========================================================
   PREVENT PAGE SCROLL WHILE MODAL IS OPEN
   ========================================================== */

html.ericka-video-modal-open,
html.ericka-video-modal-open body {
  overflow: hidden;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1100px) {

  .ericka-home-videos__card {
    width: min(42vw, 400px);
  }

  .ericka-home-videos__card.is-prev {
    transform:
      translateX(-330px)
      scale(0.86);
  }

  .ericka-home-videos__card.is-next {
    transform:
      translateX(330px)
      scale(0.86);
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

  /*
   * Hide the existing desktop heading only on mobile.
   */

  .ericka-home-videos__heading {
    display: none;
  }


  /*
   * Show mobile-specific heading.
   */

  .ericka-home-videos__mobile-heading {
    display: block;

    width: 100%;

    text-align: center;
  }


  .ericka-home-videos__mobile-heading-1 {
    color: var(--ej-green);

    font-family: var(--ej-font-heading);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.15;

    text-transform: uppercase;
  }


  .ericka-home-videos__mobile-heading-2 {
    margin-top: 8px;

    color: var(--ej-green);

    font-family: var(--ej-font-heading);
    font-size: 96px;
    font-weight: 400;
    line-height: 0.82;

    text-transform: uppercase;
  }

}


@media (max-width: 767px) {

  .ericka-home-videos {
    overflow: clip;
  }


  /* Header */

  .ericka-home-videos__header {
    margin-bottom: 28px;
  }

  .ericka-home-videos__heading {
    font-size: 60px;
  }

  .ericka-home-videos__subheading {
    margin-top: 8px;

    font-size: 60px;
    color: var(--ej-green);
    max-width: 300px;
    justify-self: center;
  }


  /* Stage */

  .ericka-home-videos__stage {
    width: 100%;
  }


  /* Cards */

  .ericka-home-videos__card {
    width: min(
      86vw,
      360px
    );

    padding: 16px;
  }

  .ericka-home-videos__card.is-active {
    padding: 18px;

    transform:
      translateX(0)
      scale(1);
  }

  .ericka-home-videos__card.is-prev {
    transform:
      translateX(-72%)
      scale(0.82);
  }

  .ericka-home-videos__card.is-next {
    transform:
      translateX(72%)
      scale(0.82);
  }


  /* Card typography */

  .ericka-home-videos__title {
    font-size: 22px;
    line-height: 1.15;
  }

  .ericka-home-videos__text {
    font-size: 16px;
  }


  /* Navigation */

  .ericka-home-videos__navigation {
    margin-top: 28px;
  }


  /* Modal */

  .ericka-home-videos__modal {
    padding: 16px;
  }

  .ericka-home-videos__modal-dialog {
    width: 100%;

    max-width: 440px;
  }

  .ericka-home-videos__modal-video {
    max-height: 82svh;
  }

  .ericka-home-videos__modal-close {
    top: -12px;
    right: -8px;

    width: 38px;
    height: 38px;

    font-size: 25px;
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .ericka-home-videos__card,
  .ericka-home-videos__dot,
  .ericka-home-videos__modal {
    transition: none;
  }

}


/* ==========================================================
   11. ESSENTIALS
   ========================================================== */

.ericka-home-essentials {
  padding-block: var(--ej-section-spacing);
}


/* ==========================================================
   ESSENTIALS HEADER
   ========================================================== */

.ericka-home-essentials__header {
  margin-bottom: 36px;

  text-align: center;
  z-index: 3;
}

.ericka-home-essentials__heading {
  margin: 0;

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: 128px;
  font-weight: 400;
  line-height: 0.88;

  text-transform: uppercase;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.ericka-home-essentials__subheading {
  margin-top: 16px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.95;

  text-transform: uppercase;
}


/* ==========================================================
   ESSENTIALS GRID
   ========================================================== */

.ericka-home-essentials__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: 24px;

  gap: var(--ej-card-gap);
}


/* ==========================================================
   ESSENTIAL CARD
   ========================================================== */

.ericka-home-essentials__card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;
  min-height: 640px;

  overflow: hidden;

  border:
    var(--ej-border-width)
    solid
    var(--ej-border-color);

  box-shadow: var(--ej-glow);

  background: #111;
}


/* ==========================================================
   ESSENTIAL IMAGE
   ========================================================== */

.ericka-home-essentials__image {
  position: absolute;

  inset: 0;

  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.ericka-home-essentials__placeholder {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.08);
}

.ericka-home-essentials__placeholder-svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   ESSENTIAL OVERLAY
   ========================================================== */

.ericka-home-essentials__overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 35%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.78) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   ESSENTIAL CONTENT
   ========================================================== */

.ericka-home-essentials__content {
  position: relative;

  z-index: 2;

  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;

  min-height: 640px;

  padding: 24px 16px 48px;
}

.ericka-home-essentials__copy {
  margin-bottom: 18px;

  text-align: center;
}


/* ==========================================================
   ESSENTIAL TITLE
   ========================================================== */

.ericka-home-essentials__title {
  margin: 0;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.92;

  text-align: center;
  text-transform: uppercase;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   ESSENTIAL DESCRIPTION
   ========================================================== */

.ericka-home-essentials__description {
  margin-top: 8px;

  color: var(--ej-white);

  font-family: var(--ej-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;

  text-align: center;
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}


/* ==========================================================
   ESSENTIAL BUTTON
   ========================================================== */

.ericka-home-essentials__button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 42px;

  padding: 8px 16px;

  border: 0;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

  .ericka-home-essentials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ericka-home-essentials__card,
  .ericka-home-essentials__content {
    min-height: 520px;
  }

}

/* ==========================================================
   ESSENTIALS — MOBILE
   Sticky scroll cards
   ========================================================== */

@media (max-width: 767px) {

  /* ========================================================
     SHOPIFY WRAPPER
     Important for position: sticky
     ======================================================== */

  .ericka-home-essentials-section {
    overflow: visible !important;
    contain: none !important;
    padding-top: 96px;
  }


  /* ========================================================
     SCROLL SECTION
     JS defines the final height.
     ======================================================== */

  .ericka-home-essentials[
    data-ericka-essentials-scroll-active="true"
  ] {
    position: relative !important;

    height: var(
      --ericka-essentials-scroll-height,
      460svh
    ) !important;

    min-height: var(
      --ericka-essentials-scroll-height,
      460svh
    ) !important;

    padding: 0 !important;

    overflow: visible !important;
    contain: none !important;
  }


  /* ========================================================
     STICKY VIEWPORT
     ======================================================== */

  .ericka-home-essentials[
    data-ericka-essentials-scroll-active="true"
  ] > .ericka-home-container {
    position: -webkit-sticky !important;
    position: sticky !important;

    top: 0 !important;

    width: 100%;

    /*
     * No fixed height.
     * The tall card is allowed to define the needed space.
     */
    min-height: 100svh !important;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding-bottom: 32px;

  top: -180px !important;
    
}

  /* ========================================================
     HEADER
     ======================================================== */

  .ericka-home-essentials__header {
    position: relative;
    z-index: 5;

    flex: 0 0 auto;

    margin-bottom: 0;

    text-align: center;
  }

  .ericka-home-essentials__heading {
    margin: 0;

    font-size: 80px;
    line-height: 0.82;
    max-width: 280px;
    
            justify-self: center;
  }

  .ericka-home-essentials__subheading {
    margin-top: 26px;

    font-size: 28px;
    line-height: 0.9;
  }


  /* ========================================================
     CARD STAGE
     Slight overlap behind heading.
     ======================================================== */

  .ericka-home-essentials__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr;

    width: 100%;

    margin-top: -48px;

    gap: 0;
    padding-inline:0 !important;
  }


  /* ========================================================
     CARD
     Never taller than 80% of viewport.

     The second value also ensures we leave room
     for the heading on shorter phones.
     ======================================================== */

  .ericka-home-essentials__card {
    grid-area: 1 / 1;

    position: relative;

    width: 100%;

    /*
     * THIS replaces the fixed 848px height.
     *
     * At 342px wide → ~848px tall.
     * At smaller widths → scales proportionally.
     */
    aspect-ratio: 342 / 848;

    height: auto;
    min-height: 0;
    max-height: 100svh;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform:
      translateY(12px)
      scale(0.995);

    pointer-events: none;
    border: none !important;
    box-shadow: none !important;

    transition:
      opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.6s;
  }


  /* ========================================================
     ACTIVE CARD
     ======================================================== */

  .ericka-home-essentials__card.is-active {
    z-index: 3;

    opacity: 1;
    visibility: visible;

    transform:
      translateY(0)
      scale(1);

    pointer-events: auto;

    transition:
      opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s;
  }


  /* ========================================================
     CARD THAT ALREADY PASSED
     ======================================================== */

  .ericka-home-essentials__card.is-before {
    transform:
      translateY(-12px)
      scale(0.995);
  }


  /* ========================================================
     UPCOMING CARD
     ======================================================== */

  .ericka-home-essentials__card.is-after {
    transform:
      translateY(12px)
      scale(0.995);
  }


  /* ========================================================
     CONTENT
     Must follow card height instead of forcing 848px.
     ======================================================== */

   .ericka-home-essentials__content {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    width: 100%;
    height: 100%;

    min-height: 0;
    max-height: 90vh;
  }


  /* ========================================================
     BACKGROUND IMAGE
     If your card image is absolutely positioned,
     this keeps it filling the new responsive height.
     ======================================================== */

  .ericka-home-essentials__image {
    position: absolute;

    inset: 0;

    z-index: 0;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    max-height: none;
  }


  /* ========================================================
     CARD COPY
     ======================================================== */

  .ericka-home-essentials__title {
    font-size: 80px;
    line-height: 0.88;
  }

  .ericka-home-essentials__subheading{
          font-size: 48px;
          line-height: 0.9;
          max-width: 280px;
          justify-self: center;
          color: var(--ej-green);
        }
  }


  /* ========================================================
     REDUCED MOTION
     ======================================================== */

  @media (prefers-reduced-motion: reduce) {

    .ericka-home-essentials__card {
      transition: none;
      transform: none;
    }

  }

}

   /* ==========================================================
   12. PRODUCTS
   ========================================================== */

.ericka-home-products {
  position: relative;

  width: 100%;

  padding-block: var(--ej-section-spacing);

  overflow: clip;
}


/* ==========================================================
   HEADER
   ========================================================== */

.ericka-home-products__header {
  margin-bottom: 48px;
}

.ericka-home-products__heading {
  margin: 0;

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: 128px;
  font-weight: 400;
  line-height: 0.84;

  text-transform: uppercase;
  text-align: center;
}

.ericka-home-products__subheading {
  margin-top: 10px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  text-align: center;
}


/* ==========================================================
   SLIDER WRAP
   ========================================================== */

.ericka-home-products__slider-wrap {
  position: relative;

  display: flex;

  align-items: center;

  width: 100%;
}


/* ==========================================================
   VIEWPORT
   ========================================================== */

.ericka-home-products__viewport {
  width: 100%;

  overflow: hidden;
}


/* ==========================================================
   TRACK
   ========================================================== */

.ericka-home-products__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}


/* ==========================================================
   CARD
   ========================================================== */

.ericka-home-products__card {
  flex: 0 0 440px;

  width: 440px;
  min-width: 440px;

  min-height: 700px;

  display: flex;
  flex-direction: column;

  background: var(--ej-white);
  color: var(--ej-black);
  padding: 24px 24px 32px;
  border: 1px solid var(--ej-border-color);
}


/* ==========================================================
   PRODUCT MEDIA
   ========================================================== */

.ericka-home-products__media {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #f5f5f5;
}

.ericka-home-products__images {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;
}

.ericka-home-products__image-slide {
  position: absolute;

  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.ericka-home-products__image-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.ericka-home-products__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.ericka-home-products__image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.ericka-home-products__placeholder-svg {
  display: block;

  width: 100%;
  height: 100%;
}

.ericka-home-products__viewport {
  cursor: grab;

  touch-action: pan-y;

  user-select: none;
  -webkit-user-select: none;
}


.ericka-home-products__viewport.is-dragging {
  cursor: grabbing;
}


/* ==========================================================
   IMAGE DOTS
   ========================================================== */

.ericka-home-products__image-dots {
  position: static;
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 6px;

  width: 100%;

  margin-top: 16px;
  margin-bottom: 4px;
}

.ericka-home-products__image-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.35);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.ericka-home-products__image-dot.is-active {
  background: var(--ej-green);

  transform: scale(1.3);
}


/* ==========================================================
   CARD CONTENT
   ========================================================== */

.ericka-home-products__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: 32px;


}


/* ==========================================================
   PRODUCT TITLE
   ========================================================== */

.ericka-home-products__title {
  margin: 0;

  font-family: var(--ej-font-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 0.92;

  text-align: center;
  text-transform: uppercase;
  max-width: 204px;
  align-self: center;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.ericka-home-products__title a {
  color: inherit;

  text-decoration: none;
}


/* ==========================================================
   CUSTOM METAFIELDS
   ========================================================== */

.ericka-home-products__skin-type {
  margin-top: 16px;

  font-family: var(--ej-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5%;
}

.ericka-home-products__hold-duration {
  margin-top: 12px;

  font-family: var(--ej-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  font-style: italic;
  text-align: center;
}


/* ==========================================================
   RATING
   ========================================================== */

.ericka-home-products__rating {
  display: flex;

  justify-content: center;

  margin-top: 6px;

  color: var(--ej-green);
}

.ericka-home-products__rating svg,
.ericka-home-products__rating path {
  fill: currentColor;
  color: var(--ej-green);
}

.ericka-home-products__rating-text {
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 14px;
  font-weight: 600;
}


/* ==========================================================
   SHORT DESCRIPTION
   ========================================================== */

.ericka-home-products__description {
  margin-top: 24px;

  font-family: var(--ej-font-body);
  font-size: 16px;
  line-height: 1.45;
  font-style: italic;
  text-align: left;
}


/* ==========================================================
   PRODUCT FORM
   ========================================================== */

.ericka-home-products__form {
  width: 100%;
  padding-top: 24px;
}


/* ==========================================================
   ADD TO CART
   ========================================================== */

.ericka-home-products__add {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 46px;

  padding: 12px 14px;

  border: 0;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.ericka-home-products__add:disabled {
  opacity: 0.5;

  cursor: not-allowed;
}


/* ==========================================================
   PRODUCT DETAILS
   ========================================================== */

.ericka-home-products__details {
  display: block;

  margin-top: 6px;

  color: var(--ej-black);

  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 400;

  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ericka-home-products__start-spacer {
  flex: 0 0 56px;

  width: 56px;
}

/* ==========================================================
   PRODUCT SLIDER NAVIGATION
   ========================================================== */

.ericka-home-products__navigation {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  margin-top: 24px;
}


/* ==========================================================
   NAVIGATION ARROWS
   ========================================================== */

.ericka-home-products__nav-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 24px;
  height: 24px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;

  cursor: pointer;
}


/* ==========================================================
   DOTS
   ========================================================== */

.ericka-home-products__nav-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 6px;
}

.ericka-home-products__nav-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background: var(--ej-white);

  cursor: pointer;

  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    border-radius 0.25s ease;
}

.ericka-home-products__nav-dot.is-active {
  width: 24px;

  border-radius: 999px;

  background: var(--ej-green);
}


/* ==========================================================
   EMPTY STATE
   ========================================================== */

.ericka-home-products__empty {
  padding: 40px;

  border:
    var(--ej-border-width)
    solid
    var(--ej-border-color);

  color: var(--ej-white);

  font-family: var(--ej-font-body);

  text-align: center;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

  .ericka-home-products__card {
    flex:
      0
      0
      calc(
        (100% - var(--ej-card-gap))
        / 2
      );
  }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

  .ericka-home-products__viewport{
    padding-left: 16px;
  }

  .ericka-home-section .ericka-home-container{
    width: 100%;
  }

  .ericka-home-products__header {
    margin-bottom: 28px;
  }

  .ericka-home-products__heading {
    font-size: 80px;
    max-width: 370px;
    justify-self: center;
  }

  .ericka-home-products__subheading {
    margin-top: 8px;
    font-size: 48px;
    color: var(--ej-green) !important;
    max-width: 90%;
    justify-self: center;
  }


  .ericka-home-products__title {
    font-size: 34px;
  }

  .ericka-home-products__arrow {
    width: 40px;
    height: 40px;
  }

  .ericka-home-products__arrow--prev {
    left: 8px;
  }

  .ericka-home-products__arrow--next {
    right: 8px;
  }

  .ericka-home-products__start-spacer {
    display: none;
  }

  .ericka-home-products__card {
    flex: 0 0 342px;

    width: 342px;
    min-width: 342px;
    min-height: unset;
  }

  .ericka-home-products__track {
    gap: 16px;
  }

}


   
/* ==========================================================
   13. STEPS
   ========================================================== */

.ericka-home-steps {
  position: relative;

  padding-block: var(--ej-section-spacing);

  /*
   * Unlike hidden, clip does not create a scroll container
   * that interferes with position: sticky.
   */
  overflow: clip;
}

/* ==========================================================
   STEPS GRID
   ========================================================== */

.ericka-home-steps__grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 340px));

  justify-content: center;
  align-items: stretch;

  gap: 66px;
}


/* ==========================================================
   STEP ITEM
   ========================================================== */

.ericka-home-steps__item {
  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;

  opacity: 0.28;

  filter:
    brightness(0.55)
    saturate(0.65);

  transition:
    opacity 0.65s ease,
    filter 0.65s ease,
    transform 0.65s ease;
}

.ericka-home-steps__item.is-active {
  opacity: 1;

  filter:
    brightness(1)
    saturate(1);
}


/* ==========================================================
   STEP HEADER
   ========================================================== */

.ericka-home-steps__header {
  position: relative;

  z-index: 4;

   padding-inline: 20px;

  text-align: center;
}

.ericka-home-steps__step-label {
  margin: 0;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 110px;
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;

  transition: color 0.65s ease;
}


/* Inactive step title */

.ericka-home-steps__item:not(.is-active)
.ericka-home-steps__step-label {
  color: rgba(255, 255, 255, 0.65);
}


.ericka-home-steps__subtitle {
  max-width: 330px;

  margin:
    12px
    auto
    0;

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 400;
  line-height: 1;

  text-transform: uppercase;


}


/* ==========================================================
   STEP VISUAL
   ========================================================== */

.ericka-home-steps__visual {
  position: relative;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  width: 100%;

  min-height: 500px;

  margin-top: 8px;
}

/* ==========================================================
   LARGE BACKGROUND NUMBER IMAGE
   ========================================================== */

.ericka-home-steps__number {
  position: absolute;

  inset: 0;

  z-index: 0;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  pointer-events: none;

  opacity: 0.4;

  transition: opacity 0.65s ease;
}

.ericka-home-steps__number-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center bottom;
}

.ericka-home-steps__item.is-active
.ericka-home-steps__number {
  opacity: 1;
}

/* Inactive numbers */

.ericka-home-steps__item:not(.is-active)
.ericka-home-steps__number {
  opacity: 0.28;

  filter:
    blur(1px)
    brightness(0.6);
}

.ericka-home-steps__item:nth-child(2)
.ericka-home-steps__number-image {
  transform: translateY(-40px) !important;
}


/* ==========================================================
   PRODUCT / HAND IMAGE
   ========================================================== */

.ericka-home-steps__media {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  width: 100%;
  height: 500px;
}

.ericka-home-steps__image {
  display: block;

  width: auto;
  max-width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center bottom;
}

.ericka-home-steps__placeholder {
  width: 100%;
  height: 100%;
}

.ericka-home-steps__placeholder-svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   INFO BOX
   Sits over the bottom of the hand image
   ========================================================== */

.ericka-home-steps__info {
  position: relative;

  z-index: 5;

  width: calc(100% - 24px);

  margin:
    -44px
    auto
    0;

  padding:
    18px
    16px
    18px
    20px;

  border-left:
    4px
    solid
    var(--ej-green);

  background:
    rgba(0, 0, 0, 0.7);
}


/* ==========================================================
   GREEN INNER BOX
   ========================================================== */

.ericka-home-steps__info-inner {
  width: 100%;

  padding: 16px;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4 !important;

  transition:
    opacity 0.65s ease,
    background 0.65s ease;
}

.ericka-home-steps__info-inner p {
  margin: 0;
}


/* ==========================================================
   INACTIVE INFO BOX
   ========================================================== */

.ericka-home-steps__item:not(.is-active)
.ericka-home-steps__info-inner {
  opacity: 0.55;
}


/* ==========================================================
   ACTIVE STEP MICRO MOVEMENT
   ========================================================== */

.ericka-home-steps__item.is-active
.ericka-home-steps__image {
  transform: translateY(-4px);
}

.ericka-home-steps__image {
  transition:
    transform 0.65s ease;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media(min-width: 768px) and (max-width: 1280px)   {

  .ericka-home-steps__grid {
    gap: 12px !important;
  }

  .ericka-home-steps__header {
    min-height: 130px;

    padding-inline: 10px;
  }

  .ericka-home-steps__step-label {
    font-size: 60px !important;
  }

  .ericka-home-steps__subtitle {
    font-size: clamp(24px, 3vw, 34px);
  }

  .ericka-home-steps__visual {
    min-height: 430px;
  }

  .ericka-home-steps__media {
    height: 430px;
  }

  .ericka-home-steps__info-inner{
    font-size: 16px;
  }



}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

  /* ----------------------------------------------------------
     NORMAL FALLBACK LAYOUT

     If JavaScript fails, the three steps remain displayed
     vertically instead of becoming inaccessible.
     ---------------------------------------------------------- */

  .ericka-home-steps__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ericka-home-steps__item {
    opacity: 1;
    filter: none;
  }

  .ericka-home-steps__header {
    min-height: auto;
    margin-bottom: 20px;
  }

  .ericka-home-steps__step-label {
    font-size: 60px;
  }

  .ericka-home-steps__subtitle {
    max-width: 300px;
    font-size: 32px;
  }

  .ericka-home-steps__visual {
    min-height: 460px;
  }

  .ericka-home-steps__media {
    height: 460px;
  }


  /* ==========================================================
     SCROLL-DRIVEN MODE
     Activated by JavaScript
     ========================================================== */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] {
    height: var(
      --ericka-steps-scroll-height,
      310svh
    );

    min-height: var(
      --ericka-steps-scroll-height,
      310svh
    );

    padding-block: 0;

    /*
     Important: overflow:hidden on this element can prevent
     position:sticky from working in some browsers.
    */
    overflow: visible;
  }


  /* ----------------------------------------------------------
     PINNED VIEWPORT
     ---------------------------------------------------------- */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] > .ericka-home-container {
    position: sticky;

    top: 0;

    display: flex;
    align-items: center;

    height: 100svh;
    min-height: 100svh;

    overflow: hidden;
  }


  /* ----------------------------------------------------------
     STACK ALL STEPS IN THE SAME GRID CELL
     ---------------------------------------------------------- */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__grid {
    position: relative;

    display: grid;
    grid-template-columns: minmax(0, 1fr);

    align-items: center;

    width: 100%;

    gap: 0;
  }

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item {
    grid-area: 1 / 1;

    z-index: 1;

    opacity: 0;
    visibility: hidden;

    filter: none;

    pointer-events: none;

    transform: translate3d(0, 28px, 0);

    transition:
      opacity 0.45s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.55s;

    will-change:
      opacity,
      transform;
  }


  /* Previous steps leave through the top */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item.is-before {
    transform: translate3d(0, -28px, 0);
  }


  /* Upcoming steps wait below */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item.is-after {
    transform: translate3d(0, 28px, 0);
  }


  /* Active step */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item.is-active {
    z-index: 2;

    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform: translate3d(0, 0, 0);

    transition-delay: 0s;
  }


  /* ----------------------------------------------------------
     KEEP HIDDEN STEPS AT FULL COLOR DURING THEIR FADE

     Only the whole slide fades. Internal elements do not
     suddenly become dim as the active class changes.
     ---------------------------------------------------------- */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item:not(.is-active)
    .ericka-home-steps__step-label {
    color: var(--ej-white);
  }

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item:not(.is-active)
    .ericka-home-steps__number {
    opacity: 1;

    filter: none;
  }

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item:not(.is-active)
    .ericka-home-steps__info-inner {
    opacity: 1;
  }


  /* ----------------------------------------------------------
     RESPONSIVE VISUAL HEIGHT

     Prevents the composition from being cut off on shorter
     mobile screens.
     ---------------------------------------------------------- */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__visual {
    min-height: clamp(
      330px,
      52svh,
      460px
    );
  }

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__media {
    height: clamp(
      330px,
      52svh,
      460px
    );
  }

}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media
  (max-width: 767px)
  and (prefers-reduced-motion: reduce) {

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] .ericka-home-steps__item {
    transition: none;
  }

}

/* ==========================================================
   MOBILE STEPS — STICKY FIX
   ========================================================== */

@media (max-width: 767px) {

  /*
   * Shopify generates this outer wrapper from:
   *
   * "class": "ericka-home-steps-section"
   *
   * It must not block the sticky child.
   */

  .ericka-home-steps-section {
    overflow: visible !important;
    contain: none !important;
  }


  /*
   * The tall section provides the natural scroll distance.
   */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] {
    position: relative !important;

    height: var(
      --ericka-steps-scroll-height,
      310svh
    ) !important;

    min-height: var(
      --ericka-steps-scroll-height,
      310svh
    ) !important;

    padding-block: 0 !important;

    overflow: visible !important;
    contain: none !important;
  }


  /*
   * This is the part that must remain on screen.
   */

  .ericka-home-steps[
    data-ericka-steps-scroll-active="true"
  ] > .ericka-home-container {
    position: -webkit-sticky !important;
    position: sticky !important;

    top: 0 !important;

    align-self: flex-start;

    width: 100%;
    height: 100svh !important;
    min-height: 100svh !important;

    display: flex;
    align-items: center;

    overflow: hidden;
  }

}


/* ==========================================================
   14. NO ADHESIVE
   ========================================================== */

.ericka-home-no-adhesive {
  position: relative;

  overflow: hidden;

  background-image: var(--ej-no-adhesive-bg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}


/* ==========================================================
   SECTION OVERLAY
   ========================================================== */

.ericka-home-no-adhesive__overlay {
  position: absolute;

  inset: 0;

  z-index: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0.42) 64%,
      rgba(0, 0, 0, 0.78) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.ericka-home-no-adhesive .ericka-home-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1408px;

  padding-inline: 64px;
}


/* ==========================================================
   LAYOUT
   ========================================================== */

.ericka-home-no-adhesive__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    552px;

  align-items: end;

  gap: 72px;


  padding-top: 96px;

  padding-bottom: 96px;
}


/* ==========================================================
   LEFT HEADING
   ========================================================== */

.ericka-home-no-adhesive__heading-wrap {
  display: flex;
  flex-direction: column;
  max-width: 646px;

}

.ericka-home-no-adhesive__heading-green {
  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: 128px;
  font-weight: 400;
  line-height: 0.82;

  text-transform: uppercase;
}

.ericka-home-no-adhesive__heading-white {
  margin-top: 10px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;
}


/* ==========================================================
   CONTENT CARD
   ========================================================== */

.ericka-home-no-adhesive__content-card {
  width: 100%;
  max-width:  552px;

  padding: 28px;

  border:
    var(--ej-border-width)
    solid
    var(--ej-border-color);

}


/* ==========================================================
   TOP TEXT
   ========================================================== */

.ericka-home-no-adhesive__top-text {
  color: var(--ej-white);

  font-size: 16px;
  line-height: 1.55;
}

.ericka-home-no-adhesive__top-text p {
  margin: 0 0 18px;
}

.ericka-home-no-adhesive__top-text p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   GREEN INNER BOX
   ========================================================== */

.ericka-home-no-adhesive__highlight {
  margin-top: 24px;

  padding: 16px;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 16px;
  line-height: 1.5;
}

.ericka-home-no-adhesive__highlight p {
  margin: 0 0 18px;
}

.ericka-home-no-adhesive__highlight p:last-child {
  margin-bottom: 0;
}


/* ==========================================================
   TABLET
   ========================================================== */
@media (min-width: 768px) and (max-width: 1280px)  {

    .ericka-home-no-adhesive__layout{
      display:flex;
      flex-direction: column;
      gap: 50px;

    }


  .ericka-home-no-adhesive {
    background-image:
      var(
        --ej-no-adhesive-bg-mobile,
        var(--ej-no-adhesive-bg)
      );

    background-size: cover;
    background-position: center center !important;

  }
  .ericka-home-no-adhesive__content-card{
    max-width: 100%;
  }

}


/* ==========================================================
   NO ADHESIVE — MOBILE
   ========================================================== */

@media (max-width: 767px) {

  /* ========================================================
     SECTION / MOBILE BACKGROUND
     ======================================================== */

  .ericka-home-no-adhesive {
    min-height: 760px;

    padding-block: 0;

    background-image:
      var(
        --ej-no-adhesive-bg-mobile,
        var(--ej-no-adhesive-bg)
      );

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }


  /* ========================================================
     CONTAINER
     ======================================================== */

  .ericka-home-no-adhesive .ericka-home-container {
    width: 100%;
    max-width: none;

    min-height: 760px;

    padding-inline: 14px;
    padding-top: 96px;
    padding-bottom: 96px;
  }


  /* ========================================================
     LAYOUT
     ======================================================== */

  .ericka-home-no-adhesive__layout {
    display: flex;
    flex-direction: column;

    justify-content: space-between;

    min-height: 760px;

    gap: 0;

    padding-top: 0px;
    padding-bottom: 0px;

      border:
    var(--ej-border-width)
    solid
    var(--ej-border-color);
  }


  /* ========================================================
     HEADING
     ======================================================== */

  .ericka-home-no-adhesive__heading-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 24px !important;
          
    border-bottom:
    var(--ej-border-width)
    solid
    var(--ej-border-color);
  }

  .ericka-home-no-adhesive__heading-green,
  .ericka-home-no-adhesive__heading-white {
    display: block;

    margin: 0;

    font-family: var(--ej-font-heading);
    text-transform: uppercase;
  }

  .ericka-home-no-adhesive__heading-green {
    color: var(--ej-green);
    font-size: 70px;
    line-height: 0.88;
  }

  .ericka-home-no-adhesive__heading-white {
    max-width: 290px;

    margin:
      10px
      auto
      0;

    color: var(--ej-white);

    font-size: 48px;
    line-height: 0.9;
  }


  /* ========================================================
     CONTENT CARD
     ======================================================== */

  .ericka-home-no-adhesive__content-card {
    width: 100%;
    max-width: none;

    margin-top: auto;

    padding: 24px;
    border: none;

    box-shadow: none;
            margin-top: 310px;
  }


  /* ========================================================
     TOP COPY
     ======================================================== */

  .ericka-home-no-adhesive__top-text {
    margin: 0;

    color: var(--ej-white);

    font-family: var(--ej-font-body);
    font-size: 13px;
    line-height: 1.45;
  }

  .ericka-home-no-adhesive__top-text p {
    margin: 0 0 14px;
  }

  .ericka-home-no-adhesive__top-text p:last-child {
    margin-bottom: 0;
  }


  /* ========================================================
     GREEN HIGHLIGHT BOX
     ======================================================== */

  .ericka-home-no-adhesive__highlight {
    margin-top: 16px;

    padding:
      14px
      12px;

    background: var(--ej-green);
    color: var(--ej-black);

    font-family: var(--ej-font-body);
    font-size: 13px;
    line-height: 1.4;
  }

  .ericka-home-no-adhesive__highlight p {
    margin: 0 0 14px;
  }

  .ericka-home-no-adhesive__highlight p:last-child {
    margin-bottom: 0;
  }


  /* ========================================================
     STRONG / EMPHASIS
     ======================================================== */

  .ericka-home-no-adhesive__top-text strong {
    color: var(--ej-green);
  }

  .ericka-home-no-adhesive__highlight strong {
    color: inherit;
    font-weight: 700;
  }

}

/* ==========================================================
   15. WHY IS LACE
   ========================================================== */

.ericka-home-why-lace {
  position: relative;

  overflow: hidden;

  padding-block: var(--ej-section-spacing);

  background-image: var(--ej-why-lace-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* ==========================================================
   BACKGROUND OVERLAY
   ========================================================== */

.ericka-home-why-lace__overlay {
  position: absolute;

  inset: 0;

  z-index: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.16) 55%,
      rgba(0, 0, 0, 0.45) 100%
    );

  pointer-events: none;
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.ericka-home-why-lace .ericka-home-container {
  position: relative;
  z-index: 2;
      padding-inline: 64px;
}


/* ==========================================================
   ROW 1
   ========================================================== */

.ericka-home-why-lace__top {
  display: grid;

  grid-template-columns:
    minmax(0, 647px)
    minmax(0, 490px);

  align-items: center;

  justify-content: space-between;
  align-items: end;
}


/* ==========================================================
   HEADING
   ========================================================== */

.ericka-home-why-lace__heading-wrap {
  display: flex;
  flex-direction: column;

  min-width: 0;
}

.ericka-home-why-lace__heading-white {
  margin: 0;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;
}

.ericka-home-why-lace__heading-green {
  margin-top: 8px;

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-size: min(11.25vw, 144px);
  font-weight: 400;
  line-height: 0.82;

  text-transform: uppercase;
}


/* ==========================================================
   IMAGE
   ========================================================== */

.ericka-home-why-lace__image-wrap {
  width: 100%;
}

.ericka-home-why-lace__image {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.ericka-home-why-lace__placeholder {
  width: 100%;

  aspect-ratio: 4 / 3;

  background: rgba(255, 255, 255, 0.08);
}

.ericka-home-why-lace__placeholder-svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   ROW 2
   ========================================================== */

.ericka-home-why-lace__bottom {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 64px;

  margin-top: 24px;
}


/* ==========================================================
   TEXT COLUMNS
   ========================================================== */

.ericka-home-why-lace__column, .ericka-home-why-lace__text {
  min-width: 0;

  color: var(--ej-white);

  font-size: 16px;
  line-height: 1.55;
  font-family: var(--ej-font-body);
}

.ericka-home-why-lace__column p, .ericka-home-why-lace__text p {
  margin: 0 0 18px;
}

.ericka-home-why-lace__column p:last-child {
  margin-bottom: 0;
}

.ericka-home-why-lace__column strong, .ericka-home-why-lace__text strong {
  color: var(--ej-green);

  font-weight: 700;
}

.ericka-home-why-lace__column em,  .ericka-home-why-lace__text em {
  color: var(--ej-green);

  font-style: italic;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1024px) {

  .ericka-home-why-lace__top,
  .ericka-home-why-lace__bottom {
    gap: 40px;
  }

  .ericka-home-why-lace__heading-white {
    font-size: clamp(44px, 6vw, 64px);
  }

  .ericka-home-why-lace__heading-green {
    font-size: clamp(68px, 9vw, 100px);
  }

}

@media (min-width: 768px) and (max-width: 1280px) {
  .ericka-home-why-lace__top {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }
}


/* ==========================================================
   WHY LACE — MOBILE
   ========================================================== */

.ericka-home-why-lace__mobile {
  display: none;
}


@media (max-width: 767px) {

  /* ========================================================
     SECTION
     ======================================================== */

  .ericka-home-why-lace {
    position: relative;

    width: 100%;

    padding-block:
      354px
      0px;

    background-image:
      var(
        --ej-why-lace-bg-mobile,
        var(--ej-why-lace-bg)
      );

    background-size: cover;
    background-position: center top;
    background-repeat: repeat-y;

    overflow: hidden;
  }


  /* ========================================================
     DESKTOP OFF / MOBILE ON
     ======================================================== */

  .ericka-home-why-lace__desktop {
    display: none;
  }

  .ericka-home-why-lace__mobile {
    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;

    width: 100%;
  }


  /* ========================================================
     CONTAINER
     ======================================================== */

  .ericka-home-why-lace .ericka-home-container {
    width: 100%;

    padding-inline: 24px;
  }


  /* ========================================================
     MOBILE HEADING WRAPPER
     ======================================================== */

  .ericka-home-why-lace__mobile-heading-wrap {
    width: 100%;

    text-align: center;
  }


  /* ========================================================
     WHITE HEADING
     ======================================================== */

  .ericka-home-why-lace__mobile-heading-white {
    width: 100%;
    max-width: 340px;

    margin-inline: auto;

    color: var(--ej-white);

    font-family: var(--ej-font-heading);

    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;

    text-transform: uppercase;
  }


  /* ========================================================
     LARGE GREEN "ONE"
     ======================================================== */

  .ericka-home-why-lace__mobile-heading-green-big {
    margin-top: 10px;
    color: var(--ej-green);

    font-family: var(--ej-font-heading);

    font-size: 200px;

    font-weight: 400;
    line-height: 0.8;

    text-transform: uppercase;
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;

  }


  /* ========================================================
     GREEN "PRODUCT?"
     ======================================================== */

  .ericka-home-why-lace__mobile-heading-green-bottom {
    margin-top: 20px;

    color: var(--ej-green);

    font-family: var(--ej-font-heading);

    font-size: 80px;
    font-weight: 400;
    line-height: 0.82;

    text-transform: uppercase;
  }


  /* ========================================================
     MOBILE TEXT
     ======================================================== */

  .ericka-home-why-lace__mobile-text {
    width: 100%;

    color: var(--ej-white);

    font-family: var(--ej-font-body);

    font-size: 16px;
    line-height: 1.5;

    text-align: center;
  }


  .ericka-home-why-lace__mobile-text p {
    margin:
      0
      0
      20px;
  }


  .ericka-home-why-lace__mobile-text p:last-child {
    margin-bottom: 0;
  }


  .ericka-home-why-lace__mobile-text strong {
    color: var(--ej-green);

    font-weight: 600;
  }


  .ericka-home-why-lace__mobile-text em {
    color: var(--ej-green);

    font-weight: 600;
  }


  /* ========================================================
     FIRST TEXT BLOCK
     ======================================================== */

  .ericka-home-why-lace__mobile-text--1 {
    max-width: 340px;

    margin:
      48px
      auto
      0;
  }


  /* ========================================================
     IMAGE
     ======================================================== */

  .ericka-home-why-lace__mobile-image-wrap {
    position: relative;

    width: calc(100% + 16px);

    margin:
      34px
      -8px
      0;

    transform:
      rotate(3deg);

    transform-origin:
      center center;
  }


  .ericka-home-why-lace__mobile-image {
    display: block;

    width: 100%;
    height: auto;
  }


  /* ========================================================
     SECOND TEXT BLOCK
     ======================================================== */

  .ericka-home-why-lace__mobile-text--2 {
    max-width: 340px;

    margin:
      36px
      auto
      0;
  }


  /* ========================================================
     SECOND TEXT EMPHASIS
     ======================================================== */

  .ericka-home-why-lace__mobile-text--2 em {
    display: inline;

    color: var(--ej-green);

    font-style: italic;
    font-weight: 700;
  }

}

/* ==========================================================
   ERICKA HOME — BENEFITS MARQUEE
   ========================================================== */

.ericka-home-benefits {
  width: 100%;
}


.ericka-home-benefits__marquee {
  width: 100%;

  overflow: hidden;

  padding-block: 8px;

  background: var(--ej-green);

  display: flex;
  align-items: center;

  box-sizing: border-box;
}


/* ==========================================================
   TRACK
   ========================================================== */

.ericka-home-benefits__track {
  display: flex;
  align-items: center;

  width: max-content;

  flex-shrink: 0;

  white-space: nowrap;

  animation-name: ericka-home-benefits-marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  will-change: transform;
}


/* ==========================================================
   EACH COMPLETE COPY
   ========================================================== */

.ericka-home-benefits__group {
  display: inline-flex;
  align-items: center;

  flex-shrink: 0;
}


/* ==========================================================
   INDIVIDUAL ITEMS
   ========================================================== */

.ericka-home-benefits__item {
  display: inline-flex;
  align-items: center;

  flex-shrink: 0;

  gap: 8px;

  margin-right: 16px;
}


/* ==========================================================
   ICON
   ========================================================== */

.ericka-home-benefits__icon {
  display: block;

  width: 24px;
  height: 24px;

  flex: 0 0 auto;

  object-fit: contain;
}


/* ==========================================================
   TEXT
   ========================================================== */

.ericka-home-benefits__text {
  flex-shrink: 0;

  font-family:
    "Jost",
    system-ui,
    sans-serif;

  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--ej-black);

  letter-spacing: 0.7px;

  text-transform: uppercase;

  white-space: nowrap;
}


/* ==========================================================
   ANIMATION
   ========================================================== */

@keyframes ericka-home-benefits-marquee {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333333%);
  }

}


/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

  .ericka-home-benefits__track {
    animation: none;
  }

}


/* ==========================================================
   DESKTOP HOVER
   ========================================================== */

@media (min-width: 750px) {

  .ericka-home-benefits__marquee:hover
  .ericka-home-benefits__track {
    animation-play-state: paused;
  }

}

/* ==========================================================
   17. HERO
   ========================================================== */

.ericka-home-hero {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding-top: 36px;
}

/* ==========================================================
   HERO — LAYOUT SWITCH
   ========================================================== */

.ericka-home-hero__mobile {
  display: none;
}


/* ==========================================================
   HERO TOP
   ========================================================== */

.ericka-home-hero__top {
  position: relative;

  z-index: 5;

  width: 100%;

  text-align: center;
}


/* ==========================================================
   TRUST LINE
   ========================================================== */

.ericka-home-hero__trust-line {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 16px;
}

.ericka-home-hero__stars {
  color: var(--ej-green);

  font-family: var(--ej-font-body);
  font-size: 16px;
  line-height: 1;

  letter-spacing: 0.08em;
}

.ericka-home-hero__trust-text {
  color: var(--ej-white);

  font-family: var(--ej-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 5%;

  text-transform: uppercase;
}


/* ==========================================================
   PREHEADING
   ========================================================== */

.ericka-home-hero__preheading {
  margin-top: 24px;
  margin-bottom: 24px;

  color: var(--ej-white);

  font-family: var(--ej-font-heading);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;

  text-transform: uppercase;
}


/* ==========================================================
   GIANT TITLE
   ========================================================== */

.ericka-home-hero__title-wrap {
  position: relative;

  z-index: 1;

  display: flex;
  flex-direction: column;

  align-items: center;

  width: 100%;

  margin-top: 6px;

  pointer-events: none;
}

.ericka-home-hero__title-line {
  width: min(94vw, 1800px);

  color: var(--ej-green);

  font-family: var(--ej-font-heading);
  font-weight: 400;

  text-align: center;
  text-transform: uppercase;

  white-space: nowrap;
}

.ericka-home-hero__title-line--1 {
  font-size: 176px;
  line-height: 0.78;
}

.ericka-home-hero__title-line--2 {
  margin-top: -2px;

  font-size: 176px;
  line-height: 0.8;
}


/* ==========================================================
   HERO CONTENT LAYOUT
   ========================================================== */

.ericka-home-hero__content-layout {
  position: relative;
  z-index: 3;

  display: grid;

  grid-template-columns:
    minmax(0, 468px)
    minmax(0, 440px);

  justify-content: end;

  align-items: end;

  width: 100%;
  max-width: 1280px;

  margin-inline: auto;

  padding-inline: 64px 92px;

  margin-top: -210px;
      gap: 24px;
}


/* ==========================================================
   HERO MEDIA
   ========================================================== */

.ericka-home-hero__media {
  position: relative;
  z-index: 4;

  display: flex;

  align-items: flex-end;
  justify-content: flex-start;

  width: 100%;
  max-width: 468px;
}

.ericka-home-hero__image {
  display: block;

  width: 100%;
  max-width: 468px;
  height: auto;

  object-fit: contain;
  object-position: left bottom;
}

.ericka-home-hero__placeholder {
  width: 100%;
  max-width: 740px;

  aspect-ratio: 740 / 760;

  background: rgba(255, 255, 255, 0.08);
}

.ericka-home-hero__placeholder-svg {
  width: 100%;
  height: 100%;
}


/* ==========================================================
   HERO COPY
   ========================================================== */

.ericka-home-hero__copy {
  position: relative;
  z-index: 5;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  width: 100%;
  max-width: 440px;

  padding-bottom: 40px;
}

.ericka-home-hero__text {
  color: var(--ej-white);

  font-size: 16px;
  line-height: 1.55;
}

.ericka-home-hero__text p {
  margin: 0 0 18px;
}

.ericka-home-hero__text p:last-child {
  margin-bottom: 0;
}

.ericka-home-hero__text strong {
  color: var(--ej-green);

  font-weight: 700;
}


/* ==========================================================
   HERO BUTTON
   ========================================================== */

.ericka-home-hero__button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;

  margin-top: 24px;

  padding: 12px 24px;

  border: 0;

  background: var(--ej-green);
  color: var(--ej-black);

  font-family: var(--ej-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.ericka-home-hero__title-desktop {
  display: inline;
}

.ericka-home-hero__title-tablet {
  display: none;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1280px) {

  .ericka-home-hero__title-desktop {
    display: none;
  }

  .ericka-home-hero__title-tablet {
    display: inline;
  }

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (min-width: 768px) and (max-width: 1280px) {

  .ericka-home-hero__preheading {
    font-size: clamp(44px, 6vw, 60px);
  }

  .ericka-home-hero__title-line--1 {
    font-size: clamp(82px, 12vw, 140px);
  }

  .ericka-home-hero__title-line--2 {
    font-size: clamp(76px, 11vw, 130px);
  }

  .ericka-home-hero__content-layout {
    grid-template-columns:
      minmax(0, 56%)
      minmax(0, 44%);

    margin-top: -30px;
  }

  .ericka-home-hero__copy {
    padding-bottom: 40px;
  }


}


.ericka-hero-title-space {
  display: inline-block;
  width: 1em;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1280px) {
  .ericka-hero-title-space {
    width: 0.22em;
  }
}

/* ==========================================================
   HERO — MOBILE
   ========================================================== */

@media (max-width: 767px) {

  /* ========================================================
     LAYOUT SWITCH
     ======================================================== */

  .ericka-home-hero__desktop {
    display: none;
  }

  .ericka-home-hero__mobile {
    display: block;
    width: 100%;
  }


  /* ========================================================
     HERO SECTION
     ======================================================== */

  .ericka-home-hero {
    position: relative;

    width: 100%;

    padding-top: 16px;
    padding-bottom: 42px;

    overflow: clip;
  }


  /* ========================================================
     MOBILE TOP
     ======================================================== */

  .ericka-home-hero__mobile-top {
    position: relative;

    z-index: 4;

    width: 100%;

    padding-inline: 12px;

    text-align: center;
  }


  /* ========================================================
     TRUST
     ======================================================== */

  .ericka-home-hero__mobile-trust-line {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 100%;

    margin-inline: auto;
  }


  /*
   * Mobile stars intentionally green.
   */

  .ericka-home-hero__mobile-stars {
    color: var(--ej-green);

    font-family: var(--ej-font-body);
    font-size: 14px;
    line-height: 1;

    letter-spacing: 0.12em;
  }


  .ericka-home-hero__mobile-trust-text {
    max-width: 280px;

    color: var(--ej-white);

    font-family: var(--ej-font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;

    letter-spacing: 5%;

    text-align: center;
    text-transform: uppercase;
  }


  /* ========================================================
     PREHEADING
     ======================================================== */

  .ericka-home-hero__mobile-preheading {
    margin-top: 20px;

    color: var(--ej-white);

    font-family: var(--ej-font-heading);
    font-size: 15vw;
    font-weight: 400;
    line-height: 1.15;

    text-align: center;
    text-transform: uppercase;
  }


  /* ========================================================
     MAIN GREEN TITLE
     ======================================================== */

  .ericka-home-hero__mobile-title-wrap {
    position: relative;

    z-index: 1;

    width: calc(100% + 24px);

    margin:
      12px
      -12px
      0;
  }


  .ericka-home-hero__mobile-title-line {
    width: 100%;

    color: var(--ej-green);

    font-family: var(--ej-font-heading);
    font-weight: 400;

    text-align: center;
    text-transform: uppercase;

    white-space: nowrap;
  }


  .ericka-home-hero__mobile-title-line--1 {
    font-size: 21vw;

    line-height: 0.74;
  }


  .ericka-home-hero__mobile-title-line--2 {
    margin-top: 8px;

    font-size: 21vw;

    line-height: 0.76;
  }


  /* ========================================================
     MOBILE IMAGE
     Full width and independent from desktop positioning.
     ======================================================== */

  .ericka-home-hero__mobile-media {
    position: relative;

    z-index: 2;

    width: 100%;

    margin-top: -2px;
  }


  .ericka-home-hero__mobile-image {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
  }


  /* ========================================================
     COPY CONTAINER
     ======================================================== */

  .ericka-home-hero__mobile > .ericka-home-container {
    position: relative;

    z-index: 5;

    width: calc(100% - 32px);
    max-width: none;

    margin:
      -128px
      auto
      0;
  }


  /* ========================================================
     COPY BOX
     ======================================================== */

  .ericka-home-hero__mobile-copy {
    width: 100%;

    padding: 24px 16px;

    border:
      var(--ej-border-width)
      solid
      var(--ej-border-color);

    background: rgba(0, 0, 0, 0.72);

    color: var(--ej-white);
    box-shadow: var(--ej-glow);
  }


  /* ========================================================
     COPY
     ======================================================== */

  .ericka-home-hero__mobile-text {
    font-family: var(--ej-font-body);

    font-size: 16px;
    line-height: 1.5;

    text-align: center;
  }


  .ericka-home-hero__mobile-text p {
    margin:
      0
      0
      18px;
  }


  .ericka-home-hero__mobile-text p:last-child {
    margin-bottom: 0;
  }


  .ericka-home-hero__mobile-text strong {
    color: var(--ej-green);

    font-weight: 600;
  }


  /* ========================================================
     BUTTON
     ======================================================== */

  .ericka-home-hero__mobile-button {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 46px;

    margin-top: 20px;

    padding:
      12px
      18px;

    border: 0;

    background: var(--ej-green);
    color: var(--ej-black);

    font-family: var(--ej-font-body);

    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 5%;

    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
  }

}

/* ==========================================================
   18. TABLET
   ========================================================== */

@media (max-width: 1024px) {
  .ericka-home {
    --ej-page-padding: 20px;
    --ej-section-spacing: 72px;
  }
}


/* ==========================================================
   19. MOBILE
   ========================================================== */

@media (max-width: 767px) {
  .ericka-home {
    --ej-page-padding: 16px;
    --ej-section-spacing: 56px;
  }

  .ericka-home::before {
    background-image: var(--ej-home-bg-mobile);
    background-position: var(--ej-home-bg-position-mobile);
  }

  .ericka-home-products__nav-dot.is-active, .ericka-home-videos__dot.is-active{
    background: #E21F6D;
  }
  .ericka-home-products__nav-arrow, .ericka-home-videos__nav-arrow{
    display:none;
  }

}


/* ==========================================================
   ERICKA HOME — CUSTOM HEADER
   ========================================================== */

.ericka-home-custom-header {
  position: relative;
  z-index: 30;

  width: 100%;

  background:
    var(--ej-custom-header-bg, #1d1d1d);

  color:
    var(--ej-white, #fff);
}


/* ==========================================================
   INNER
   ========================================================== */

.ericka-home-custom-header__inner {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  width: 100%;
  max-width: 1440px;

  min-height:
    var(--ej-custom-header-height, 76px);

  margin-inline: auto;

  padding-inline: 24px;
}


/* ==========================================================
   LEFT NAVIGATION
   ========================================================== */

.ericka-home-custom-header__nav--left {
  display: flex;
  align-items: center;

  justify-self: start;

  gap: clamp(
    22px,
    3vw,
    54px
  );

  min-width: 0;
}


/* ==========================================================
   LINKS
   ========================================================== */

.ericka-home-custom-header__link {
  display: inline-flex;
  align-items: center;

  color:
    var(--ej-white, #fff);

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}


.ericka-home-custom-header__link:hover {
  color:
    var(--ej-green, #c5e02d);
}


.ericka-home-custom-header__link.is-featured {
  color:
    var(--ej-green, #c5e02d);
}


/* ==========================================================
   CENTER LOGO
   ========================================================== */

.ericka-home-custom-header__logo-wrap {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;

  z-index: 2;
}


.ericka-home-custom-header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}


.ericka-home-custom-header__logo {
  display: block;

  width:
    var(
      --ej-custom-header-logo-width,
      110px
    );

  max-width: 100%;
  height: auto;
}


.ericka-home-custom-header__logo-text {
  color:
    var(--ej-white, #fff);

  font-family:
    "Bebas Neue",
    sans-serif;

  font-size: 26px;
  line-height: 1;
}


/* ==========================================================
   RIGHT SIDE
   ========================================================== */

.ericka-home-custom-header__right {
  display: flex;

  align-items: center;
  justify-content: flex-end;

  justify-self: end;

  gap: clamp(
    18px,
    2vw,
    36px
  );

  min-width: 0;
}


/* ==========================================================
   ICONS
   ========================================================== */

.ericka-home-custom-header__icon {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 26px;
  height: 32px;

  color:
    var(--ej-green, #c5e02d);

  text-decoration: none;

  cursor: pointer;
}


/*
  Cornerstone's icon-button snippet may
  add an internal touch target.
*/

.ericka-home-custom-header__icon svg {
  display: block;

  width: 19px;
  height: 19px;

  color: currentColor;
}


.ericka-home-custom-header__icon:hover {
  color:
    var(--ej-white, #fff);
}

.ericka-home-custom-header__icon--search,
.ericka-home-custom-header__icon--search button,
.ericka-home-custom-header__icon--search .icon-button,
.ericka-home-custom-header__icon--search svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

.ericka-home-custom-header__icon--search {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ==========================================================
   CART COUNT
   ========================================================== */

.ericka-home-custom-header__cart-count {
  position: absolute;

  top: 2px;
  right: -7px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 15px;
  height: 15px;

  padding-inline: 3px;

  border-radius: 999px;

  background:
    var(--ej-white, #fff);

  color:
    var(--ej-black, #000);

  font-family:
    "Jost",
    sans-serif;

  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}


/* ==========================================================
   DESKTOP ONLY FOR NOW
   ========================================================== */

@media (max-width: 1024px) {

  .ericka-home-custom-header__inner {
    padding-inline: 16px;
  }


  .ericka-home-custom-header__nav--left {
    gap: 18px;
  }


  .ericka-home-custom-header__right {
    gap: 16px;
  }


  .ericka-home-custom-header__link {
    font-size: 11px;
  }

  

}

/* ==========================================================
   ERICKA HOME HEADER — MOBILE
   ========================================================== */

.ericka-home-custom-header__mobile,
.ericka-home-custom-header__mobile-drawer {
  display: none;
}


@media (max-width: 767px) {

  .ericka-home-custom-header__inner {
    display: none;
  }


  /* ========================================================
     MOBILE BAR
     ======================================================== */

  .ericka-home-custom-header__mobile {
    position: relative;
    z-index: 20;

    display: grid;

    grid-template-columns:
      1fr
      auto
      1fr;

    align-items: center;

    width: 100%;

    min-height: 82px;

    padding-inline: 24px;

    background:
      var(--ej-custom-header-bg, #1d1d1d);
  }


  /* ========================================================
     HAMBURGER
     ======================================================== */

  .ericka-home-custom-header__mobile-menu-button {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    justify-self: start;

    gap: 5px;

    width: 34px;
    height: 34px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
  }


  .ericka-home-custom-header__mobile-menu-button span {
    display: block;

    width: 24px;
    height: 4px;

    border-radius: 999px;

    background:
      var(--ej-green, #c5e02d);

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }


  .ericka-home-custom-header__mobile-menu-button.is-active span:nth-child(1) {
    transform:
      translateY(9px)
      rotate(45deg);
  }


  .ericka-home-custom-header__mobile-menu-button.is-active span:nth-child(2) {
    opacity: 0;
  }


  .ericka-home-custom-header__mobile-menu-button.is-active span:nth-child(3) {
    transform:
      translateY(-9px)
      rotate(-45deg);
  }


  /* ========================================================
     LOGO
     ======================================================== */

  .ericka-home-custom-header__mobile-logo-link {
    display: flex;

    align-items: center;
    justify-content: center;

    justify-self: center;
  }


  .ericka-home-custom-header__mobile-logo {
    display: block;

    width: 110px;
    height: auto;
  }

/* ==========================================================
   CUSTOM HEADER ICONS
   ========================================================== */

.ericka-home-custom-header__icon {
  appearance: none;
  -webkit-appearance: none;

  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 32px;
  height: 32px;

  padding: 0;
  margin: 0;

  border: 0;
  background: transparent;

  color: var(--ej-green);

  cursor: pointer;

  line-height: 0;
}


.ericka-home-custom-header__icon svg {
  display: block;

  width: 20px;
  height: 20px;

  overflow: visible;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  pointer-events: none;
}


.ericka-home-custom-header__icon--search svg {
  width: 18px;
  height: 18px;
}


.ericka-home-custom-header__icon--cart svg {
  width: 22px;
  height: 22px;
}


.ericka-home-custom-header__cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-left: 2px;

  color: var(--ej-green);

  font-family: "Jost", sans-serif;
  font-size: 12px;
  line-height: 1;
}

  /* ========================================================
     MOBILE DRAWER
     ======================================================== */

  .ericka-home-custom-header__mobile-drawer {
    position: absolute;

    top: 100%;
    left: 0;

    z-index: 19;

    display: block;

    width: 100%;

    max-height: 0;

    overflow: hidden;

    background:
      var(--ej-custom-header-bg, #1d1d1d);

    opacity: 0;

    visibility: hidden;

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }


  .ericka-home-custom-header__mobile-drawer.is-open {
    max-height: 600px;

    opacity: 1;

    visibility: visible;
  }


  .ericka-home-custom-header__mobile-drawer-inner {
    padding:
      20px
      24px
      28px;
  }


  /* ========================================================
     MOBILE NAV
     ======================================================== */

  .ericka-home-custom-header__mobile-nav {
    display: flex;

    flex-direction: column;

    width: 100%;
  }


  .ericka-home-custom-header__mobile-nav a {
    display: flex;

    align-items: center;

    min-height: 48px;

    border-bottom:
      1px solid rgba(255, 255, 255, 0.15);

    color:
      var(--ej-white, #fff);

    font-family:
      "Jost",
      sans-serif;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;
  }


  .ericka-home-custom-header__mobile-nav a:first-child {
    color:
      var(--ej-green, #c5e02d);
  }


  .ericka-home-custom-header__mobile-nav a:hover {
    color:
      var(--ej-green, #c5e02d);
  }

}

/* ==========================================================
   MOBILE HEADER — DRAWER VISIBILITY FIX
   ========================================================== */

.ericka-home-custom-header-section {
  position: relative !important;
  z-index: 100 !important;

  overflow: visible !important;
  contain: none !important;
}

.ericka-home-custom-header {
  position: relative !important;
  z-index: 100 !important;

  overflow: visible !important;
}

@media (max-width: 767px) {

  .ericka-home-custom-header__mobile {
    position: relative;
    z-index: 102;
  }

  .ericka-home-custom-header__mobile-drawer {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    z-index: 101;

    display: block;

    width: 100%;

    max-height: 0;

    overflow: hidden;

    background: var(
      --ej-custom-header-bg,
      #1d1d1d
    );

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

  .ericka-home-custom-header__mobile-drawer.is-open {
    max-height: 600px;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

}

/* ==========================================================
   ERICKA HOME — FOOTER
   ========================================================== */

.ericka-home-footer {
  width: 100%;

  padding:
    56px
    40px
    24px;

  background:
    var(--ej-footer-bg, #c5e02d);

  color:
    var(--ej-footer-text, #1d1d1d);
}


.ericka-home-footer__inner {
  width: 100%;
  max-width: 1440px;

  margin-inline: auto;
}


/* ==========================================================
   TOP
   ========================================================== */

.ericka-home-footer__top {
  display: grid;

  grid-template-columns:
    470px
    420px;

  justify-content: space-between;

  gap: 40px;
}


/* ==========================================================
   LEFT
   ========================================================== */

.ericka-home-footer__left {
    width: 470px;
  max-width: 470px;
}


.ericka-home-footer__logo-link {
  display: inline-flex;

  margin-bottom: 26px;
}


.ericka-home-footer__logo {
  display: block;

  width: 120px;
  height: auto;
}


.ericka-home-footer__heading {
  margin: 0;

  color:
    var(--ej-footer-text, #1d1d1d);

  font-family:
    "Bebas Neue",
    sans-serif;

  font-size: clamp(
    64px,
    6vw,
    96px
  );

  font-weight: 400;
  line-height: 0.88;

  text-transform: uppercase;
}


.ericka-home-footer__text {
  max-width: 500px;

  margin-top: 22px;

  font-family:
    "Jost",
    sans-serif;

  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}


.ericka-home-footer__text p {
  margin: 0;
}


/* ==========================================================
   RIGHT
   ========================================================== */

.ericka-home-footer__right {
  display: flex;
  flex-direction: column;
    width: 420px;
  max-width: 420px;

  gap: 42px;
}


/* ==========================================================
   HEADINGS
   ========================================================== */

.ericka-home-footer__subheading {
  margin: 0 0 14px;

  font-family:
    "Bebas Neue",
    sans-serif;

  font-size: 42px;
  font-weight: 400;
  line-height: 1;

  text-transform: uppercase;
}


/* ==========================================================
   NEWSLETTER
   ========================================================== */

.ericka-home-footer__form {
  width: 100%;
}


.ericka-home-footer__form-row {
  display: grid;

  grid-template-columns:
    1fr
    48px;

  width: 100%;
  max-width: 520px;

  overflow: hidden;

  border-radius: 5px;

  background: #fff;
}


.ericka-home-footer__input {
  width: 100%;

  min-height: 48px;

  padding:
    0
    14px;

  border: 0;

  outline: 0;

  background: #fff;

  color: #1d1d1d;

  font-family:
    "Jost",
    sans-serif;

  font-size: 13px;
}


.ericka-home-footer__submit {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 48px;

  border: 0;

  background: transparent;

  color: #1d1d1d;

  font-size: 22px;

  cursor: pointer;
}


.ericka-home-footer__form-message {
  margin-top: 10px;

  font-family:
    "Jost",
    sans-serif;

  font-size: 12px;
}


/* ==========================================================
   SOCIALS
   ========================================================== */

.ericka-home-footer__socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

.ericka-home-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;

  color: var(--ej-footer-text, #1d1d1d);

  text-decoration: none;
}

.ericka-home-footer__social svg {
  display: block;

  width: 22px;
  height: 22px;

  flex: 0 0 auto;
}

.ericka-home-footer__social:hover {
  opacity: 0.7;
}

/* ==========================================================
   QUICK LINKS
   ========================================================== */

.ericka-home-footer__links-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    12px
    36px;

  max-width: 520px;
}


.ericka-home-footer__link {
  color: #4F4F4F;

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;
  font-weight: 400;

  text-decoration: none;
}


.ericka-home-footer__link:hover {
  text-decoration: underline;
}


/* ==========================================================
   BOTTOM
   ========================================================== */

.ericka-home-footer__bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 54px;

  padding-top: 16px;

  border-top:
    1px solid
    color-mix(
      in srgb,
      var(--ej-footer-text, #1d1d1d) 35%,
      transparent
    );
}


.ericka-home-footer__copyright,
.ericka-home-footer__legal-link {
  color:
    var(--ej-black);

  font-family:
    "Jost",
    sans-serif;

  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}


.ericka-home-footer__legal {
  display: flex;

  flex-wrap: wrap;

  align-items: center;
  justify-content: flex-end;

  gap:
    8px
    14px;
}


.ericka-home-footer__legal-link {
  text-decoration: none;
}


@media (min-width: 768px) and (max-width: 1280px) {
  .ericka-home-footer__top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  
.ericka-home-footer__left, .ericka-home-footer__right {
    width: 100%;
    max-width: 100%;
}




}



/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 767px) {

  .ericka-home-footer {
    padding: 48px 24px;
  }


  .ericka-home-footer__top {
    grid-template-columns: 1fr;

    gap: 48px;
  }


  .ericka-home-footer__left {
    width: 100%;
    max-width: 100%;
  }


  .ericka-home-footer__heading {
    font-size: 64px;
  }


  .ericka-home-footer__text {
    max-width: 340px;

    font-size: 16px;
  }


  .ericka-home-footer__right {
    gap: 36px;
      width: 100%;
    max-width: 100%;
  }


  .ericka-home-footer__subheading {
    font-size: 32px;
  }


  .ericka-home-footer__form-row {
    max-width: none;
  }


  .ericka-home-footer__links-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap:
      12px
      24px;

    max-width: none;
  }


  .ericka-home-footer__bottom {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 42px;
  }


  .ericka-home-footer__legal {
    justify-content: flex-start;
  }

}

.ericka-home-hero__title-wrap {
  --lens-effect-bleed: clamp(16px, 4.125vw, 53px);

  position: relative;
  isolation: isolate;
  overflow: visible;
}

.ericka-home-hero__lens-canvas {
  position: absolute;
  top: calc(0px - var(--lens-effect-bleed));
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: calc(
    100% + var(--lens-effect-bleed) + var(--lens-effect-bleed)
  );
  pointer-events: none;
}

.ericka-home-hero__title-line {
  position: relative;
  z-index: 1;
  transition: opacity 180ms ease;
}

/*
 * Se ocultan únicamente las dos líneas cuando el canvas ya funciona.
 * Su espacio permanece reservado, evitando que el hero salte.
 */
.ericka-home-hero__title-wrap.is-lens-ready
  .ericka-home-hero__title-line {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .ericka-home-hero__title-line {
    transition: none;
  }
}




/*Entrance Animations*/

/* ==========================================================
   DESKTOP ENTRANCE ANIMATION
   LOOKS + ESSENTIALS
   ========================================================== */

@media (min-width: 768px) {

  .ericka-home-looks__card,
  .ericka-home-essentials__card {
    opacity: 0;

    transform: translateY(36px);

    transition:
      opacity 0.45s ease,
      transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
  }


  .ericka-home-looks__card.is-entered,
  .ericka-home-essentials__card.is-entered {
    opacity: 1;

    transform: translateY(0);
  }

}

/* ==========================================================
   DESKTOP FADE IN
   NO ADHESIVE BOX + WHY LACE IMAGE
   ========================================================== */

@media (min-width: 768px) {

  .ericka-home-no-adhesive__content-card,
  .ericka-home-why-lace__image-wrap {
    opacity: 0;
    transition: opacity 0.6s ease;
    will-change: opacity;
  }

  .ericka-home-no-adhesive__content-card.is-entered,
  .ericka-home-why-lace__image-wrap.is-entered {
    opacity: 1;
  }

}


@media (prefers-reduced-motion: reduce) {

  .ericka-home-no-adhesive__content-card,
  .ericka-home-why-lace__image-wrap {
    opacity: 1;
    transition: none;
  }

}

@media (min-width: 768px) {

  .ericka-home-hero__media {
    opacity: 0;

    transform:
      translateY(24px)
      scale(1.04);

    transition:
      opacity 0.7s ease,
      transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;
  }

  .ericka-home-hero__media.is-entered {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}