/** Shopify CDN: Minification failed

Line 2213:11 Unexpected "{"

**/
[hidden] {
    visibility: hidden;
    display: none;
}

:root {
    --space-under-header: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));

    --corner_radius: 10px;

    /* --page-width: set via editor / liquid */
    --small-width: calc(var(--page-width) * 0.7);

    --_skip_base: 1rem;

    --skip_xxsmall: calc(var(--_skip_base) * 0.1);
    --skip_xsmall: calc(var(--_skip_base)* 0.25);
    --skip_small: calc(var(--_skip_base) * 0.5);
    --skip_medium: calc(var(--_skip_base) * 1.0);
    --skip_large: calc(var(--_skip_base) * 2.0);
    --skip_xlarge: calc(var(--_skip_base) * 4.0);
    --skip_xxlarge: calc(var(--_skip_base) * 8.0);

    @media screen and (max-width: 749px) {
        --_skip_base: 0.75rem;
    }

    --blur: blur(15px);
    --blur_color: rgba(0, 0, 0, 0.5);

    --product-grid-spacing: 10px;
    --product-grid-spacing-mobile: 3px;
    --duration-long: 0.5s;
}


a {
    color: var(--color_blue);
    text-decoration: none;
    display: inline-block;
}

b,
strong {
    font-weight: bold;
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}

::selection {
    background-color: var(--color_blue_very_light);
}



@media screen and (max-width: 1299px) {

    [desktop-wide] {
        display: none;
        visibility: hidden;
    }
}

@media screen and (min-width: 989px) {

    [mobile] {
        display: none;
        visibility: hidden;
    }

}

@media screen and (max-width: 989px) {

    [desktop] {
        display: none;
        visibility: hidden;
    }

}



.emoji,
.bog-svg {

    margin: 0;
    pointer-events: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    /* height: 100%;
    width: 100%; */

    &.fill svg {
        stroke: unset;
    }

    &.stroke svg {
        fill: unset;
    }

    &.xsmall {
        flex-basis: 15px;
        width: 15px;
        font-size: 15px;
        line-height: 15px;

        & svg {
            width: 15px;
            height: 15px;
        }
    }

    &.small {
        flex-basis: 22px;
        width: 22px;
        font-size: 22px;
        line-height: 22px;

        & svg {
            width: 22px;
            height: 22px;
        }
    }

    &.base {
        flex-basis: 30px;
        width: 30px;
        font-size: 30px;
        line-height: 30px;

        & svg {
            width: 30px;
            height: 30px;
        }
    }

    &.medium {
        flex-basis: 40px;
        width: 40px;
        font-size: 40px;
        line-height: 40px;

        & svg {
            width: 40px;
            height: 40px;
        }
    }

    &.large {
        flex-basis: 75px;
        width: 75px;
        font-size: 75px;
        line-height: 75px;

        & svg {
            width: 75px;
            height: 75px;
        }
    }

    &.xlarge {
        flex-basis: 100px;
        width: 100px;
        font-size: 100px;
        line-height: 100px;

        & svg {
            width: 100px;
            height: 100px;
        }
    }

    &.auto-height {
        height: auto;

        & svg {
            height: auto;
        }
    }

    .announcement-bar & {
        flex-shrink: 0;
    }

    & svg {
        height: 100%;
        width: 100%;
    }

    &.bog-svg--fill {
        width: 100%;

        & svg {
            width: 100%;
            height: auto;
            display: block;
        }
    }

    &.bog-svg--fill-width {
        width: 100%;

        & svg {
            width: 100%;
            height: initial;
            display: block;
        }
    }

    &.bog-svg--fill-height {
        height: 100%;

        & svg {
            width: initial;
            height: 100%;
            display: block;
        }
    }

    &.bog-svg--fill {
        height: 100%;

        & svg {
            width: 100%;
            height: 100%;
            display: block;
        }
    }

}

.bog-fixed-alert-inner {
    position: relative;
    background: white;
}

.bog-fixed-alert-inner {

    background: linear-gradient(90deg, var(--color_yellow_light), var(--color_white), var(--color_yellow_light));
    background-size: 1000% 1000%;

    animation: shimmer 50s linear infinite;

}

/* 
.bog-fixed-alert-inner:has(details[open])::before {

    content: "";
    inset: 0;
    padding: 10px;
    position: absolute;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color_red_light), var(--color_red), var(--color_red_light));
    background-size: 1000% 1000%;

    animation: shimmer 20s linear infinite;

    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;
} */


.bog-img {

    object-fit: fill;

    & .media {
        width: 100%;
        height: 100%;
    }

    &.bog-img--fill-width {
        width: 100%;

        & img {
            width: 100%;
            height: auto;
            display: block;
        }
    }

    &.bog-img--fill-height {
        height: 100%;

        & img {
            height: 100%;
            width: auto;
            display: block;
        }
    }

    &.bog-img--fill {
        height: 100%;
        width: 100%;

        & img {
            height: 100%;
            width: 100%;
            display: block;
        }
    }
}

.shadow-card {
    box-shadow: 0 0 25px #2b2c3221;
}

.shadow-card-sm {
    box-shadow: 0 0 10px #2b2c3212;
    /* box-shadow: 0 0 10px #2b2c3228; */

    transition: box-shadow 0.3s ease;

    &.hover:hover {
        box-shadow: 0 0 12px #2b2c322e;
    }
}

textarea:focus,
input:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.border {
    border: 2px solid var(--color_gray)
}

.link-button {

    cursor: pointer;

    border: none;
    outline: none;

    box-shadow: none;

    background-color: transparent;
    color: var(--color_light);

    text-decoration: none;

    padding: 5px 10px;

}

button {
    cursor: pointer;

    border: none;
    outline: none;

    box-shadow: none;
    text-decoration: none;

    background-color: transparent;
}

