:root {
    --font-size-base: .75rem;
    --font-size-small: 10px;
    --font-size-h1: 2.1rem;
    --font-size-h2: 1.6rem;
    --font-size-h3: 1.35rem;
    --font-size-h4: 1.2rem;
    --font-size-h5: 1.1rem;
    --font-size-h6: 0.85rem;
    --section-base: 30px;
    --button-height: 50px;
    --color-primary-10: #f8f6f1;
    --color-primary-20: #f3f0e8;
    --color-primary-30: #efebdf;
    --color-primary-40: #ece5d6;
    --color-primary-50: #dcd2bf;
    --color-primary-60: #cec3ac;
    --color-primary-70: #c2b69e;
    --color-primary-80: #b4a891;
    --color-primary-90: #a89e8b;
    --color-secondary-10: #ebe0e0;
    --color-secondary-10-rgb: 235, 224, 224;
    --color-secondary-20: #dccdcd;
    --color-secondary-30: #c0a5a5;
    --color-secondary-40: #ab8c8c;
    --color-secondary-50: #916f6f;
    --color-secondary-60: #6e4d4d;
    --color-secondary-70: #553b3b;
    --color-secondary-80: #422d2d;
    --color-secondary-90: #352525;
    --color-white: #ffffff;
    --color-white-rgb: 255, 255, 255;
    --color-neutral-10: #fcfbf8;
    --color-neutral-20: #f7f6f4;
    --color-neutral-30: #d8d7d1;
    --color-neutral-40: #bdbab2;
    --color-neutral-50: #918e88;
    --color-neutral-60: #65635e;
    --color-neutral-70: #514f4b;
    --color-neutral-80: #3f3c39;
    --color-neutral-90: #201f1d;
    --color-black: #0f0f0f;
    --color-black-rgb: rgb(0, 0, 0);
    --color-info-10: #e9effb;
    --color-info-50: #4565ba;
    --color-success-10: #edf7ee;
    --color-success-50: #559763;
    --color-warning-10: #fdf8ec;
    --color-error-10: #fde8e8;
    --color-error-60: #c53131;
    --color-info-light: var(--color-info-10);
    --color-info: var(--color-info-50);
    --color-success-light: var(--color-success-10);
    --color-success: var(--color-success-50);
    --color-warning-light: var(--color-warning-10);
    --color-warning: #f6c25f;
    --color-error-light: var(--color-error-10);
    --color-error: var(--color-error-60);
    --site-background-color: var(--color-neutral-10);
    --color-fade: rgba(0, 0, 0, .2);
    --color-focus-outline: rgba(0, 0, 0, .3);
    --color-pagination-progress: rgba(15, 15, 15, .1);
}

:root {
    --button-color: var(--color-white);
    --button-background-color: var(--color-black);
    --button-border-color: var(--color-black);
    --button-hover-color: var(--color-black);
    --button-hover-background-color: var(--color-white);
    --button-hover-border-color: var(--color-black);
    --button-disabled-color: var(--color-neutral-40);
    --button-disabled-background-color: var(--color-neutral-20);
    --button-disabled-border-color: var(--color-neutral-20);
    --button-dark-color: var(--color-black);
    --button-dark-background-color: var(--color-primary-60);
    --button-dark-border-color: var(--color-primary-60);
    --button-dark-hover-color: var(--color-black);
    --button-dark-hover-background-color: var(--color-primary-90);
    --button-dark-hover-border-color: var(--color-primary-90);
    --button-dark-disabled-color: var(--color-neutral-40);
    --button-dark-disabled-background-color: var(--color-neutral-20);
    --button-dark-disabled-border-color: var(--color-neutral-20);
    --button-secondary-color: var(--color-black);
    --button-secondary-background-color: transparent;
    --button-secondary-border-color: var(--color-black);
    --button-secondary-hover-color: var(--color-white);
    --button-secondary-hover-background-color: var(--color-black);
    --button-secondary-hover-border-color: var(--color-black);
    --button-secondary-disabled-color: var(--color-neutral-30);
    --button-secondary-disabled-background-color: transparent;
    --button-secondary-disabled-border-color: var(--color-neutral-30);
    --button-secondary-dark-color: var(--color-primary-90);
    --button-secondary-dark-background-color: var(--color-white);
    --button-secondary-dark-border-color: var(--color-primary-90);
    --button-secondary-dark-hover-color: var(--color-black);
    --button-secondary-dark-hover-background-color: var(--color-primary-60);
    --button-secondary-dark-hover-border-color: var(--color-primary-60);
    --button-secondary-dark-disabled-color: var(--color-neutral-30);
    --button-secondary-dark-disabled-background-color: var(--color-white);
    --button-secondary-dark-disabled-border-color: var(--color-neutral-30);
    --button-text-color: var(--color-black);
    --button-text-hover-color: var(--color-black);
    --button-text-disabled-color: var(--color-black);
    --button-control-color: var(--color-white);
    --button-control-disabled-color: var(--color-neutral-40);
}

