/**
 * Use this mixin to change the inherited font declaration 
 * of an element or container.
 */
/**
 * Overwrite elements whose properties are declared by a 3rd
 * party by setting all the font properties again.
 *
 * Examples: sales badges inherit font rules from WooCommerce plugin
 */
[class][class][class] .wc-block-grid__product-onsale {
  font-family: var(--current-font-family);
  font-size: var(--current-font-size);
  line-height: var(--current-line-height);
  font-weight: var(--current-font-weight);
  font-style: var(--current-font-style);
  letter-spacing: var(--current-letter-spacing);
  text-transform: var(--current-text-transform);
}

/**
 * Use this mixin on containers or elements, when you need 
 * to overwrite the universal selector (*) specificity
 *
 * Examples: input fields, image captions
 */
:is(body, #very.specific) :is(button:not([class]),
input[type=submit]:not(.ot-button):not(.search-submit),
.button:not(.trix-button),
button.button:disabled[disabled]) {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
:is(body, #very.specific) :is(button:not([class]),
input[type=submit]:not(.ot-button):not(.search-submit),
.button:not(.trix-button),
button.button:disabled[disabled]):not([disabled]) {
  cursor: pointer;
}
:is(body, #very.specific) :is(button:not([class]),
input[type=submit]:not(.ot-button):not(.search-submit),
.button:not(.trix-button),
button.button:disabled[disabled]):not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
:is(body, #very.specific) :is(button:not([class]),
input[type=submit]:not(.ot-button):not(.search-submit),
.button:not(.trix-button),
button.button:disabled[disabled]):disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
:is(body, #very.specific) :is(button:not([class]),
input[type=submit]:not(.ot-button):not(.search-submit),
.button:not(.trix-button),
button.button:disabled[disabled]) {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
}
:is(body, #very.specific) :is(.ajax_add_to_cart ~ .single_add_to_cart_button, #specific) {
  display: none;
}
:is(body, #very.specific) #respond input#submit.alt:hover,
:is(body, #very.specific) :is(a, button, input).button.alt:hover {
  color: var(--theme-button-hover-text-color);
}
:is(body, #very.specific) :is(a, button).button {
  font-family: var(--current-font-family);
  font-size: var(--current-font-size);
  line-height: var(--current-line-height);
  font-weight: var(--current-font-weight);
  font-style: var(--current-font-style);
  letter-spacing: var(--current-letter-spacing);
  text-transform: var(--current-text-transform);
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)) {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)):before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)) {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)):before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)):not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)):not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
:is(body, #very.specific) :is(a, button).button:not(:is(.alt, .checkout, .specificity.increase)):disabled {
  opacity: 0.25;
}
:is(body, #very.specific) :is(a, button).button:is(.alt, .checkout, .specificity.increase) {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
:is(body, #very.specific) :is(a, button).button:is(.alt, .checkout, .specificity.increase):before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
:is(body, #very.specific) :is(a, button).button:is(.alt, .checkout, .specificity.increase):before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) :is(a, button).button:is(.alt, .checkout, .specificity.increase):not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
:is(body, #very.specific) :is(a, button).button.checkout-button {
  --theme-button-x-padding: 2.5em;
  --theme-button-y-padding: 1em;
  padding: var(--theme-button-y-padding) var(--theme-button-x-padding);
}
:is(body, #very.specific) input.button:not(.alt),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit):not(.alt) {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
  background-color: transparent;
  background-size: calc(200% + 4 * var(--theme-button-border-width)) calc(100% + 4 * var(--theme-button-border-width));
  background-position: calc(100% + var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
:is(body, #very.specific) input.button:not(.alt):not([disabled]):is(:hover, :focus),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit):not(.alt):not([disabled]):is(:hover, :focus) {
  background-position: calc(-1 * var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
:is(body, #very.specific) input.button:not(.alt):before,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit):not(.alt):before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) input.button:not(.alt):not([disabled]):is(:hover, :focus):before,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit):not(.alt):not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
:is(body, #very.specific) input.button:not(.alt),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit):not(.alt) {
  background-image: linear-gradient(to right, var(--theme-button-hover-background-color) 50%, var(--theme-button-background-color) 50%);
}
:is(body, #very.specific) input.button.alt,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
  background-color: transparent;
  background-size: calc(200% + 4 * var(--theme-button-border-width)) calc(100% + 4 * var(--theme-button-border-width));
  background-position: calc(100% + var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
:is(body, #very.specific) input.button.alt:not([disabled]):is(:hover, :focus),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:not([disabled]):is(:hover, :focus) {
  background-position: calc(-1 * var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
:is(body, #very.specific) input.button.alt,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
:is(body, #very.specific) input.button.alt:before,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) input.button.alt:not([disabled]):is(:hover, :focus),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
:is(body, #very.specific) input.button.alt:not([disabled]):is(:hover, :focus):before,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
:is(body, #very.specific) input.button.alt:disabled,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:disabled {
  opacity: 0.25;
}
:is(body, #very.specific) input.button.alt,
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt {
  --current-button-text-color: var(--theme-button-hover-text-color);
  background-image: linear-gradient(to left, var(--theme-button-hover-background-color) 50%, var(--theme-button-background-color) 50%);
}
:is(body, #very.specific) input.button.alt:not([disabled]):is(:hover, :focus),
:is(body, #very.specific) input[type=submit]:not(.ot-button):not(.search-submit).alt:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
:is(body, #very.specific) :is(.checkout-button, #place_order) {
  --theme-button-x-padding: 2.5em;
  --theme-button-y-padding: 1em;
  padding: var(--theme-button-y-padding) var(--theme-button-x-padding);
}
:is(body, #very.specific) :is(.add_to_cart_button, .single_add_to_cart_button) {
  width: 100%;
}
:is(body, #very.specific) button.add_to_cart_button {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
:is(body, #very.specific) button.add_to_cart_button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
:is(body, #very.specific) button.add_to_cart_button {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
:is(body, #very.specific) button.add_to_cart_button:before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) button.add_to_cart_button:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
:is(body, #very.specific) button.add_to_cart_button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
:is(body, #very.specific) button.add_to_cart_button:disabled {
  opacity: 0.25;
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class] {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class]:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class]:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class]:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class] {
  --current-button-text-color: var(--theme-button-text-color);
}
:is(body, #very.specific) .woocommerce-notices-wrapper .button[class][class][class][class][class]:hover {
  --current-button-text-color: var(--theme-button-hover-text-color);
}

html body.woocommerce-page .customize-partial-edit-shortcut-button {
  padding: 3px;
  border: 0;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  html body.woocommerce-page button[name=update_cart] {
    float: right;
  }
}
html body.woocommerce-page form .form-row textarea {
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: var(--theme-input-padding);
  margin: 0;
  color: var(--sm-current-fg1-color);
  border-radius: var(--theme-input-border-radius);
  background-color: var(--sm-current-bg-color);
  box-shadow: var(--theme-input-box-shadow);
  border: 0;
  transition: all 0.2s ease-in-out;
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  -webkit-font-smoothing: initial;
  -webkit-appearance: none;
}
html body.woocommerce-page form .form-row textarea:hover {
  --theme-input-box-shadow: var(--theme-input-hover-box-shadow);
}
html body.woocommerce-page form .form-row textarea:focus, html body.woocommerce-page form .form-row textarea:active {
  --theme-input-border-color: var(--theme-input-focus-border-color);
  --theme-input-box-shadow: var(--theme-input-focus-box-shadow);
  outline: 0;
}
html body.woocommerce-page form .form-row textarea[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
[class*=invalid] html body.woocommerce-page form .form-row textarea {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
  --theme-input-color: var(--theme-input-error-color);
  --theme-input-placeholder-color: var(--theme-input-error-color);
  --theme-input-placeholder-opacity: 0;
}
[class*=invalid] html body.woocommerce-page form .form-row textarea:hover {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}
[class*=invalid] html body.woocommerce-page form .form-row textarea:focus, [class*=invalid] html body.woocommerce-page form .form-row textarea:active {
  --theme-input-box-shadow: var(--theme-input-focus-error-box-shadow);
}
html body.woocommerce-page form .form-row textarea {
  min-height: 7.5em;
  resize: vertical;
}

.quantity .qty_button {
  border-radius: 50%;
  color: var(--sm-current-fg1-color);
}
.quantity .qty_button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
}
.quantity .qty_button.minus:after {
  mask-size: contain;
  mask: url("../../../assets/images/minus.svg") no-repeat 50% 50%;
  -webkit-mask: url("../../../assets/images/minus.svg") no-repeat 50% 50%;
}
.quantity .qty_button.plus:after {
  mask-size: contain;
  mask: url("../../../assets/images/plus.svg") no-repeat 50% 50%;
  -webkit-mask: url("../../../assets/images/plus.svg") no-repeat 50% 50%;
}

:root {
  --theme-mini-cart-transition-property: all;
  --theme-mini-cart-transition-duration: .3s;
  --theme-mini-cart-transition-easing: cubic-bezier(0.165, 0.84, 0.44, 1);
  --theme-mini-cart-transition: var(--theme-mini-cart-transition-property) var(--theme-mini-cart-transition-duration) var(--theme-mini-cart-transition-easing);
}

.c-mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
.admin-bar .c-mini-cart {
  top: 32px;
}
.demo-site .c-mini-cart {
  top: 80px;
}
.admin-bar.demo-site .c-mini-cart {
  top: 112px;
}
@media (max-width: 782px) {
  .admin-bar .c-mini-cart {
    top: 46px;
  }
  .admin-bar.demo-site .c-mini-cart {
    top: 126px;
  }
}
@media (max-width: 700px) {
  .admin-bar.demo-site .c-mini-cart {
    top: 146px;
  }
}
.c-mini-cart .widgettitle {
  display: none;
}
.c-mini-cart .widget_shopping_cart {
  position: relative;
}
.c-mini-cart .widget_shopping_cart:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.625em;
  opacity: 0.2;
  box-shadow: inset 0 0.625em 0.625em -0.625em #000000;
}
.c-mini-cart .woocommerce-mini-cart[class] {
  padding: 2.5em;
  padding-top: 0;
  overflow-y: auto;
  margin-bottom: 0;
}
.c-mini-cart .woocommerce-mini-cart__total {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  --font-size: var(--theme-meta-font-size);
  --current-font-family: var(--theme-meta-font-family);
  --current-font-weight: var(--theme-meta-font-weight);
  --current-font-style: var(--theme-meta-font-style);
  --current-line-height: var(--theme-meta-line-height);
  --current-letter-spacing: var(--theme-meta-letter-spacing);
  --current-text-transform: var(--theme-meta-text-transform);
}
.c-mini-cart .woocommerce-mini-cart__total[class][class] {
  border-top: 0;
  padding: 1.25em;
  margin: 0;
}
.c-mini-cart .woocommerce-mini-cart__total:before {
  content: "";
  display: block;
  height: 0.625em;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  opacity: 0.2;
  box-shadow: inset 0 -0.625em 0.625em -0.625em #000000;
}
.c-mini-cart .woocommerce-mini-cart__total .amount {
  margin-left: auto;
}
.c-mini-cart .woocommerce-mini-cart__buttons {
  padding: 1.25em;
  padding-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
}
.c-mini-cart .woocommerce-mini-cart__buttons[class][class][class][class] > a {
  display: block;
}
.c-mini-cart .woocommerce-mini-cart__buttons[class][class][class][class] > a:not(:last-child) {
  margin-top: 0.625em;
}
.c-mini-cart .woocommerce-mini-cart__buttons .wc-forward:not(.checkout)[class][class][class][class] {
  position: relative;
}
.c-mini-cart .woocommerce-mini-cart__buttons .wc-forward:not(.checkout)[class][class][class][class]:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
  pointer-events: none;
}
.c-mini-cart .mini_cart_item {
  display: block;
  transition: var(--theme-mini-cart-transition);
  transition-property: opacity, transform;
}
.c-mini-cart .mini_cart_item--hidden {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: none;
}
.c-mini-cart .woocommerce-mini-cart__empty-message {
  padding: 1.25em;
}

.c-mini-cart__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  opacity: 0.2;
}

.c-mini-cart__flyout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 17em;
  background-color: var(--sm-current-bg-color);
  pointer-events: auto;
}
.c-mini-cart__flyout,
.c-mini-cart__flyout .widget_shopping_cart,
.c-mini-cart__flyout .widget_shopping_cart_content {
  display: flex;
  flex-direction: column;
}
.c-mini-cart__flyout .widget_shopping_cart,
.c-mini-cart__flyout .widget_shopping_cart_content,
.c-mini-cart__flyout .woocommerce-mini-cart {
  flex-grow: 1;
}
.c-mini-cart__flyout .widget_shopping_cart_content > :not(.woocommerce-mini-cart) {
  flex-shrink: 0;
}
.c-mini-cart__flyout .mini_cart_item .variation {
  padding-left: 0;
  border: 0;
  margin-top: 0.5em;
}
.c-mini-cart__flyout .mini_cart_item .variation dl,
.c-mini-cart__flyout .mini_cart_item .variation dd {
  padding: 0 !important;
}

.c-mini-cart[class] .cart_list li,
.c-mini-cart[class] .product_list_widget li {
  padding: 0;
  padding-top: 2.5em;
}
.c-mini-cart[class] .cart_list li:before,
.c-mini-cart[class] .product_list_widget li:before {
  content: "";
  display: block;
  margin-top: -0.625em;
}
.c-mini-cart[class] .cart_list li .quantity,
.c-mini-cart[class] .product_list_widget li .quantity {
  display: block;
}
.c-mini-cart[class] .cart_list li:hover a.remove[class],
.c-mini-cart[class] .product_list_widget li:hover a.remove[class] {
  opacity: 1;
}
.c-mini-cart[class] .cart_list a:not(.remove),
.c-mini-cart[class] .product_list_widget a:not(.remove) {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
}
.c-mini-cart[class] .cart_list a.remove[class],
.c-mini-cart[class] .product_list_widget a.remove[class] {
  top: auto;
  left: auto;
  bottom: 0.25em;
  right: 0;
  background: none;
  opacity: 0;
  --theme-transition-duration: var(--theme-transition-duration-quick);
  transition: var(--theme-transition);
  width: 0.4em;
  height: 0.4em;
  overflow: hidden;
  text-indent: -9999em;
}
.c-mini-cart[class] .cart_list a.remove[class]:before, .c-mini-cart[class] .cart_list a.remove[class]:after,
.c-mini-cart[class] .product_list_widget a.remove[class]:before,
.c-mini-cart[class] .product_list_widget a.remove[class]:after {
  content: "";
  display: block;
  width: 0.08em;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
}
.c-mini-cart[class] .cart_list a.remove[class]:before,
.c-mini-cart[class] .product_list_widget a.remove[class]:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-mini-cart[class] .cart_list a.remove[class]:after,
.c-mini-cart[class] .product_list_widget a.remove[class]:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-mini-cart[class] .cart_list a.remove[class],
.c-mini-cart[class] .product_list_widget a.remove[class] {
  color: inherit !important;
}
.c-mini-cart[class] .cart_list img,
.c-mini-cart[class] .product_list_widget img {
  display: block;
  float: none;
  width: auto;
  margin: 0;
  margin-top: 0.375em;
  order: 10;
}
.c-mini-cart[class] .mini_cart_item .quantity {
  margin-top: var(--theme-spacing-smallest);
  --font-size: var(--theme-meta-font-size);
  --current-font-family: var(--theme-meta-font-family);
  --current-font-weight: var(--theme-meta-font-weight);
  --current-font-style: var(--theme-meta-font-style);
  --current-line-height: var(--theme-meta-line-height);
  --current-letter-spacing: var(--theme-meta-letter-spacing);
  --current-text-transform: var(--theme-meta-text-transform);
}
.c-mini-cart[class] .mini_cart_item dl,
.c-mini-cart[class] .mini_cart_item dd {
  margin-bottom: 0 !important;
}

.c-mini-cart__header {
  display: flex;
  align-items: center;
  padding: 1.25em;
}

.c-mini-cart__title[class] {
  margin-bottom: 0;
}

.c-mini-cart__close {
  position: relative;
  width: 1em;
  height: 1em;
  overflow: hidden;
  text-indent: -9999em;
}
.c-mini-cart__close:before, .c-mini-cart__close:after {
  content: "";
  display: block;
  width: 0.1875em;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: currentColor;
}
.c-mini-cart__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-mini-cart__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-mini-cart__close {
  margin-left: auto;
  cursor: pointer;
}

.c-mini-cart__overlay,
.c-mini-cart__flyout {
  transition: var(--theme-mini-cart-transition);
}

.c-mini-cart:not(.c-mini-cart--visible) {
  pointer-events: none;
}
.c-mini-cart:not(.c-mini-cart--visible) .c-mini-cart__overlay {
  opacity: 0;
}
.c-mini-cart:not(.c-mini-cart--visible) .c-mini-cart__flyout {
  transform: translate3d(100%, 0, 0);
}

:root {
  --theme-notification-succes-color: #50B83C;
  --theme-notification-error-color: #C8164B;
  --theme-notification-info-color: #007ACE;
  --theme-notification-neutral-color: #121416;
}

.woocommerce-notices-wrapper {
  position: relative;
  --theme-notification-color: var(--theme-notification-neutral-color);
  --theme-notification-opacity: 0.04;
  color: var(--sm-current-fg2-color);
}
.woocommerce-notices-wrapper .button {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.woocommerce-notices-wrapper .button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.woocommerce-notices-wrapper .button {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
.woocommerce-notices-wrapper .button:before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
.woocommerce-notices-wrapper .button:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
.woocommerce-notices-wrapper .button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
.woocommerce-notices-wrapper .button:disabled {
  opacity: 0.25;
}
.woocommerce-notices-wrapper:not(:empty) {
  margin-top: var(--theme-spacing-large);
}
.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  border: 0;
  color: inherit;
  padding: 1em;
  --theme-notification-icon-width: 1em;
  --theme-notification-icon-height: 1em;
}
.woocommerce-error:before,
.woocommerce-info:before,
.woocommerce-message:before {
  content: none;
}
@media not screen and (min-width: 768px) {
  .woocommerce-error a,
  .woocommerce-info a,
  .woocommerce-message a {
    flex-basis: 100%;
    padding-left: 2.3em;
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background-color: transparent;
  z-index: 1;
  border-radius: 4px;
}
.woocommerce-message:after,
.woocommerce-info:after,
.woocommerce-error:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-notification-color);
  opacity: var(--theme-notification-opacity);
  border-radius: 4px;
  z-index: -1;
}

.woocommerce-message {
  --theme-notification-color: var(--theme-notification-succes-color);
  --theme-notification-opacity: 0.15;
}
.woocommerce-message .theme-woocommerce-notice__icon {
  mask: url("../../../assets/images/icon-check.svg") no-repeat 50% 50%;
  mask-size: contain;
  -webkit-mask: url("../../../assets/images/icon-info.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
}
.woocommerce-message .button {
  grid-area: button;
}
.single-product .woocommerce-message {
  align-items: center;
}
.single-product .woocommerce-message .theme-woocommerce-notice__icon {
  align-self: auto;
  margin-top: 0;
}

.woocommerce-info {
  --theme-notification-color: var(--theme-notification-info-color);
  --theme-notification-opacity: 0.15;
}
.woocommerce-info .theme-woocommerce-notice__icon {
  mask: url("../../../assets/images/icon-info.svg") no-repeat 50% 50%;
  mask-size: contain;
  -webkit-mask: url("../../../assets/images/icon-info.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
}

.woocommerce-error {
  --theme-notification-color: var(--theme-notification-error-color);
  --theme-notification-opacity: 0.15;
}
.woocommerce-error .theme-woocommerce-notice__icon {
  mask: url("../../../assets/images/icon-not-allowed.svg") no-repeat 50% 50%;
  mask-size: contain;
  -webkit-mask: url("../../../assets/images/icon-not-allowed.svg") no-repeat 50% 50%;
  -webkit-mask-size: contain;
}

.theme-woocommerce-notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "icon text button";
  grid-gap: 0.5em;
  width: 100%;
  padding: 0.8em 1em;
}

.theme-woocommerce-notice__icon {
  grid-area: icon;
  border: 0;
  width: var(--theme-notification-icon-width);
  height: var(--theme-notification-icon-height);
  background-color: currentColor;
  align-self: center;
}
@media not screen and (min-width: 1024px) {
  .theme-woocommerce-notice__icon {
    display: none;
  }
}

.theme-woocommerce-notice__text {
  grid-area: text;
  grid-row: span 1;
}

.theme-woocommerce-notice__icon + .theme-woocommerce-notice__text {
  margin-top: 0;
}

.woocommerce-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-left: -1.5em;
  list-style: none;
}
.woocommerce-categories > * {
  margin-left: 1.5em;
}
.woocommerce-categories a {
  color: var(--sm-current-fg2-color);
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  text-decoration: none;
  border-bottom: 0.1em solid transparent;
}
.woocommerce-categories a.active {
  color: var(--sm-current-accent-color);
  border-bottom: 0.1em solid currentColor;
}
.woocommerce-categories a:hover {
  color: var(--sm-current-accent-color);
  border-bottom: 0.1em solid currentColor;
}
.woocommerce-categories li {
  margin-top: 0;
  margin-bottom: 1em;
}

.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-result-count {
  margin-bottom: 0;
}
.woocommerce .woocommerce-ordering {
  --nb-block-top-spacing: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce .woocommerce-ordering {
    width: auto;
  }
}
.woocommerce .woocommerce-result-count {
  margin-top: auto;
  padding: 0.683em 0;
}
.woocommerce .site {
  overflow: hidden;
}

.woocommerce-categories[class] {
  line-height: 1;
}

.woocommerce-products-header {
  margin-bottom: var(--theme-spacing-large);
  --block-content-start: ws !important;
  --block-content-end: we !important;
}

.woocommerce-result-count,
.woocommerce-ordering {
  --block-content-start: ws;
  --block-content-end: we;
}

.woocommerce-result-count {
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
}
@media only screen and (min-width: 768px) {
  .woocommerce-result-count {
    --block-content-end: gcs;
  }
}

.woocommerce-ordering {
  justify-self: flex-end;
}
@media only screen and (min-width: 768px) {
  .woocommerce-ordering {
    --block-content-start: gce;
  }
}
@media not screen and (min-width: 768px) {
  .woocommerce-ordering {
    width: 100%;
  }
}
.woocommerce-ordering select {
  --theme-input-padding: calc(0.833em - 0.15em);
}

.woocommerce-products-header__title:empty {
  display: none;
}

.woocommerce-products-header__title {
  text-align: center;
  margin-bottom: var(--theme-spacing-normal);
}

.product-category:hover img {
  transform: translateY(-10px);
}
.product-category:hover .woocommerce-loop-category__title {
  transform: translateY(10px);
}
.product-category img,
.product-category .woocommerce-loop-category__title {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}
.woocommerce-loop-product__link .wc-block-grid__product-onsale[class][class] {
  transform: none;
}

.woocommerce-loop-product__title,
.woocommerce-loop-category__title {
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
  color: var(--sm-current-fg1-color);
  margin-top: var(--theme-spacing-smallest);
}

.woocommerce-product-gallery[class][class][class] {
  margin-bottom: 0;
}
.woocommerce-product-gallery[class][class][class] .flex-viewport + .flex-control-thumbs {
  margin-top: 0;
}
.woocommerce-product-gallery[class][class][class] .flex-control-thumbs {
  margin-left: 0;
  margin-top: calc(var(--theme-spacing) * -1);
}
.woocommerce-product-gallery[class][class][class] .flex-control-thumbs > * {
  max-width: 116px;
  padding-top: var(--thumbnails-gap);
}
@media not screen and (min-width: 1024px) {
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs > * {
    padding-left: var(--theme-spacing);
  }
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs > *:first-child {
    margin-left: calc(-1 * var(--theme-spacing));
  }
}

.single-product .woocommerce-message .button {
  order: 2;
  margin-left: auto;
}
.single-product .nb-sidecar-area > .woocommerce-notices-wrapper,
.single-product .nb-sidecar-area > .product {
  --block-content-start: ws !important;
  --block-content-end: we !important;
}

.woocommerce-product-gallery__wrapper[class][class][class][class] {
  width: auto;
  margin-left: calc(var(--theme-spacing) * -1);
}
.woocommerce-product-gallery__wrapper[class][class][class][class] > * {
  padding-left: var(--theme-spacing);
}
.woocommerce-product-gallery__wrapper[class][class][class][class] > .woocommerce-product-gallery__image:first-child {
  padding-left: 0;
  margin-left: var(--theme-spacing);
}
.woocommerce-product-gallery__wrapper[class][class][class][class] > :nth-child(n+2) {
  margin-top: var(--theme-spacing);
}
.flex-viewport[class] .woocommerce-product-gallery__wrapper[class][class][class][class] {
  margin-left: 0;
}
.flex-viewport[class] .woocommerce-product-gallery__wrapper[class][class][class][class] > * {
  padding-left: 0;
  margin-left: 0;
}
.flex-viewport[class] .woocommerce-product-gallery__wrapper[class][class][class][class] > :nth-child(n+2) {
  margin-top: 0;
}

.woocommerce-product-gallery__image a {
  display: block;
  padding: 0;
  background-color: transparent;
}
.woocommerce-product-gallery__image img {
  margin-left: auto;
  margin-right: auto;
  max-height: 80vh;
}

.woocommerce div.product div.summary {
  margin-bottom: 0;
}

.woocommerce form.cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.woocommerce form.cart[class][class][class] .group_table {
  flex-basis: 100%;
  margin-bottom: var(--theme-spacing);
}
.woocommerce form.cart[class][class][class] .group_table tbody, .woocommerce form.cart[class][class][class] .group_table td {
  display: block;
}
.woocommerce form.cart[class][class][class] .group_table tbody {
  border: 0;
}
.woocommerce form.cart[class][class][class] .group_table tr {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 0;
  background: none;
}
.woocommerce form.cart[class][class][class] .group_table tr ~ tr {
  margin-top: var(--theme-spacing);
}
.woocommerce form.cart[class][class][class] .group_table td {
  padding: 0;
}
.woocommerce form.cart[class][class][class] .group_table td:first-child {
  display: flex;
  width: auto;
  flex-basis: 100%;
  margin-bottom: var(--theme-spacing-smallest);
}
.woocommerce form.cart[class][class][class] .group_table .qty {
  margin-right: 0.25em;
}
.woocommerce form.cart[class][class][class] .group_table .woocommerce-grouped-product-list-item__label {
  margin-right: var(--theme-spacing);
}
.woocommerce form.cart[class][class][class] .group_table .woocommerce-grouped-product-list-item__label a {
  text-decoration: none;
}
.woocommerce form.cart[class][class][class] .group_table .woocommerce-grouped-product-list-item__price {
  margin-left: auto;
}
.woocommerce form.cart[class][class][class] .reset_variations {
  font-size: 1em;
  margin-top: var(--theme-spacing);
}
.woocommerce form.cart .woocommerce-grouped-product-list-item__price {
  text-align: right;
}
.woocommerce form.cart .added_to_cart {
  display: none;
}
.woocommerce form.cart .variations[class][class] {
  margin-bottom: 0;
}
.woocommerce form.cart .variations[class][class] select {
  --font-size-modifier: 0.94;
}

.woocommerce-product-details__short-description {
  margin-bottom: var(--theme-spacing);
}
.woocommerce-product-details__short-description > :not(:first-child) {
  margin-top: var(--theme-spacing-normal);
}

.c-woo-tabs {
  clear: both;
  overflow: hidden;
}

.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin-left: calc(var(--theme-spacing-large) * -1);
  margin-bottom: var(--theme-spacing-large);
}
.wc-tabs li {
  margin-top: 0;
  margin-bottom: var(--theme-spacing-smallest);
}
.wc-tabs a {
  padding-bottom: var(--theme-spacing-smallest);
}
.wc-tabs > * {
  margin-left: var(--theme-spacing-large);
}
.wc-tabs > :not(.active) a {
  text-decoration: none;
  color: var(--sm-current-fg2-color);
}
.wc-tabs > :not(.active) a:hover {
  color: var(--sm-current-accent-color);
  border-bottom: 0.125em solid currentColor;
}
.wc-tabs > .active a {
  padding-bottom: var(--theme-spacing-smallest);
  color: var(--sm-current-accent-color);
  text-decoration: none;
  border-bottom: 0.125em solid currentColor;
}

.woocommerce-product-gallery,
.entry-summary {
  margin-bottom: var(--theme-spacing-larger);
}

.c-woo-section:not(:empty):before {
  content: "";
  display: block;
  height: 0.0625em;
  background: currentColor;
  opacity: 0.2;
  margin-top: var(--theme-spacing-larger);
  margin-bottom: var(--theme-spacing-larger);
}
.c-woo-section:last-child:after {
  content: "";
  display: block;
  margin-top: var(--theme-spacing-larger);
}

.related.products > h2,
.upsells.products > h2 {
  text-align: center;
}

.woocommerce[class] .product .price {
  color: var(--sm-current-fg2-color);
  font-size: inherit;
}
.woocommerce[class] .product .price ins {
  font-weight: inherit;
  text-decoration: none;
}

.c-product-main,
.wc-tabs-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.c-product-main {
  position: relative;
  margin-top: var(--theme-spacing);
}
.c-product-main[class][class][class] .woocommerce-product-gallery + .entry-summary {
  margin-top: var(--theme-spacing);
}
@media only screen and (min-width: 1024px) {
  .c-product-main[class][class][class] {
    display: flex;
    gap: var(--theme-spacing-larger);
  }
  .c-product-main[class][class][class] > .woocommerce-product-gallery {
    float: none;
    width: auto;
    flex: 1 1 55%;
  }
  .c-product-main[class][class][class] > .entry-summary {
    float: none;
    width: auto;
    flex: 0 0 calc(35% - var(--theme-spacing-larger));
    margin-left: 0;
    margin-right: var(--theme-spacing-larger);
  }
  .c-product-main[class][class][class] .woocommerce-product-gallery + .entry-summary {
    margin-top: 0;
  }
}
.c-product-main[class][class][class] .variations select {
  display: block;
  width: var(--variation-input-width);
  margin-right: 0;
}
.c-product-main .woocommerce-product-gallery--with-images,
.c-product-main .entry-summary {
  width: 100% !important;
}

.c-product-main {
  --thumbnails-gap: 10px;
  --columns-gap: calc( var(--thumbnails-gap) * 2 );
  --variation-input-width: 100%;
  --variation-field-spacing: var(--theme-spacing-small);
}
@media only screen and (min-width: 768px) {
  .c-product-main {
    --variation-input-width: 14rem;
  }
}
.c-product-main .product_title {
  --font-size: var(--theme-heading-3-font-size);
  --current-font-family: var(--theme-heading-3-font-family);
  --current-font-style: var(--theme-heading-3-font-style);
  --current-font-weight: var(--theme-heading-3-font-weight);
  --current-line-height: var(--theme-heading-3-line-height);
  --current-letter-spacing: var(--theme-heading-3-letter-spacing);
  --current-text-transform: var(--theme-heading-3-text-transform);
  --current-color: var(--theme-heading-3-color);
  --font-size: 32;
  margin-bottom: var(--theme-spacing-smallest);
}
.c-product-main .product_title + .price {
  --font-size-modifier: 1.2;
}
.c-product-main .price {
  margin-bottom: var(--theme-spacing-normal);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
}
.c-product-main span.onsale {
  position: absolute;
  min-width: auto;
  min-height: auto;
  top: var(--theme-spacing-smallest);
  left: var(--theme-spacing-smallest);
  padding: 0.6em 1.1em 0.7em 1.2em;
  background-color: var(--theme-color-primary);
  color: var(--theme-light-primary);
  text-align: center;
  border-radius: 0;
  line-height: 1;
  font-size: 1em;
}
.c-product-main .woocommerce-variation .stock {
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-product-main .woocommerce-variation .stock:before {
  content: none;
}
.c-product-main .stock {
  position: relative;
  margin-bottom: var(--theme-spacing-small);
  padding-bottom: var(--theme-spacing-small);
  position: relative;
  margin-bottom: var(--variation-field-spacing);
  padding-bottom: var(--variation-field-spacing);
}
.c-product-main .stock:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}
@media only screen and (min-width: 768px) {
  .c-product-main .stock[class][class][class] {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
}
.c-product-main .stock[class][class][class] {
  margin-top: var(--theme-spacing-small);
  padding-top: var(--theme-spacing-small);
  color: currentColor;
}
.c-product-main .stock[class][class][class] span:not(:first-child) {
  width: var(--variation-input-width);
}
.c-product-main .stock span {
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  --current-font-weight: bold;
}
.c-product-main .woocommerce-product-rating[class][class] {
  margin-bottom: 0;
}

.woocommerce-product-attributes td,
.woocommerce-product-attributes th {
  white-space: normal;
}

.variations,
.variations tbody,
.variations tr,
.variations th,
.variations td {
  display: block;
}
.variations[class][class][class][class][class] td,
.variations[class][class][class][class][class] th {
  padding: 0;
  line-height: inherit;
}
.variations,
.variations tbody,
.variations tr {
  border: 0;
}
.variations .label {
  margin-top: 0.625em;
  margin-bottom: 0.3125em;
}

.reset_variations {
  visibility: visible;
  display: none !important;
}

.woocommerce .product .cart .quantity[class] {
  margin-bottom: var(--theme-spacing-small);
}

.add_to_cart_inline .button[class][class][class] {
  margin-left: var(--theme-spacing-smallest);
}
.add_to_cart_inline ins {
  text-decoration: none;
}

.single_variation_wrap {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .single_variation_wrap .woocommerce-variation-price {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
}
.single_variation_wrap .woocommerce-variation-price .price {
  width: var(--variation-input-width);
  margin-bottom: 0;
}
.single_variation_wrap .woocommerce-variation-price label {
  margin-bottom: 0;
}
.single_variation_wrap .woocommerce-variation-description,
.single_variation_wrap .woocommerce-variation-price,
.single_variation_wrap .woocommerce-variation-availability {
  position: relative;
}
.single_variation_wrap .woocommerce-variation-description:not(:empty),
.single_variation_wrap .woocommerce-variation-price:not(:empty),
.single_variation_wrap .woocommerce-variation-availability:not(:empty) {
  position: relative;
  margin-bottom: var(--variation-field-spacing);
  padding-bottom: var(--variation-field-spacing);
}
.single_variation_wrap .woocommerce-variation-description:not(:empty):before,
.single_variation_wrap .woocommerce-variation-price:not(:empty):before,
.single_variation_wrap .woocommerce-variation-availability:not(:empty):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}

.woocommerce-variation-price,
.woocommerce-variation-availability {
  margin-bottom: var(--theme-spacing);
}
.woocommerce-variation-price:empty,
.woocommerce-variation-availability:empty {
  display: none;
}

.woocommerce-variation-availability .stock[class][class][class] {
  margin-top: 0;
  padding-top: 0;
}

.entry-summary .button,
.entry-summary .ajax_add_to_cart {
  flex-grow: 1;
}

.product_meta {
  --font-size-modifier: 0.85;
}
.product_meta > span {
  display: block;
}
.product_meta > span a {
  font-size: inherit;
  text-decoration: none;
  opacity: 0.5;
}
.product_meta > span a:hover {
  opacity: 1;
}

.woocommerce-product-category a {
  color: inherit;
}
.u-underlined-links .woocommerce-product-category a {
  text-decoration: none;
}

.woocommerce-product-header {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: var(--theme-spacing-large);
}
.woocommerce-product-header:before {
  content: "";
  flex-grow: 1;
}
.woocommerce-product-header > * + .product_title[class][class] {
  margin-top: var(--theme-spacing-smallest);
}
.woocommerce-product-header > * + .woocommerce-product-rating {
  margin-top: var(--theme-spacing-smallest);
}
.woocommerce-product-header > * + .price {
  margin-top: var(--theme-spacing-smallest);
}

.entry-summary {
  display: flex;
  flex-direction: column;
}
.entry-summary:after {
  content: "";
  flex-grow: 1;
}

.shop_attributes[class][class][class] {
  max-width: 37.5em;
  margin-left: auto;
  margin-right: auto;
  border-top: 0;
  border-bottom: 0;
}
.shop_attributes[class][class][class] tr:last-child, .shop_attributes[class][class][class] tr:last-child th, .shop_attributes[class][class][class] tr:last-child td {
  border-bottom: 0;
}
.shop_attributes[class][class][class] tbody, .shop_attributes[class][class][class] tfoot, .shop_attributes[class][class][class] thead {
  border-bottom: 0;
}
.shop_attributes[class][class][class] tr {
  border-bottom-style: dashed;
}
.shop_attributes[class][class][class] th, .shop_attributes[class][class][class] td {
  background: none;
}
.shop_attributes[class][class][class] td {
  font: inherit;
  white-space: initial;
  border: 0;
}
.shop_attributes[class][class][class] th {
  width: 40%;
  padding: 0.75em;
  font-size: inherit;
  line-height: inherit;
  text-align: right;
  border: 0;
}
.shop_attributes[class][class][class] td p {
  padding: 0;
}

.comment-form-subscriptions:empty {
  display: none;
}

.woocommerce-product-category {
  display: flex;
}
.woocommerce-product-category li + li:before {
  content: "/";
  padding-left: 0.3em;
  padding-right: 0.3em;
}

.comment-form-subscriptions:empty {
  display: none;
}

.add_to_cart_button {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.add_to_cart_button:not([disabled]) {
  cursor: pointer;
}
.add_to_cart_button:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.add_to_cart_button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.add_to_cart_button {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.add_to_cart_button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.add_to_cart_button:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
.add_to_cart_button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
.add_to_cart_button {
  text-align: center;
}

.woocommerce-breadcrumb[class] {
  margin-bottom: var(--theme-spacing-smallest);
  --font-size-modifier: 0.95;
  color: var(--sm-current-fg2-color);
}
.woocommerce-breadcrumb[class] a {
  color: var(--sm-current-fg2-color);
  text-decoration-color: transparent;
}
.woocommerce-breadcrumb[class] a:hover {
  text-decoration-color: var(--sm-current-accent-color);
}
.woocommerce-breadcrumb[class] span:last-child {
  opacity: 0.5;
}

.related.products > h2,
.upsells > h2,
.wc-tabs .h3 {
  margin-bottom: var(--theme-spacing-normal);
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
}

.woocommerce #reviews #comments ol.commentlist {
  padding-left: 0;
}
.woocommerce #reviews #comments ol.commentlist li {
  position: relative;
  margin-bottom: 1.5em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  border: 0;
  padding: 0;
  margin-left: 3em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin-bottom: 0;
}
.woocommerce #reviews #comments ol.commentlist li .meta {
  color: var(--sm-current-fg2-color);
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  padding: 0;
  width: 2.5em;
  height: 2.5em;
  background: transparent;
  border: 0;
  margin: 0;
  object-fit: contain;
}
.woocommerce #reviews #comments ol.commentlist li:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}

.woocommerce-Reviews .woocommerce-Reviews-title {
  margin-bottom: var(--theme-spacing-smaller);
}
.woocommerce-Reviews .comment_container {
  padding-bottom: 1.5em;
}
.woocommerce-Reviews .woocommerce-review__author {
  text-transform: capitalize;
}

.zoomImg {
  transition: none !important;
}

.woocommerce-product-gallery[class][class][class] {
  display: grid;
  grid-template-areas: "thumbnails big-image";
  grid-template-columns: 5em 1fr;
  grid-column-gap: var(--columns-gap);
}
@media not screen and (min-width: 1024px) {
  .woocommerce-product-gallery[class][class][class] {
    grid-template-columns: 1fr;
    grid-template-areas: "big-image" "thumbnails";
  }
}
.woocommerce-product-gallery[class][class][class] img {
  width: auto;
}
.woocommerce-product-gallery[class][class][class] > .woocommerce-product-gallery__wrapper {
  grid-column: span 2;
}
.woocommerce-product-gallery[class][class][class] .flex-viewport {
  grid-area: big-image;
  max-height: 100vh;
}
@media only screen and (min-width: 1024px) {
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs {
    grid-area: thumbnails;
    display: flex;
    flex-direction: column;
  }
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs li {
    max-width: 100%;
    width: 100%;
  }
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs li:first-child {
    padding-top: 0;
  }
  .woocommerce-product-gallery[class][class][class] .flex-control-thumbs img {
    width: 100%;
  }
}
.woocommerce-product-gallery[class][class][class] img {
  object-fit: contain;
}

.variations_form .variations tr {
  justify-content: space-between;
  position: relative;
  margin-bottom: var(--variation-field-spacing);
  padding-bottom: var(--variation-field-spacing);
}
.variations_form .variations tr:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}
@media only screen and (min-width: 768px) {
  .variations_form .variations tr {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
  display: none;
  margin: 0;
}

.quantity {
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .quantity {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .quantity .quantity__wrapper {
    width: var(--variation-input-width);
  }
}
.quantity .quantity__wrapper {
  display: flex;
  align-items: center;
}
.quantity {
  width: 100%;
}
.quantity .qty {
  appearance: textfield;
  box-shadow: none;
  width: 2em;
  padding: 0;
  font-feature-settings: "lnum";
}
@media only screen and (min-width: 768px) {
  .quantity label {
    margin-bottom: 0;
  }
}
.quantity .qty_button {
  position: relative;
  background-color: transparent;
  background-image: none;
  color: var(--sm-current-fg2-color);
  border: 0;
  width: 2em;
  height: 2em;
  padding: 0;
  font-family: system-font-sans-serif-clear, "SF Pro Display", "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitsream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
  box-shadow: var(--theme-input-box-shadow);
  border-radius: 50%;
}
.quantity .qty_button.button--is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quantity .qty_button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sm-current-fg2-color);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 10;
  transition: all 0.2s ease;
}
.quantity .qty_button:after {
  z-index: 11;
  transition: all 0.2s ease;
}
.quantity .qty_button:not(.button--is-disabled):hover:before {
  opacity: 1;
  border-color: var(--sm-current-accent-color);
  border-width: 1em;
}
.quantity .qty_button:not(.button--is-disabled):hover:after {
  cursor: pointer;
  background-color: var(--sm-current-bg-color);
}

.woocommerce-cart .promo-bar {
  display: none;
}
.woocommerce table.shop_table {
  border: 0;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
  padding: var(--theme-spacing-smaller) 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce table.shop_table th, .woocommerce table.shop_table td {
    padding: var(--theme-spacing-small);
  }
  .woocommerce table.shop_table th:first-child, .woocommerce table.shop_table td:first-child {
    padding-left: 0;
  }
  .woocommerce table.shop_table th:last-child, .woocommerce table.shop_table td:last-child {
    padding-right: 0;
  }
}
@media not screen and (min-width: 768px) {
  .woocommerce table.shop_table td.actions {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .woocommerce table.shop_table td.actions button[name=update_cart] {
    margin-left: var(--theme-spacing-fluid-smallest);
  }
}

.woocommerce-cart table.cart {
  margin-bottom: var(--theme-spacing--huge);
}
.woocommerce-cart table.cart td.product-name a {
  border-bottom: 0;
  text-decoration: none;
}
.woocommerce-cart table.cart .product-thumbnail a {
  box-shadow: none;
  border-bottom: 0;
  background: none;
}
.woocommerce-cart table.cart .product-remove a {
  width: auto;
  color: inherit !important;
  background: none;
  text-align: left;
}
.woocommerce-cart table.cart a {
  display: block;
}
.woocommerce-cart table.cart .product-thumbnail {
  width: calc(5 * var(--theme-spacing));
}
.woocommerce-cart table.cart .product-thumbnail img {
  display: block;
  width: 100%;
}
.woocommerce-checkout-review-order[class][class][class] .shop_table tr {
  display: flex;
  justify-content: space-between;
}
.woocommerce-checkout-review-order[class][class][class] .shop_table tr:not(.order-total) {
  position: relative;
}
.woocommerce-checkout-review-order[class][class][class] .shop_table tr:not(.order-total):after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.2;
}
.woocommerce-checkout-review-order[class][class][class] .shop_table td, .woocommerce-checkout-review-order[class][class][class] .shop_table th {
  border: 0;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout-review-order[class][class][class] .shop_table td:first-child, .woocommerce-checkout-review-order[class][class][class] .shop_table th:first-child {
    padding-left: 0;
  }
}
.woocommerce-checkout-review-order[class][class][class] .shop_table td:last-child, .woocommerce-checkout-review-order[class][class][class] .shop_table th:last-child {
  padding-right: 0;
  text-align: right;
}
.shop_table td {
  white-space: inherit;
}
@media not screen and (min-width: 768px) {
  .shop_table td {
    background-color: transparent !important;
  }
}
.shop_table tr {
  border: 0;
}
.shop_table[class][class][class] {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.cart-collaterals .shop_table[class][class][class] {
  border-bottom: 0;
}
.shop_table[class] #shipping_method li {
  margin-bottom: var(--theme-spacing);
}
.shop_table .cart-subtotal td:last-child,
.shop_table .order-total td:last-child {
  text-align: right;
}
.shop_table .variation {
  font-size: 0.85em;
}
.shop_table .variation dl, .shop_table .variation dd {
  font-size: 1em;
}
.shop_table .variation dl p, .shop_table .variation dd p {
  font-weight: 400;
}
.shop_table .variation dt, .shop_table .variation dl {
  font-weight: 400;
}
.shop_table[class*=review-order-table] .variation {
  font-size: 0.55em;
}
.shop_table[class*=review-order-table] .variation dd span,
.shop_table[class*=review-order-table] .variation dt span {
  font-size: inherit;
  font-weight: inherit;
}
.shop_table .quantity label {
  display: none;
}

.cart_totals .checkout-button[class][class][class] {
  display: block;
}

.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0;
}

.woocommerce-cart #content table.cart[class] .coupon .input-text {
  width: 13em;
}

.shipping-calculator-button {
  opacity: 0.5;
}
.shipping-calculator-button[class][class]:after {
  content: none;
}

.woocommerce-cart-form + .cart-collaterals {
  margin-top: var(--theme-spacing-larger);
}
.woocommerce-cart-form[class][class][class][class][class] .button:disabled {
  cursor: not-allowed;
}
.woocommerce-cart-form[class][class][class][class][class] .coupon button {
  overflow: visible !important;
}
.woocommerce-cart-form a {
  color: currentColor;
}
.woocommerce-cart-form .quantity .quantity__wrapper {
  justify-content: flex-end;
}
.woocommerce-cart-form .quantity .quantity__wrapper button {
  cursor: pointer;
}
.woocommerce-cart .actions .coupon:before, .woocommerce-cart .actions .coupon:after {
  content: none !important;
}
.woocommerce-cart .actions .coupon[class][class] {
  display: flex;
  align-items: stretch;
  gap: 0.625em;
}
.woocommerce-cart .actions .coupon[class][class] > .input-text {
  flex-grow: 1;
  margin-right: auto;
}

.woocommerce .quantity .qty {
  padding-left: 0;
  padding-right: 0;
}

.shop_table .shipping [data-title]:before {
  margin-bottom: 1.5em;
}
@media not screen and (min-width: 768px) {
  .shop_table .shipping [data-title]:before {
    float: none;
    display: block;
    text-align: left;
    margin-bottom: 1.25em;
  }
}

.cart_list.product_list_widget {
  flex-basis: 0;
}

.menu-item--cart > a {
  text-decoration: none;
}
.menu-item--cart > a:hover .menu-item__icon {
  color: var(--sm-current-bg-color);
}
.menu-item--cart > a:hover .menu-item__icon:after {
  border-width: 0.875em;
  border-color: var(--sm-current-accent-color);
}
.menu-item--cart:not(.no-icon) > a:before {
  content: none !important;
}
.menu-item--cart.no-icon .menu-item__icon, .menu-item--cart.icon-only .menu-item__label {
  display: none;
}
.menu-item--cart:not(.icon-only) .menu-item__label + .menu-item__icon {
  margin-left: var(--theme-spacing-smallest);
}
.menu-item--cart .menu-item__icon {
  position: relative;
  display: inline-block;
  width: 1.75em;
  text-align: center;
  font-feature-settings: "lnum";
  transform: translateZ(0);
  transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.menu-item--cart .menu-item__icon:after {
  content: "";
  display: block;
  width: 1.75em;
  height: 1.75em;
  border: 0.125em solid var(--theme-navigation-links-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

:is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text {
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: var(--theme-input-padding);
  margin: 0;
  color: var(--sm-current-fg1-color);
  border-radius: var(--theme-input-border-radius);
  background-color: var(--sm-current-bg-color);
  box-shadow: var(--theme-input-box-shadow);
  border: 0;
  transition: all 0.2s ease-in-out;
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  -webkit-font-smoothing: initial;
  -webkit-appearance: none;
}
:is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:hover {
  --theme-input-box-shadow: var(--theme-input-hover-box-shadow);
}
:is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:focus, :is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:active {
  --theme-input-border-color: var(--theme-input-focus-border-color);
  --theme-input-box-shadow: var(--theme-input-focus-box-shadow);
  outline: 0;
}
:is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
[class*=invalid] :is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
  --theme-input-color: var(--theme-input-error-color);
  --theme-input-placeholder-color: var(--theme-input-error-color);
  --theme-input-placeholder-opacity: 0;
}
[class*=invalid] :is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:hover {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}
[class*=invalid] :is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:focus, [class*=invalid] :is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text:active {
  --theme-input-box-shadow: var(--theme-input-focus-error-box-shadow);
}
:is(#add_payment_method, .woocommerce-cart, .woocommerce-checkout) table.cart td.actions .coupon .input-text {
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
}

@media not screen and (min-width: 768px) {
  .woocommerce-cart-form__contents .cart_item {
    margin-bottom: var(--theme-spacing-smaller);
  }
  .woocommerce-cart-form__contents .product-remove[class][class] {
    border: 0;
  }
}

.woocommerce-checkout:not(.woocommerce-order-received) .site-content {
  margin-top: 0 !important;
  padding-bottom: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received) .col2-set {
  width: auto;
}
.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-1,
.woocommerce-checkout:not(.woocommerce-order-received) .col2-set .col-2 {
  float: none;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .woocommerce-checkout:not(.woocommerce-order-received) .col2-set {
    float: left;
    width: 55%;
    padding-left: 5.25%;
    padding-right: 8.75%;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) [id=order_review_heading],
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout-review-order {
    float: right;
    clear: right;
    width: 45%;
    padding-left: 3.5%;
    padding-right: 5.25%;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout {
    position: relative;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout:before {
    display: block;
    background-color: var(--sm-current-fg2-color);
    content: "";
    position: absolute;
    top: calc(-1 * var(--theme-spacing-larger));
    right: -100vw;
    bottom: 0;
    left: 55%;
    pointer-events: none;
    opacity: 0.04;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout:after {
    content: " ";
    display: table;
    clear: both;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout > * {
    position: relative;
    z-index: 20;
  }
  .woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-checkout a:not(:is(:hover, :focus)) {
    color: currentColor;
    text-decoration-color: currentColor;
  }
}
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table {
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  margin: 0;
  border-top: 1px solid #d3ced2;
}
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table tbody,
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table tfoot,
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table thead {
  border: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table td:first-child, .woocommerce-checkout:not(.woocommerce-order-received) table.shop_table th:first-child {
  padding-left: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table td:last-child, .woocommerce-checkout:not(.woocommerce-order-received) table.shop_table th:last-child {
  padding-right: 0;
  text-align: right;
}
.woocommerce-checkout:not(.woocommerce-order-received) table.shop_table tbody .product-name {
  --current-font-weight: bold;
}
.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method[id] li {
  margin-bottom: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method[id] li + li {
  margin-top: 1.25em;
}
.woocommerce-checkout:not(.woocommerce-order-received) #shipping_method[id] li li input {
  margin-top: 0.1em;
}
.woocommerce-checkout:not(.woocommerce-order-received) #payment #place_order {
  float: none;
  display: block;
  width: 100%;
  margin-top: 1.25em;
}
.woocommerce-checkout:not(.woocommerce-order-received) form .form-row {
  padding: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received) form .form-row:not(:last-child) {
  margin-bottom: var(--theme-spacing);
}
.woocommerce-checkout:not(.woocommerce-order-received) form .form-row label {
  margin-bottom: var(--theme-spacing-smallest);
}
.woocommerce-checkout:not(.woocommerce-order-received) form .form-row textarea {
  line-height: inherit;
}
.woocommerce-checkout:not(.woocommerce-order-received) form {
  margin-top: var(--theme-spacing-larger);
  padding-bottom: var(--theme-spacing-larger);
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle,
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon {
  position: relative;
  z-index: 20;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon-toggle {
  overflow: hidden;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: calc(var(--theme-spacing) * -1);
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon .input-text {
  height: 100%;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon > p:not([class]) {
  flex-basis: 100%;
  margin-bottom: var(--theme-spacing-smaller);
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon > p {
  width: auto;
  padding-left: var(--theme-spacing);
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon > p.form-row-last {
  padding-left: var(--theme-spacing-smaller);
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon button {
  height: 100%;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon .form-row-first {
  flex-grow: 1;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-form-coupon + .woocommerce-billing-fields {
  margin-top: var(--theme-spacing);
}
.woocommerce-checkout:not(.woocommerce-order-received) .clear {
  display: none;
}
.woocommerce-checkout:not(.woocommerce-order-received) .woocommerce-info {
  margin-bottom: var(--theme-spacing);
}
@media not screen and (min-width: 1024px) {
  .woocommerce-checkout:not(.woocommerce-order-received) .site-content {
    padding-top: 0;
  }
}
.woocommerce-checkout:not(.woocommerce-order-received) .nb-header,
.woocommerce-checkout:not(.woocommerce-order-received) .entry-header,
.woocommerce-checkout:not(.woocommerce-order-received) .site-footer,
.woocommerce-checkout:not(.woocommerce-order-received) .entry-thumbnail,
.woocommerce-checkout:not(.woocommerce-order-received) .nb-header--mobile,
.woocommerce-checkout:not(.woocommerce-order-received) .c-menu-toggle,
.woocommerce-checkout:not(.woocommerce-order-received) .promo-bar {
  display: none;
}
.woocommerce-checkout:not(.woocommerce-order-received) #page {
  padding-top: 0 !important;
}
.woocommerce-checkout:not(.woocommerce-order-received) .site-content[class][class][class] {
  padding-top: 0;
}
.woocommerce-checkout:not(.woocommerce-order-received)[class][class][class][class] input[type=checkbox] {
  margin-bottom: 0;
  margin-top: 0.2em;
}
.woocommerce-checkout:not(.woocommerce-order-received) .nb-sidecar-area > .woocommerce {
  --block-content-start: ws !important;
  --block-content-end: we !important;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: none;
  border-radius: 0;
}
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0;
  border: 0;
}
#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  --font-size: var(--theme-body-font-size);
  --current-font-family: var(--theme-body-font-family);
  --current-line-height: var(--theme-body-line-height);
  --current-font-weight: var(--theme-body-font-weight);
  --current-font-style: var(--theme-body-font-style);
  --current-letter-spacing: var(--theme-body-letter-spacing);
  font-family: var(--current-font-family);
  font-size: var(--current-font-size);
  line-height: var(--current-line-height);
  font-weight: var(--current-font-weight);
  font-style: var(--current-font-style);
  letter-spacing: var(--current-letter-spacing);
  text-transform: var(--current-text-transform);
  border-top: 1px solid #d3ced2;
}
#add_payment_method #payment .wc_payment_method,
.woocommerce-cart #payment .wc_payment_method,
.woocommerce-checkout #payment .wc_payment_method {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font: inherit;
  padding-top: 1em;
  padding-bottom: 1em;
}
#add_payment_method #payment .wc_payment_method label,
.woocommerce-cart #payment .wc_payment_method label,
.woocommerce-checkout #payment .wc_payment_method label {
  display: flex;
  align-items: center;
}
#add_payment_method #payment .wc_payment_method label > *,
.woocommerce-cart #payment .wc_payment_method label > *,
.woocommerce-checkout #payment .wc_payment_method label > * {
  margin-left: 0.625em;
}
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  flex-basis: 100%;
  margin-left: 2.575em;
  margin-bottom: 0;
  padding: 0;
  opacity: 0.8;
  background: none;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-cart #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
  content: none;
}
#add_payment_method #payment .about_paypal[class],
.woocommerce-cart #payment .about_paypal[class],
.woocommerce-checkout #payment .about_paypal[class] {
  line-height: inherit;
}
#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 0;
}

.woocommerce-terms-and-conditions-wrapper[class][class][class] > * {
  position: relative;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.woocommerce-terms-and-conditions-wrapper[class][class][class] > *:before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.2;
}
.woocommerce-terms-and-conditions-wrapper[class][class][class] .validate-required {
  margin-bottom: 0;
}
.woocommerce-terms-and-conditions-wrapper[class][class][class] .validate-required .woocommerce-form__input {
  margin-top: 0;
  margin-right: 0.625em;
}

.woocommerce-checkout-title[class] {
  margin-bottom: var(--theme-spacing-smallest);
}
.woocommerce-checkout-title[class] a {
  color: inherit;
  text-decoration: none;
}
.woocommerce-checkout-title[class] a:is(:hover, :focus) {
  color: var(--sm-current-accent-color);
}

.woocommerce-checkout-breadcrumbs {
  list-style: none;
  padding-left: 0;
  margin-bottom: var(--theme-spacing-normal);
}
.woocommerce-checkout-breadcrumbs li {
  display: inline-block;
  margin-bottom: 0;
}
.woocommerce-checkout-breadcrumbs li a {
  --current-font-weight: bold;
}
.woocommerce-checkout-breadcrumbs li a:not(:is(:hover, :focus)) {
  color: currentColor;
  text-decoration-color: currentColor;
}
.woocommerce-checkout-breadcrumbs li:last-child {
  --current-font-weight: bold;
  color: var(--sm-current-fg2-color);
  opacity: 0.6;
}
.woocommerce-checkout-breadcrumbs li + li {
  padding-left: 10px;
}
.woocommerce-checkout-breadcrumbs li + li:before {
  content: "";
  position: static;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 20px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-top: 0;
  border-left: 0;
  transform: translateY(-10%) rotate(-45deg);
  transition: var(--theme-transition);
  transition-property: opacity;
  opacity: 0.5;
}

:is(.woocommerce-billing-fields, .woocommerce-additional-fields) > h3 {
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
  margin-bottom: var(--theme-spacing-smaller);
}

.woocommerce-account-fields {
  margin-top: var(--theme-spacing-small);
}

[id=order_review_heading] {
  margin-bottom: var(--theme-spacing);
}

[id=customer_details] .col-1 + .col-2 {
  margin-top: var(--theme-spacing);
}

#ship-to-different-address {
  margin-bottom: var(--theme-spacing);
}
#ship-to-different-address input[type=checkbox] {
  margin-bottom: 0;
}

[id=customer_details] {
  margin-bottom: var(--theme-spacing-normal);
}
@media only screen and (min-width: 768px) {
  [id=customer_details] {
    margin-bottom: 0;
  }
}

.woocommerce-shipping-fields {
  margin-top: var(--theme-spacing);
}

.woocommerce .woocommerce-customer-details address {
  padding: 0;
  border: 0;
}

ul.order_details[class] {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-left: calc(var(--theme-spacing-large) * -1);
  margin-bottom: var(--theme-spacing-large);
}
ul.order_details[class] > li {
  margin-top: var(--theme-spacing-large);
  padding-left: var(--theme-spacing-large);
  padding-right: var(--theme-spacing-large);
  margin-right: 0;
}
@media not screen and (min-width: 768px) {
  ul.order_details[class] > li {
    flex: 0 0 100%;
    border-right: 0;
  }
}

.woocommerce-checkout:not(.woocommerce-order-received) {
  padding-top: 0;
}

#form-coupon {
  display: none !important;
}

.checkout-button {
  width: 100%;
}

.order-total .amount {
  --font-size-modifier: 1.33;
}

.cart_totals h2 {
  --font-size: var(--theme-heading-3-font-size);
  --current-font-family: var(--theme-heading-3-font-family);
  --current-font-style: var(--theme-heading-3-font-style);
  --current-font-weight: var(--theme-heading-3-font-weight);
  --current-line-height: var(--theme-heading-3-line-height);
  --current-letter-spacing: var(--theme-heading-3-letter-spacing);
  --current-text-transform: var(--theme-heading-3-text-transform);
  --current-color: var(--theme-heading-3-color);
  margin-bottom: var(--theme-spacing-normal);
}

.cross-sells h2 {
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
  margin-bottom: var(--theme-spacing-normal);
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  color: var(--sm-current-fg2-color);
}

#ship-to-different-address {
  --font-size: var(--theme-heading-4-font-size);
  --current-font-family: var(--theme-heading-4-font-family);
  --current-font-weight: var(--theme-heading-4-font-weight);
  --current-font-style: var(--theme-heading-4-font-style);
  --current-line-height: var(--theme-heading-4-line-height);
  --current-letter-spacing: var(--theme-heading-4-letter-spacing);
  --current-text-transform: var(--theme-heading-4-text-transform);
  --current-color: var(--theme-heading-4-color);
}
#ship-to-different-address .woocommerce-form__label {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 768px) {
  .woocommerce-form-login-toggle[class][class],
  .woocommerce-form-login[class][class] {
    position: relative;
    z-index: 20;
    margin: 0;
    border: 0;
    float: left;
    width: 55%;
    padding-left: 5.25%;
    padding-right: 8.75%;
  }
}

.woocommerce-form-login-toggle[class][class] {
  margin-top: var(--theme-spacing-larger);
}

.woocommerce-checkout-review-order-table td {
  white-space: initial;
}

.wc_payment_methods .wc_payment_method:only-child .payment_box {
  margin-left: 0 !important;
}

#shipping_method[class][class][class][class] li label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  border: 0;
  background-color: transparent;
}
.woocommerce-form-coupon-toggle .woocommerce-info:before {
  content: none;
}
.woocommerce-form-coupon-toggle .woocommerce-info:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--sm-current-fg2-color);
  z-index: -1;
  opacity: 0.04;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  padding-left: 0;
}

.wc_payment_methods p {
  color: var(--sm-current-fg2-color);
  --font-size-modifier: 0.9;
}
.wc_payment_methods .woocommerce-info:before {
  content: none;
}

@media not screen and (min-width: 480px) {
  .woocommerce-shipping-totals[class][class] {
    flex-direction: column;
  }
  .woocommerce-shipping-totals[class][class] td {
    padding-left: 0;
    padding-top: 0;
    background-color: transparent !important;
  }
  @media not screen and (min-width: 768px) {
    .woocommerce-shipping-totals[class][class] td {
      padding: var(--theme-spacing-smaller);
    }
  }
}
.woocommerce-shipping-totals[class][class] td {
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .woocommerce-shipping-totals[class][class] td {
    padding-left: 5em;
  }
}

.woocommerce-shipping-methods label {
  --current-font-weight: 400;
}

.woocommerce ul#shipping_method li input[class][class],
#payment ul.payment_methods li input[class][class] {
  margin-top: 0.2em;
}

.woocommerce-checkout-title {
  --font-size: var(--theme-heading-2-font-size);
  --current-font-family: var(--theme-heading-2-font-family);
  --current-font-style: var(--theme-heading-2-font-style);
  --current-font-weight: var(--theme-heading-2-font-weight);
  --current-line-height: var(--theme-heading-2-line-height);
  --current-letter-spacing: var(--theme-heading-2-letter-spacing);
  --current-text-transform: var(--theme-heading-2-text-transform);
  --current-color: var(--theme-heading-2-color);
}

.cart-subtotal .woocommerce-Price-amount {
  --current-font-weight: bold;
}

.payment_box {
  margin-top: 0 !important;
}

.woocommerce-shipping-destination {
  white-space: normal;
}

.woocommerce .form-row.woocommerce-invalid[class][class][class] label {
  color: var(--theme-input-error-color);
}
.woocommerce .form-row .required[class][class][class] {
  color: var(--theme-input-error-color);
}

.woocommerce form .form-row.woocommerce-invalid input.input-text {
  border-color: var(--theme-input-error-color);
}

.woocommerce-invalid #terms {
  outline: 0;
}

.woocommerce-checkout .woocommerce-customer-details,
.woocommerce-checkout .woocommerce-order-details,
.woocommerce-checkout .woocommerce-order-downloads {
  margin-bottom: 0;
}
.woocommerce-checkout * + .woocommerce-customer-details,
.woocommerce-checkout * + .woocommerce-order-details,
.woocommerce-checkout * + .woocommerce-order-downloads {
  margin-top: var(--theme-spacing-larger);
}

.woocommerce-customer-details[class],
.woocommerce-order-details[class],
.woocommerce-order-downloads[class] {
  margin-bottom: 0;
}

.woocommerce-checkout .entry-content > .woocommerce {
  --block-top-spacing: 0;
  --block-bottom-spacing: 0;
}

.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns {
  margin-top: calc(var(--theme-spacing-normal) * -1);
}
.woocommerce-order-received .woocommerce-customer-details .woocommerce-columns > * {
  margin-top: var(--theme-spacing-normal);
}
.woocommerce-order-received .woocommerce-column__title {
  margin-bottom: var(--theme-spacing-normal);
}

.wc-stripe-elements-field {
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: var(--theme-input-padding);
  margin: 0;
  color: var(--sm-current-fg1-color);
  border-radius: var(--theme-input-border-radius);
  background-color: var(--sm-current-bg-color);
  box-shadow: var(--theme-input-box-shadow);
  border: 0;
  transition: all 0.2s ease-in-out;
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  -webkit-font-smoothing: initial;
  -webkit-appearance: none;
}
.wc-stripe-elements-field:hover {
  --theme-input-box-shadow: var(--theme-input-hover-box-shadow);
}
.wc-stripe-elements-field:focus, .wc-stripe-elements-field:active {
  --theme-input-border-color: var(--theme-input-focus-border-color);
  --theme-input-box-shadow: var(--theme-input-focus-box-shadow);
  outline: 0;
}
.wc-stripe-elements-field[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
[class*=invalid] .wc-stripe-elements-field {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
  --theme-input-color: var(--theme-input-error-color);
  --theme-input-placeholder-color: var(--theme-input-error-color);
  --theme-input-placeholder-opacity: 0;
}
[class*=invalid] .wc-stripe-elements-field:hover {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}
[class*=invalid] .wc-stripe-elements-field:focus, [class*=invalid] .wc-stripe-elements-field:active {
  --theme-input-box-shadow: var(--theme-input-focus-error-box-shadow);
}
.wc-stripe-elements-field.StripeElement--invalid {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}

.stripe-source-errors {
  display: flex;
}
.stripe-source-errors,
.stripe-source-errors * {
  width: 100%;
}

.woocommerce-checkout #payment ul.payment_methods li .stripe-card-brand {
  right: var(--theme-input-padding);
}

#wc-stripe-cc-form iframe {
  font-size: 23px;
}
#wc-stripe-cc-form iframe html {
  font-size: inherit;
}

.wc-pao-addon,
[id=product-addons-total] {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .wc-pao-addon {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 10px;
    justify-content: space-between;
    align-items: center;
  }
}
.wc-pao-addon label {
  margin: 0;
}
.wc-pao-addon select[class][class] {
  width: var(--variation-input-width);
  margin-left: 0;
  margin-right: 0;
}
.wc-pao-addon .wc-pao-addon-wrap[class][class] {
  margin: 0;
  padding: 0;
}

.wc-pao-addon-container {
  position: relative;
  margin-bottom: var(--variation-field-spacing);
  padding-bottom: var(--variation-field-spacing);
}
.wc-pao-addon-container:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}

.product-addon-totals {
  position: relative;
}
.product-addon-totals[class][class] {
  margin-top: 0;
  padding-top: 0;
  border: 0;
  position: relative;
  margin-bottom: var(--variation-field-spacing);
  padding-bottom: var(--variation-field-spacing);
}
.product-addon-totals[class][class]:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sm-current-fg2-color);
  opacity: 0.3;
}
.product-addon-totals .wc-pao-subtotal-line {
  position: relative;
}
.product-addon-totals .wc-pao-subtotal-line[class][class] {
  margin-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  border: 0;
}
.product-addon-totals ul {
  padding-left: 0;
}

.wc-block-featured-category {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class] {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class] {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
.wc-block-featured-category .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:disabled {
  opacity: 0.25;
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class] {
  padding: 0;
  border-width: 0;
  cursor: pointer;
  position: relative;
  padding-right: 1.15em;
  padding-bottom: 0.3em;
  margin-right: calc(-1 * 1.15em);
  background: none !important;
  text-decoration: none;
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.15em;
  width: calc(100% - 1.15em);
  height: 0.1em;
  transform: scale3d(1, 1, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transform-origin: left;
  background: currentColor;
  transition: var(--theme-button-transition);
  transition-property: transform;
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
  content: "";
}
@supports (mask-clip: initial) or (-webkit-mask-clip: initial) {
  .wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    mask-size: cover;
    -webkit-mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    background-color: currentColor;
    vertical-align: text-bottom;
    transform: translate(0, -50%) scale(-1, 1);
    transition: var(--theme-button-transition);
    transition-property: opacity, transform;
  }
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
  opacity: 0;
  transform: translate(0, -50%) scale(-1, 1);
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus) {
  color: var(--theme-button-text-color);
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
  transform-origin: right;
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):after {
  opacity: 1;
  transform: translate(0.4em, -50%) scale(-1, 1);
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class] {
  overflow: visible;
}
.wc-block-featured-category .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:before {
  top: unset;
}
.wc-block-featured-category .wc-block-featured-category__wrapper {
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.wc-block-featured-category.has-left-content {
  justify-content: flex-start;
}
.wc-block-featured-category.has-left-content .wc-block-featured-category__title,
.wc-block-featured-category.has-left-content .wc-block-featured-category__description,
.wc-block-featured-category.has-left-content .wc-block-featured-category__price {
  margin-left: 0;
  text-align: left;
}
.wc-block-featured-category.has-right-content {
  justify-content: flex-end;
}
.wc-block-featured-category.has-right-content .wc-block-featured-category__title,
.wc-block-featured-category.has-right-content .wc-block-featured-category__description,
.wc-block-featured-category.has-right-content .wc-block-featured-category__price {
  margin-right: 0;
  text-align: right;
}
.wc-block-featured-category .wc-block-featured-category__title,
.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__price {
  color: var(--sm-current-fg2-color);
  line-height: 1.25;
  margin-bottom: 0;
  text-align: center;
}
.wc-block-featured-category .wc-block-featured-category__title a,
.wc-block-featured-category .wc-block-featured-category__title a:hover,
.wc-block-featured-category .wc-block-featured-category__title a:focus,
.wc-block-featured-category .wc-block-featured-category__title a:active,
.wc-block-featured-category .wc-block-featured-category__description a,
.wc-block-featured-category .wc-block-featured-category__description a:hover,
.wc-block-featured-category .wc-block-featured-category__description a:focus,
.wc-block-featured-category .wc-block-featured-category__description a:active,
.wc-block-featured-category .wc-block-featured-category__price a,
.wc-block-featured-category .wc-block-featured-category__price a:hover,
.wc-block-featured-category .wc-block-featured-category__price a:focus,
.wc-block-featured-category .wc-block-featured-category__price a:active {
  color: var(--sm-current-bg-color);
}
.wc-block-featured-category .wc-block-featured-category__title,
.wc-block-featured-category .wc-block-featured-category__description,
.wc-block-featured-category .wc-block-featured-category__price,
.wc-block-featured-category .wc-block-featured-category__link {
  width: 100%;
  padding: 0 48px 16px 48px;
  z-index: 1;
}
.wc-block-featured-category .wc-block-featured-category__title {
  margin-top: 0;
}
.wc-block-featured-category .wc-block-featured-category__title::before {
  display: none;
}
.wc-block-featured-category .wc-block-featured-category__description p {
  margin: 0;
}
.wc-block-featured-category.alignleft, .wc-block-featured-category.alignright {
  width: 100%;
}
.wc-block-featured-category::after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit;
}
@supports (position: sticky) {
  .wc-block-featured-category::after {
    content: none;
  }
}
.wc-block-featured-category.aligncenter, .wc-block-featured-category.alignleft, .wc-block-featured-category.alignright {
  display: flex;
}

.woocommerce-shop [class][class][class] .woocommerce-products-header {
  display: none;
}
[class][class][class] .wc-block-grid {
  --column-gap: var(--theme-spacing-normal);
  --row-gap: var(--theme-spacing-normal);
  clear: both;
}
@media not screen and (min-width: 768px) {
  [class][class][class] .wc-block-grid {
    overflow-x: hidden;
  }
}
[class][class][class] .wc-block-grid.has-aligned-buttons .wc-block-grid__product {
  display: flex;
  flex-direction: column;
}
[class][class][class] .wc-block-grid.has-1-columns .wc-block-grid__products {
  display: block;
}
[class][class][class] .wc-block-grid.has-1-columns .wc-block-grid__product {
  margin-left: auto;
  margin-right: auto;
}
[class][class][class] .wc-block-grid.has-3-columns .wc-block-grid__product-title {
  --font-size-modifier: 0.92;
}
[class][class][class] .wc-block-grid.has-4-columns .wc-block-grid__product-title {
  --font-size-modifier: 0.85;
}
@media only screen and (min-width: 1024px) {
  [class][class][class] .wc-block-grid.has-2-columns .wc-block-grid__product {
    flex: 1 0 calc(50%);
    max-width: 50%;
  }
  [class][class][class] .wc-block-grid.has-3-columns .wc-block-grid__product {
    flex: 1 0 calc(33.3333333333%);
    max-width: 33.3333333333%;
  }
  [class][class][class] .wc-block-grid.has-4-columns .wc-block-grid__product {
    flex: 1 0 calc(25%);
    max-width: 25%;
  }
  [class][class][class] .wc-block-grid.has-5-columns .wc-block-grid__product {
    flex: 1 0 calc(20%);
    max-width: 20%;
  }
  [class][class][class] .wc-block-grid.has-6-columns .wc-block-grid__product {
    flex: 1 0 calc(16.6666666667%);
    max-width: 16.6666666667%;
  }
  [class][class][class] .wc-block-grid.has-7-columns .wc-block-grid__product {
    flex: 1 0 calc(14.2857142857%);
    max-width: 14.2857142857%;
  }
  [class][class][class] .wc-block-grid.has-8-columns .wc-block-grid__product {
    flex: 1 0 calc(12.5%);
    max-width: 12.5%;
  }
}
@media only screen and (min-width: 768px) {
  [class][class][class] .wc-block-grid .wc-block-grid__product {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
[class][class][class] .wc-block-grid__product-image img {
  display: block;
}
[class][class][class] .wc-block-grid__products {
  list-style: none;
  padding: 0;
  margin: 0 calc(-1 * var(--column-gap)) 0 0;
}
@media only screen and (min-width: 768px) {
  [class][class][class] .wc-block-grid__products {
    display: flex;
    flex-wrap: wrap;
  }
}
[class][class][class] .wc-block-grid__products li {
  margin-top: 0;
}
[class][class][class] .wc-block-grid__product {
  position: relative;
  width: auto;
  margin: 0;
  padding: 0 var(--column-gap) 0 0;
  border: 0;
  float: none;
  clear: both;
  font-size: inherit;
  text-align: left;
}
[class][class][class] .wc-block-grid__product .add_to_cart_button:not(.loading):not(.added):after {
  content: "+";
  padding-left: 0.5em;
  right: 0;
}
[class][class][class] .wc-block-grid__product-onsale {
  position: absolute;
  top: var(--theme-spacing-smallest);
  left: var(--theme-spacing-smallest);
  right: auto;
  z-index: 10;
  margin: 0;
  border: none;
  padding: 0.21em 0.6em 0.23em;
  background-color: var(--sm-current-accent-color);
  color: #FFFFFF;
  border-radius: 0;
  --font-size: var(--theme-meta-font-size);
  --current-font-family: var(--theme-meta-font-family);
  --current-font-weight: var(--theme-meta-font-weight);
  --current-font-style: var(--theme-meta-font-style);
  --current-line-height: var(--theme-meta-line-height);
  --current-letter-spacing: var(--theme-meta-letter-spacing);
  --current-text-transform: var(--theme-meta-text-transform);
}
[class][class][class] .wc-block-grid__product-title {
  margin-top: var(--theme-spacing-smallest);
  margin-bottom: 0;
  --font-size: var(--theme-heading-3-font-size);
  --current-font-family: var(--theme-heading-3-font-family);
  --current-font-style: var(--theme-heading-3-font-style);
  --current-font-weight: var(--theme-heading-3-font-weight);
  --current-line-height: var(--theme-heading-3-line-height);
  --current-letter-spacing: var(--theme-heading-3-letter-spacing);
  --current-text-transform: var(--theme-heading-3-text-transform);
  --current-color: var(--theme-heading-3-color);
  --font-size-modifier: 1;
  font-family: var(--current-font-family);
  font-size: var(--current-font-size);
  line-height: var(--current-line-height);
  font-weight: var(--current-font-weight);
  font-style: var(--current-font-style);
  letter-spacing: var(--current-letter-spacing);
  text-transform: var(--current-text-transform);
  transition: var(--theme-links-transition);
}
[class][class][class] .wc-block-grid__product-link {
  --current-aspect-ratio: 1;
  position: relative;
  display: block;
  text-decoration: none;
}
[class][class][class] .wc-block-grid__product-link, [class][class][class] .wc-block-grid__product-link:before,
[class][class][class] .wc-block-grid__product-link .wc-block-grid__product-image {
  padding-top: calc(100% / var(--current-aspect-ratio));
}
[class][class][class] .wc-block-grid__product-link:before,
[class][class][class] .wc-block-grid__product-link .wc-block-grid__product-image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
[class][class][class] .wc-block-grid__product-link .wc-block-grid__product-image img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  width: auto;
  height: auto;
}
@supports (transform: translate(-50%, -50%)) {
  [class][class][class] .wc-block-grid__product-link .wc-block-grid__product-image img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@supports (object-fit: cover) {
  [class][class][class] .wc-block-grid__product-link .wc-block-grid__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transform: none;
  }
}
[class][class][class] .wc-block-grid__product-link:before {
  content: "";
  background-color: var(--theme-light-tertiary);
}
[class][class][class] .wc-block-grid__product-add-to-cart {
  text-align: center;
}
[class][class][class] .wc-block-grid__product-add-to-cart .add_to_cart_button[class] {
  display: block;
  width: 100%;
}
[class][class][class] .wc-block-grid__product > :not(:last-child) {
  margin-bottom: var(--theme-spacing-smallest);
}
[class][class][class] .wc-block-grid__product-price {
  color: var(--theme-dark-primary);
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
}
[class][class][class] .wc-block-grid__product-price del {
  opacity: 0.5;
}
[class][class][class] .wc-block-grid__product-price ins {
  text-decoration: none;
}
[class][class][class] .wc-block-grid__product-image img {
  width: 100%;
}
[class][class][class] .wc-block-grid__product-rating .star-rating {
  overflow: hidden;
  position: relative;
  width: 5.3em;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  font-family: star; /* stylelint-disable-line */
  font-weight: 400;
  display: inline-block;
  margin: 0 auto;
  text-align: left;
}
[class][class][class] .wc-block-grid__product-rating .star-rating::before {
  content: "SSSSS";
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  opacity: 0.5;
  color: var(--sm-current-accent-color);
}
[class][class][class] .wc-block-grid__product-rating .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 1.5em;
  overflow: hidden;
}
[class][class][class] .wc-block-grid__product-rating .star-rating span::before {
  content: "SSSSS";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--sm-current-accent-color);
}
@media (pointer: fine) {
  [class][class][class] .wp-block-button.wc-block-grid__product-add-to-cart {
    transform: translateY(-10px);
    opacity: 0;
  }
  [class][class][class] .wc-block-grid__product:hover .wc-block-grid__product-add-to-cart {
    transform: translateY(0);
    opacity: 1;
  }
  [class][class][class] .wc-block-grid__product:hover .wc-block-grid__product-link,
  [class][class][class] .wc-block-grid__product:hover .wc-block-grid__product-price,
  [class][class][class] .wc-block-grid__product:hover .wc-block-grid__product-rating,
  [class][class][class] .wc-block-grid__product:hover .wc-block-grid__product-onsale {
    transform: translateY(-10px);
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
[class][class][class] .wc-block-grid__product-link,
[class][class][class] .wc-block-grid__product-price,
[class][class][class] .wc-block-grid__product-rating,
[class][class][class] .wc-block-grid__product-onsale {
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[class][class][class] .wc-block-grid__product-add-to-cart {
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-property: opacity, transform;
}
[class][class][class] .wc-block-grid__product-add-to-cart .added_to_cart {
  display: none !important;
}

.wc-block-product-categories.is-dropdown {
  display: flex;
}
.wc-block-product-categories.is-dropdown select {
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: var(--theme-input-padding);
  margin: 0;
  color: var(--sm-current-fg1-color);
  border-radius: var(--theme-input-border-radius);
  background-color: var(--sm-current-bg-color);
  box-shadow: var(--theme-input-box-shadow);
  border: 0;
  transition: all 0.2s ease-in-out;
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  -webkit-font-smoothing: initial;
  -webkit-appearance: none;
}
.wc-block-product-categories.is-dropdown select:hover {
  --theme-input-box-shadow: var(--theme-input-hover-box-shadow);
}
.wc-block-product-categories.is-dropdown select:focus, .wc-block-product-categories.is-dropdown select:active {
  --theme-input-border-color: var(--theme-input-focus-border-color);
  --theme-input-box-shadow: var(--theme-input-focus-box-shadow);
  outline: 0;
}
.wc-block-product-categories.is-dropdown select[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
[class*=invalid] .wc-block-product-categories.is-dropdown select {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
  --theme-input-color: var(--theme-input-error-color);
  --theme-input-placeholder-color: var(--theme-input-error-color);
  --theme-input-placeholder-opacity: 0;
}
[class*=invalid] .wc-block-product-categories.is-dropdown select:hover {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}
[class*=invalid] .wc-block-product-categories.is-dropdown select:focus, [class*=invalid] .wc-block-product-categories.is-dropdown select:active {
  --theme-input-box-shadow: var(--theme-input-focus-error-box-shadow);
}
.wc-block-product-categories.is-dropdown select {
  --select-icon-size: 6px;
  padding-left: 1.125em;
  padding-right: 3.125em;
  background-image: linear-gradient(45deg, transparent 50%, var(--sm-current-fg2-color) 50%), linear-gradient(135deg, var(--sm-current-fg2-color) 50%, transparent 50%);
  background-position: calc(98% - var(--theme-input-padding) - var(--select-icon-size)) center, calc(98% - var(--theme-input-padding)) center;
  background-size: var(--select-icon-size) var(--select-icon-size), var(--select-icon-size) var(--select-icon-size);
  background-repeat: no-repeat;
  -webkit-appearance: none;
}

.wc-block-product-categories__button {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.wc-block-product-categories__button:not([disabled]) {
  cursor: pointer;
}
.wc-block-product-categories__button:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.wc-block-product-categories__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.wc-block-product-categories__button {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.wc-block-product-categories__button:not([disabled]) {
  cursor: pointer;
}
.wc-block-product-categories__button:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.wc-block-product-categories__button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.wc-block-product-categories__button {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.wc-block-product-categories__button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.wc-block-product-categories__button:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
.wc-block-product-categories__button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
.wc-block-product-categories__button path {
  fill: var(--theme-button-text-color);
}
.wc-block-product-categories__button:hover path {
  fill: var(--theme-button-hover-text-color);
}

.wc-block-featured-product {
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class] {
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class] {
  --current-button-text-color: var(--theme-button-hover-text-color);
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:before {
  transform: scale3d(0, 1, 1);
  transform-origin: left;
  background-color: var(--theme-button-background-color);
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus) {
  --current-button-text-color: var(--theme-button-text-color);
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(1, 1, 1);
}
.wc-block-featured-product .wp-block-button.is-style-secondary .wp-block-button__link[class][class][class]:disabled {
  opacity: 0.25;
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class] {
  padding: 0;
  border-width: 0;
  cursor: pointer;
  position: relative;
  padding-right: 1.15em;
  padding-bottom: 0.3em;
  margin-right: calc(-1 * 1.15em);
  background: none !important;
  text-decoration: none;
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.15em;
  width: calc(100% - 1.15em);
  height: 0.1em;
  transform: scale3d(1, 1, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transform-origin: left;
  background: currentColor;
  transition: var(--theme-button-transition);
  transition-property: transform;
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
  content: "";
}
@supports (mask-clip: initial) or (-webkit-mask-clip: initial) {
  .wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    mask-size: cover;
    -webkit-mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    background-color: currentColor;
    vertical-align: text-bottom;
    transform: translate(0, -50%) scale(-1, 1);
    transition: var(--theme-button-transition);
    transition-property: opacity, transform;
  }
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:after {
  opacity: 0;
  transform: translate(0, -50%) scale(-1, 1);
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus) {
  color: var(--theme-button-text-color);
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
  transform-origin: right;
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:not([disabled]):is(:hover, :focus):after {
  opacity: 1;
  transform: translate(0.4em, -50%) scale(-1, 1);
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class] {
  overflow: visible;
}
.wc-block-featured-product .wp-block-button.is-style-text .wp-block-button__link[class][class][class]:before {
  top: unset;
}
.wc-block-featured-product .wc-block-featured-product__wrapper {
  overflow: hidden;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
}
.wc-block-featured-product.has-left-content {
  justify-content: flex-start;
}
.wc-block-featured-product.has-left-content .wc-block-featured-product__title,
.wc-block-featured-product.has-left-content .wc-block-featured-product__variation,
.wc-block-featured-product.has-left-content .wc-block-featured-product__description,
.wc-block-featured-product.has-left-content .wc-block-featured-product__price {
  margin-left: 0;
  text-align: left;
}
.wc-block-featured-product.has-right-content {
  justify-content: flex-end;
}
.wc-block-featured-product.has-right-content .wc-block-featured-product__title,
.wc-block-featured-product.has-right-content .wc-block-featured-product__variation,
.wc-block-featured-product.has-right-content .wc-block-featured-product__description,
.wc-block-featured-product.has-right-content .wc-block-featured-product__price {
  margin-right: 0;
  text-align: right;
}
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation,
.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__price {
  color: var(--sm-current-fg2-color);
  line-height: 1.25;
  margin-bottom: 0;
  text-align: center;
}
.wc-block-featured-product .wc-block-featured-product__title a,
.wc-block-featured-product .wc-block-featured-product__title a:hover,
.wc-block-featured-product .wc-block-featured-product__title a:focus,
.wc-block-featured-product .wc-block-featured-product__title a:active,
.wc-block-featured-product .wc-block-featured-product__variation a,
.wc-block-featured-product .wc-block-featured-product__variation a:hover,
.wc-block-featured-product .wc-block-featured-product__variation a:focus,
.wc-block-featured-product .wc-block-featured-product__variation a:active,
.wc-block-featured-product .wc-block-featured-product__description a,
.wc-block-featured-product .wc-block-featured-product__description a:hover,
.wc-block-featured-product .wc-block-featured-product__description a:focus,
.wc-block-featured-product .wc-block-featured-product__description a:active,
.wc-block-featured-product .wc-block-featured-product__price a,
.wc-block-featured-product .wc-block-featured-product__price a:hover,
.wc-block-featured-product .wc-block-featured-product__price a:focus,
.wc-block-featured-product .wc-block-featured-product__price a:active {
  color: var(--sm-current-bg-color);
}
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation,
.wc-block-featured-product .wc-block-featured-product__description,
.wc-block-featured-product .wc-block-featured-product__price,
.wc-block-featured-product .wc-block-featured-product__link {
  width: 100%;
  padding: 16px 48px 0 48px;
  z-index: 1;
}
.wc-block-featured-product .wc-block-featured-product__title,
.wc-block-featured-product .wc-block-featured-product__variation {
  margin-top: 0;
  border: 0;
}
.wc-block-featured-product .wc-block-featured-product__title::before,
.wc-block-featured-product .wc-block-featured-product__variation::before {
  display: none;
}
.wc-block-featured-product .wc-block-featured-product__variation {
  font-style: italic;
  padding-top: 0;
}
.wc-block-featured-product .wc-block-featured-product__description p {
  margin: 0;
  line-height: 1.5em;
}
.wc-block-featured-product.alignleft, .wc-block-featured-product.alignright {
  width: 100%;
}
.wc-block-featured-product::after {
  display: block;
  content: "";
  font-size: 0;
  min-height: inherit;
}
@supports (position: sticky) {
  .wc-block-featured-product::after {
    content: none;
  }
}
.wc-block-featured-product.aligncenter, .wc-block-featured-product.alignleft, .wc-block-featured-product.alignright {
  display: flex;
}

.wc-block-review-order-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wc-block-order-select__select[class][class] {
  width: 100%;
  height: auto;
  max-width: 100%;
  padding: var(--theme-input-padding);
  margin: 0;
  color: var(--sm-current-fg1-color);
  border-radius: var(--theme-input-border-radius);
  background-color: var(--sm-current-bg-color);
  box-shadow: var(--theme-input-box-shadow);
  border: 0;
  transition: all 0.2s ease-in-out;
  --font-size: var(--theme-input-font-size);
  --current-font-family: var(--theme-input-font-family);
  --current-font-weight: var(--theme-input-font-weight);
  --current-font-style: var(--theme-input-font-style);
  --current-line-height: var(--theme-input-line-height);
  --current-letter-spacing: var(--theme-input-letter-spacing);
  --current-text-transform: var(--theme-input-text-transform);
  -webkit-font-smoothing: initial;
  -webkit-appearance: none;
}
.wc-block-order-select__select[class][class]:hover {
  --theme-input-box-shadow: var(--theme-input-hover-box-shadow);
}
.wc-block-order-select__select[class][class]:focus, .wc-block-order-select__select[class][class]:active {
  --theme-input-border-color: var(--theme-input-focus-border-color);
  --theme-input-box-shadow: var(--theme-input-focus-box-shadow);
  outline: 0;
}
.wc-block-order-select__select[class][class][disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
[class*=invalid] .wc-block-order-select__select[class][class] {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
  --theme-input-color: var(--theme-input-error-color);
  --theme-input-placeholder-color: var(--theme-input-error-color);
  --theme-input-placeholder-opacity: 0;
}
[class*=invalid] .wc-block-order-select__select[class][class]:hover {
  --theme-input-box-shadow: var(--theme-input-error-box-shadow);
}
[class*=invalid] .wc-block-order-select__select[class][class]:focus, [class*=invalid] .wc-block-order-select__select[class][class]:active {
  --theme-input-box-shadow: var(--theme-input-focus-error-box-shadow);
}
.wc-block-order-select__select[class][class] {
  --select-icon-size: 6px;
  padding-left: 1.125em;
  padding-right: 3.125em;
  background-image: linear-gradient(45deg, transparent 50%, var(--sm-current-fg2-color) 50%), linear-gradient(135deg, var(--sm-current-fg2-color) 50%, transparent 50%);
  background-position: calc(98% - var(--theme-input-padding) - var(--select-icon-size)) center, calc(98% - var(--theme-input-padding)) center;
  background-size: var(--select-icon-size) var(--select-icon-size), var(--select-icon-size) var(--select-icon-size);
  background-repeat: no-repeat;
  -webkit-appearance: none;
  width: auto;
}
.wc-block-order-select__select[class][class][disabled] {
  border-color: var(--sm-current-bg-color);
  background-color: var(--sm-current-bg-color);
}

.is-loading .wc-block-review-list-item__text {
  display: block;
  width: 60%;
}
.is-loading .wc-block-review-list-item__info .wc-block-review-list-item__meta .wc-block-review-list-item__author {
  width: 5em;
}
.is-loading .wc-block-review-list-item__info .wc-block-review-list-item__meta .wc-block-review-list-item__product {
  display: none;
}
.is-loading .wc-block-review-list-item__info .wc-block-review-list-item__meta .wc-block-review-list-item__rating .wc-block-review-list-item__rating__stars > span {
  display: none;
}
.is-loading .wc-block-review-list-item__info .wc-block-review-list-item__published-date {
  height: 1em;
  width: 7.5em;
}

.editor-styles-wrapper .wc-block-review-list-item__item,
.wc-block-review-list-item__item {
  margin: 0 0 4.5em;
  list-style: none;
}

.wc-block-review-list-item__info {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2em;
}

.wc-block-review-list-item__meta {
  grid-column: 1;
  grid-row: 1;
}

.has-image .wc-block-review-list-item__info {
  grid-template-columns: 4em 1fr;
}
.has-image .wc-block-review-list-item__meta {
  grid-column: 2;
}

.wc-block-review-list-item__image {
  height: 3em;
  grid-column: 1;
  grid-row: 1/3;
  width: 3em;
  position: relative;
}
.wc-block-review-list-item__image img {
  width: 100%;
  height: 100%;
  display: block;
}

.wc-block-review-list-item__verified {
  width: 1.3em;
  height: 1.3em;
  text-indent: 1.3em;
  margin: 0;
  line-height: 1.3em;
  overflow: hidden;
  position: absolute;
  right: -0.45em;
  bottom: -0.45em;
}
.wc-block-review-list-item__verified::before {
  width: 1.3em;
  height: 1.3em;
  background: transparent url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="21" height="21" fill="none"%3E%3Ccircle cx="10.5" cy="10.5" r="10.5" fill="%23fff"/%3E%3Cpath fill="%23008A21" fill-rule="evenodd" d="M2.1667 10.5003c0-4.6 3.7333-8.3333 8.3333-8.3333s8.3334 3.7333 8.3334 8.3333S15.1 18.8337 10.5 18.8337s-8.3333-3.7334-8.3333-8.3334zm2.5 0l4.1666 4.1667 7.5001-7.5-1.175-1.1833-6.325 6.325-2.9917-2.9834-1.175 1.175z" clip-rule="evenodd"/%3E%3Cmask id="a" width="17" height="17" x="2" y="2" maskUnits="userSpaceOnUse"%3E%3Cpath fill="%23fff" fill-rule="evenodd" d="M2.1667 10.5003c0-4.6 3.7333-8.3333 8.3333-8.3333s8.3334 3.7333 8.3334 8.3333S15.1 18.8337 10.5 18.8337s-8.3333-3.7334-8.3333-8.3334zm2.5 0l4.1666 4.1667 7.5001-7.5-1.175-1.1833-6.325 6.325-2.9917-2.9834-1.175 1.175z" clip-rule="evenodd"/%3E%3C/mask%3E%3Cg mask="url(%23a)"%3E%3Cpath fill="%23008A21" d="M.5.5h20v20H.5z"/%3E%3C/g%3E%3C/svg%3E') center center no-repeat; /* stylelint-disable-line */
  display: block;
  content: "";
}

.wc-block-review-list-item__meta {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
}
.wc-block-review-list-item__meta::after {
  order: 3;
  content: "";
  flex-basis: 100%;
}

.wc-block-review-list-item__product {
  display: block;
  font-weight: bold;
  order: 1;
  margin-right: 0.5em;
}

.wc-block-review-list-item__author {
  display: block;
  font-weight: bold;
  order: 1;
  margin-right: 0.5em;
}

.wc-block-review-list-item__product + .wc-block-review-list-item__author {
  font-weight: normal;
  order: 4;
}

.wc-block-review-list-item__published-date {
  order: 5;
}

.wc-block-review-list-item__author + .wc-block-review-list-item__published-date::before {
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  border-right: 0.1em solid var(--sm-current-bg-color);
  height: 1em;
  vertical-align: middle;
}

.wc-block-review-list-item__author:first-child + .wc-block-review-list-item__published-date::before,
.wc-block-review-list-item__rating + .wc-block-review-list-item__author + .wc-block-review-list-item__published-date::before {
  display: none;
}

.wc-block-review-list-item__rating {
  order: 2;
}
.wc-block-review-list-item__rating > .wc-block-review-list-item__rating__stars {
  display: inline-block;
  top: 0;
  overflow: hidden;
  position: relative;
  height: 1.618em;
  line-height: 1.618;
  font-size: 1em;
  width: 5.3em;
  font-family: star; /* stylelint-disable-line */
  font-weight: 400;
  vertical-align: top;
}
.wc-block-review-list-item__rating > .wc-block-review-list-item__rating__stars::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.wc-block-review-list-item__rating > .wc-block-review-list-item__rating__stars span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.wc-block-review-list-item__rating > .wc-block-review-list-item__rating__stars span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: var(--sm-current-accent-color);
}

.wc-block-review-list[class][class][class] {
  margin-left: 0;
  padding-left: 0;
}

.wc-block-review-order-select {
  margin-bottom: var(--theme-spacing-normal);
}

.wc-block-product-search__fields {
  display: flex;
}

.wc-block-product-search__button svg {
  fill: currentColor;
}

.wc-block-cart .wc-block-components-main {
  overflow: hidden;
}

.wc-block-cart__submit-button {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.wc-block-cart__submit-button:not([disabled]) {
  cursor: pointer;
}
.wc-block-cart__submit-button:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.wc-block-cart__submit-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.wc-block-cart__submit-button {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.wc-block-cart__submit-button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.wc-block-cart__submit-button:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
.wc-block-cart__submit-button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
.wc-block-cart__submit-button {
  --theme-button-x-padding: 2.5em;
  --theme-button-y-padding: 1em;
  padding: var(--theme-button-y-padding) var(--theme-button-x-padding);
  width: 100%;
  text-align: center;
  text-decoration: none;
  display: block;
}

.woocommerce-checkout form.wc-block-checkout__form,
.woocommerce-checkout form.wc-block-components-totals-coupon__form {
  margin-top: 0;
  padding-bottom: 0;
}

.wc-block-checkout__actions .wc-block-checkout__actions_row {
  gap: 20%;
}

.wc-block-components-checkout-place-order-button {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.wc-block-components-checkout-place-order-button:not([disabled]) {
  cursor: pointer;
}
.wc-block-components-checkout-place-order-button:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.wc-block-components-checkout-place-order-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.wc-block-components-checkout-place-order-button {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
}
.wc-block-components-checkout-place-order-button:before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--theme-button-border-width));
  right: calc(-1 * var(--theme-button-border-width));
  bottom: calc(-1 * var(--theme-button-border-width));
  left: calc(-1 * var(--theme-button-border-width));
  z-index: -1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transition: var(--current-button-transition);
  transition-property: transform;
}
.wc-block-components-checkout-place-order-button:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
.wc-block-components-checkout-place-order-button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
.wc-block-components-checkout-place-order-button {
  flex: 1;
  text-align: center;
}

.wc-block-components-checkout-return-to-cart-button {
  position: relative;
  padding-right: 1.15em;
  padding-bottom: 0.3em;
  margin-right: calc(-1 * 1.15em);
  background: none !important;
  text-decoration: none;
}
.wc-block-components-checkout-return-to-cart-button:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 1.15em;
  width: calc(100% - 1.15em);
  height: 0.1em;
  transform: scale3d(1, 1, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  transform-origin: left;
  background: currentColor;
  transition: var(--theme-button-transition);
  transition-property: transform;
}
.wc-block-components-checkout-return-to-cart-button:after {
  content: "";
}
@supports (mask-clip: initial) or (-webkit-mask-clip: initial) {
  .wc-block-components-checkout-return-to-cart-button:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    mask-size: cover;
    -webkit-mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    background-color: currentColor;
    vertical-align: text-bottom;
    transform: translate(0, -50%) scale(-1, 1);
    transition: var(--theme-button-transition);
    transition-property: opacity, transform;
  }
}
.wc-block-components-checkout-return-to-cart-button:after {
  opacity: 0;
  transform: translate(0, -50%) scale(-1, 1);
}
.wc-block-components-checkout-return-to-cart-button:not([disabled]):is(:hover, :focus) {
  color: var(--theme-button-text-color);
}
.wc-block-components-checkout-return-to-cart-button:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
  transform-origin: right;
}
.wc-block-components-checkout-return-to-cart-button:not([disabled]):is(:hover, :focus):after {
  opacity: 1;
  transform: translate(0.4em, -50%) scale(-1, 1);
}
.wc-block-components-checkout-return-to-cart-button {
  color: currentColor;
  padding-right: 0;
  margin-right: 0;
}
.wc-block-components-checkout-return-to-cart-button::after {
  content: none;
}
.wc-block-components-checkout-return-to-cart-button::before {
  right: 0;
  width: 100%;
}

.wc-block-components-totals-coupon {
  padding: 0;
}
.wc-block-components-totals-coupon label {
  margin-top: 0;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  position: relative;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]::after {
  content: none;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
  background-color: var(--sm-current-accent-color);
}
.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: #fff;
}

.woocommerce td,
.woocommerce th {
  border: 0;
}

.woocommerce-pagination {
  --current-arrow-padding: calc(0.4em + 0.75em + 1.15em);
  display: flex;
  justify-content: center;
  margin-left: calc(var(--theme-spacing-smallest) * -1);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  font-feature-settings: "lnum";
}
.woocommerce-pagination a {
  text-decoration: none;
}
.woocommerce-pagination > .page-numbers {
  margin-left: var(--theme-spacing-smallest);
}
.woocommerce-pagination > .prev,
.woocommerce-pagination > .next {
  position: relative;
  transition: var(--theme-transition);
  transition-property: all;
}
.woocommerce-pagination > .prev:after,
.woocommerce-pagination > .next:after {
  content: "";
}
@supports (mask-clip: initial) or (-webkit-mask-clip: initial) {
  .woocommerce-pagination > .prev:after,
  .woocommerce-pagination > .next:after {
    position: absolute;
    top: 50%;
    right: 0;
    display: inline-block;
    width: 1.15em;
    height: 1.15em;
    mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    mask-size: cover;
    -webkit-mask: url("../../../assets/images/icon-arrow.svg") no-repeat 50% 50%;
    -webkit-mask-size: cover;
    background-color: currentColor;
    vertical-align: text-bottom;
    transform: translate(0, -50%) scale(-1, 1);
    transition: var(--theme-button-transition);
    transition-property: opacity, transform;
  }
}
.woocommerce-pagination > .prev:after,
.woocommerce-pagination > .next:after {
  right: 0.75em !important;
}
.woocommerce-pagination > .prev {
  padding-left: var(--current-arrow-padding);
}
.woocommerce-pagination > .prev:after {
  right: auto;
  left: 0.75em;
  transform: translate(0, -50%);
}
.woocommerce-pagination > .next {
  padding-right: var(--current-arrow-padding);
  margin-right: 0;
}
.woocommerce-pagination > .prev,
.woocommerce-pagination > .current:last-child {
  margin-right: auto;
}
.woocommerce-pagination > .next,
.woocommerce-pagination > .current:first-child {
  margin-left: auto;
}
.woocommerce-pagination[class][class][class] {
  margin-bottom: var(--theme-spacing-larger);
}

.wc-block-grid__products {
  list-style: none !important;
}

.woocommerce-Reviews > :not(:first-child) {
  margin-top: var(--theme-spacing-normal);
}
.woocommerce-Reviews > [id=comments] > :not(:first-child) {
  margin-top: var(--theme-spacing);
}

.woocommerce #review_form #respond [id=commentform] > :not(:first-child) {
  margin-top: var(--theme-spacing);
}
.woocommerce #review_form #respond [id=commentform] > p {
  margin-bottom: 0;
}
.woocommerce #review_form #respond [id=commentform] > .form-submit {
  margin-left: auto;
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit {
  --theme-button-text-color: var(--sm-current-bg-color);
  --theme-button-background-color: var(--sm-button-background-color);
  --theme-button-border-color: var(--sm-button-background-color);
  --theme-button-hover-text-color: var(--sm-button-background-color);
  --theme-button-hover-background-color: transparent;
  --theme-button-hover-border-color: var(--sm-button-background-color);
  display: inline-block;
  text-decoration: none;
  --current-button-background-color: var(--theme-button-background-color);
  --current-button-border-color: var(--theme-button-border-color);
  --current-button-text-color: var(--theme-button-text-color);
  --current-button-transition: var(--theme-button-transition);
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:not([disabled]) {
  cursor: pointer;
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:not([disabled]):is(:hover, :focus) {
  --current-button-background-color: var(--theme-button-hover-background-color);
  --current-button-border-color: var(--theme-button-hover-border-color);
  --current-button-text-color: var(--theme-button-hover-text-color);
  --current-button-transition: var(--theme-button-hover-transition);
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit {
  padding: var(--theme-button-padding);
  border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
  border-radius: var(--theme-button-border-radius);
  background-color: var(--current-button-background-color);
  color: var(--current-button-text-color);
  transition: var(--current-button-transition);
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
  background-color: transparent;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  overflow: hidden;
  background-color: transparent;
  background-size: calc(200% + 4 * var(--theme-button-border-width)) calc(100% + 4 * var(--theme-button-border-width));
  background-position: calc(100% + var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:not([disabled]):is(:hover, :focus) {
  background-position: calc(-1 * var(--theme-button-border-width)) calc(-1 * var(--theme-button-border-width));
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:before {
  transform: scale3d(1, 1, 1);
  transform-origin: right;
  background-color: var(--theme-button-background-color);
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit:not([disabled]):is(:hover, :focus):before {
  transform: scale3d(0, 1, 1);
}
.woocommerce #review_form #respond [id=commentform] > .form-submit .submit {
  background-image: linear-gradient(to right, var(--theme-button-hover-background-color) 50%, var(--theme-button-background-color) 50%);
}

.comment-form-rating .stars > span {
  display: flex;
}

.woocommerce form .form-row label {
  line-height: inherit;
}

.woocommerce p.stars > span {
  gap: 0.25em;
}
.woocommerce p.stars a {
  width: 1.5em;
  height: 1.5em;
}
.woocommerce p.stars a:before {
  font-size: 1.5em;
}
.woocommerce .star-rating {
  float: none;
}
.woocommerce .star-rating span {
  font: inherit;
}
.woocommerce .star-rating span:before {
  color: var(--sm-current-accent-color);
}
.woocommerce .wc-block-grid__product-title + .star-rating {
  margin-top: var(--theme-spacing-smallest);
}

.woocommerce-page .entry-content[class][class][class][class],
.woocommerce-page .wc-block-grid.alignwide[class][class][class][class] {
  --block-content-start: ws;
  --block-content-end: we;
}
.woocommerce-page .entry-content [class*=__inner-container] {
  padding-left: 0;
  padding-right: 0;
}

.wc-block-grid .woocommerce-Price-amount {
  --font-size: var(--theme-button-font-size);
  --current-font-family: var(--theme-button-font-family);
  --current-font-weight: var(--theme-button-font-weight);
  --current-font-style: var(--theme-button-font-style);
  --current-line-height: var(--theme-button-line-height);
  --current-letter-spacing: var(--theme-button-letter-spacing);
  --current-text-transform: var(--theme-button-text-transform);
}