/** Shopify CDN: Minification failed

Line 149:0 Unexpected "}"

**/


/* --- CONTAINER --- */
.collection-shop-all-circle-wrapper {
  padding: 50px 15px 10px;
  text-align: center;
}

.collection-shop-all-circle-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

/* --- CIRCLE LINK --- */
.collection-shop-all-circle {
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
}

.collection-shop-all-circle-image-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid #e4e1da;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;              /* center the circle itself */
  display: flex;               /* center the image inside */
  align-items: center;
  justify-content: center;
}

/* Force image to fill the whole circle */
.collection-shop-all-circle-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fill the circle */
  border-radius: 50%;  /* ensures circular cropping */
}

/* --- LABEL TEXT --- */
.collection-shop-all-circle-label {
  display: block;
  margin-top: 8px;
  font-family: "Muli", sans-serif; /* use your brand font */
  font-weight: 900;
  font-size: 14px;
  color: #555;            /* gray text */
  letter-spacing: 1px;    /* requested spacing */
  text-transform: uppercase;
  transition: all 0.5s ease;
  
}

/* Remove all default link underlines */
.collection-shop-all-circle,
.collection-shop-all-circle-label {
  text-decoration: none !important;
}


/* --- HOVER STYLE (matches All Products link) --- */
.collection-shop-all-circle:hover .collection-shop-all-circle-label {
  color: #008490;              /* Annmarie teal */
  text-decoration: underline;  /* underline like your nav */
  text-underline-offset: 3px;
}





/* Default: hide arrows (desktop) */
.scroll-arrow {
  display: none;
}







/* MOBILE: horizontal slider + visible arrows */
@media (max-width: 749px) {

  .collection-shop-all-circle-wrapper {
    position: relative;
    padding-bottom: 40px;
  }

  .collection-shop-all-circle-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 24px;
    padding: 0 28px;              /* content starts about at arrow CENTER */
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .collection-shop-all-circle-inner::-webkit-scrollbar {
    display: none;
  }

  .collection-shop-all-circle {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .scroll-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255);
    border-radius: 9999px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  }

  .scroll-arrow-left {
    left: 5px;    /* closer to outer edge */
  }

  .scroll-arrow-right {
    right: 5px;   /* closer to outer edge */
  }
}

}