/* Basic */
body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    color: var(--color-black);
    font-size: var(--font-size-base);
    line-height: 1.5;
    font-weight: 300;
    background-color: var(--site-background-color);
    position: relative;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 300;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.h1,
h1 {
    font-size: var(--font-size-h1);
}

.h2,
h2 {
    font-size: var(--font-size-h2);
}

.h3,
h3 {
    font-size: var(--font-size-h3);
}

.h4,
h4 {
    font-size: var(--font-size-h4);
}

.h5,
h5 {
    font-size: var(--font-size-h5);
}

.h6,
h6 {
    font-size: var(--font-size-h6);
}

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

a {
    color: var(--color-black);
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-neutral-60);
}

input,
select {
    display: inline-block;
}

.color-white {
    color: var(--color-white);
}

.color-text {
    color: var(--color-text);
}

.color-pri {
    color: var(--color-pri);
}

.color-sec {
    color: var(--color-sec);
}

.color-gray {
    color: var(--color-gray);
}

.bg-bg {
    background-color: var(--color-bg);
}

.bg-pri {
    background-color: var(--color-pri);
}

.bg-sec {
    background-color: var(--color-sec);
}

.bg-gray {
    background-color: var(--color-gray);
}

th {
    font-weight: 300;
}

hr {
    border-width: 1px;
    border-color: var(--color-pri);
    opacity: 1;
}

body .wc-block-components-button:not(.is-link),
.button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    color: var(--button-secondary-color);
    background-color: var(--button-secondary-background-color);
    border: 1px solid var(--button-secondary-border-color);
    height: var(--button-height);
    padding: 0px 2rem;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    border-radius: 0;
    font-size: var(--font-size-base);
    text-transform: uppercase;
}

.btn-pri {
    color: var(--color-white);
    background: var(--color-pri);
}

body .wc-block-components-button:not(.is-link):hover,
.button:hover,
.btn:hover {
    color: var(--button-secondary-hover-color);
    background-color: var(--button-secondary-hover-background-color);
    border-color: var(--button-secondary-hover-border-color);
}

.pb-base {
    padding-bottom: var(--section-base) !important;
}

.pb-big {
    padding-bottom: calc(var(--section-base) * 2) !important;
}

.pt-base {
    padding-top: var(--section-base) !important;
}

.pt-big {
    padding-top: calc(var(--section-base) * 2) !important;
}

.mt-base {
    margin-top: var(--section-base) !important;
}

.mt-big {
    margin-top: calc(var(--section-base) * 2) !important;
}

.mb-half {
    margin-bottom: calc(var(--section-base) * 0.5) !important;
}

.mb-base {
    margin-bottom: var(--section-base) !important;
}

.mb-big {
    margin-bottom: calc(var(--section-base) * 2) !important;
}

body .wc-block-components-textarea,
body .wc-blocks-components-select .wc-blocks-components-select__select,
body .wc-block-components-form .wc-block-components-text-input input[type=email],
body .wc-block-components-form .wc-block-components-text-input input[type=number],
body .wc-block-components-form .wc-block-components-text-input input[type=password],
body .wc-block-components-form .wc-block-components-text-input input[type=tel],
body .wc-block-components-form .wc-block-components-text-input input[type=text],
body .wc-block-components-form .wc-block-components-text-input input[type=url],
body .wc-block-components-text-input input[type=email],
body .wc-block-components-text-input input[type=number],
body .wc-block-components-text-input input[type=password],
body .wc-block-components-text-input input[type=tel],
body .wc-block-components-text-input input[type=text],
body .wc-block-components-text-input input[type=url] textarea,
select,
input {
    height: var(--button-height);
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--color-black);
    outline: none;
    width: 100%;
    color: var(--color-black);
    font-size: var(--font-size-base);
}

