/** Shopify CDN: Minification failed

Line 210:10 Expected identifier but found whitespace
Line 210:12 Unexpected "{"
Line 210:26 Expected ":"

**/
/*Sticky Add To Cart by Quinn*/
.qsc-discount-percent {
    border-radius: 0 !important;
    font-family: "Humanist 521", sans-serif;
}
.qsc-product-image {
    border-radius: 0 !important;
}

.collection-listing .product-block__image .rimage__image,
.collection-listing .image-cont .rimage__image {
    object-fit: cover;
}
.collection-listing .rimage-wrapper .rimage-background,
.collection-listing .product-block__image .rimage-background,
.collection-listing .rimage-wrapper .rimage-background[data-parent-fit=contain] {
    background-size: cover;
}

.wishlist-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}
.wishlist-link__icon {
    position: relative;
    display: inline-flex;
}
.wishlist-link__icon svg {
    width: 24px;
    height: 24px;
}
.wishlist-link__count {
    position: absolute;
    top: -3px;
    right: -5px;
    min-width: 15px;
    padding: 3px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    display: none;
}
.wishlist-link.has-items .wishlist-link__count {
    display: inline-block;
}
.wishlist-link svg path {
    transition: fill 0.2s ease, stroke 0.2s ease;
}
.wishlist-link.has-items svg path {
    fill: currentColor;
}
.wishlist-link--icon-only svg path {
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.5;
}
.header-account-link--icon-only .header-account-link__text,
.wishlist-link--icon-only .wishlist-link__text,
.cart-link--icon-only .cart-link__label {
    display: none !important;
}
.logo-area__right__inner {
    gap: 0.75rem;
}
.logo-area__right__inner > .header-account-link,
.logo-area__right__inner > .wishlist-link,
.logo-area__right__inner > .cart-link {
    margin: 0;
}
.header-account-link--icon-only,
.wishlist-link--icon-only,
.cart-link--icon-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}
.header-account-link--icon-only svg,
.wishlist-link--icon-only svg,
.cart-link--icon-only svg {
    width: 24px;
    height: 24px;
}
.wishlist-link--icon-only:hover,
.wishlist-link--icon-only:focus {
    background: none;
}
.product-wishlist-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem;
    border-radius: 999px;
    background-color: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 2;
    color: #438ccb !important;
}
.product-wishlist-button svg {
    width: 28px;
    height: 28px;
}
.product-wishlist-button svg path {
    transition: fill 0.2s ease, stroke 0.2s ease;
    stroke: currentColor !important;
    fill: none !important;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}
.product-wishlist-button.is-active svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}
.product-wishlist-button.is-active {
    color: #e63946;
}
.product-wishlist-button.is-hidden {
    display: none !important;
}
.product-wishlist-button--stacked {
    margin-top: 0.65rem;
    top: auto;
}
.product-wishlist-button--card {
    top: 0.65rem;
    right: 0.65rem;
    padding: 0.25rem;
    border: 0;
}

@media (hover: hover) and (pointer: fine) {
    .product-wishlist-button:hover {
        transform: scale(1.05);
        background-color: #eb913a;
    }
    .product-wishlist-button:not(.is-active):hover {
        color: #ffffff !important;
    }
    .product-wishlist-button--card:hover {
        background-color: #eb913a;
        border-color: #eb913a;
    }
    .product-wishlist-button--card.product-wishlist-button:not(.is-active):hover {
        color: #ffffff !important;
    }
}

.wishlist-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: min(90vw, 400px);
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 18px rgba(0, 0, 0, 0.15);
    z-index: 11000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}
.wishlist-panel.is-visible {
    right: 0;
}
.wishlist-panel__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10990;
}
.wishlist-panel__overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.wishlist-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.wishlist-panel__title {
    margin: 0;
    color: {{ head_txt_col }};
}
.wishlist-panel__close {
    border: none;
    background: none;
    cursor: pointer;
    color: #787a7c !important;
    padding: 0;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}
.wishlist-panel__close svg {
    width: 26px;
    height: 26px;
    stroke: #787a7c !important;
    stroke-width: 1.5;
}
@media (hover: hover) and (pointer: fine) {
    .wishlist-panel__close:hover {
        color: #4a4a4a;
        opacity: 0.75;
    }
}
.wishlist-panel__body {
    overflow-y: auto;
    flex: 1;
}
.wishlist-panel__empty {
    color: #737373;
}
.wishlist-panel__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.wishlist-panel__footer {
    display: none;
}
.wishlist-panel__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 0.75rem;
}
.wishlist-panel__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.wishlist-panel__item img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border: 1px solid #f0f0f0;
}
.wishlist-panel__item-content {
    flex: 1;
}
.wishlist-panel__item-title {
    margin: 0;
    font-size: 1rem;
}
.wishlist-panel__item-title a {
    text-decoration: none;
    color: inherit;
}
.wishlist-panel__item-title a:hover {
    text-decoration: underline;
}
.wishlist-panel__item-price {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    color: #444;
}
.wishlist-panel__remove {
    border: 0;
    background: none;
    padding: 0;
    margin-top: 0.35rem;
    color: #cf2e2e;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
}
.wishlist-panel__remove:hover,
.wishlist-panel__remove:focus {
    color: #cf2e2e;
    background: none;
    outline: none;
    font-weight: 400;
}

.wishlist-page {
    padding: 3rem 0;
}
.wishlist-page__header {
    text-align: center;
    margin-bottom: 2rem;
}
.wishlist-page__title {
    margin-bottom: 0.5rem;
}
.wishlist-page__empty {
    text-align: center;
    color: #787a7c;
}
.wishlist-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.wishlist-page__card {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
}
.wishlist-page__card-image {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f7f7f7;
}
.wishlist-page__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wishlist-page__card-title {
    margin: 0 0 0.25rem;
    font-size: 1rem;
}
.wishlist-page__card-title a {
    color: inherit;
    text-decoration: none;
}
.wishlist-page__card-title a:hover {
    text-decoration: underline;
}
.wishlist-page__card-price {
    margin: 0;
    color: #444;
    font-size: 0.9rem;
}
.wishlist-page__card-remove {
    margin-top: auto;
    align-self: flex-start;
    border: 0;
    background: none;
    color: #cf2e2e;
    font-size: 0.75rem;
    text-transform: none;
    cursor: pointer;
}
.wishlist-page__card-remove:hover,
.wishlist-page__card-remove:focus {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .product-wishlist-button {
        width: 2.5rem;
        height: 2.5rem;
    }
}
