/** Shopify CDN: Minification failed

Line 278:0 Expected "}" to go with "{"

**/
.me-featured {
  margin: 64px auto 30px;
  overflow: hidden;
  position: relative;

  &.blue {
    .tag,
    .heading,
    p:not(.category-info),
    .button {
      color: var(--freedom-blue);
    }

    .button {
      border-color: var(--freedom-blue);

      &::after {
        background: var(--freedom-blue);
      }
    }

    svg path {
      fill: var(--freedom-blue);
    }
  }

  &.brown {
    .tag,
    .heading,
    p:not(.category-info),
    .button {
      color: var(--honor-crimson);
    }

    .button {
      border-color: var(--honor-crimson);

      &::after {
        background: var(--honor-crimson);
      }
    }

    svg path {
      fill: var(--honor-crimson);
    }
  }

  &.green {
    .tag,
    .heading,
    p:not(.category-info),
    .button {
      color: var(--at-ease-green);
    }

    .button {
      border-color: var(--at-ease-green);

      &::after {
        background: var(--at-ease-green);
      }
    }

    svg path {
      fill: var(--at-ease-green);
    }
  }

  .side-panel {
    max-width: calc(100% - 16px);
    padding-inline: 16px;
  }

  .tag {
    align-items: end;
    display: flex;
    font-size: 20px;
    font-weight: 800;
    gap: 6px;
    line-height: 1;
    text-transform: uppercase;
  }

  .tag > svg {
    height: auto;
    width: 24px;
  }

  .heading {
    font-size: 40px;
    letter-spacing: -0.5px;
    line-height: 1;
    margin: 20px 0 18px;
    text-transform: uppercase;
    text-wrap: balance;
  }

  .intro {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 32px;
  }

  .button {
    align-self: flex-start;

    @media screen and (hover: hover) {
      &:hover {
        color: var(--victory-pearl);
      }
    }
  }

  @media screen and (min-width: 574px) {
    .side-panel {
      max-width: 400px;
    }
  }

  @media screen and (min-width: 768px) {
    margin-top: 90px;

    /* &::after {
      background: linear-gradient(
        to left,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.05) 20%,
        rgba(0, 0, 0, 0.03) 50%,
        rgba(0, 0, 0, 0) 100%
      );
      content: '';
      inset: 0 0 0 auto;
      position: absolute;
      width: 38px;
    } */

    .inner {
      display: flex;
      overflow: auto;
      scroll-snap-type: x mandatory;
    }

    .side-panel {
      display: flex;
      flex-shrink: 0;
      flex-direction: column;
      justify-content: space-between;
      scroll-snap-align: start end;
    }
  }

  @media screen and (min-width: 990px) {
    .side-panel {
      display: flex;
      flex-shrink: 0;
      flex-direction: column;
      justify-content: space-between;
      margin-right: 2.5%;
      padding-inline: 2.5% 0;
    }

    .heading {
      font-size: 60px;
    }
  }
}

.me-featured .feat-products {
  display: flex;
  flex: 1 1 min-content;
  margin-top: 32px;
  overflow: auto;
  padding-bottom: 32px;
  scroll-snap-type: x mandatory;

  .empty {
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    flex: 1 0 100%;
    flex-direction: column;
    gap: 12px;
    justify-content: center;

    .button {
      align-self: center;
    }
  }

  .card-wrapper {
    border-left: 4px solid #e1e2e0;
    flex: 1 0 100%;
    height: auto;
    scroll-snap-align: center;
    text-align: center;

    &:last-child {
      border-right: 4px solid #e1e2e0;
    }
  }

  @media screen and (min-width: 768px) {
    margin-top: 0;
    overflow: visible;
    padding-right: 2.5%;

    .card-wrapper {
      flex: 1 0 70%;
      scroll-snap-align: start end;
    }
  }
}

.inner::-webkit-scrollbar,
.feat-products::-webkit-scrollbar {
  display: none;
}

.feat-products {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-color: var(--freedom-blue) var(--iron-shadow-grey);
  scrollbar-width: thin; /* Firefox */
}

.desktop-controls {
  display: none;
}

@media screen and (hover: hover) {
  .me-featured .feat-products {
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .desktop-controls {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-inline: 2.5%;

    button {
      align-items: center;
      background: var(--iron-shadow);
      border: 0;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      height: 24px;
      width: 24px;

      &.inactive {
        opacity: 0.6;
      }

      svg {
        height: auto;
        translate: 3px 0;
        width: 8px;

        path {
          fill: var(--victory-pearl) !important;
        }
      }

      &.prev svg {
        display: block;
        rotate: -180deg;
        translate: 0;
      }
  }
}