.button {

    cursor: pointer;

    text-align: center;

    border: none;
    outline: none;

    box-shadow: none;
    text-decoration: none;

    color: var(--color_light);

    padding: 10px 50px;

    border-radius: 7px;

    background-color: var(--color_dark);
    transition: background-color ease 500ms;

    &:hover {
        transition: background-color ease 200ms;
    }

}

.button.square {
    border-radius: 0;
}

.announcement-bar__link {
    justify-content: left;
}

.announcement-bar__message {
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    font-weight: normal;
}

.announcement-bar__message .icon-arrow {
    display: inline-block;
    pointer-events: none;
    margin-left: 0.8rem;
    vertical-align: middle;
    margin-bottom: 0.2rem;
}

.header__icon--cart {
    margin-right: unset;
}

.header {
    overflow: hidden;
    padding: 0px 10px
}

.bog-header {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: stretch;
    /* border-bottom: solid 1px var(--color_gray); */
}

.bog-checkbox {
    width: 100%;
    height: 100%;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
}

.facet-checkbox>input[type='checkbox']:checked~.bog-checkbox {
    background-color: var(--color_red);
}

.facet-checkbox {
    cursor: pointer;
}


input[type='checkbox'].bog-checkbox-input {
    position: absolute;
    opacity: 1;
    width: 1.6rem;
    height: 1.6rem;
    top: 0.7rem;
    left: -0.4rem;
    z-index: -1;
    appearance: none;
    -webkit-appearance: none;
}


.bog-icon-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    height: 4.4rem;
    width: 4.4rem;
}

.bog-loading-bar {

    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* max-width: 200px; */
    /* min-width: 100px; */
    min-height: 15px;
    background: rgba(0, 0, 0, 0.075);

    overflow: hidden;

    & .bog-loading-shimmer {
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.7) 50%,
                transparent 100%);
        background-size: 200% 100%;
        animation: shimmer 3s infinite linear;
    }
}


@keyframes shimmer {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

.blur {
    background: #ffffffbe;
    /* backdrop-filter: brightness(1.5) blur(15px) saturate(3); */
}

.header-wrapper {
    margin-top: -1px;
    border-bottom: 1px solid var(--color_light);
    background: #ffffffbe;
    backdrop-filter: brightness(1.5) blur(15px) saturate(3);
}

.bog-notice {

    /* border-radius: var(--corner_radius); */
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 10px;

    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;

    & h3 {
        margin: 0;
    }
}

.bog-logo {

    /* Important for 100% height without any content size  */
    top: 0;
    bottom: 0;

    /* Important for relative or absolute child to fill this container */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    flex-basis: 200px;
    min-width: 75px;

    & svg {
        position: absolute;
        /* height: 100%;
        width: 100%; */
        padding: 10px 0px;
        object-fit: contain;
        overflow: visible;
    }

    & a {
        display: block;
        position: relative;
        /* height: 100%; */
        min-width: 50px;
    }
}

li {
    list-style: none;
    margin-left: none;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; */
    margin: 1rem 0;
    line-height: 120%;
}


h0,
.h0 {
    font-size: 120px;

    @media screen and (max-width: 989px) {
        font-size: 90px;
    }

    @media screen and (max-width: 749px) {
        font-size: 70px;
    }
}


h1,
.h1 {
    font-size: 100px;

    @media screen and (max-width: 989px) {
        font-size: 70px;
    }

    @media screen and (max-width: 749px) {
        font-size: 50px;
    }
}

h2,
.h2 {
    font-size: 75px;

    @media screen and (max-width: 989px) {
        font-size: 50px;
    }

    @media screen and (max-width: 749px) {
        font-size: 40px;
    }
}

h3,
.h3 {
    font-size: 50px;

    @media screen and (max-width: 989px) {
        font-size: 40px;
    }

    @media screen and (max-width: 749px) {
        font-size: 30px;
    }
}

h4,
.h4 {
    font-size: 30px;

    @media screen and (max-width: 989px) {
        font-size: 25px;
    }

    @media screen and (max-width: 749px) {
        font-size: 20px;
    }
}

h5,
.h5 {
    font-size: 17px;

    @media screen and (max-width: 989px) {
        font-size: 16px;
    }

    @media screen and (max-width: 749px) {
        font-size: 15px;
    }
}

.bog-description {

    font-size: 1.25rem;

    & h1,
    & h2,
    & h3,
    & h4,
    & h5 {
        overflow-wrap: break-word;
        word-wrap: break-word;
        /* -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; */
        margin: 1rem 0;
        line-height: 120%;
    }


    & h1 {
        font-size: 4rem;

        @media screen and (max-width: 989px) {
            font-size: 30px;
        }

        @media screen and (max-width: 749px) {
            font-size: 25px;
        }
    }

    & h2 {
        font-size: 3rem;

        @media screen and (max-width: 989px) {
            font-size: 25px;
        }

        @media screen and (max-width: 749px) {
            font-size: 20px;
        }
    }

    & h3 {
        font-size: 2rem;

        @media screen and (max-width: 989px) {
            font-size: 24px;
        }

        @media screen and (max-width: 749px) {
            font-size: 20px;
        }
    }

    & h4 {
        font-size: 1.5rem;

        @media screen and (max-width: 989px) {
            font-size: 20px;
        }

        @media screen and (max-width: 749px) {
            font-size: 20px;
        }
    }

    & h5 {
        font-size: 20px;

        @media screen and (max-width: 989px) {
            font-size: 17px;
        }

        @media screen and (max-width: 749px) {
            font-size: 17px;
        }
    }

    ul,
    li {
        list-style: disc;
    }
}

.bog-section-content {

    display: flex;
    flex-direction: column;
    align-items: stretch;

    &._left {
        margin-left: 0;
        margin-right: auto;
    }

    &._right {
        margin-right: 0;
        margin-left: auto;
    }

    &._center {
        margin-left: auto;
        margin-right: auto;
    }
}


.bog-section-block {
    padding: 5rem 0px;
}


@media screen and (max-width: 749px) {

    .bog-logo {
        & a {
            max-height: 75px;
            max-width: 75px;
        }
    }

    .bog-section-block {
        padding: 40px 0px;
    }
}

.bog-field-input-and-title {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.3rem;
    flex: 1 1 0;
}

.bog-field-search {
    position: relative;
    font-size: 1.3rem;

    display: flex;
    align-items: center;

    & .field__button {
        top: unset
    }

}

.bog-select-and-icon {
    display: flex;
    position: relative;
    width: 100%;

    & .bog-svg {
        /* height: 0.6rem; */
        /* width: 1rem; */
        pointer-events: none;
        position: absolute;
        transform: translateY(-50%);
        top: calc(50%);
        right: 20px;
    }
}

/* component-form */
.bog-form {

    & select {
        cursor: pointer;
    }


    & input[type=text],
    & input[type=email],
    & input[type=password],
    & input[type=tel],
    & input[type=search],
    & quantity-input,
    & textarea,
    & select {

        resize: vertical;
        -webkit-appearance: none;
        appearance: none;

        font-family: var(--font-body-family);
        font-style: var(--font-body-style);
        font-weight: var(--font-body-weight);
        font-size: 1.6rem;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        /* height: 4.5rem; */
        min-height: calc(var(--inputs-border-width) * 2);
        position: relative;
        padding: 10px 10px;

        outline: none;
        border-width: 1px;
        border-style: solid;
    }

    & input[type="search"]::-webkit-search-decoration,
    & input[type="search"]::-webkit-search-cancel-button,
    & input[type="search"]::-webkit-search-results-button,
    & input[type="search"]::-webkit-search-results-decoration {
        -webkit-appearance: none;
        background-color: red;
    }

    & input[type=search]::-webkit-search-cancel-button {
        display: none;
    }


    & select:before {
        pointer-events: none;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: var(--inputs-radius-outset);
        z-index: -1;
    }

    & select:after {
        pointer-events: none;
        content: '';
        position: absolute;
        top: var(--inputs-border-width);
        right: var(--inputs-border-width);
        bottom: var(--inputs-border-width);
        left: var(--inputs-border-width);
        border: 0.1rem solid transparent;
        border-radius: var(--inputs-radius);
        transition: box-shadow var(--duration-short) ease;
        z-index: 1;
    }

    & select:hover.select:after {
        box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground), var(--inputs-border-opacity));
        outline: 0;
        border-radius: var(--inputs-radius);
    }

    & select:focus-visible {
        box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
        outline: 0;
    }
}

