/** Shopify CDN: Minification failed

Line 181:28 Expected ":"

**/
/* ============================================================
   c-shop-by-categories.css
   ============================================================ */

.c-shop-by-categories {
  padding-top: var(--PT, 20px);
  padding-bottom: var(--PB, 20px);
}

/* ---- Scroll mode: mobile + small/medium desktop (< 1280px) ---- */
@media screen and (max-width: 1279px) {
  .c-shop-by-categories > .wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-left: 16px;
    padding-right: 0;
  }

  .c-shop-by-categories > .wrapper::-webkit-scrollbar {
    display: none;
  }

  /* White space after grey box when scrolled to end */
  .c-shop-by-categories > .wrapper::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 16px;
    height: 1px;
  }

  /* Grey box scrolls as a card inside the wrapper */
  .c-shop-by-categories__bg {
    flex-shrink: 0;
  }
}

/* ---- Tablet / small desktop (550px–1279px): larger items, heading visible ---- */
@media screen and (min-width: 550px) and (max-width: 1279px) {
  .c-shop-by-categories > .wrapper {
    padding-left: 24px;
  }

  .c-shop-by-categories > .wrapper::after {
    width: 24px;
  }

  .c-shop-by-categories__bg {
    padding: 12px 24px;
  }

  /* Show heading on tablet — scrolls with the grey box card */
  .c-shop-by-categories__header {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
    margin-right: 28px;
  }

  .c-shop-by-categories__title {
    font-family: "Archivo", sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1.3;
    color: #000;
    white-space: nowrap;
    margin: 0;
    padding: 0;
  }

  .c-shop-by-categories__divider {
    width: 1px;
    height: 58px;
    background-color: #000;
    opacity: 0.25;
    flex-shrink: 0;
  }

  .c-shop-by-categories__items {
    gap: 10px;
  }

  .c-shop-by-categories__item {
    width: 110px;
    min-width: unset;
    max-width: unset;
  }

  .c-shop-by-categories__image-wrap {
    width: 65px;
    height: 65px;
  }

  .c-shop-by-categories__sale-icon {
    width: 34px;
    height: 34px;
  }

  .c-shop-by-categories__label {
    font-size: 13px;
  }
}

/* Grey box base styles (shared, mobile-first) */
.c-shop-by-categories__bg {
  background-color: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  padding: 6px 16px;
}

.c-shop-by-categories__inner {
  display: flex;
  align-items: center;
}

/* Heading — hidden on mobile only */
@media screen and (max-width: 549px) {
  .c-shop-by-categories__header {
    display: none;
  }
}

/* Items row */
.c-shop-by-categories__items {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Single category item */
.c-shop-by-categories__item {
display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    text-align: left;
}

@media screen and (max-width: 549px) {
  .c-shop-by-categories__item {
    width: max-content;
    min-width: 75px;
    max-width: 18%;
  }
}

.c-shop-by-categories__item:hover {
  opacity: 0.85;
}

/* Circle image wrapper */
.c-shop-by-categories__image-wrap {
  width: 61px;
  height: 61px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.c-shop-by-categories__img {
width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #9f9f9f;
    padding: 2px;
    border-radius: 1000px;ck;
}

/* Sale badge variant */
.c-shop-by-categories__image-wrap--sale {
  background: radial-gradient(
    circle at center,
    #f36000 0%,
    #c04c00 50%,
    #8d3800 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-shop-by-categories__sale-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.c-shop-by-categories__sale-pct {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
}

/* Label */
.c-shop-by-categories__label {
font-family: Open Sans, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #000;
    text-align: left;
    font-weight: 500;
}
.c-shop-by-categories .wrapper {
    width: 100%;
}
/* ---- Full desktop (1280px+): centered layout with heading ---- */
@media screen and (min-width: 1280px) {
  .c-shop-by-categories__bg {
    padding: 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c-shop-by-categories__inner {
    gap: 31px;
    padding: 17px 40px;
    width: 100%;
    justify-content: center;
  }

  /* Show heading + divider */
  .c-shop-by-categories__header {
    display: flex;
    align-items: center;
    gap: 45px;
    flex-shrink: 0;
  }

  .c-shop-by-categories__title {
    font-family: "Archivo", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.2px;
    line-height: 1.3;
    color: #000;
    white-space: nowrap;
    margin: 0;
    padding: 0;
  }

  .c-shop-by-categories__divider {
    width: 1px;
    height: 58px;
    background-color: #000;
    opacity: 0.25;
    flex-shrink: 0;
  }

  .c-shop-by-categories__items {
    gap: 10px;
  }

  /* .c-shop-by-categories__item {
    width: 215px;
  } */

  .c-shop-by-categories__image-wrap {
    width: 70px;
    height: 70px;
  }

  .c-shop-by-categories__sale-icon {
    width: 37px;
    height: 37px;
  }

  .c-shop-by-categories__label {
    font-size: 13px;
    max-width: 130px;
  }
}