body .wc-block-components-textarea,
textarea {
    height: calc(var(--section-base) * 4);
}

::placeholder {
    color: var(--color-text);
    opacity: 0.75;
    font-style: italic;
}

select {
    -webkit-appearance: none;
    background-image: url('select.svg');
    background-position: center right;
    background-repeat: no-repeat;
    padding-right: 16px;
}

input[type="checkbox"] {
    padding: 0;
    border-radius: 0;
    height: .875rem;
    width: .875rem;
    line-height: .875rem;
    font-size: 0.75rem;
}

.fw-medium {
    font-weight: 400;
}

.font-xl {
    font-size: var(--font-size-xl);
}

.font-xxl {
    font-size: var(--font-size-xxl);
}

.font-big {
    font-size: var(--font-size-big);
}

.font-small {
    font-size: var(--font-size-small);
}

.font-tini {
    font-size: var(--font-size-tini);
}

.gap-base {
    gap: calc(var(--section-base) * 0.75);
}

.gap-big {
    gap: calc(var(--section-base) * 2);
}

.rounded-base {
    border-radius: calc(var(--section-base) * 0.25);
}

.text-line-w {
    color: var(--color-white);
    background: -webkit-linear-gradient(0, #ffffff, rgba(255, 255, 255, 0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-line-b {
    color: var(--color-white);
    background: -webkit-linear-gradient(0, #282828, #B6B6B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-line-bb {
    color: var(--color-white);
    background: -webkit-linear-gradient(0, #282828, #6c6c6c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-line-pri {
    color: var(--color-pri);
    background: -webkit-linear-gradient(0, #1E22AA, #09A3D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-line-sec {
    color: var(--color-sec);
    background: -webkit-linear-gradient(0, #00D6E5, #0D89CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.min-unset {
    min-height: unset !important;
}

/* Main */
.swiper {
    width: 100%;
    height: auto;
	padding-top: 2.6rem;
    margin-top: -2.6rem;
}

.swiper-wrapper {
    height: auto;
}

.swiper-slide {
    height: auto;
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    background-size: cover;
    background-position: center;
}

.img-wrap {
    position: relative;
    padding-top: 150%;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.img-wrap.has-hover:hover img {
    transform: scale(1.05);
}

.img-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-text);
	width: 2rem;
    height: 2rem;
    background-color: transparent;
    top: 0;
    margin-top: 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--font-size-small);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 34px);
}

.pagination ul {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: calc(var(--section-base) * 1.5 / 3);
    list-style: none;
}

.pagination ul li a {
    width: calc(var(--section-base) * 4 / 3);
    height: calc(var(--section-base) * 4 / 3);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-sec);
    color: var(--color-white);
    border-radius: 50%;
}

.pagination ul li a.active {
    background-color: var(--color-pri);
    pointer-events: none;
}

.video-wrap {
    position: relative;
    padding-top: 64%;
    overflow: hidden;
}

.video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accordion {
    border-top: 1px solid var(--color-text);
}

.accordion-button {
    font-size: var(--font-size-h5);
    font-weight: 400;
    outline: none !important;
    box-shadow: none !important;
    padding: calc(var(--section-base) * 0.75) 0;
    background-color: transparent;
}

.accordion-button::after {
    background-image: url('../assets/plus.svg');
    background-position: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../assets/minus.svg');
    background-position: center;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-item:last-of-type {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--color-text);
}

.accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-text);
    border-radius: 0;
}

.accordion-body {
    padding: 0 0 calc(var(--section-base) * 0.75) 0;
    color: var(--color-gray);
}

/* New */
.section-banner-page {
    padding: 10rem 0 3.5rem;
}

.section-product-page {
    padding: 6.5rem 0 3.5rem;
}

