/**********************************************/
/***** Variables ******/
/**********************************************/
:root {
    --white: rgba(255, 255, 255, 0.93);
    /* Newest */
    --bg-lighter: white;
    --bg-darker: #F7F4EB;
    --border: 1px solid #B6B4AF;
    --menu-item: #483D37;
    --menu-item-hover:
        /*rgba(255,255,255,0.5)*/
        #B6B4AF;
    --cart-icon: #60524A;
    --footer-icon: #AB9B92;
    /************************/
    --bg-dark-brown: #574135;
    /*--menu-item-hover: #7D6657;*/
    --bg-button: #907B6F;
    --bg-button-hover: #685950;
    --border-inactive: #ededed;
    --headings: #5B4A3E;
    --link: #825E46;
    --breadcrumbs: #58473B;
    --text: #3D342F;
    --list-icon: #66574F;
    --contacts: #79675d;
    --pink: #F042AE;
    --gray-3: #4D4D4D;
    --gray-4: #666666;
    --gray-5: #737373;
    --gray-6: #827272;
    --gray-6: #919191;
    --gray-7: #AAA;
    --gray-8: #bcbcbc;
    --gray-9: #cecece;
    --gray-10: #eaeaea;
    --gray-11: hsl(0, 0%, 98%);
    /*--product-border: 1px solid #bbb;*/
    --header-size: 90px;
    --space-1: 16px;
    --space-2: calc(var(--space-1) * 2);
    --space-3: calc(var(--space-1) * 3);
    --space-4: calc(var(--space-1) * 4);
    --space-5: calc(var(--space-1) * 5);
    --space-6: calc(var(--space-1) * 6);
    --f-thin: 100;
    --f-xlgt: 200;
    --f-lgt: 300;
    --f-reg: 400;
    --f-med: 500;
    --f-sbold: 600;
    --f-bold: 700;
    --f-xbold: 800;
    --f-black: 900;
    --anim: all 0.2s ease;
    --quantity-item-size: 28px;
    --drawer-width: 480px;
    --neg-drawer-width: calc(var(--drawer-width)*-1);
}

/**********************************************/
/***** Basic styles *****/
/**********************************************/
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    border: none;
}

html {
    font-size: 16px;
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-padding-top: var(--header-size);
}

body {
    /*font-family: 'Outfit';*/
    font-family: 'Lora';
    letter-spacing: 0.025rem;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
}

select {
    appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
    margin: 0;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
}

select:hover,
option:hover {
    cursor: pointer;
}

p {
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: var(--f-reg);
    line-height: 1.4rem;
    word-spacing: 0.2rem;
    color: var(--text);
}

p strong {
    /*font-size: 0.95rem;*/
    font-size: 1rem;
    font-weight: var(--f-sbold);
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

ul {
    margin-bottom: 2rem;
    color: var(--text);
}

ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    font-size: 0.95rem;
    font-weight: var(--f-med);
    line-height: 1.4rem;
    word-spacing: 0.2rem;
}

ul li strong {
    /*font-size: 0.95rem;*/
    font-size: 0.95rem;
    font-weight: var(--f-sbold);
}

del {
    font-weight: var(--f-reg);
}

ins {
    font-weight: var(--f-med);
}

input,
button,
select,
textarea,
input[type=checkbox],
input[type=radio],
input:focus,
button:focus,
select:focus,
textarea:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
    border: none;
    outline: none !important;
    background-image: none;
    background-color: white;
    -webkit-box-shadow: 0;
    -moz-box-shadow: 0;
    box-shadow: 0;
}

input:not([type="submit"], [type="radio"], [type="checkbox"]):not(.wc-block-components-quantity-selector__input, .qty),
textarea {
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid var(--bg-button-hover);
    border-radius: 4px;
    box-sizing: border-box;
    color: #2b2d2f;
    font-family: inherit;
    font-size: 1em;
    margin: 0;
    padding: 0.65rem;
    min-height: 0;
}

input:not([type="submit"], [type="radio"], [type="checkbox"]):not(.wc-block-components-quantity-selector__input, .qty) {
    height: 40px;
}

input:not([type="submit"]):not(.wc-block-components-quantity-selector__input, .qty):focus,
textarea:focus {
    border: 2px solid var(--pink);
}

a,
a:active,
a:focus,
label:focus {
    border: none;
    outline: none !important;
    text-decoration: none;
    font-weight: var(--f-bold);
    color: var(--link);
    -webkit-box-shadow: 0;
    -moz-box-shadow: 0;
    box-shadow: 0;
}

a:hover {
    color: var(--bg-dark-brown);
}

p a:hover {
    text-decoration: underline;
}

.display-none {
    display: none !important;
}

.margin-bottom {
    margin-bottom: var(--space-2) !important;
}

/**********************************************/
/***** Headings *****/
/**********************************************/
h1,
h2,
h3,
h4 {
    display: block;
    margin-bottom: 2rem;
    color: var(--headings);
}

/*.woocommerce h2:nth-child(n+2),
.entry-content h2:nth-child(n+2),
.woocommerce h3:nth-child(n+2),
.entry-content h3:nth-child(n+2) {
    margin-top: calc(var(--space-1) + 8px);
}*/


h1 {
    font-size: 1.8rem;
    font-weight: var(--f-bold);
    margin-bottom: var(--space-2);
}

/*h1::before {
    content: '\e802';
    font-family: 'icons';
    font-size: 36px;
    margin-right: 10px;
}*/

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}


/**********************************************/
/***** Main Content *****/
/**********************************************/
main {
    margin-top: var(--header-size);
    padding: var(--space-4) var(--space-6);
    background-color: var(--bg-lighter);
}

.entry-content h2:nth-child(n+2),
.entry-content h3:nth-child(n+2),
.entry-content h4:nth-child(n+2) {
    margin-top: 3rem;
}

.entry-content p:last-child,
.entry-content p:last-child,
.entry-content p:last-child {
    margin-bottom: 0;
}

.entry-content ul,
.wc-block-components-product-summary ul,
.wc-block-product-description ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.entry-content ul li::before,
.wc-block-components-product-summary ul li::before,
.wc-block-product-description ul li::before {
    content: '\e803';
    position: absolute;
    top: -4px;
    left: 0;
    display: inline-block;
    font-family: 'icons';
    font-size: 20px;
    line-height: 2rem;
    margin-right: 10px;
    color: var(--list-icon);
}


/**********************************************/
/***** Woocommerce Basic *****/
/**********************************************/
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
.woocommerce .quantity .qty {
    font-family: inherit !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
.woocommerce .quantity .qty {
    height: 100%;
    font-size: 1rem;
    font-weight: var(--f-bold);
    background-color: white;
    border: 2px solid transparent;
    box-shadow: none !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus,
.woocommerce .quantity input.qty:focus {
    border-color: var(--pink);
}

.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus,
.wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem !important;
    font-weight: var(--f-med) !important;
}

.wc-block-components-product-sale-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    padding: 6px 0;
    margin-bottom: -2px;
    font-size: 0.9rem;
    font-weight: var(--f-sbold);
    border-radius: 10px;
    color: white;
    background-color: var(--pink);
    border: none;
}
.product-columns > .wp-block-column:first-child {
    position: relative;
}
.wp-block-woocommerce-product-gallery.is-stuck {
    position: fixed;
    top: calc(var(--header-size) + var(--space-2));
}
.wp-block-woocommerce-product-gallery.is-stuck.on-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.wc-block-components-product-image .wc-block-components-product-sale-badge--align-left,
.wc-block-product-gallery-large-image .wc-block-components-product-sale-badge--align-left {
    top: var(--space-1);
    left: var(--space-1);
}

.wc-block-components-product-image .wc-block-components-product-sale-badge--align-right,
.wc-block-product-gallery-large-image .wc-block-components-product-sale-badge--align-right {
    top: var(--space-1);
    right: var(--space-1);
}

.wc-block-components-product-badge {
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: var(--f-sbold);
    color: white;
    background-color: var(--pink);
    border: none;
}

.wc-block-components-product-badge span {
    padding-left: 4px;
}

.wc-block-components-product-metadata ul {
    line-height: 1rem;
    gap: 0;
}

.wc-block-components-product-metadata ul li {
    padding-left: 0;
}

.wc-block-components-product-metadata ul li:before {
    content: '';
}

.wc-block-components-checkout-order-summary__title-text {
    color: white;
}

.wc-block-components-product-price del {
    color: var(--gray-7);
}

.wc-block-components-product-price {
    color: var(--gray-5);
}