.bog-form-button {
    float: right;
    margin-top: 10px;
}

.bog-predictive-search-content {
    /* overflow-y: scroll; */
    /* max-height: var(--space-under-header); */
}

.bog-collection-card {

    position: relative;

    aspect-ratio: 1 / 1;
    box-sizing: content-box;
    overflow: hidden;
    height: 100%;

    & .bog-collection-card-image {
        width: 100%;
        height: 100%;
    }

    & .bog-collection-card-gradient {

        display: block;

        width: 100%;
        height: 70%;
        position: absolute;
        bottom: 0;

        pointer-events: none;

        /* background: radial-gradient(ellipse at 10% bottom,
                rgba(0, 0, 0, .8) 0%,
                rgba(0, 0, 0, 0) 70%); */

        background: linear-gradient(to top,
                rgba(0, 0, 0, .8) 0%,
                rgba(0, 0, 0, 0) 70%);

    }

    & .bog-collection-card-heading {

        color: var(--color_white);

        pointer-events: none;

        padding: 20px;
        bottom: 0;
        display: block;
        position: absolute;
        height: auto;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

        & h3 {
            display: block;
            font-size: 2.5rem;
            margin: 0;
        }

        & .bog-svg {
            height: 100%;
            margin-left: 10px;
        }

        & svg {
            stroke: var(--color_white);
        }

        @media screen and (max-width: 749px) {

            padding: 10px;

            & h3 {
                font-size: 1.5rem;
            }
        }
    }

    border-radius: var(--skip_medium);
}

.bog-collection-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--grid-mobile-gap);
    position: relative;

    width: 90%;
    /* left: calc(5%); */

    max-width: 1200px;
    margin: 0 auto;

    flex-wrap: wrap;
    padding: 0;
    list-style: none;

    &[bog-collection-grid-count] li,
    &[bog-collection-grid-count="8"] li,
    &[bog-collection-grid-count="4"] li {
        width: calc(25% - var(--grid-mobile-gap) * 3 / 4);
    }

    &[bog-collection-grid-count="6"] li,
    &[bog-collection-grid-count="5"] li,
    &[bog-collection-grid-count="3"] li {
        width: calc(33.33% - var(--grid-mobile-gap) * 2 / 3);
    }

    &[bog-collection-grid-count="2"] li {
        width: calc(50% - var(--grid-mobile-gap) * 1/2);
    }

    @media screen and (max-width: 989px) {
        width: 100%;
        left: 0;
        justify-content: start;
        flex-wrap: nowrap;
        overflow-x: auto;


        gap: var(--skip_small);

        &> :first-child {
            margin-left: var(--skip_medium);
        }

        &> :last-child {
            margin-right: var(--skip_medium);
        }

        &::-webkit-scrollbar {
            width: 0px;
            height: 0px;
            background: transparent;
            /* make scrollbar transparent */
        }

        &[bog-collection-grid-count] li,
        &[bog-collection-grid-count="8"] li,
        &[bog-collection-grid-count="4"] li,
        &[bog-collection-grid-count="6"] li,
        &[bog-collection-grid-count="5"] li,
        &[bog-collection-grid-count="3"] li {
            width: 40%;
        }
    }

    @media screen and (max-width: 749px) {

        &[bog-collection-grid-count] li,
        &[bog-collection-grid-count="8"] li,
        &[bog-collection-grid-count="4"] li,
        &[bog-collection-grid-count="6"] li,
        &[bog-collection-grid-count="5"] li,
        &[bog-collection-grid-count="3"] li {
            width: 66%;
        }
    }

}