.section-about-page>* {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-about-page>.wp-block-image {
    max-width: 100%;
}

.sidebar-box {
    position: fixed;
    z-index: 9999;
    background-color: var(--color-fade);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
}

.sidebar-box.tran-start {
    justify-content: start;
}

.sidebar-box.open {
    opacity: 1;
    visibility: visible;
}

.sidebar-box .sidebar {
    width: 30rem;
    max-width: 50vw;
    transform: translateX(30rem);
    height: 100%;
    background-color: var(--color-neutral-10);
    padding: 3rem 1.5rem;
    transition: 0.3s all ease-in-out;
}

.sidebar-box.tran-start .sidebar {
    transform: translateX(-30rem);
}

.sidebar-box .sidebar.sidebar-big {
    width: 45rem;
    transform: translateX(45rem);
}

.sidebar-box.open .sidebar {
    transform: translateX(0);
}

.sidebar-box .sidebar .wpf_form_product_filter {
    height: 100%;
    width: 100%;
    overflow: auto;
}

.sidebar-box .sidebar .sidebar-scroll {
    height: 100%;
    width: 100%;
    overflow: auto;
}

.wpf_form .wpf_item .wpf_item_name {
    font-weight: 300;
    text-transform: uppercase;
}

.wpf_form .wpf_item input[type=checkbox] {
    border-radius: 0;
    height: .875rem;
    width: .875rem;
    line-height: .875rem;
    font-size: 0.75rem;
}

.wpf_form .wpf_items_wrapper .wpf_item ul {
    columns: 2;
}

.wpf_form .wpf_items_wrapper .wpf_item ul li {
    display: list-item;
}

.section-blog-details .featured-image img {
    aspect-ratio: 100/75;
    width: 100%;
    margin-bottom: 6rem;
}

.wp-block-separator {
    border-top-width: 1px;
}

.woocommerce-ordering select {
    height: auto;
    text-transform: uppercase;
    text-align: end;
    border: 0;
}

.item-product .featured-image {
    padding-bottom: 150%;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.item-product .featured-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.item-product .featured-image img:last-child {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease-in-out;
    z-index: 1;
}

.item-product .featured-image .onsale {
    text-transform: uppercase;
    font-size: .6875rem;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 2;
}

.item-product .featured-image:hover img:last-child {
    opacity: 1;
    visibility: visible;
}

.item-product .featured-image .add_to_cart_button {
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--button-height);
    background-color: var(--color-neutral-20);
    text-transform: uppercase;
    transform: translateY(100%);
    transition: 0.3s all ease-in-out;
    border: 0;
    color: var(--color-black);
}

.item-product .featured-image:hover .add_to_cart_button {
    transform: translateY(0);
}

.item-product .content {
    padding: .75rem 1rem 0;
}

.item-product .price,
.item-product .woocommerce-loop-product__title {
    font-size: var(--font-size-h6);
    font-weight: 300;
    margin-bottom: 3px;
}

.item-product .price ins {
    text-decoration: none;
}

.item-product .price del {
    opacity: 0.75;
}

.item-blog .featured-image {
    padding-bottom: 150%;
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.item-blog .content {
    padding: .75rem 1rem 0;
}

.item-blog .featured-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.nav-links,
ul.page-numbers {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    align-items: center;
    font-size: var(--font-size-h6);
    width: 100%;
}

.nav-links .current,
ul.page-numbers .current {
    font-weight: 400;
}

a.aactive {
    position: relative;
}

a.aactive::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    background-color: currentColor;
    opacity: 0;
    transition: opacity .2s cubic-bezier(.16, .68, .43, .99);
}

a.aactive:hover::after,
a.aactive.active::after {
    opacity: 1;
}

.woocommerce-product-gallery {
    position: relative;
    height: 100% !important;
}

.flex-control-nav {
    position: absolute;
    width: 3rem;
    left: 1.5rem;
    list-style: none;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
	z-index: 99;
}

.flex-control-nav li {
    margin: 0.5rem 0;
}

.flex-control-nav li img {
    aspect-ratio: 3/4;
    object-fit: cover;
	cursor: pointer;
}

.entry-summary {
    max-width: 40rem;
    margin: auto;
    padding: 12.5rem 0 3.5rem;
}

.woocommerce-tabs .wc-tabs {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 1.25rem;
}

.woocommerce-tabs .wc-tab>h2 {
    display: none;
}

.woocommerce-tabs .wc-tabs li.active a {
    text-decoration: underline;
    text-underline-offset: .375rem;
}

.woocommerce-product-gallery__trigger {
    display: none;
}

.gallery-wrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 100vh;
}