.wc-block-components-validation-error>p {
    color: inherit;
}

.wc-block-order-confirmation-summary ul li {
    padding: 0;
}

.wc-block-order-confirmation-additional-information p {
    margin: 0;
    font-weight: var(--f-sbold);
}


.wp-block-woocommerce-product-review-form .comment-reply-title {
    display: block;
    font-size: 1.2rem;
    font-weight: var(--f-bold);
    color: var(--headings);
}

ol.wp-block-woocommerce-product-review-template {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}

ol.wp-block-woocommerce-product-review-template li {
    padding: 1rem 0;
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}

.wp-block-avatar {
    display: flex;
    height: 100%;
    align-items: center;
}

.wp-block-woocommerce-product-review-author-name,
.wp-block-woocommerce-product-review-date {
    display: inline-flex;
    margin-bottom: 8px !important;
}

.wp-block-woocommerce-product-review-author-name {
    font-size: 0.9rem !important;
    font-weight: var(--f-sbold);
}

.wp-block-woocommerce-product-review-content p {
    font-size: 0.9rem;
    margin: 0;
}

.wp-block-woocommerce-product-review-form .comment-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: var(--f-med);
    margin-bottom: 4px;
}

.wp-block-woocommerce-product-review-form .comment-reply-title,
.woocommerce #review_form #respond p {
    margin-bottom: 1rem;
}

.woocommerce #review_form #respond textarea {
    height: 120px !important;
}

.wp-block-woocommerce-product-review-form .comment-form-cookies-consent {
    align-items: center;
    gap: 10px;
}

.wp-block-woocommerce-product-review-form .comment-form-cookies-consent #wp-comment-cookies-consent,
.wp-block-woocommerce-product-review-form .comment-form-cookies-consent label {
    margin: 0;
}

.wp-block-woocommerce-product-review-form .comment-form-cookies-consent #wp-comment-cookies-consent {
    display: inline-flex;
    width: 20px;
    height: 20px;
    accent-color: var(--pink);
}


/**********************************************/
/***** Buttons *****/
/**********************************************/
.woocommerce .wp-block-button .wp-block-button__link:focus,
.error404 .wp-block-buttons .wp-block-button__link:focus,
.wc-block-components-button:not(.is-link):focus,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-fill:not(.is-link):focus,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-outline:not(.is-link):focus,
.wc-block-cart__submit-button:focus,
.bapf_button:focus .lmp_button:focus,
div.lmp_load_more_button.br_lmp_button_settings .lmp_button:focus {
    box-shadow: none;
}

.woocommerce .wp-block-button .wp-block-button__link,
.error404 .wp-block-buttons .wp-block-button__link,
.wc-block-components-button:not(.is-link),
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-fill:not(.is-link),
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-outline:not(.is-link),
.wc-block-cart__submit-button,
.bapf_button,
div.lmp_load_more_button.br_lmp_button_settings .lmp_button {
    position: relative;
    height: 50px;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    padding: 0 var(--space-1);
    margin-bottom: 0 !important;
    font-family: inherit;
    font-size: 1rem;
    font-weight: var(--f-sbold);
    color: var(--white);
    background-color: var(--bg-button);
    border: none;
    border-radius: 10px;
    transition: all .1s ease-out;
}

.wc-block-components-button:not(.is-link) {
    justify-content: center !important;
}

div.lmp_load_more_button {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    margin-top: var(--space-1);
    padding-top: var(--space-2);
    /*border-top: var(--border);*/
    background: linear-gradient(white, #efefef 20%, white 20% );
}

div.lmp_load_more_button ~ .wp-block-spacer {
    display: none;
}

div.lmp_load_more_button.br_lmp_button_settings a.lmp_button {
    width: auto;
    justify-content: center;
    align-items: center;
    align-self: center;
}

div.lmp_load_more_button.br_lmp_button_settings a.lmp_button::before,
div.lmp_load_more_button.br_lmp_button_settings a.lmp_button::after {
    content: '▼';
    display: inline-flex;
    margin-top: 0;
    font-size: 0.7rem;
}
div.lmp_load_more_button.br_lmp_button_settings a.lmp_button::before {
    margin-right: 10px;
}
div.lmp_load_more_button.br_lmp_button_settings a.lmp_button::after {
    margin-left: 10px;
}

.woocommerce .wp-block-button .wp-block-button__link:hover,
.error404 .wp-block-buttons .wp-block-button__link:hover,
.wc-block-components-button:not(.is-link):hover,
.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-fill:not(.is-link):hover,
.bapf_button:hover,
div.lmp_load_more_button.br_lmp_button_settings a.lmp_button:hover {
    color: white !important;
    background-color: var(--bg-button-hover) !important;
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-outline:not(.is-link),
div.bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a {
    background-color: transparent;
    color: var(--bg-button-hover);
    border: 2px solid var(--bg-button-hover);
}

.wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions .wc-block-components-button.is-style-outline:not(.is-link):hover,
div.bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a:hover {
    color: var(--bg-button);
    border-color: var(--bg-button);
}

div.bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a {
    border-radius: 10px;
    padding: 4px var(--space-2) 3px var(--space-1); 
}

div.bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a::before {
    color: inherit;
    margin-top: 1.5px;
}


.woocommerce .wp-block-button .wp-block-button__link::after {
    content: '';
    position: absolute;
    right: 18.5px;
    display: inline-flex;
    padding-left: 18.5px;
    font-family: 'icons';
    font-size: 24px;
    text-align: end;
}

.woocommerce.product .wp-block-button .wp-block-button__link {
    width: 250px;
    font-size: 1.1rem !important;
}

.woocommerce.product .wp-block-button .wp-block-button__link::after {
    content: '\e801';
    border-left: 1px solid var(--white);
}

.wp-block-button.button-small .wp-block-button__link {
    height: 40px;
}

.filter .wp-block-button__link:before {
    content: '\e804';
    display: inline-flex;
    font-family: 'icons';
    font-size: 20px;
    color: var(--white);
    margin-right: calc(var(--space-1)/2);
}


/**********************************************/
/** Products Filter, Products Filter Drawer ***/
/**********************************************/
.wp-block-woocommerce-product-collection .bapf_sfilter {
    margin-bottom: var(--space-2);
}
.product-filter {
    display: flex;
    justify-content: flex-end;
}

.product-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(35, 35, 35, 0.8);
    opacity: 0;
    transition: opacity .3s;
    display: none;
}

.product-filter-overlay.slide-in,
.product-filter-overlay.slide-out {
    display: flex;
    z-index: 9999 !important;
    opacity: 1;
}

.product-filter-overlay.slide-out {
    opacity: 0
}

.product-filter-overlay.slide-in {
    animation-duration: .3s;
    animation-name: fadein
}

.product-filter-overlay>.product-filter-drawer {
    display: block !important;
    max-width: var(--drawer-width);
    height: 100%;
    min-height: 100dvh;
    max-height: 100%;
    background-color: var(--bg-lighter);
    transform: translateX(max(-100%, var(--neg-drawer-width)));
}

.product-filter-overlay.slide-in .product-filter-drawer {
    animation-duration: .3s;
    animation-name: slidein;
}

.product-filter-overlay.slide-out .product-filter-drawer {
    animation-duration: .3s;
    animation-name: slideout;
}

.product-filter-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px 16px 0;
    background-color: var(--bg-lighter);
}

.product-filter-content .bapf_sfilter {
    margin-bottom: calc(var(--space-1) + 8px);
}

.product-filter-content .bapf_head h3 {
    font-size: 0.8rem;
    font-weight: var(--f-bold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-filter-content .bapf_head h3::after {
    content: ':';
}

span.irs--round .irs-from,
span.irs--round .irs-to,
span.irs--round .irs-single,
span.irs--round .irs-bar {
    background-color: var(--pink);
}

span.irs--round .irs-handle {
    border-color: var(--pink);
}

span.irs--round .irs-from::before,
span.irs--round .irs-to::before {
    border-top-color: var(--pink);
}

div.bapf_sfilter ul li {
    display: flex;
}

div.berocket_single_filter_widget .bapf-clean-rounded li label,
div.berocket_single_filter_widget .bapf-clean-rounded li.checked label {
    display: flex !important;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 7px 0;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: var(--f-sbold);
    line-height: 1rem;
}

div.berocket_single_filter_widget .bapf-clean-rounded li label {
    color: var(--bg-button-hover);
    border-color: var(--bg-button);
    background-color: white;
}

div.berocket_single_filter_widget .bapf-clean-rounded li label:hover {
    color: white;
    border-color: var(--bg-button-hover);
    background-color: var(--bg-button);
    opacity: 0.5;
}

div.berocket_single_filter_widget .bapf-clean-rounded li.checked label {
    color: white;
    border-color: white;
    box-shadow: 0 0 0 2px var(--pink);
    background-color: var(--pink);
}

div.berocket_single_filter_widget .bapf-clean-rounded li.checked label::before {
    position: relative;
    left: 0;
    top: 0;
    display: inline-flex;
    height: 6px;
    width: 12px;
    border-color: white;
    display: none;
}

div.berocket_single_filter_widget .bapf-clean-rounded li.checked label:hover {
    opacity: 1;
}

div.bapf_clr_woborder.bapf_sfilter ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: var(--space-2);
}

div.bapf_clr_woborder.bapf_sfilter ul li {
    margin: 0 -3px !important;
}

div.bapf_clr_woborder.bapf_sfilter .bapf_clr_span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--border-inactive);
}