.bog-header-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    padding: 15px 0px;
    /* position: relative; */
}

@media screen and (max-width: 989px) {

    .bog-header-right {
        justify-content: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

}

.bog-header-nav-items {
    display: inline-flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: right;
    gap: 0.5rem;
    font-size: 1.4rem;
}


.header__active-menu-item {
    transition: text-decoration-thickness var(--duration-short) ease;
    color: var(--color_white);
    /* font-weight: bold; */
}

details[open].full-width-open,
.full-width-open>details[open] {
    width: 100%;
}

details[open]>.search-modal {
    opacity: 1;
    animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay {
    /* safari z index hack idk idc */
    transform: translate3d(0, 0, 1px);

    display: block;
    position: absolute;
    content: '';
    top: 0;
    z-index: 1;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: var(--blur_color);

    transition: background-color ease 400ms;
}

.search-modal__content {

    transform: translate3d(0, 0, 1px);

    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0 1rem;
    line-height: calc(1 + 0.8 / var(--font-body-scale));
    position: relative;
    position: absolute;
    width: 100%;
    max-width: 900px;
    height: 100%;
    right: 0;
    z-index: 5;

    @media screen and (min-width: 750px) {
        padding: 0 6rem;
    }
}

.search-modal__content-bottom {
    bottom: 0;
}

.search-modal__content-top {
    top: 0;
}


/* details[open] .modal-overlay::after {
    position: absolute;
    content: '';
    top: var(--header-height);
    left: 0;
    right: 0;
    height: var(--space-under-header);
    background-color: var(--blur_color);
    transition: background-color ease 400ms;
} */

.bog-header-button {
    padding: 5px 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.header__icon--menu::before,
.header__icon--search::before {

    /* safari z index hack idk idc */
    transform: translate3d(0, 0, 1px);

    background-color: transparent;
    backdrop-filter: none;

    transition:
        background-color 300ms ease;
    /* backdrop-filter 300ms ease; */

    content: '';
    left: 0;
    width: 100%;
    display: block;
    position: absolute;
    cursor: default;

    /* NOTE: this is in header space, so we want to start at the bottom of the header in this space - ie: 100% */
    top: 100%;
    /* NOTE: the height however is viewport height so we use the whole viewport bottom of the header in the calc */
    height: var(--space-under-header);

}


.header__icon--search::before {
    top: 0;
    height: 101vh;
}

details:not([open]) .header__icon--menu::before,
details:not([open]) .header__icon--search::before {
    visibility: hidden;
}

details[open] .header__icon--menu::before,
details[open] .header__icon--search::before {

    background-color: var(--blur_color);
    /* backdrop-filter: var(--blur); */

}

details[closing] .header__icon--menu::before,
details[closing] .header__icon--search::before {
    background-color: transparent;
    backdrop-filter: none;
}

.bog-drawer-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.bog-header-mobile-dropdown-container {
    position: absolute;
    /* transform: translateX(100%);
    visibility: hidden; */
    /* --header-height set via js */

    display: flex;
    position: absolute;
    width: 100dvw;
    height: calc(100dvh - var(--header-bottom-position));
    left: 0;
    pointer-events: none;
    top: var(--header-height, 0);
    padding: var(--skip_medium);
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-end;
}

.bog-header-mobile-dropdown-container-inner {

    /* -webkit-overflow-scrolling: touch; */
    /* overflow-scrolling: touch; */

    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    /* display: flex; */
    flex-direction: row;
    min-width: min(100%, 400px);
    align-items: stretch;
    flex-wrap: nowrap;
    /* height: 100%; */
    /* text-align: right; */
    justify-content: flex-end;

    & ul {
        display: flex;
        gap: 0px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;

        & li {
            width: 100%;
        }

        & li:not(:last-child) {
            width: 100%;
            border-bottom-style: solid;
            border-bottom-width: 2px;
        }
    }

    & .bog-header-button {
        padding: 10px 20px;
        text-decoration: none;
        font-size: 1.75rem;
        width: 100%;
        transition: background-color .3s ease;
    }

}


.bog-header-dropdown-card {
    /* padding: 20px; */

    pointer-events: all;
    min-width: 50%;
    padding: var(--skip_medium);


    transition:
        transform 300ms ease,
        opacity 300ms ease;

    transform: translateX(100px);
    opacity: 0;

    details & li {
        transition: opacity 0.6s ease calc(var(--animation-order, 0) * 0.02s);
        opacity: 0;

        @starting-style {
            opacity: 0;
        }
    }

    details[open] & li {
        opacity: 1;
        z-index: 11111;
    }


    details[closing] & li {
        transition: opacity 0.05s ease 0;
        opacity: 0;
    }


    details:not([open]) & {

        @starting-style {
            transform: translateX(100px);
            opacity: 0;
        }

    }

    details[open] & {
        transform: translateX(0);
        opacity: 1;
    }

    details[closing] & {
        opacity: 0;
        transform: translateX(100px);

    }

}

.header__search {

    z-index: 1;

    & details> :not(summary) {
        transition: opacity 0.1s ease;
        opacity: 0;


        @starting-style {
            opacity: 0;
        }
    }

    & details[open]> :not(summary) {
        opacity: 1;
    }

}

.bog-header-mobile-dropdown-container {
    details[open] & {
        transform: translateX(0);
        visibility: visible;
    }
}


.bog-hero {
    position: relative;

    & h1 {

        /* font-size: 70px; */
        margin-top: 0;
        margin-bottom: 0;

        & span {
            line-height: 95%;
            display: block;
        }

    }

    --line-thickness: 3px;

    --anim-durn-left: 1.25s;

    --anim-durn-words: calc(var(--anim-durn-left) / 3);

    --anim-durn-right: 1s;
    --anim-durn-x: 0.5s;
    --anim-durn-line: 1.25s;

    --anim-wait-line: calc(var(--anim-durn-words) * 2.5);
    --anim-wait-x: calc(var(--anim-durn-line) + var(--anim-wait-line) - (var(--anim-durn-x)*0.5));

    --anim-wait-right: calc(var(--anim-wait-x) - (var(--anim-durn-right) * 0.5));

    .bog-hero-left {
        position: relative;
        width: 50%;
        opacity: 0;
        flex-grow: 1;
        animation: fadeIn var(--anim-durn-left) ease-in-out forwards;

        .start {
            opacity: 0;
            animation: fadeIn var(--anim-durn-words) ease-in-out forwards;
        }

        .your {
            opacity: 0;
            animation: fadeIn var(--anim-durn-words) ease-in-out calc(var(--anim-durn-words) * 1.5) forwards;
        }

        .journey {
            opacity: 0;
            animation: fadeIn calc(var(--anim-durn-words) * 2) ease-in-out calc(var(--anim-durn-words) * 2.5) forwards;
        }
    }

    .bog-hero-right {
        position: relative;
        text-align: right;
        flex-grow: 1;
        opacity: 0;
        flex-grow: 1;
        animation: fadeIn var(--anim-durn-right) ease-in-out var(--anim-wait-right) forwards;
    }

    .bog-hero-line-and-x {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: start;
        flex-direction: row;
        margin-top: 20px;
    }


    .bog-hero-line {
        display: block;
        background-color: red;
        height: var(--line-thickness);
        width: 100%;
        opacity: 0;
        background: linear-gradient(90deg, transparent, white);
        animation: heroGrowLine var(--anim-durn-line) ease-in-out var(--anim-wait-line) forwards;
        transform-origin: left center;
    }

    .bog-hero-x {

        position: relative;
        width: 100px;
        height: 100px;
        display: inline-block;

        &::before,
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            height: var(--line-thickness);
            opacity: 0;
            background-color: var(--color_red);
            transform-origin: center;
        }

        &::before {
            transform: translateY(-50%) rotate(45deg);
            animation-delay: 1s;
            animation: heroGrowX1 var(--anim-durn-x) ease-in-out var(--anim-wait-x) forwards;
        }

        &::after {
            transform: translateY(-50%) rotate(-45deg);
            animation: heroGrowX2 var(--anim-durn-x) ease-in-out var(--anim-wait-x) forwards;
        }
    }

    .bog-hero-split {
        gap: 30px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: wrap;
    }

}


@keyframes heroGrowX1 {

    from {
        opacity: 0;
        /* transform: translateY(-50%) rotate(45deg) scaleX(0); */
    }

    to {
        opacity: 1;
        /* transform: translateY(-50%) rotate(45deg) scaleX(1); */
    }
}

@keyframes heroGrowX2 {

    from {
        opacity: 0;
        /* transform: translateY(-50%) rotate(-45deg) scaleX(0); */
    }

    to {
        opacity: 1;
        /* transform: translateY(-50%) rotate(-45deg) scaleX(1); */
    }
}

@keyframes heroGrowLine {

    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* movement */
@keyframes drift {
    0% {
        transform:
            translate(-50%, -50%) translate(var(--smoke-start-x), var(--smoke-start-y)) scale(var(--smoke-scale-from));
    }

    100% {
        transform:
            translate(-50%, -50%) translate(calc(var(--smoke-start-x) + var(--smoke-translate-x)), calc(var(--smoke-start-y) + var(--smoke-translate-y))) scale(var(--smoke-scale-to));
    }
}

/* opacity */
@keyframes fade {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(100px);
    }

    100% {
        transform: translateX(0px);
    }
}


.animate--smoke {
    position: absolute;

    animation-delay: var(--smoke-delay);
    animation:
        drift var(--smoke-durn) ease-in-out infinite,
        fade calc(var(--smoke-durn) * 0.5) ease-in-out infinite;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: brightness(var(--smoke-brightness));

    &:nth-child(1) {
        --smoke-brightness: 0.75;
        --smoke-start-x: -500px;
        --smoke-start-y: -250px;
        --smoke-translate-x: 400px;
        --smoke-translate-y: -0px;
        --smoke-scale-from: -1;
        --smoke-scale-to: -1.25;
        --smoke-durn: 10s;
        --smoke-delay: 1s;
    }

    &:nth-child(2) {
        --smoke-brightness: 0.3;
        --smoke-start-x: 500px;
        --smoke-start-y: -200px;
        --smoke-translate-x: -600px;
        --smoke-translate-y: 00px;
        --smoke-scale-from: -1;
        --smoke-scale-to: -1.25;
        --smoke-durn: 14s;
        --smoke-delay: 2s;
    }

    &:nth-child(3) {
        --smoke-brightness: 0.6;
        --smoke-start-x: -100px;
        --smoke-start-y: 100px;
        --smoke-translate-x: 200px;
        --smoke-translate-y: -200px;
        --smoke-scale-from: 1;
        --smoke-scale-to: 2;
        --smoke-durn: 20s;
        --smoke-delay: 5s;
    }

    &:nth-child(4) {
        --smoke-brightness: 0.9;
        --smoke-start-x: 400px;
        --smoke-start-y: 250px;
        --smoke-translate-x: -300px;
        --smoke-translate-y: 00px;
        --smoke-scale-from: 1;
        --smoke-scale-to: 1.25;
        --smoke-durn: 10s;
        --smoke-delay: 1s;
    }

    &:nth-child(5) {
        --smoke-brightness: 0.6;
        --smoke-start-x: -400px;
        --smoke-start-y: 200px;
        --smoke-translate-x: 200px;
        --smoke-translate-y: 00px;
        --smoke-scale-from: 1;
        --smoke-scale-to: 1.25;
        --smoke-durn: 8s;
        --smoke-delay: 3s;
    }
}

.full-width {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.page-width {
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;

    @media screen and (max-width: 749px) {
        padding: 0px var(--skip_large);
    }

    @media screen and (min-width: 750px) {
        padding: 0 var(--skip_xlarge);
    }

}

& .shopify-policy__container {
    width: 100%;
    max-width: var(--page-width);
    margin: 0 auto;

    @media screen and (max-width: 749px) {
        padding: 0px var(--skip_large);
    }

    @media screen and (min-width: 750px) {
        padding: 0 var(--skip_xlarge);
    }


    & li {
        padding: var(--skip_medium);

        &::marker {
            margin-right: var(--skip_medium);
        }
    }
}


.small-width {
    width: 100%;
    max-width: var(--small-width);
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    & _left {
        margin-left: 0;
        margin-right: unset;
    }

    & _right {
        margin-right: 0;
        margin-left: unset;
    }

    & _center {}

    @media screen and (max-width: 749px) {
        padding: 0px 10px;
    }

    @media screen and (min-width: 750px) {
        padding: 0 5rem;
    }
}



.page-width-scrollable {
    overflow: auto;

    &::-webkit-scrollbar {
        width: 0px;
        height: 0px;
        background: transparent;
        /* make scrollbar transparent */
    }
}

.page-width-scrollable-inner {
    display: flex;
    gap: 16px;

    width: max-content;
    /* This keeps items aligned with page content */
    padding: 0 5rem;
}



.bog-footer {

    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-content: center;
    align-items: start;
    gap: 10px;

    & .bog-footer-left {
        flex-basis: 100px;
        min-width: 70px;
        flex-shrink: 1;
    }

    & .bog-footer-right {
        text-align: right;
        flex-shrink: 1;
    }
}

.bog-card {
    padding: 10px;
}

.bog-product-card {

    display: flex;
    position: relative;
    border: 0px solid var(--color_light);
    height: 100%;
    overflow: hidden;

    &.bog-product-card--sale {
        outline: 1px solid var(--color_red_very_light);
        /* outline-offset: -1px; */
    }

    &.bog-product-card--new:after {
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        outline-offset: -1px;
        outline: 1px solid var(--color_yellow);
        opacity: 0.5;
        position: absolute;
        mix-blend-mode: multiply;
    }

    &:hover {
        border-color: var(--color_gray_light);
    }

    *[bog-grid-card-style="list"] & {
        flex-direction: row;
        justify-content: space-between;
        /* max-height: 100px; */
    }

    *[bog-grid-card-style="card"] & {
        flex-direction: column;
        justify-content: start;
    }

    & .bog-product-card-flow {

        display: flex;
        padding: 10px;
        gap: 20px;
        width: 100%;
        flex-grow: 1;

        color: var(--color_gray);
        font-size: 14px;

        *[bog-grid-card-style="list"] & {
            flex-direction: column;
            justify-content: space-between;

            & .bog-product-price-and-stock {
                position: absolute;
                right: 5px;
                bottom: 5px;
            }
        }

        *[bog-grid-card-style="card"] & {
            flex-direction: column;
            justify-content: space-between;
        }


        *[bog-grid-card-style="list"] & {
            border-left-width: 1px;
            border-left-style: solid;
            border-left-color: inherit;
        }

        *[bog-grid-card-style="card"] & {
            border-top-width: 1px;
            border-top-style: solid;
            border-top-color: inherit;
        }
    }

    & .bog-product-badge-container {

        left: 5px;
        top: 5px;

        /* *[bog-grid-card-style="list"] & {
            left: 5px;
            top: 5px;
        } */
    }

    & .bog-product-img {

        display: block;
        background-color: rgba(var(--color-foreground), 0.1);
        position: relative;
        overflow: hidden;

        aspect-ratio: 1/1;
        flex: 0 0 auto;

        & img {
            position: absolute;
            height: 100%;
            width: 100%;
            object-fit: cover;

            [stock=false] & {
                opacity: 0.25;
            }
        }

        *[bog-grid-card-style="list"] & {
            height: 100%;
            min-height: 100px;
            max-width: 100px;
        }

        *[bog-grid-card-style="card"] & {
            min-width: 100%;
        }

        &.media--hover-effect>img+img {
            opacity: 0;
        }

        /* &:after {
            content: "";
            display: block;
            padding-bottom: 100%;
        } */
    }

}

@media screen and (min-width: 990px) {

    .bog-product-card .bog-product-img.media--hover-effect>img:only-child {
        transition: transform var(--duration-long) ease;
    }

    .bog-product-card:hover .bog-product-img.media--hover-effect>img:first-child:only-child {
        transform: scale(1.02);
    }

    .bog-product-card .bog-product-img.media--hover-effect>img+img {
        transition: transform var(--duration-long) ease, opacity var(--duration-long) ease;
        opacity: 0;
        transform: scale(1.0);
    }

    .bog-product-card:hover .bog-product-img.media--hover-effect>img+img {
        opacity: 1;
        transform: scale(1.02);
    }
}

.bog-product-card-info-stack {
    display: flex;
}

.bog-product-card-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    height: 100%;
    flex-shrink: 1;
    gap: 10px;

    & h3 {
        font-size: 14px;
        letter-spacing: 0.5px;
        line-height: 20px;
        font-weight: normal;
        margin: 0;
    }

    & a {
        color: black !important;
    }

}

.bog-product-price {
    text-align: left;
    font-size: 20px;
    line-height: 20px;
    /* font-weight: bold; */
}

.bog-price-from {
    font-size: 12px;
    color: var(--color_gray);
    line-height: 150%;
    display: block;
}

.bog-price-sale-slash {
    font-size: 12px;
    color: var(--color_red_light);
    line-height: 150%;
    display: block;
    text-decoration: line-through;
}

.price__sale,
.price__availability,
.price .price__badge-sale,
.price .price__badge-sold-out,
.price--on-sale .price__regular,
.price--on-sale .price__availability {
    display: none;
}

.price--on-sale .price__sale {

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;

    [bog-grid-card-style="list"] & {
        flex-direction: row;
    }
}

.bog-price {
    color: black;

    [stock="false"] & {
        color: var(--color_gray);
    }
}

.bog-product-price-and-stock {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    flex-shrink: 0;

    background-color: var(--color_white);
    text-shadow: 0 0 5px white, 0 0 15px white;

    [stock="false"] & {
        background-color: var(--color_light);

    }

    [bog-grid-card-style="list"] & {
        align-items: end;
    }
}

.bog-product-card-stock-row {

    pointer-events: none;
    display: flex;
    justify-items: center;
    z-index: 1;
    gap: 5px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    word-break: keep-all;
    word-wrap: normal;
    white-space: nowrap;
    padding-top: 10px;

    & p {
        font-size: 12px;
        line-height: 12px;
    }

    & .circle {
        display: block;
        height: 10px;
        width: 10px;
        border-radius: 100px;

        [stock="true"] & {
            background-color: var(--color_green);
        }

        [stock="false"] & {
            border: 1px solid var(--color_red);
        }

        [stock="low"] & {
            background-color: var(--color_yellow_dark);
        }
    }

    [bog-grid-card-style="list"] & {
        flex-direction: row-reverse;
    }

}


.bog-error-block {
    list-style: none;

    & ul {
        padding: 0;
    }

    & li {
        list-style: none;
    }
}

.bog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: var(--product-grid-spacing-mobile);

    /* justify-content: center; */
    &[bog-grid-count="slider"] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px 0;
    }
}