.gallery-box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gallery-wrap .flex-viewport {
    height: 100% !important;
}

.woocommerce-product-gallery__wrapper {
    height: 100% !important;
}

.gallery-wrap .woocommerce-product-gallery__image {
    height: 100%;
}
.gallery-wrap .woocommerce-product-gallery__image a {
	pointer-events: none;
}
.gallery-wrap .woocommerce-product-gallery__image a img {
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.entry-summary .product_title {
    font-size: var(--font-size-h4);
}

.entry-summary .price {
    font-size: var(--font-size-h6);
}

.entry-summary .variations {
    width: 100%;
}

.entry-summary .variations .label {
    display: none;
}

.entry-summary .reset_variations {
    display: none !important;
}

.entry-summary .quantity input {
    border: 0;
}

.entry-summary .button {
    width: 100%;
}

.entry-summary .product_meta {
    padding-top: 2rem;
}

.entry-summary .product_meta>span {
    display: block;
}

.entry-summary .woocommerce-tabs {
    padding-top: 2rem;
}

table p:last-child {
    margin-bottom: 0;
}

.item-product-details {
    border-bottom: 1px solid var(--color-black);
}

.wpml-ls-legacy-dropdown-click {
    width: unset;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
    padding: 0;
    border: 0;
    line-height: inherit;
    background: none;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
    content: none;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-current-language:hover>a,
.wpml-ls-legacy-dropdown-click a:focus,
.wpml-ls-legacy-dropdown-click a:hover {
    color: var(--color-neutral-60);
    background: none;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
    background: none;
    border: 0;
    right: 0;
    left: auto;
    position: absolute;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
    border: 0;
    white-space: nowrap;
    background: none;
    padding: 0.5rem 0 0;
}

.search-form .btn-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: none;
    outline: none;
    box-shadow: none;
}

.woocommerce-MyAccount-navigation {
    margin-top: -2rem;
}

.woocommerce-MyAccount-navigation>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 3.5rem;

}

.password-input {
    position: relative;
}

.password-input .show-password-input {
    position: absolute;
    width: 1rem;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    border: 0;
    background: none;
    font-size: 1rem;
    opacity: 0.75;
}

.password-input .show-password-input::after {
    content: "⏿";
}

.woocommerce-MyAccount-content fieldset {
    padding-top: 1.5rem;
}

.u-columns h2,
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content fieldset legend {
    font-size: var(--font-size-h6);
    text-transform: uppercase;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper ul {
    background: #f3f0e9;
    list-style: none;
    padding: 0.5rem 1.5rem;
    outline: none !important;
    margin-bottom: 1.5rem;
}

.woocommerce-notices-wrapper .woocommerce-message a {
    padding: 0;
    border: 0;
    display: inline;
    background: none;
    color: var(--color-black) !important;
}

.u-columns {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}

.u-columns>div {
    flex-shrink: 0;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    width: 50%;
}

.select2-container--default .select2-selection--single {
    background: none;
    border: 0;
    border-bottom: 1px solid var(--color-black);
    margin: 0;
    height: var(--button-height);
    border-radius: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    line-height: var(--button-height);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: var(--button-height);
}

body .woocommerce-form__label.woocommerce-form__label-for-checkbox {
    display: flex;
    margin-bottom: 1rem;
    gap: 0.5rem;
    align-items: center;
}

body .is-large.wc-block-cart .wc-block-cart__totals-title,
body .is-large.wc-block-cart .wc-block-cart-items th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

body .wc-block-components-title.wc-block-components-title,
body .is-large.wc-block-cart .wc-block-cart__totals-title,
body .editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__header th,
body table.wc-block-cart-items .wc-block-cart-items__header th {
    font-weight: 300;
    font-size: var(--font-size-h6);
    text-transform: uppercase;
}

body .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    font-weight: 300;
    font-size: var(--font-size-h6);
    text-transform: uppercase;
}

body .wc-block-components-quantity-selector {
    border-radius: 0;
}

body .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button,
body .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    height: 40px;
}