div.bapf_clr_woborder.bapf_sfilter .bapf_clr_span:hover {
    box-shadow: 0 0 0 2px var(--bg-button);
}

div.bapf_sfilter.brchecked_default input:checked+label .bapf_clr_span {
    box-shadow: 0 0 0 2px var(--pink);
    transform: none;
}

.product-filter-footer {
    width: 100%;
    background-color: var(--bg-darker);
    border-top: var(--border);
    outline: none !important;
    padding: 24px 16px;
}

.product-filter-footer .bapf_sfilter {
    margin: 0;
}

.product-filter-footer .berocket_single_filter_widget,
.product-filter-footer .berocket_single_filter_widget div,
.product-filter-footer .bapf_button {
    display: flex;
    flex-grow: 1;
}


@keyframes fadein {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slidein {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(max(-100%, var(--neg-drawer-width)))
    }
}

@keyframes slideout {
    0% {
        transform: translateX(max(-100%, var(--neg-drawer-width)))
    }

    to {

        transform: translateX(0)
    }
}


/**********************************************/
/***** Cart, Mini Cart Drawer *****/
/**********************************************/
.wc-block-components-drawer__screen-overlay {
    background-color: rgba(35, 35, 35, 0.8);
}

.wp-block-woocommerce-mini-cart-contents input.wc-block-components-quantity-selector,
.woocommerce-cart input.wc-block-components-quantity-selector {
    height: 30px;
}

h2.wc-block-mini-cart__title,
h2.product-filter-title {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: var(--header-size);
    margin: 0 !important;
    padding: 0 var(--space-1);
    font-size: 1.5rem;
    color: var(--cart-icon);
    background-color: var(--bg-darker);
    border-bottom: var(--border);
    mask-image: none;
}

.wc-block-components-button.wc-block-components-drawer__close {
    top: calc((var(--header-size) / 2) - 6px);
    right: var(--space-2);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 10px;
    background-color: var(--bg-button) !important;
    opacity: 1 !important;
}

.wc-block-components-button.wc-block-components-drawer__close svg {
    fill: var(--white);
    min-width: 20px;
}

.wc-block-components-button.wc-block-components-drawer__close:hover {
    fill: white;
    background-color: var(--bg-button-hover) !important;
}

/*.wc-block-components-button.wc-block-components-drawer__close:hover svg {
    fill: var(--white);
}*/

.wp-block-woocommerce-mini-cart-contents {
    background-color: var(--bg-lighter);
}

.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents .wc-block-components-notices {
    display: none;
    margin: 0 !important;
}

/*.wc-block-cart-item__wrap .wc-block-components-product-name
.wc-block-cart-item__wrap .wc-block-cart-item__prices,
.wc-block-cart-item__wrap .wc-block-components-product-metadata {
    margin-bottom: 5px !important;
}*/

.is-medium table.wc-block-cart-items .wc-block-cart-items__row,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row,
.is-small table.wc-block-cart-items .wc-block-cart-items__row {
    grid-template-columns: 110px 210px;
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}

.is-medium table.wc-block-cart-items .wc-block-cart-items__row:first-child,
.is-mobile table.wc-block-cart-items .wc-block-cart-items__row:first-child,
.is-small table.wc-block-cart-items .wc-block-cart-items__row:first-child {
    border: none;
}

.wc-block-components-product-details__name,
.wc-block-components-product-details__value {
    font-size: 0.85rem;
    letter-spacing: 0.02rem;
}

.wc-block-components-product-details__name {
    width: 3.8rem;
    font-weight: var(--f-sbold);
}

.wc-block-components-product-details__value {
    font-weight: var(--f-med);
}

.wc-block-mini-cart__footer::after {
    border: none;
}

.wc-block-mini-cart__footer {
    background-color: var(--bg-darker);
    border-top: var(--border);
    outline: none !important;
}

.wc-block-mini-cart__footer .wc-block-components-totals-item__label,
.wc-block-mini-cart__footer .wc-block-components-formatted-money-amount {
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: var(--f-bold);
    color: var(--bg-dark-brown);

}

.wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal .wc-block-components-totals-item__description {
    font-size: 0.9rem;
    font-weight: var(--f-reg);
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper p {
    margin-bottom: var(--space-1);
}


.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image,
.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total,
table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-total {
    font-size: 1rem;
    font-weight: var(--f-sbold);
    color: var(--bg-button-hover);
}

.wc-block-cart__main .wc-block-cart-items td {
    border-top: none;
}

table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product {
    visibility: visible;
}

table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product span {
    visibility: hidden;
}

table.wc-block-cart-items thead th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.wc-block-cart__main .wc-block-cart-items th {
    padding: 0 16px 8px 16px;
}

.wc-block-cart__main tbody>.wc-block-cart-items__row:first-child td {
    border: none;
}

.wc-block-cart-item__image img {
    border-radius: 10px;
    border: var(--border);
}

.woocommerce-cart .wc-block-cart-item__image {
    width: 110px;
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
    margin-bottom: var(--space-2);
    border: none;
}

.wc-block-cart .wc-block-cart__totals-title {
    margin: 0;
    padding: var(--space-1);
    padding-bottom: calc(var(--space-1) - 2px);
    font-size: 1rem;
    font-weight: var(--f-sbold) !important;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--bg-button-hover);
}

.wc-block-cart .wp-block-woocommerce-cart-order-summary-block>.wc-block-components-totals-wrapper:last-child {
    font-weight: var(--f-xbold) !important;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: var(--bg-button-hover);
    background-color: var(--bg-darker);
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block,
.wp-block-woocommerce-cart-order-summary-totals-block {
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: none;
}

.wp-block-woocommerce-cart-order-summary-coupon-form-block {
    border-top: none !important;
}

.wc-block-cart .wc-block-components-totals-wrapper {
    padding-left: var(--space-1);
    padding-right: var(--space-1);
}


/**********************************************/
/***** Checkout *****/
/**********************************************/
.wc-block-components-checkout-step__description {
    font-size: 0.9rem;
    font-weight: var(--f-med);
}

.wc-block-components-address-card,
.wc-block-components-radio-control--highlight-checked,
.wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option {
    background-color: white;
    border-radius: 4px;
}

.wc-block-components-address-card {
    background-color: var(--bg-darker);
}

.wc-block-components-radio-control--highlight-checked {
    border: 1px solid transparent;
}

.wc-block-components-radio-control--highlight-checked::after {
    border: none;
}

.wc-block-components-address-card,
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="number"],
.wc-block-components-form .wc-block-components-text-input input[type="password"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"],
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="number"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-radio-control .wc-block-components-radio-control__input,
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"],
.wc-block-components-radio-control--highlight-checked,
.wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option {
    border-color: var(--bg-button-hover);
}

/*.wc-block-components-form .wc-block-components-text-input.is-active input:focus,
.wc-block-components-form .wc-block-components-text-input.has-error input:focus,
.wc-blocks-components-select .wc-blocks-components-select__select:focus,
.wc-block-checkout__add-note .wc-block-components-textarea:focus {
    border: none;
}*/

.wc-block-components-form .wc-block-components-text-input.is-active input:focus,
.wc-blocks-components-select .wc-blocks-components-select__select:focus,
.wc-block-checkout__add-note .wc-block-components-textarea:focus {
    border-width: 2px;
    /*box-shadow: 0 0 0 2px var(--pink);*/
    border-color: var(--pink);
}

.wc-block-components-form .wc-block-components-text-input.has-error input,
.wc-block-components-form .wc-block-components-text-input.has-error input:active,
.wc-block-components-form .wc-block-components-text-input.has-error input:focus,
.wc-block-components-form .wc-block-components-text-input.has-error input:hover,
.wc-block-components-text-input.has-error input,
.wc-block-components-text-input.has-error input:active,
.wc-block-components-text-input.has-error input:focus,
.wc-block-components-text-input.has-error input:hover {
    border-width: 2px;
    border-color: #cc1818;
    /*border: none;*/
}

.wc-block-components-checkbox .wc-block-components-checkbox__label,
.wc-block-components-checkbox>span {
    font-size: 1rem;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    font-size: 1rem;
    font-weight: var(--f-bold);
    background-color: var(--bg-darker);
    box-shadow: 0 0 0 2px var(--bg-button);
    z-index: 100;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option-checked,
.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
    position: relative;
    background-color: var(--bg-darker);
    z-index: 100;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control__option-checked {
    border-radius: 4px 4px 0 0;
}

.wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
    padding-left: 55px;
    font-weight: var(--f-reg);
    border-radius: 0 0 4px 4px;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted span.wc-block-components-radio-control__label {
    font-weight: var(--f-sbold);
}

.wc-block-components-shipping-rates-control__package .wc-block-components-radio-control__label {
    font-weight: var(--f-med);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
    min-width: 24px;
    min-height: 24px;

}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
    accent-color: var(--pink);
}

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    fill: var(--pink);
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked,
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 2px solid var(--pink);
}

.wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
    background-color: var(--pink);
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    margin: 0;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-step__heading {
    padding: var(--space-1);
    padding-bottom: calc(var(--space-1) - 2px);
    font-size: 1rem;
    font-weight: var(--f-sbold) !important;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--bg-button-hover);
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-step__heading h2 {
    display: block;
    font-size: 1rem !important;
    font-weight: var(--f-sbold) !important;
    color: var(--white);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item:first-child {
    border: none;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image,
.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
    width: 90px;
    max-width: 90px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
    border-radius: 10px;
    border: var(--border);
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
    width: var(--quantity-item-size);
    height: var(--quantity-item-size);
    border: none;
    box-shadow: none;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: var(--f-bold);
    color: white;
    background: var(--pink);
}

/*.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity span {
    margin-top: 1px;
}*/

h3.wc-block-components-product-name {
    font-size: 1rem;
    font-weight: var(--f-sbold) !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
    border: none;
    border-radius: 0;
}

.wc-block-components-checkout-order-summary__content {
    border: 1px solid transparent;
    border-top: none;
    border-bottom: none;
}

.wc-block-components-checkout-order-summary__content,
.wc-block-components-checkout-order-summary__content>* {
    border-color: rgba(0, 0, 0, 0.25);
}

.wc-block-components-checkout-order-summary__content>.wc-block-components-totals-wrapper:last-child {
    background-color: var(--bg-darker);
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-left: none;
    border-right: none;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
    font-weight: var(--f-xbold) !important;
    color: var(--bg-button-hover);
}


/**********************************************/
/***** Order Confirmation *****/
/**********************************************/
.wc-block-order-confirmation-shipping-address,
.wc-block-order-confirmation-billing-address,
.wc-block-order-confirmation-order-note {
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.03);
    border: var(--border);

}

.wc-block-order-confirmation-totals {
    margin: 0;
}

.wc-block-order-confirmation-totals-wrapper .wc-block-order-confirmation-totals table thead {
    display: none;
}

.wc-block-order-confirmation-totals-wrapper h2.wp-block-heading,
.wc-block-order-confirmation-totals .wc-block-order-confirmation-totals__table thead th {
    padding: var(--space-1);
    padding-bottom: calc(var(--space-1) - 2px);
    font-size: 1rem !important;
    font-weight: var(--f-sbold) !important;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--bg-button-hover);
}

.wc-block-order-confirmation-totals-wrapper h2.wp-block-heading {
    display: block;
    margin: 0;
}