/* Mobile Defaults */

[bog-grid-count="full"] .bog-grid__item {
    width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
    max-width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
}

[bog-grid-count="slider"] {


    @media screen and (min-width: 990px) {
        .bog-grid__item {
            width: calc(27% - var(--product-grid-spacing) * 0.27);
            max-width: calc(27% - var(--product-grid-spacing) * 0.27);

            flex-grow: 1;
            flex-shrink: 1;
            flex-basis: 0;

            min-width: 200px;
        }
    }

    @media screen and (max-width: 989px) {

        & .bog-grid__item {
            width: calc(40% - var(--product-grid-spacing-mobile) * 0.4);
            max-width: calc(40% - var(--product-grid-spacing-mobile) * 0.4);

            flex-grow: 1;
            flex-shrink: 0;
            flex-basis: unset;
        }

        justify-content: start;
        /* flex-wrap: nowrap; */
        /* overflow-x: auto; */

        &> {
            min-width: 0;
        }

        &> :first-child {
            margin-left: var(--skip_large);
        }

        &> :last-child {
            margin-right: var(--skip_large);
        }

        &::-webkit-scrollbar {
            width: 0px;
            height: 0px;
            background: transparent;
            /* make scrollbar transparent */
        }
    }

    @media screen and (max-width: 749px) {
        & .bog-grid__item {
            width: calc(60% - var(--product-grid-spacing-mobile) * 0.6);
            max-width: calc(60% - var(--product-grid-spacing-mobile) * 0.6);
        }
    }

    &[bog-grid-card-style="card"] .bog-grid__item {
        max-width: 250px;
    }
}