body .wc-block-components-quantity-selector:after,
body .wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--plus,
body .wc-block-components-quantity-selector>.wc-block-components-quantity-selector__button--minus {
    border-radius: 0;
}

.wc-block-components-notices__snackbar {
    display: none !important;
}

body .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
    border-radius: 0;
}

body .wc-blocks-components-select .wc-blocks-components-select__container {
    background: none;
    border-radius: 0;
    height: var(--button-height);
}

body .wc-blocks-components-select .wc-blocks-components-select__select {
    padding: 1em .5em 0;
}

body .wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-form .wc-block-components-text-input.is-active input[type=email],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=number],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=password],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=text],
.wc-block-components-form .wc-block-components-text-input.is-active input[type=url],
.wc-block-components-text-input input:-webkit-autofill,
.wc-block-components-text-input.is-active input[type=email],
.wc-block-components-text-input.is-active input[type=number],
.wc-block-components-text-input.is-active input[type=password],
.wc-block-components-text-input.is-active input[type=tel],
.wc-block-components-text-input.is-active input[type=text],
.wc-block-components-text-input.is-active input[type=url] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.wc-block-components-form .wc-block-components-text-input input[type=email]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=number]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=password]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=text]:focus,
.wc-block-components-form .wc-block-components-text-input input[type=url]:focus,
.wc-block-components-text-input input[type=email]:focus,
.wc-block-components-text-input input[type=number]:focus,
.wc-block-components-text-input input[type=password]:focus,
.wc-block-components-text-input input[type=tel]:focus,
.wc-block-components-text-input input[type=text]:focus,
.wc-block-components-text-input input[type=url]:focus {
    background: none !important;
    border: 0 !important;
    border-bottom: 1px solid var(--color-black) !important;
    color: var(--color-black) !important;
}

.wc-blocks-components-select .wc-blocks-components-select__label,
.wc-block-components-form .wc-block-components-text-input label,
.wc-block-components-text-input label {
    left: 0 !important;
}

.wc-block-components-checkout-step__heading {
    margin-bottom: 0.75rem !important;
}

.wc-block-checkout__add-note .wc-block-components-textarea:focus {
    box-shadow: none !important;
    background: none !important;
}

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

.woocommerce-order-details {
    margin-bottom: 1.5rem;
}

.woocommerce-customer-details .woocommerce-column__title,
.woocommerce-order-details .woocommerce-order-details__title {
    font-weight: 300;
    font-size: var(--font-size-h6);
    text-transform: uppercase;
}

.woocommerce-table--order-details {
    width: 100%;
}

.woocommerce-table--order-details thead th {
    padding: 0.75rem 0;
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}

.woocommerce-table--order-details thead th:last-child {
    text-align: end;
}

.woocommerce-table--order-details tbody tr>*,
.woocommerce-table--order-details tfoot tr>* {
    padding: 1rem 0 0;
}

.woocommerce-table--order-details td:last-child {
    text-align: end;
}

.woocommerce-MyAccount-orders {
    width: 100%;
}

.woocommerce-MyAccount-orders thead th {
    font-weight: 300;
    font-size: var(--font-size-h6);
    text-transform: uppercase;
    padding: 0.75rem 0;
    border-bottom: 1px solid hsla(0, 0%, 7%, .11);
}

.woocommerce-MyAccount-orders .button {
    padding: 0;
    border: 0;
    display: inline;
    background: none;
    color: var(--color-black) !important;
}

.woocommerce-MyAccount-orders tbody tr>*,
.woocommerce-MyAccount-orders tfoot tr>* {
    padding: 1rem 0 0;
}

.wc-item-meta {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wc-item-meta li {
    display: flex;
    gap: 0.3rem;
}

.section-banner {
    position: relative;
}

.section-banner img {
    height: 100vh;
    object-fit: cover;
}

.section-banner .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
}

.item-one .overlay {
    padding: 1rem;
}

.section-two-col .content {
    width: 30rem;
    max-width: 60%;
}

.item-two {
    height: 100vh;
    padding-top: 0;
}

.item-two .overlay {
    padding: 5rem;
}

.item-ins {
    padding-top: 100%;
}

.item-ins .overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.item-ins:hover .overlay {
    opacity: 1;
}