.wc-block-order-confirmation-totals-wrapper .wc-block-order-confirmation-totals table {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.wc-block-order-confirmation-totals table .woocommerce-table__line-item.order_item td:first-child,
.wc-block-order-confirmation-totals table tfoot th {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.wc-block-order-confirmation-totals table .woocommerce-table__line-item.order_item td:last-child,
.wc-block-order-confirmation-totals table tfoot td {
    border-right: 1px solid rgba(0, 0, 0, 0.25);
}

.wc-block-order-confirmation-totals table tfoot tr th,
.wc-block-order-confirmation-totals table tfoot tr td {
    font-weight: var(--f-sbold);
    border-top-color: rgba(0, 0, 0, 0.25);
}

.wc-block-order-confirmation-totals table tfoot tr:last-child th,
.wc-block-order-confirmation-totals table tfoot tr:last-child td {
    font-size: 1.25rem;
    font-weight: var(--f-xbold);
    color: var(--bg-button-hover);
    background-color: var(--bg-darker);
}

.wc-block-order-confirmation-totals__product {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.wc-block-order-confirmation-totals__product .order-item-image {
    margin-right: var(--space-1);
    line-height: 0;
    padding-top: 14px;
}

.wc-block-order-confirmation-totals__product .order-item-image img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 10px;
    border: var(--border);
}

.wc-block-order-confirmation-totals__product .product-quantity {
    position: absolute;
    left: 81px;
    top: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: var(--quantity-item-size);
    height: var(--quantity-item-size);
    border: none;
    box-shadow: none;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: var(--f-bold);
    color: white;
    background: var(--pink);
}


/**********************************************/
/***** Header and Menu *****/
/**********************************************/
header {
    position: fixed;
    top: 0;
    width: 100vw;
    height: var(--header-size);
    display: flex;
    align-items: center;
    padding: 0 var(--space-6);
    background-color: var(--bg-darker);
    border-bottom: var(--border);
    z-index: 1000;
}

header>.wp-block-group:first-child {
    width: 100%;
    gap: 16px;
}

.logo img.custom-logo {
    width: auto;
    height: 50px;
}

.responsive-logo {
    display: none;
}

/* Main Navigation */
header ul.wp-block-navigation {
    color: var(--menu-item);
    gap: 0;
}

header ul.wp-block-navigation li {
    flex-grow: 1;
}

header ul.wp-block-navigation li a {
    align-content: center;
    height: var(--header-size);
    padding: 0 var(--space-1);
    font-weight: var(--f-med);
    font-size: 1rem;
    text-transform: uppercase;
    transition: var(--anim);
}

header ul.wp-block-navigation li a:hover {
    text-decoration: none;
    color: var(--white) !important;
    font-weight: var(--f-sbold);
    background-color: var(--menu-item-hover);
}

header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content[aria-current] {
    font-weight: var(--f-bold);
    color: var(--menu-item);
    background-color: var(--bg-lighter);
    border-left: var(--border);
    border-right: var(--border);
    height: calc(var(--header-size) + 1px);
}

header .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content[aria-current]:hover {
    color: var(--bg-button) !important;
}

header ul.wp-block-navigation {
    position: relative;
}

.icon {
    font-family: 'icons' !important;
}

.icon.home a:before {
    content: '\e800';
    display: inline-flex;
    font-size: 20px;
    margin-top: -3px;
    /*padding-right: calc(var(--space-1) / 2);*/
}

.icon.home a span {
    display: none;
}

.responsive-menu-button-container {
    display: none;
}

a.responsive-menu-button::before {
    content: '\e80a';
    font-size: 32px;
}

.wc-block-mini-cart__button {
    background-color: transparent !important;
}

.wc-block-mini-cart__quantity-badge svg {
    display: none;
}

.wc-block-mini-cart__quantity-badge:before {
    content: '\e801';
    font-family: 'icons';
    font-size: 32px;
}

.wc-block-mini-cart__quantity-badge {
    color: var(--bg-button-hover);
}

.wc-block-mini-cart__quantity-badge:hover {
    color: var(--bg-button);
}

.wc-block-mini-cart__quantity-badge .wc-block-mini-cart__badge {
    width: var(--quantity-item-size);
    height: var(--quantity-item-size);
    font-size: 0.9rem;
    font-weight: var(--f-bold);
    color: white;
    background-color: var(--pink);
}


/**********************************************/
/***** Breadcrumbs *****/
/**********************************************/
.woocommerce .woocommerce-breadcrumb {
    display: inline-flex;
    align-items: center;
    height: 18px;
    overflow: hidden;
    margin-bottom: var(--space-2) !important;
    font-size: 1rem;
    font-weight: var(--f-reg);
    color: var(--breadcrumbs);
}

.woocommerce .woocommerce-breadcrumb .delimiter {
    font-weight: var(--f-black);
    margin-top: 2px;
    padding: 0 7px;
}

.woocommerce .woocommerce-breadcrumb .active {
    margin-bottom: 1px;
}

.woocommerce .woocommerce-breadcrumb a {
    font-weight: var(--f-bold);
}

.woocommerce .woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

.woocommerce .woocommerce-breadcrumb a:first-child {
    text-decoration: none !important;
}

/*.woocommerce .woocommerce-breadcrumb a:first-child:before {
    content: '\e800';
    font-family: 'icons';
}*/


/**********************************************/
/***** Product page *****/
/**********************************************/
:where(img.wc-block-product-gallery-thumbnails__thumbnail__image--is-active) {
    filter: brightness(.65);
}

.product-columns {
    justify-content: space-between;
}

.product-columns.wp-block-columns .wp-block-column,
.woocommerce.product .wp-block-columns .product-additional-info {
    flex-grow: 0;
    flex-basis: 512px;
}

.wc-block-components-product-summary h4 {
    color: var(--headings);
}

.wc-block-grid__product-rating {
    margin-bottom: 1.5rem;
}

.wc-block-grid__product-rating .wc-block-grid__product-rating__stars,
.wc-block-product-review-rating__container .wc-block-product-review-rating__stars {
    display: inline-flex;
    color: var(--bg-button);
}


.wc-block-grid__product-rating .wc-block-grid__product-rating__stars span,
.wc-block-product-review-rating__container .wc-block-product-review-rating__stars span {
    color: var(--pink);
}

.wp-block-woocommerce-product-review-form .comment-form-rating .stars button path {
    stroke: var(--bg-button);
}

.wp-block-woocommerce-product-review-form .comment-form-rating .stars button.is-hovered path,
.wp-block-woocommerce-product-review-form .comment-form-rating .stars button.is-selected path {
    fill: var(--pink);
    stroke: var(--pink);
}

.wc-block-components-product-summary .wp-block-woocommerce-product-summary__read_more,
.wc-block-components-product-summary .wp-block-woocommerce-product-summary__read_more:focus {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    gap: 8px;
    padding-top: 8px;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}

.wc-block-components-product-summary .wp-block-woocommerce-product-summary__read_more::before,
.wc-block-components-product-summary .wp-block-woocommerce-product-summary__read_more::after {
    content: '▼';
    display: inline-flex;
    margin-top: 1px;
    font-size: 0.65rem;

}

label.wp-block-woocommerce-add-to-cart-with-options-variation-selector-attribute-name,
.wpclv-attributes div.wpclv-attribute-label {
    margin-bottom: 0;
    font-size: 0.85rem;
    font-weight: var(--f-sbold);
    text-transform: uppercase;

}

label.wp-block-woocommerce-add-to-cart-with-options-variation-selector-attribute-name::after,
.wpclv-attributes div.wpclv-attribute-label::after {
    content: ':';
}

.wpclv-attributes div.wpclv-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: var(--space-2);
}

.wpclv-attributes .wpclv-terms div.wpclv-term {
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 2px;
    margin: 0;
    padding: 4px;
    min-width: auto;
    min-height: auto;
    width: auto;
    height: auto;
    border-color: var(--border-inactive);
}

.wpclv-attributes .wpclv-terms div.wpclv-term:hover {
    border-color: var(--bg-button);
}

.wpclv-attributes .wpclv-terms div.wpclv-term.active {
    border-color: var(--pink);
}

.wpclv-attributes .wpclv-terms div.wpclv-term-color span,
.wpclv-attributes .wpclv-terms div.wpclv-term-color a {
    width: 32px;
    height: 32px;
}

.wpclv-attributes .wpclv-terms div.wpclv-term,
.wpclv-attributes .wpclv-terms div.wpclv-term a,
.wpclv-attributes .wpclv-terms div.wpclv-term span {
    border-radius: 50%;
}

.variations.wpcvs-non-variable {
    margin-bottom: var(--space-1);
}

/*:where(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pills) {
    gap: 10px;
}*/
.woocommerce :where(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill) {
    --pill-text-color: var(--bg-button-hover);
    --pill-color: var(--bg-button);
    --pill-background-color: white;
    --pill-outline-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 70px;
    padding: 7px 0;
    font-size: 0.8rem;
    font-weight: var(--f-sbold);
    border-radius: 10px;
    outline: none;
    border: 2px solid var(--pill-color);
    box-shadow: 0 0 0 2px var(--pill-outline-color);
    color: var(--pill-text-color);
    background-color: var(--pill-background-color);
    transition: var(--anim);
}

.woocommerce :where(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill):hover {
    --pill-text-color: white;
    --pill-color: var(--bg-button-hover);
    --pill-background-color: var(--bg-button);
    opacity: 0.5;
}

.woocommerce :where(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill:has(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill-input:checked)),
.woocommerce :where(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill:has(.wc-block-add-to-cart-with-options-variation-selector-attribute-options__pill-input:checked)):hover {
    --pill-text-color: white;
    --pill-color: white;
    --pill-background-color: var(--pink);
    --pill-outline-color: var(--pink);
    opacity: 1;
}

.wp-block-add-to-cart-with-options-quantity-selector .wc-block-components-quantity-selector {
    height: 50px;
}

.wp-block-add-to-cart-with-options-quantity-selector .wc-block-components-quantity-selector .qty {
    display: inline-flex;
    align-self: center;
}

.single-product main .wp-block-separator {
    height: 1px;
    border-width: 1px;
    border-color: hsla(0, 0%, 7%, .11);
}

.woocommerce div.product .woocommerce-tabs ul.wc-tabs {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li {
    display: inline-flex;
    margin: 0 !important;
    border-color: var(--gray-7);
    transition: var(--anim);
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li a {
    display: inline-flex;
    padding: 10px 24px 6px;
    font-weight: var(--f-med);
    text-transform: uppercase;
    color: var(--gray-2);
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li:hover {
    border-color: var(--bg-button);
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li:hover a {
    color: var(--bg-button-hover);
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li.active {
    border-color: var(--bg-button-hover);
}

.woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li.active a {
    font-weight: var(--f-bold);
    color: var(--bg-dark-brown);
    background-color: var(--bg-darker);
}

.wp-block-woocommerce-product-details {
    display: block;
    margin-top: 2rem;
}

.wp-block-woocommerce-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wp-block-woocommerce-accordion-item .accordion-item__heading {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: var(--f-med);
    text-transform: uppercase;
    color: var(--gray-2);
    background-color: var(--bg-ligther);
    /*border: 1px solid hsla(0, 0%, 7%, .11);*/
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-left: none;
}

.wp-block-woocommerce-accordion-item .accordion-item__heading button {
    display: inline-flex;
    margin-top: -1px;
    margin-bottom: -1px;
    padding: 2px 16px 0;
    line-height: 3rem;
    border-left: 6px solid var(--gray-7);
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:hover,
.wp-block-woocommerce-accordion-item .accordion-item__heading:has(button[aria-expanded="true"]):hover {
    border-color: var(--bg-button);
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:has(button[aria-expanded="true"]):hover button,
.wp-block-woocommerce-accordion-item .accordion-item__heading:hover button {
    color: var(--bg-button-hover);
    border-color: var(--bg-button);
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:has(button[aria-expanded="true"]) {
    background-color: var(--bg-darker);
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:has(button[aria-expanded="true"]) button {
    font-weight: var(--f-bold);
    color: var(--bg-dark-brown);
    border-color: var(--bg-button-hover) !important;
}

.wp-block-woocommerce-accordion-item .accordion-item__heading .accordion-item__toggle-icon {
    display: inline-flex;
    stroke: var(--gray-2);
    stroke-width: 2px;
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:hover .accordion-item__toggle-icon {
    stroke: var(--bg-button);
}

.wp-block-woocommerce-accordion-item .accordion-item__heading:has(button[aria-expanded="true"]) .accordion-item__toggle-icon {
    stroke: var(--bg-dark-brown);
}

/*.product-reviews-count {
    font-weight: var(--f-reg);
}*/

.wp-block-woocommerce-accordion-item .accordion-item__heading button {
    background: none;
}

.wp-block-woocommerce-accordion-panel .accordion-content__wrapper {
    padding: 0;
    margin: 2rem 0;
}

.wp-block-woocommerce-accordion-item .wp-block-woocommerce-accordion-panel .wp-block-column p:last-child {
    margin: 0;
}

.wp-block-woocommerce-product-specifications table,
.woocommerce table.shop_attributes {
    display: table;
    color: var(--text);
    border: 1px solid hsla(0, 0%, 7%, .11);
    border-collapse: collapse;
}
.wp-block-woocommerce-product-specifications table tbody {
    width: 100%;
}
.wp-block-woocommerce-product-specifications table tbody th {
    width: 150px !important;
}

.woocommerce table.shop_attributes tr:nth-child(2n) td,
.woocommerce table.shop_attributes tr:nth-child(2n) th {
    background: none;
}

.wp-block-woocommerce-product-specifications table tr,
.woocommerce table.shop_attributes tr {
    border-top: 1px solid hsla(0, 0%, 7%, .11);
}

.wp-block-woocommerce-product-specifications table th,
.wp-block-woocommerce-product-specifications table td,
.wp-block-woocommerce-product-specifications table tr:first-child,
.woocommerce table.shop_attributes tr:first-child {
    border: none;
}

.wp-block-woocommerce-product-specifications table tr:nth-child(odd),
.woocommerce table.shop_attributes tr:nth-child(odd) {
    background-color: rgba(0, 0, 0, 0.03);
}

/*.wp-block-woocommerce-product-specifications table tr:nth-child(even),
.woocommerce table.shop_attributes tr:nth-child(even) {
    background-color: transparent;
}*/

.wp-block-woocommerce-product-specifications table td p {
    margin: 0;
}

.wp-block-woocommerce-product-specifications table th,
.wp-block-woocommerce-product-specifications table td,
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    padding: 0 24px;
    font-size: 1rem;
    text-align: left;
    line-height: 3.2rem;
    border: none;
}

.wp-block-woocommerce-product-specifications table th,
.woocommerce table.shop_attributes th {
    font-weight: var(--f-sbold);
    border-right: 1px solid hsla(0, 0%, 7%, .11);
}

.wp-block-woocommerce-product-specifications table td,
.woocommerce table.shop_attributes td {
    font-weight: var(--f-reg);
    font-style: normal;
    color: var(--bg-button);
}

.related-products h2.wp-block-heading {
    font-size: 1.5rem;
    line-height: 1rem;
    margin: 0 !important;
    margin-bottom: 2rem !important;
}

.woocommerce .related-products .wc-block-product-template {
    display: grid;
}

.woocommerce .related-products .wc-block-product-template.columns-2>li,
.woocommerce .related-products .wc-block-product-template.columns-3>li,
.woocommerce .related-products .wc-block-product-template.columns-4>li {
    width: inherit;
}


/**********************************************/
/***** Shop, Product category *****/
/**********************************************/
.wp-block-woocommerce-product-collection {
    margin-bottom: 0;
}
div.wc-block-product-results-count {
    display: flex;
    justify-content: flex-end;
    font-size: 0.95rem;
    font-weight: var(--f-med);
    color: var(--gray-3);
}

.woocommerce.wc-block-product-results-count p.woocommerce-result-count {
    margin: 0;
}

.woocommerce.wc-block-catalog-sorting {
    position: relative;
}

.woocommerce.wc-block-catalog-sorting select.orderby {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 300px;
    height: 40px;
    padding: 0 15px;
    font-size: 0.95rem;
    font-weight: var(--f-sbold);
    text-overflow: '';
    color: var(--white);
    background-color: var(--bg-button);
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="white"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    border-radius: 10px;
}

.woocommerce.wc-block-catalog-sorting select.orderby:hover {
    background-color: var(--bg-button-hover);
}

/*.woocommerce.wc-block-catalog-sorting select.orderby option {
    display: flex;
    background-color: var(--bg-darker);
    color: var(--bg-button-hover);
    border: none;
}
.woocommerce.wc-block-catalog-sorting select.orderby option:hover {
    background-color: var(--bg-button);
    color: var(--white);
}*/
/*.wc-block-product-template.is-layout-flow {
    display: grid;
}*/
.wc-block-product-template li {
    padding: 0;
}

/*.wc-block-product-template.is-flex-container.columns-4 > li {
    width: 25%;
}*/
.wc-block-product-template.columns-2,
.wc-block-product-template.columns-3,
.wc-block-product-template.columns-4 {
    gap: var(--space-3) var(--space-2);
}

.wc-block-product-template.columns-2 {
    grid-template-columns: 1fr 1fr;
}

.wc-block-product-template.columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.wc-block-product-template.columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.wc-block-product-template .wc-block-components-product-image a {
    position: relative;
    border: var(--border);
    border-radius: 10px;
}

.wc-block-product-template .wc-block-components-product-image a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: 'icons';
    border-radius: 8px;
    color: transparent;
    z-index: 10;
    transition: all .4s ease-in-out;
}

.wc-block-product-template .wc-block-components-product-image a:hover:before {
    content: '\e805';
    font-size: 48px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
}

.wc-block-product-template>.wp-block-group:first-child>div:first-child {
    display: flex;
    flex-direction: row;
}

.product-grid_product-info {
    display: flex;
    width: auto;
}

.product-grid_product-info>div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

h2.product-grid_product-title {
    margin-bottom: 0 !important;
    font-size: 1rem;
    font-weight: var(--f-bold);
    color: var(--gray-3);
}

.wp-block-woocommerce-product-price,
.wc-block-components-product-price {
    margin-bottom: 0 !important;
    font-size: 1rem;
}

.product-summary .wc-block-components-product-price {
    font-size: 1.7rem;
}

.product-grid_product-bottom {
    position: relative;
    height: 60px;
}

.wc-block-product-template .wp-block-button.wc-block-components-product-button {
    position: absolute;
    right: 0;
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
}

.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link {
    position: relative;
    width: 60px;
    height: 60px;
    transition: all .4s ease-out;
}

.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link span {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 2px;
    font-size: 1rem !important;
    font-weight: var(--f-med);
    line-height: 1.4rem;
    color: transparent;
    opacity: 0;
    transition: color .4s ease;
}

.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link span strong {
    margin-bottom: 0 !important;
    font-size: 1rem;
    font-weight: var(--f-bold);

}

.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link:hover {
    width: 100%;
}

.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link:hover span {
    color: var(--white);
    opacity: 1;
    transition-delay: .35s;
}

/*.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link:hover span span {
    color: rgba(255,255,255,0.9);
    
}*/
.wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link::after {
    content: '\e801';
}

.wc-block-product-template .wp-block-button .product_type_variable.wp-block-button__link:hover::after {
    content: '\e805';
    color: var(--white);
    border-left: 1px solid var(--white);
}

/**********************************************/
/***** 404 ******/
/**********************************************/
/*.circles:after {
    content:'';
    display:inline-block;
    width:100%;
    height:100px;
    background:#fff;
    position:absolute;
    top:-50px;
    left:0;
    transform:skewY(-4deg);
    -webkit-transform:skewY(-4deg);
}*/

.circles {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background:#fff;
	position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.circles p {
	font-size: 240px;
    text-shadow: 0 0 1px #ccc;
	color: #fff;
	position: relative;
    z-index: 9;
    margin-bottom: 32px;
    line-height: 1.5rem;
}

.circles p:first-child {
    padding-top: 60px;
}

.circles p strong{
    display: inline-flex;
    justify-content: center;
    font-size: 40px; 
}

.circles .wp-block-buttons {
    position: relative;
    z-index: 10;
}

.circles .circle.small {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--footer-icon);
	position: absolute;
	z-index: 1;
	top: 80px;
	left: 50%;
	animation: 7s smallmove infinite cubic-bezier(1,.22,.71,.98);	
	-webkit-animation: 7s smallmove infinite cubic-bezier(1,.22,.71,.98);
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}

.circles .circle.med {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: var(--footer-icon);
	position: absolute;
	z-index: 1;
	top: 0;
	left: 10%;
	animation: 7s medmove infinite cubic-bezier(.32,.04,.15,.75);	
	-webkit-animation: 7s medmove infinite cubic-bezier(.32,.04,.15,.75);
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

.circles .circle.big {
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: var(--footer-icon);
	position: absolute;
	z-index: 1;
	top: 200px;
	right: 0;
	animation: 8s bigmove infinite;	
	-webkit-animation: 8s bigmove infinite;
	animation-delay: 3s;
	-webkit-animation-delay: 1s;
}

@-webkit-keyframes smallmove {
	0% { top: 10px; left: 45%; opacity: 1; }
	25% { top: 300px; left: 40%; opacity:0.7; }
	50% { top: 240px; left: 55%; opacity:0.4; }
	75% { top: 100px; left: 40%;  opacity:0.6; }
	100% { top: 10px; left: 45%; opacity: 1; }
}
@keyframes smallmove {
	0% { top: 10px; left: 45%; opacity: 1; }
	25% { top: 300px; left: 40%; opacity:0.7; }
	50% { top: 240px; left: 55%; opacity:0.4; }
	75% { top: 100px; left: 40%;  opacity:0.6; }
	100% { top: 10px; left: 45%; opacity: 1; }
}

@-webkit-keyframes medmove {
	0% { top: 0px; left: 20%; opacity: 1; }
	25% { top: 300px; left: 80%; opacity:0.7; }
	50% { top: 240px; left: 55%; opacity:0.4; }
	75% { top: 100px; left: 40%;  opacity:0.6; }
	100% { top: 0px; left: 20%; opacity: 1; }
}

@keyframes medmove {
	0% { top: 0px; left: 20%; opacity: 1; }
	25% { top: 300px; left: 80%; opacity:0.7; }
	50% { top: 240px; left: 55%; opacity:0.4; }
	75% { top: 100px; left: 40%;  opacity:0.6; }
	100% { top: 0px; left: 20%; opacity: 1; }
}

@-webkit-keyframes bigmove {
	0% { top: 0px; right: 4%; opacity: 0.5; }
	25% { top: 100px; right: 40%; opacity:0.4; }
	50% { top: 240px; right: 45%; opacity:0.8; }
	75% { top: 100px; right: 35%;  opacity:0.6; }
	100% { top: 0px; right: 4%; opacity: 0.5; }
}
@keyframes bigmove {
	0% { top: 0px; right: 4%; opacity: 0.5; }
	25% { top: 100px; right: 40%; opacity:0.4; }
	50% { top: 240px; right: 45%; opacity:0.8; }
	75% { top: 100px; right: 35%;  opacity:0.6; }
	100% { top: 0px; right: 4%; opacity: 0.5; }
}

/**********************************************/
/***** Footer ******/
/**********************************************/
footer {
    padding: 0 var(--space-6);
    padding-bottom: var(--space-2);
    background-color: var(--bg-lighter);
}

footer .wp-block-separator {
    /*border-top: 1px solid var(--menu-item-hover);*/
    border-top: var(--border);
    padding-bottom: var(--space-4);
}

footer .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
    color: var(--link);
}

footer .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content:hover {
    color: var(--bg-dark-brown);
    text-decoration: underline;
}

.contacts p {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 42px;
    min-height: 40px;
    font-size: 1.1rem;
    font-weight: var(--f-med);
    line-height: 1.7rem;
    color: var(--contacts);
}

.contacts p:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    height: 100%;
    align-items: center;
    font-family: 'icons';
    font-size: 32px;
    color: var(--footer-icon);
}

.contacts .address:before {
    content: '\e806';
}

.contacts .phone:before {
    content: '\e807';
}

.contacts .email:before {
    content: '\e808';
}

.contacts .instagram:before {
    content: '\e809';
}

@media screen and (max-width: 1440px) {
    header {
        padding: 0 var(--space-4);
    }

    main {
        padding: var(--space-4);
    }

    footer {
        padding: 0 var(--space-4);
        padding-bottom: var(--space-2);
    }

    .wc-block-product-template.columns-3,
    .wc-block-product-template.columns-4 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-3) var(--space-2);
    }
}

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

    .woocommerce.product .wp-block-columns .wp-block-column,
    .woocommerce.product .wp-block-columns .product-additional-info {
        flex-basis: 50%;
    }
}

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

    .wc-block-product-template.columns-2,
    .wc-block-product-template.columns-3,
    .wc-block-product-template.columns-4 {
        grid-template-columns: 1fr 1fr;
    }

    /*.woocommerce.product .wp-block-columns .wp-block-column {
        flex-basis: 50%;
    }*/

    .product-summary .wp-block-button .wp-block-button__link {
        width: 100%;
        min-width: 230px;
    }

    .woocommerce-order-received .wp-block-columns .wp-block-column,
    .wc-block-components-sidebar-layout .wc-block-components-main,
    .wc-block-components-sidebar {
        width: 50%;
    }
}

@media screen and (max-width: 880px) {
    header {
        padding: 0 var(--space-3);
    }

    main {
        padding: var(--space-3);
    }

    footer {
        padding: 0 var(--space-3);
        padding-bottom: var(--space-2);
    }

    footer .wp-block-separator {
        padding-bottom: var(--space-3);
    }

    .woocommerce-checkout .wc-block-mini-cart,
    .woocommerce-cart .wc-block-mini-cart {
        display: none;
    }

    /* Menu - responsive */
    .responsive-menu-button-container {
        display: flex;
        justify-content: flex-end;
        flex-grow: 1;
        padding: .5rem;
    }

    .responsive-menu-button {
        display: flex;
    }

    .responsive-menu-button::before {
        color: var(--bg-button-hover);
    }

    .responsive-menu-button:hover::before {
        color: var(--bg-button);
        cursor: pointer;
    }


    .responsive-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(35, 35, 35, 0.8);
        opacity: 0;
        transition: opacity .3s;
        display: none;
    }

    .responsive-menu-overlay.slide-in,
    .responsive-menu-overlay.slide-out {
        display: flex;
        z-index: 9999 !important;
        opacity: 1;
    }

    .responsive-menu-overlay.slide-in {
        animation-duration: .3s;
        animation-name: fadein
    }

    .responsive-menu-overlay.slide-out {
        opacity: 0;
    }

    .responsive-menu-overlay>div {
        position: relative;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: flex-start;
        align-items: flex-start;
        max-width: var(--drawer-width);
        height: 100%;
        min-height: 100dvh;
        max-height: 100%;
        background-color: var(--bg-lighter);
        transform: translatex(var(--neg-drawer-width));
    }

    .responsive-menu.slide-out>div {
        transform: translatex(var(--neg-drawer-width));
        animation-duration: .3s;
        animation-name: menu-slideout;
    }

    .responsive-menu.slide-in>div {
        transform: translatex(0);
        animation-duration: .3s;
        animation-name: menu-slidein;
    }

    .responsive-logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        min-height: var(--header-size);
        padding: 0 var(--space-2);
        background-color: var(--bg-darker);
        border-bottom: var(--border);
    }

    .responsive-menu nav.wp-block-navigation {
        position: relative;
        display: flex;
        align-items: flex-start;
        /*flex-grow: 1;*/
        width: 100%;
        min-height: calc(100% - var(--header-size));
        margin: 0;
        padding: 0;
        overflow-y: auto;
        background-color: var(--bg-lighter);
    }

    /*.responsive-menu .wc-block-components-drawer__close {
        right: var(--space-3);
    }*/

    .responsive-menu .wp-block-navigation>ul.wp-block-navigation__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .responsive-menu .wp-block-navigation>ul.wp-block-navigation__container>li {
        display: flex;
        width: 100%;
    }

    .responsive-menu .wp-block-navigation-item.home span {
        display: inline-flex;
        margin-top: 3px;
        padding-left: 8px;
        font-family: 'Lora';
    }

    .responsive-menu .wp-block-navigation>ul.wp-block-navigation__container>li a {
        flex-grow: 1;
        height: 64px;
        padding: 0 var(--space-2);
        /*color: var(--menu-item);*/
        border-bottom: 1px solid hsla(0, 0%, 7%, .11);
    }

    /*.responsive-menu .wp-block-navigation>ul.wp-block-navigation__container>li a:hover {
        color: var(--bg-button);
        background-color: var(--menu-item-hover);
    }*/

    .responsive-menu .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content[aria-current] {
        /*background-color: var(--bg-darker);*/
        color: var(--white);
        background-color: var(--bg-button);
    }

    .responsive-menu .wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content[aria-current]:hover {
        color: var(--bg-darker) !important;
    }

    footer .wp-block-columns:not(.is-not-stacked-on-mobile) {
        gap: var(--space-2);
        margin-bottom: var(--space-2);
    }

    footer .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        max-width: 47%;
    }

    .wc-block-cart .wc-block-components-sidebar .wc-block-cart__totals-title {
        display: block;
    }

    .wc-block-cart__sidebar,
    .wc-block-cart__submit {
        margin-bottom: 0;
    }
}

@keyframes menu-slidein {
    0% {
        transform: translateX(var(--neg-drawer-width))
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes menu-slideout {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(var(--neg-drawer-width))
    }
}

@media screen and (max-width: 794px) {
    div.wp-block-group.product-archive-panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 8px var(--space-1);
    }
    .product-archive-panel .wp-block-buttons {
        order: 1;
        flex-grow: 1;
    }
    .product-archive-panel .woocommerce.wc-block-catalog-sorting {
        order: 2;
    }

    .product-archive-panel div.wc-block-product-results-count {
        grid-column: 1 / span 2;
        justify-content: flex-start;
        order: 3;
    }

    div.wp-block-button.button-small.filter,
    .woocommerce.wc-block-catalog-sorting select.orderby {
        width: 100%;
    }

    .wc-block-cart .wc-block-cart__submit-container--sticky {
        border-top: 1px solid rgba(0, 0, 0, 0.25);
        background: var(--bg-darker) !important;
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
        z-index: 5000;
    }

    .wc-block-components-order-summary,
    .wc-block-checkout__sidebar .wc-block-components-totals-footer-item,
    .wc-block-checkout__actions .checkout-order-summary-block-fill .wc-block-components-totals-footer-item {
        padding: 0 16px;
    }

    .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
    .wp-block-woocommerce-checkout-order-summary-totals-block {
        padding: 16px;
    }

    .wc-block-checkout__actions .checkout-order-summary-block-fill .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
        padding: 16px 0;
    }

    .wc-block-checkout__actions .checkout-order-summary-block-fill .wp-block-woocommerce-checkout-order-summary-totals-block {
        padding: 0;
        padding-bottom: 16px;
    }

    .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
        border-radius: 0;
    }

    .woocommerce-order-received .wp-block-columns,
    .woocommerce-order-received .wp-block-columns .wp-block-column,
    .wc-block-components-sidebar-layout .wc-block-components-main,
    .wc-block-components-sidebar {
        width: 100%;
    }

    .editor-styles-wrapper .wc-block-order-confirmation-summary,
    .wc-block-order-confirmation-summary {
        margin: 24px 0;
    }

    .wc-block-components-checkout-step__heading {
        margin: 0;
    }

    .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill,
    .checkout-order-summary-block-fill .wc-block-components-totals-wrapper,
    .wp-block-woocommerce-checkout-order-summary-totals-block {
        border-color: rgba(0, 0, 0, 0.25);
    }

    .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill>.wc-block-components-totals-wrapper:last-child {
        background-color: var(--bg-darker);
    }
}