[bog-grid-count="2"] .bog-grid__item,
[bog-grid-count="3"] .bog-grid__item,
[bog-grid-count="1"] .bog-grid__item {
    width: 100%;
    max-width: 100%;
}

[bog-grid-count="4"] .bog-grid__item,
[bog-grid-count="5"] .bog-grid__item {
    width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
    max-width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
}


/* Tablet */

@media screen and (min-width: 750px) {

    [bog-grid-count="3"] .bog-grid__item {
        width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
        max-width: calc(50% - var(--product-grid-spacing-mobile) * 1 / 2);
    }

    [bog-grid-count="4"] .bog-grid__item {
        width: calc(33% - var(--product-grid-spacing-mobile) * 0.33333);
        max-width: calc(33% - var(--product-grid-spacing-mobile) * 0.33333);
    }

    [bog-grid-count="full"] .bog-grid__item,
    [bog-grid-count="5"] .bog-grid__item {
        width: calc(25% - var(--product-grid-spacing-mobile) * 0.75);
        max-width: calc(25% - var(--product-grid-spacing-mobile) * 0.75);
    }

}

/* Smaller Desktop */

@media screen and (min-width: 990px) {

    .bog-grid {
        gap: var(--product-grid-spacing);
    }

    [bog-grid-count="2"] .bog-grid__item {
        width: 100%;
        max-width: 100%;
    }

    [bog-grid-count="3"] .bog-grid__item {
        width: calc(50% - var(--product-grid-spacing) * 1 / 2);
        max-width: calc(50% - var(--product-grid-spacing) * 1 / 2);
    }

    [bog-grid-count="4"] .bog-grid__item {
        width: calc(25% - var(--product-grid-spacing) * 3/4);
        max-width: calc(25% - var(--product-grid-spacing) * 3/4);
    }

    [bog-grid-count="full"] .bog-grid__item,
    [bog-grid-count="5"] .bog-grid__item {
        width: calc(25% - var(--product-grid-spacing) * 3/4);
        max-width: calc(25% - var(--product-grid-spacing) * 3/4);
    }


}

