/** Shopify CDN: Minification failed

Line 221:3 Expected "}" to go with "{"

**/
/* ════ DORELLE CUSTOM CSS — all custom styling lives here ════ */

/* ── Cart count bubble (matches wishlist heart badge) ── */
.cart__toggle {
  position: relative !important;
}
.dorelle-cart-count {
    position: absolute;
    bottom: 8px;
    right: 5px;
    min-width: 14px;
    height: 14px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8C5C0;
    color: #fff;
    font-family: var(--FONT-STACK-BODY);
    font-size: 9px;
    line-height: 1;
    border-radius: 100px;
    pointer-events: none;
    z-index: 2;
}
/* Hide the theme's small dot — the bubble replaces it */
.cart__toggle .cart-indicator {
  visibility: hidden !important;
}

/* ── Cart drawer: free shipping progress bar — Dorelle pink ── */
.cart-message__progress {
  background-color: rgba(0, 0, 0, 0.08) !important; /* track */
}
.cart-message__progress::-webkit-progress-value {
  background-color: #E8C5C0 !important; /* fill */
}
.cart-message__progress::-moz-progress-bar {
  background-color: #E8C5C0 !important; /* Firefox fill */
}

/* Keep the bar at its real width (theme parks it at 0 until animation) */
.aos-initialized .cart-message__progress::-webkit-progress-value,
.aos-initialized .cart .cart-message__progress::-webkit-progress-value,
.aos-initialized .cart-message--drawer .cart-message__progress::-webkit-progress-value {
  width: min(var(--progress-width, 100%), 100%) !important;
}

/* ── Mobile collection toolbar — Filter | count | Sort ── */
@media only screen and (max-width: 767px) {
  #CollectionStickyBar {
    position: sticky !important;
    top: var(--header-sticky-height, 0) !important;
    z-index: 6 !important;
    background: var(--bg, #fff) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 12px 16px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
  }
  #CollectionStickyBar .collection__filters__toggle {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: auto !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: var(--FONT-STACK-BODY) !important;
    font-size: 13px !important;
    color: var(--text, #1a1a1a) !important;
    height: auto !important;
    justify-content: flex-start !important;
  }
  #CollectionStickyBar .collection__filters__toggle::after { content: "Filter"; }
  #CollectionStickyBar .collection__filters__toggle svg { width: 15px !important; height: 15px !important; }

  #CollectionStickyBar .collection__products-count {
    display: block !important;
    visibility: visible !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    width: auto !important;
    margin: 0 !important;
    font-family: var(--FONT-STACK-BODY) !important;
    font-size: 13px !important;
    opacity: 0.75 !important;
    white-space: nowrap !important;
  }

  #CollectionStickyBar .collection__sort-bar {
    display: block !important;
    visibility: visible !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    width: auto !important;
    margin: 0 !important;
    position: relative !important;
  }
  #CollectionStickyBar .collection__sort__label {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    font-family: var(--FONT-STACK-BODY) !important;
    font-size: 13px !important;
    color: var(--text, #1a1a1a) !important;
  }
/* Hide theme svg, draw our own chevron instead */
  #CollectionStickyBar .collection__sort__label svg {
    display: none !important;
  }
  #CollectionStickyBar .collection__sort__label::after {
    content: "" !important;
    display: inline-block !important;
    width: 7px !important;
    height: 7px !important;
    margin-left: 2px !important;
    border-right: 1.5px solid currentColor !important;
    border-bottom: 1.5px solid currentColor !important;
    transform: rotate(45deg) translateY(-2px) !important;
    opacity: 0.6 !important;
  }

/* ── Sort dropdown ── */
  #CollectionStickyBar .collection__sort__option-wrapper {
    display: none !important;
  }
  #CollectionStickyBar .collection__sort__option-wrapper--visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: calc(100% + 14px) !important;
    right: 0 !important;
    left: auto !important;
    z-index: 30 !important;
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
    min-width: 230px !important;
    max-height: 330px !important;
    overflow-y: auto !important;
    padding: 0 !important;
  }
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__options {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
  }
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__filter-tags {
    display: block !important;
    margin: 0 !important;
    padding: 6px 0 !important;
    list-style: none !important;
    border: none !important;
  }
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__filter-tag {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  /* Hide the radio circles */
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }
  /* Clean Dorelle rows */
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__button {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 16px !important;
    font-family: var(--FONT-STACK-BODY) !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    color: #1a1a1a !important;
    text-align: left !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer !important;
  }
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__button:hover {
    background: #f5f5f5 !important;
  }
  /* Kill any theme-drawn pseudo radio/decoration on the label */
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__button::before {
    display: none !important;
    content: none !important;
  }
  /* Selected: bold + check */
  #CollectionStickyBar .collection__sort__option-wrapper--visible .collection__sort__input:checked + .collection__sort__button {
    font-weight: 600 !important;
  }