@media screen and (max-width: 781px) {
    .woocommerce div.product .woocommerce-tabs ul.wc-tabs {
        flex-direction: column;
    }

    .woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li,
    .woocommerce div.product .wp-block-woocommerce-product-details.is-style-minimal .woocommerce-tabs ul.wc-tabs li a {
        flex-grow: 1;
    }

    .wp-block-woocommerce-product-review-template .wp-block-columns {
        flex-wrap: nowrap !important;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:has(> .wp-block-avatar) {
        flex-basis: 40px !important;
        flex-grow: 0;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --quantity-item-size: 24px;
    }

    html {
        font-size: 14px;
    }

    h1 {
        position: relative;
        align-items: center;

    }

    /*h1:before {
        position: absolute;
        left: 0;
        display: inline-flex;
        align-items: center;
        height: 100%;
        margin-top: -3px;
    }*/

    header {
        padding: 0 var(--space-2);
    }

    main {
        padding: var(--space-2);
    }

    footer {
        padding: 0 var(--space-2);
        padding-bottom: var(--space-2);
    }

    footer .wp-block-separator {
        padding-bottom: var(--space-2);
    }

    .responsive-menu-button-container {
        flex-grow: 0;
        order: 1;
        width: auto;
    }

    .logo {
        order: 2;
    }

    .wc-block-mini-cart {
        order: 3;
    }

    .woocommerce-checkout .wc-block-mini-cart,
    .woocommerce-cart .wc-block-mini-cart {
        display: inline-flex;
    }

    .responsive-menu-overlay>div {
        width: 100%;
        max-width: var(--drawer-width);
    }

    .woocommerce .woocommerce-breadcrumb .delimiter {
        font-weight: var(--f-black);
        margin-top: 2px;
        padding: 0 5px;
    }

    .wc-block-product-template.columns-2,
    .wc-block-product-template.columns-3,
    .wc-block-product-template.columns-4 {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .wc-block-components-drawer,
    .wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-contents {
        width: 100% !important;
    }

    .wc-block-components-drawer {
        max-width: var(--drawer-width);
    }

    h2.wc-block-mini-cart__title {
        width: 100%;
        text-wrap: balance;
    }

    .wc-block-mini-cart__footer {
        padding: 16px;
    }

    .wc-block-mini-cart__footer .wc-block-components-totals-item.wc-block-mini-cart__footer-subtotal {
        margin-bottom: 4px;
    }

    .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions,
    .wc-block-mini-cart__footer .wc-block-mini-cart__footer-actions>.block-editor-inner-blocks>.block-editor-block-list__layout {
        gap: 8px;
    }

    .is-mobile table.wc-block-cart-items .wc-block-cart-items__row {
        grid-template-columns: 110px auto;
    }

    .woocommerce-cart .wc-block-cart-item__image {
        width: 110px;
    }

    .wc-block-product-template .wp-block-button.wc-block-components-product-button .wp-block-button__link span {
        margin-top: 0;
    }

    .product .wp-block-group:has(.wp-block-button .wp-block-button__link) {
        max-width: 100%;
    }


    .product-summary .wp-block-button.wc-block-components-product-button {
        flex-direction: row;
        width: 100%;
    }

    .woocommerce.product .product-summary .wp-block-button .wp-block-button__link {
        width: 100%;
    }

    .product-summary .wp-block-button .wp-block-button__link {
        flex-grow: 1;
        min-width: auto;
    }

    footer .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        max-width: 100%;
    }

    .wc-block-cart table.wc-block-cart-items {
        margin-bottom: 16px !important;
    }

    .wc-block-cart table.wc-block-cart-items td {
        margin: 0;
    }

    .wc-block-components-totals-coupon__form .wc-block-components-button:not(.is-link) {
        height: 44px;
    }

    .wc-block-checkout__payment-method .wc-block-components-radio-control-accordion-option .wc-block-components-radio-control-accordion-content {
        padding-left: 49px;
    }

    .wc-block-components-order-summary .wc-block-components-order-summary-item__image,
    .wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
        width: 90px;
        max-width: 90px;
    }

    .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
        width: 100%;
    }

    .wc-block-order-confirmation-totals__product .order-item-image img {
        max-width: 60px;
        max-height: 60px;
    }

    .wc-block-order-confirmation-totals__product .product-quantity {
        top: 18px;
        left: 64px;
    }

    .wc-block-order-confirmation-totals table .wc-block-order-confirmation-totals__total {
        width: 115px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --drawer-width: 400px;
    }

    div.wp-block-group.product-archive-panel {
        display: flex;
        flex-direction: column;
        gap: 8px;  
    }

    div.wp-block-group.product-archive-panel .wp-block-buttons {
        width: 100%;
    }

    .wp-block-group:has(.woocommerce.wc-block-catalog-sorting) {
        flex-direction: column;
    }

    .woocommerce.wc-block-catalog-sorting,
    .wp-block-group .wc-block-product-results-count {
        justify-content: flex-start;
        flex-grow: 1;
        min-width: 100%;
    }

    .woocommerce .woocommerce-ordering,
    .woocommerce .woocommerce-ordering select.orderby {
        flex-grow: 1;
        width: 100%;
    }

    .wpclv-attributes .wpclv-terms div.wpclv-term {
        padding: 3px;
    }

    .wpclv-attributes .wpclv-terms div.wpclv-term-color span,
    .wpclv-attributes .wpclv-terms div.wpclv-term-color a {
        width: 30px;
        height: 30px;

    }

    .wp-block-woocommerce-add-to-cart-with-options-variation-selector-attribute-options {
        display: flex;
        width: 100%;
    }

    .wc-block-add-to-cart-with-options-variation-selector-attribute-options__pills {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-auto-flow: row;
        gap: 10px;
        min-width: 100%;
    }

    .wc-block-add-to-cart-with-options-variation-selector-attribute-options__pills label {
        min-width: 100%;
    }

    .comment-reply-title {
        line-height: 1.4rem;
        text-wrap: balance;
    }

    .comment-form input[type=text],
    .comment-form input[type=email],
    .woocommerce.product .comment-form .wp-block-button .wp-block-button__link {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .wc-block-add-to-cart-with-options-variation-selector-attribute-options__pills {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}