/* Wide Desktop */

@media screen and (min-width: 1299px) {


    [bog-grid-count="2"] .bog-grid__item {
        width: calc(50% - var(--product-grid-spacing) * 1 / 2);
        max-width: calc(50% - var(--product-grid-spacing) * 1 / 2);
    }

    [bog-grid-count="slider"] .bog-grid__item,
    [bog-grid-count="full"] .bog-grid__item,
    [bog-grid-count="5"] .bog-grid__item {
        width: calc(20% - var(--product-grid-spacing) * 4 / 5);
        max-width: calc(20% - var(--product-grid-spacing) * 4 / 5);
    }

    [bog-grid-count="4"] .bog-grid__item {
        width: calc(20% - var(--product-grid-spacing) * 4 / 5);
        max-width: calc(20% - var(--product-grid-spacing) * 4 / 5);
    }

    [bog-grid-count="3"] .bog-grid__item {
        width: calc(33.333% - var(--product-grid-spacing) * 0.666666);
        max-width: calc(33.333% - var(--product-grid-spacing) * 0.666666);
    }

}


.bog-collection-banner-image {
    position: absolute;
    /* width: 40%;
    max-width: 300px; */
    height: 50vw;
    max-height: 500px;
    right: 30px;
    top: 4px;
    opacity: 0.75;

    & img {
        height: 100%;
        width: auto;
    }
}

.bog-card-styler {

    display: flex;
    flex-direction: row;
    gap: 1px;
    background-color: var(--color_light);
    border: 1px solid var(--color_light);
    /* margin: -2px; */
    overflow: hidden;
    /* border-radius: var(--corner_radius); */
    position: relative;

    & .toggle {

        position: relative;
        cursor: pointer;
        border: none;
        flex-grow: 1;
        padding: 10px 10px;
        min-height: 35px;

        & svg {
            width: 20px;
            height: 20px;
        }

        &[toggle-active="true"]::after {
            content: '';
            background-color: rgba(0, 0, 0, 0.129);
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
    }

}

.bog-facets-button {
    color: rgba(var(--color-foreground), 0.75);
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

@media screen and (max-width: 749px) {

    .bog-facets-popup {
        left: 0;
        /* top: 0; */
        width: 100%;
    }


}

.bog-facets-popup {
    position: absolute;

    width: 110%;
    left: -5%;
    top: -10%;

    z-index: 2;
    display: block;

    overflow: none;

    &.dropdown {
        position: relative;
        width: 100%;
        left: 0;
        top: -2px;
    }

    & ul.full-height {
        max-height: unset;
    }

    & ul {
        display: flex;
        overflow-y: scroll;

        max-height: 30vh;
        align-items: stretch;
        flex-direction: column;
        flex-wrap: nowrap;

        padding: var(--skip_medium);

        list-style: none;
        margin: 0;

    }

}


.bog-facet {
    min-width: 250px;
    width: 100%;
    position: relative;
}

.bog-products-and-facets {
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
}

@media screen and (max-width: 989px) {

    .bog-products-and-facets {
        flex-wrap: wrap;
    }

    .bog-facet {
        position: relative;
    }
}

details>summary .icon_plus {
    transition: transform 200ms ease;
    transform: rotate(0deg);
}

details[open]>summary .icon_plus {
    transform: rotate(45deg);
}

details[closing]>summary .icon_plus {
    transform: rotate(0deg);
}

details>summary .icon_caret {
    transition: transform 200ms ease;
    transform: scaleY(1);
}

details[open]>summary .icon_caret {
    transform: scaleY(-1);
}

details[closing]>summary .icon_caret {
    transform: scaleY(1);
}

.bog-facets {

    & facet-remove a,
    & facet-remove .button {
        font-size: 14px;
    }

    /* [facet-pills] facet-remove:only-child {
        display: none;
        font-size: 12px;
    } */
}



.bog-sort-facet {

    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    position: relative;

    /* position: relative;
    display: inline-flex;
    align-items: center; */

    & select {

        border: none;

        font-size: 14px;
        width: 100%;
        height: 100%;
        cursor: pointer;

        position: relative;

        padding: 0;

        padding-right: 35px;

        padding-top: 10px;
        padding-bottom: 10px;

    }

    & .sort-title {
        padding-right: 10px;
        pointer-events: none;
    }

    & .select {
        width: auto;
    }

    & .bog-svg {
        position: absolute;
        height: 100%;
        right: 10px;
    }
}

@media screen and (max-width: 989px) {

    .bog-sort-facet {

        & select {
            position: absolute;
            inset: 0;
            opacity: 0;

            margin-top: 0px;
            margin-bottom: 0px;
        }
    }
}

.facets__header {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    position: sticky;
    top: 0;
    z-index: 1;

    & facet-remove {
        align-self: center;
        color: var(--color_red);

        & a {
            align-self: center;
            color: var(--color_red);
        }
    }

}

.bog-count-bubble {

    padding: 0px 7px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 13px;
    font-size: 13px;
}

.bog-price-from-to-grid {
    display: grid;
    grid-template-columns: 0.25fr 1fr 0.25fr 1fr;
}

.bog-product-count {
    word-break: keep-all;
    /* position: absolute; */
    /* bottom: calc(100% + 5px); */
    right: 0;
    text-align: right;
    flex-shrink: 0;

    & span {
        display: inline-block;
        text-align: right;
    }
}

.bog-product-img-container {
    height: auto;
    width: 100%;
    aspect-ratio: 1;
}


.bog-product-info-and-image {

    display: flex;
    flex-wrap: wrap;
    gap: 0;
    flex-direction: row;

    h1 {
        font-size: 20px;

    }

    &>* {
        padding: 20px;
    }

    &>* img {
        aspect-ratio: 1/1;
        object-fit: contain;
        display: block;
        max-width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .bog-product-info {}

    .bog-product-images {
        /* max-width: 70vh; */
    }
}