@charset "UTF-8";
/*!
Theme Name: Va Shikkee
Theme URI: https://varbane.com/
Author: varbane.com
Author URI: https://varbane.com/
Description: Va Shikkee WordPress Theme is private theme created for Shikkee
Tested up to: 7.2
Requires PHP: 7.2
License: private theme
License URI: LICENSE
Text Domain: Shikkee
Tags: Shikkee

(C) 2025 varbane.com

*/
:root {
  --va-accent: #f11a7b;
  --va-accent-dark: #282626;
  --va-yellow: #f3c704;
  --va-text: #f7f7f7;
  --va-text-dark: #1b1c20;
  --va-text-light: #f7f7f7;
  --va-back: #151515;
  --va-back-light: #08080808;
  --va-cards-back: #1d191a;
  --va-grey: #939393;
  --va-white: white;
  --va-hover: #f11a7b;
  --va-hover-dark: #b8125c;
  --va-userfont: rubik, sans-serif;
  --va-titlefont: rubik, sans-serif;
  --va-regular: 18px;
  --va-offset: 80px;
  --va-offset-middle: 40px;
  --va-offset-small: 24px;
  --va-gap: 48px;
  --va-border-radius: 12px;
  --va-transition: transform 0.3s;
  --va-transform: scale(1.02);
  --va-overlay: rgba(255, 255, 255, 0.05);
  --va-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  --va-padding: 24px;
  --va-caps-red: #f11a7b;
  --va-caps-red-back: #3c041d;
  --va-caps-blue: #14b0ff;
  --va-caps-blue-back: #003a58;
  --va-caps-green: #00f55e;
  --va-caps-green-back: #1d3d0c;
  --va-caps-brown: #fc3f3f;
  --va-caps-brown-back: #520f0f;
  --va-caps-purple: #e235f9;
  --va-caps-purple-back: #51015c;
}
@media (max-width: 800px) {
  :root {
    --va-regular: 17px;
  }
}
@media (max-width: 480px) {
  :root {
    --va-regular: 16px;
    --va-padding: 16px;
  }
}

.thin {
  font-weight: 100;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.sbold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.ebold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

@font-face {
  font-family: rubik;
  font-weight: 300;
  src: url(fonts/rubik-300.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 400;
  src: url(fonts/rubik-400.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 500;
  src: url(fonts/rubik-500.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 600;
  src: url(fonts/rubik-600.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 700;
  src: url(fonts/rubik-700.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 800;
  src: url(fonts/rubik-800.woff2) format("woff2");
}
@font-face {
  font-family: rubik;
  font-weight: 900;
  src: url(fonts/rubik-900.woff2) format("woff2");
}
@font-face {
  font-family: "icomoon";
  src: url("fonts/icomoon.eot?afdm8f");
  src: url("fonts/icomoon.eot?afdm8f#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?afdm8f") format("truetype"), url("fonts/icomoon.woff?afdm8f") format("woff"), url("fonts/icomoon.svg?afdm8f#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "WooCommerce";
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot");
  src: url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.woff") format("woff"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.ttf") format("truetype"), url("/wp-content/plugins/woocommerce/assets/fonts/WooCommerce.svg#WooCommerce") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* ========= BASE RESET ========= */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  font-family: var(--va-userfont);
  font-size: var(--va-regular);
  color: var(--va-text);
  background-color: var(--va-back);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  border: 0;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus-visible {
  outline-offset: 2px;
}

a,
a:visited {
  color: var(--va-white);
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.entry-content a,
.entry-content a:visited {
  color: var(--va-accent);
  text-decoration: underline;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  font-size: 54px;
  font-family: var(--va-titlefont);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration-color: var(--va-hover);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}
@media (max-width: 800px) {
  h1 {
    font-size: 44px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.02em;
  line-height: 130%;
  text-transform: capitalize;
  font-family: var(--va-titlefont);
}
@media (max-width: 800px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 130%;
  font-family: var(--va-titlefont);
}
@media (max-width: 800px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: 22px;
  font-family: var(--va-titlefont);
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.02em;
}
@media (max-width: 800px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-weight: 600;
  font-family: var(--va-titlefont);
  font-size: 16px;
  letter-spacing: 0.02em;
}

p {
  color: var(--va-text);
}

p,
a {
  font-size: var(--va-regular);
  font-weight: 400;
  font-family: var(--va-userfont);
}

main {
  padding-top: 100px;
}
@media (max-width: 480px) {
  main {
    padding-top: 88px;
  }
}

#root,
#__next {
  isolation: isolate;
}

input::-ms-clear {
  display: none;
}

.va-container {
  width: 1440px;
  max-width: 96%;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 460px) {
  .va-container {
    padding: 0 16px;
    max-width: unset;
    width: 100%;
  }
}

.va-container .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  left: 50%;
  position: relative;
}

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

.va-display-flex {
  display: flex !important;
}

.va-display-block {
  display: block !important;
}

.lock-scroll {
  max-height: 100vh;
  overflow-y: hidden;
}

.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.va-overflow {
  overflow: hidden;
}

.va-rotate::before {
  transform: rotate(90deg);
}

.va-gap {
  gap: var(--va-offset-small);
}

.va-center {
  align-items: center;
}

.va-section-bottom-margin {
  margin-bottom: var(--va-offset);
}

.va-title {
  font-size: 65px;
  font-family: var(--va-titlefont);
  font-weight: 800;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: var(--va-white);
  text-transform: uppercase;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 800px) {
  .va-title {
    font-size: 56px;
  }
}
@media (max-width: 640px) {
  .va-title {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .va-title {
    font-size: 40px;
  }
}

.wp-block-heading {
  margin-top: 16px;
}

.va-subtitle {
  font-size: 31px;
  font-family: var(--va-titlefont);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: var(--va-white);
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
}
@media (max-width: 800px) {
  .va-subtitle {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .va-subtitle {
    font-size: 24px;
  }
}

.va-smalltext,
.va-smalltext p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 130%;
}

.va-btn,
.button,
.wp-element-button {
  color: var(--va-white) !important;
  font-family: var(--va-titlefont);
  font-size: 18px;
  font-weight: 600;
  padding: 16px 24px 16px 24px !important;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--va-accent);
  cursor: pointer;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: 700;
  transition: 0.5s ease-out;
  line-height: 1;
  border-radius: 100px;
  text-decoration: none !important;
}
@media (max-width: 480px) {
  .va-btn,
  .button,
  .wp-element-button {
    font-size: 16px;
    padding: 12px 24px 12px 24px !important;
  }
}

.va-btn:hover,
.button:hover,
.wp-element-button:hover {
  background: var(--va-hover-dark);
  color: var(--va-white);
}

.va-btn-border {
  border: 3px solid var(--va-white);
}

.va-icons {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.va-icon::before {
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.va-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.va-img__inner {
  position: relative;
  height: 0;
  border: none;
}

.va-img__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.va-img__2-1 {
  padding-top: 55%;
}

.va-img__3-2 {
  padding-top: 80%;
}

.va-plus {
  color: var(--va-white) !important;
  background-color: var(--va-accent);
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  font-size: 14px;
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 11;
}

.va-plus:hover {
  background-color: var(--va-hover-dark);
  color: var(--va-white);
}

.va-hidden {
  visibility: hidden;
  position: absolute;
  top: -116px;
}

.va-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1000;
  visibility: visible;
  transform: translateY(-116px);
  animation: slideDown 0.4s ease-in-out forwards;
  height: 72px !important;
}
.va-sticky .va-header__wrapper {
  height: 72px !important;
}
@media (min-width: 1380px) {
  .va-sticky .menu-item-has-children:hover .sub-menu {
    top: 72px !important;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-116px);
  }
  to {
    transform: translateY(0);
  }
}
.va-leaving {
  animation: slideUp 0.4s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-116px);
  }
}
.va-cart-ico {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--va-accent-dark);
  border-radius: 40px;
  color: var(--va-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.va-cart-ico:hover {
  background-color: var(--va-accent);
}

.va-caps {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--va-text);
  color: var(--va-accent-dark);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.va-youtube-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  width: 94px;
  height: 92px;
}

.va-youtube-btn .bg-shape path:first-child {
  transition: fill 0.3s ease;
}

.va-youtube-btn:hover .bg-shape path:first-child {
  fill: #f11a7b;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
}
.modal__content {
  position: relative;
  background: var(--va-cards-back);
  border-radius: 12px;
  width: 90%;
  max-width: 640px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .modal__content {
    width: 100%;
    height: 100%;
    max-width: none;
    border-radius: 0;
    overflow-y: auto;
  }
}
.modal__body {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 768px) {
  .modal__body {
    flex-direction: column;
    padding: var(--va-padding);
  }
}
.modal__close {
  position: absolute;
  top: var(--va-padding);
  right: var(--va-padding);
  font-size: 20px;
  color: var(--va-white);
  z-index: 10;
}
.modal__close:hover {
  color: var(--va-accent);
}
.modal__video {
  aspect-ratio: 9/16;
  display: flex;
}
@media (max-width: 768px) {
  .modal__video {
    width: 100%;
  }
}
.modal__video iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.modal__info {
  flex: 1;
  flex-direction: column;
  gap: 16px;
  display: flex;
}

@media (max-width: 1380px) {
  .va-mobil-hide {
    display: none !important;
  }
}

.va-margin-top {
  margin-top: var(--va-offset);
}

.va-accent {
  color: var(--va-accent) !important;
}

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

.price {
  display: none !important;
}

.wapf {
  display: none !important;
}

.woocommerce-variation-add-to-cart {
  display: none !important;
}

.variations {
  display: none !important;
}

.va-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.va-footer__links {
  flex-basis: calc((100% - 48px) / 3);
  display: flex;
  gap: 24px;
}
@media (max-width: 1100px) {
  .va-footer__links {
    flex-basis: 100%;
    justify-content: center;
    order: 3;
  }
}
.va-footer__social {
  flex-basis: calc((100% - 48px) / 3);
}
@media (max-width: 1100px) {
  .va-footer__social {
    flex-basis: 100%;
    order: 1;
  }
}
.va-footer__social ul {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.va-footer__social ul a,
.va-footer__social ul p {
  font-size: 26px;
  color: var(--va-white);
}
.va-footer__apps {
  flex-basis: calc((100% - 48px) / 3);
}
@media (max-width: 1100px) {
  .va-footer__apps {
    flex-basis: 100%;
    order: 2;
  }
}
.va-footer__apps ul {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.va-footer__apps ul img {
  height: 40px;
  width: auto;
}

.va-whatsapp {
  position: fixed;
  bottom: 72px;
  right: 6px;
  width: 44px;
  height: 44px;
  z-index: 9999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.va-whatsapp:hover {
  transform: scale(1.1);
}

.va-header {
  height: 100px;
  background: var(--va-back);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  align-items: center;
}
@media (max-width: 480px) {
  .va-header {
    height: 88px;
  }
}
.va-header__wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .va-header__wrapper {
    height: 88px;
  }
}
.va-header__logo {
  flex-basis: 150px;
}
.va-header__logo img {
  height: 52px;
}
.va-header__logo:hover {
  opacity: 0.9;
}
.va-header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.va-header__icon {
  color: var(--va-text);
  font-size: 20px;
  position: relative;
  line-height: 1;
}
.va-header__icon:hover {
  opacity: 0.9;
}
.va-header__present img {
  height: 20px;
  width: 20px;
}
.va-header__search {
  line-height: 1;
}
.va-header__search::before {
  content: "\e90e";
  font-size: 20px;
  color: var(--va-text);
  cursor: pointer;
}
@media (max-width: 1380px) {
  .va-header .va-btn-topmenu {
    display: none;
  }
}
.va-header .va-btn-mobilmenu {
  width: 100% !important;
}
@media (min-width: 1380px) {
  .va-header .va-btn-mobilmenu {
    display: none;
  }
}
.va-header__social ul {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.va-header__social ul a {
  font-size: 26px;
  color: var(--va-white);
}
@media (min-width: 1380px) {
  .va-header__social {
    display: none;
  }
}
.va-header__menu-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1380px) {
  .va-header__menu-icons {
    display: none;
  }
}

.search-mobil__content {
  padding: 10px 20px;
  border-radius: 100px;
  border: 3px solid var(--va-white);
  text-align: center;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1380px) {
  .search-mobil__content {
    display: none;
  }
}
.search-mobil__content #search-mobil-input {
  width: 100%;
  color: var(--va-white);
  padding: 0 10px;
  background-color: var(--va-back);
  border-radius: 8px;
}
.search-mobil__content .search-mobil__form {
  display: flex;
  align-items: center;
  width: 100%;
}
.search-mobil__content #search-mobil-button {
  font-size: 22px;
  color: var(--va-white);
  cursor: pointer;
  margin-left: -40px;
}

@media (max-width: 1380px) {
  .va-header__menu {
    z-index: 40;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 0;
    height: unset;
    position: absolute;
    opacity: 0;
    top: 72px;
    right: 0;
    width: 100vw;
    min-height: calc(100vh - 72px);
    background-color: var(--va-back);
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    visibility: hidden;
    padding: 24px 48px 92px 48px;
    will-change: transform, opacity;
    overflow: auto;
    bottom: 0;
    justify-content: unset;
    align-items: center;
  }
}

.va-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
@media (max-width: 1380px) {
  .va-menu {
    flex-direction: column;
    gap: 24px;
    height: unset;
    justify-content: unset;
    width: 100%;
  }
}
.va-menu a {
  color: var(--va-white);
  font-weight: 600;
  font-family: var(--va-titlefont);
  font-size: 16px;
  position: relative;
}
@media (max-width: 1380px) {
  .va-menu a {
    font-size: 18px;
  }
}

.menu-item {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  background-color: var(--va-accent-dark);
  border-radius: 100px;
  justify-content: center;
}

.menu-item:hover {
  background-color: var(--va-hover);
}

.lock-scroll {
  max-height: 100vh;
  overflow-y: hidden;
}

.va-menu-open {
  transform: translateY(0) !important;
  visibility: visible !important;
  opacity: 1;
}

.va-menu__btn {
  display: none;
}
@media (max-width: 1380px) {
  .va-menu__btn {
    display: block;
    cursor: pointer;
  }
}

.rect {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.rect.middle {
  transform-origin: center;
}

.rect.top,
.rect.bottom {
  fill: var(--va-white);
}

.va-menu__btn.btn-animated .rect.top {
  transform: translate(18px, -17.7px) rotate(45deg);
}

.va-menu__btn.btn-animated .rect.middle {
  opacity: 0;
}

.va-menu__btn.btn-animated .rect.bottom {
  transform: translate(1px, 25px) rotate(-45deg);
}

.va-menu__btn.btn-animated {
  scale: 1.2;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.search-modal__content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  max-width: 480px;
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: unset;
}

.search-modal__close {
  font-size: 21px;
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: var(--va-accent-dark);
  cursor: pointer;
  margin-left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .search-modal__close {
    margin-left: 16px;
  }
}

.search-modal__close:hover {
  color: var(--va-hover);
}

#search-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid var(--va-grey);
  border-radius: 8px;
}

.search-modal__form {
  display: flex;
  align-items: center;
  width: 100%;
}

#search-button {
  font-size: 22px;
  cursor: pointer;
  margin-left: -40px;
}

@media (max-width: 1380px) {
  .main-menu-container {
    order: 3;
    width: 100%;
  }
}

.va-lang__wrap {
  position: relative;
  display: flex;
}
.va-lang__wrap .va-lang__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 80px;
  z-index: 1000;
}
.va-lang__wrap .va-lang__dropdown p {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--va-accent);
  font-size: 14px;
  border-radius: 6px;
}
.va-lang__wrap .va-lang__dropdown a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 600;
  color: var(--va-text-dark);
  font-size: 14px;
  border-radius: 6px;
}
.va-lang__wrap .va-lang__dropdown a:hover {
  background: #f5f5f5;
  border-radius: 6px;
}
@media (min-width: 1381px) {
  .va-lang__wrap:hover .va-lang__dropdown {
    display: flex;
  }
}
.va-lang__wrap.active .va-lang__dropdown {
  display: flex;
}

.va-header__page {
  margin-top: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.va-header__social {
  order: 5;
}

.va-btn-mobilmenu {
  order: 4;
}

.va-hero {
  margin-bottom: var(--va-offset);
  min-height: 420px;
  position: relative;
}
.va-hero__wrapper {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: stretch;
}
@media (max-width: 1380px) {
  .va-hero__wrapper {
    flex-wrap: wrap;
  }
}
.va-hero__left {
  flex-basis: calc((100% - 48px) / 2);
  width: calc((100% - 48px) / 2);
  background-color: var(--va-accent-dark);
  border-radius: var(--va-border-radius);
  position: relative;
  display: flex;
}
.va-hero__left .swiper {
  flex: 1;
  min-height: 0;
}
.va-hero__left .swiper-wrapper {
  height: 100%;
}
@media (max-width: 1380px) {
  .va-hero__left {
    flex-basis: 100%;
    width: 100%;
    min-height: 50vh;
  }
}
@media (max-width: 640px) {
  .va-hero__left .va-plus {
    display: none !important;
  }
}
.va-hero__center {
  flex-basis: calc((100% - 48px) / 4);
  display: flex;
  background-color: var(--va-yellow);
  border-radius: var(--va-border-radius);
  flex-direction: column;
  color: var(--va-text-dark);
  position: relative;
}
.va-hero__center li:hover {
  background-color: #e8be03;
}
.va-hero__center a {
  color: var(--va-text-dark);
}
.va-hero__center .va-hero__top img {
  width: 100%;
  height: auto;
  display: block;
}
.va-hero__center .va-hero__li-left {
  background-color: #e8be03;
  color: var(--va-text-dark);
}
.va-hero__center p {
  color: var(--va-text-dark);
}
@media (max-width: 1380px) {
  .va-hero__center {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 640px) {
  .va-hero__center {
    flex-basis: 100%;
  }
  .va-hero__center .va-hero__top {
    margin-top: 32px;
  }
}
@media (max-width: 480px) {
  .va-hero__center .va-hero__top {
    margin-top: 24px;
  }
}
.va-hero__right {
  flex-basis: calc((100% - 48px) / 4);
  display: flex;
  flex-direction: column;
  background-color: var(--va-accent-dark);
  border-radius: var(--va-border-radius);
  position: relative;
}
.va-hero__right li:hover {
  background-color: #2e2e2e;
}
.va-hero__right .va-hero__li-left {
  background-color: #2e2e2e;
}
.va-hero__right .va-hero__top {
  padding-left: 16px;
  justify-content: left;
}
@media (max-width: 1380px) {
  .va-hero__right {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 640px) {
  .va-hero__right {
    flex-basis: 100%;
  }
}
.va-hero__slide {
  border-radius: var(--va-border-radius);
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}
.va-hero__text {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background: rgba(0, 0, 0, 0.5);
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 64px 0;
  gap: 8px;
}
@media (max-width: 640px) {
  .va-hero__text {
    left: 0;
    width: 100%;
    top: 0;
    bottom: 0;
    transform: unset;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
    justify-content: center;
    align-items: center;
  }
}
.va-hero__text p {
  padding-right: 28px;
  padding-left: 16px;
}
@media (max-width: 640px) {
  .va-hero__text p {
    padding-left: 28px;
  }
}
.va-hero__text-header {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .va-hero__text-header {
    font-size: 40px;
    text-align: center;
  }
}
.va-hero__text-subheader {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.va-hero__btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 11;
}
@media (max-width: 640px) {
  .va-hero__btn {
    display: none !important;
  }
}
.va-hero__btn-desktop {
  display: none !important;
}
@media (max-width: 640px) {
  .va-hero__btn-desktop {
    display: flex !important;
    position: relative;
    margin-top: 16px;
  }
}
.va-hero__top {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 45px;
  font-weight: 500;
  margin-top: 8px;
}
.va-hero__content ul {
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 0 16px 16px 16px;
}
.va-hero__content li {
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: 6px;
}
.va-hero__li-left {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 700;
}

.swiper-pagination-bullets {
  bottom: 2px !important;
  line-height: 1;
}

.swiper-pagination-bullet {
  background: var(--va-white) !important;
  opacity: 0.6 !important;
  width: 40px !important;
  height: 8px !important;
  border-radius: 8px !important;
}
@media (max-width: 480px) {
  .swiper-pagination-bullet {
    width: 32px !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--va-accent) !important;
  opacity: 1 !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--va-grey) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 36px !important;
}

.entry-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wp-block-image {
  margin: 16px 0;
}

.wp-block-image img {
  border-radius: var(--va-border-radius);
  box-shadow: var(--va-box-shadow);
}

.wp-element-caption {
  font-size: 12px;
  display: flex;
  margin-left: 48px;
}

.category-list {
  list-style: none;
}

.category-list label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--va-gap);
}

.load-more-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--va-offset-middle);
  border-top: 2px solid var(--va-back-grey);
  padding-top: 30px;
}

.wp-block-group,
.woocommerce-customer-details,
.woocommerce-MyAccount-content,
.woocommerce-form-login,
.woocommerce-ResetPassword,
.woocommerce-form-register {
  background-color: var(--va-text-light);
  border-radius: 12px;
  padding: var(--va-padding);
}
.wp-block-group p,
.wp-block-group h2,
.wp-block-group h3,
.wp-block-group h4,
.wp-block-group ul,
.wp-block-group li,
.wp-block-group th,
.wp-block-group td,
.woocommerce-customer-details p,
.woocommerce-customer-details h2,
.woocommerce-customer-details h3,
.woocommerce-customer-details h4,
.woocommerce-customer-details ul,
.woocommerce-customer-details li,
.woocommerce-customer-details th,
.woocommerce-customer-details td,
.woocommerce-MyAccount-content p,
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content h4,
.woocommerce-MyAccount-content ul,
.woocommerce-MyAccount-content li,
.woocommerce-MyAccount-content th,
.woocommerce-MyAccount-content td,
.woocommerce-form-login p,
.woocommerce-form-login h2,
.woocommerce-form-login h3,
.woocommerce-form-login h4,
.woocommerce-form-login ul,
.woocommerce-form-login li,
.woocommerce-form-login th,
.woocommerce-form-login td,
.woocommerce-ResetPassword p,
.woocommerce-ResetPassword h2,
.woocommerce-ResetPassword h3,
.woocommerce-ResetPassword h4,
.woocommerce-ResetPassword ul,
.woocommerce-ResetPassword li,
.woocommerce-ResetPassword th,
.woocommerce-ResetPassword td,
.woocommerce-form-register p,
.woocommerce-form-register h2,
.woocommerce-form-register h3,
.woocommerce-form-register h4,
.woocommerce-form-register ul,
.woocommerce-form-register li,
.woocommerce-form-register th,
.woocommerce-form-register td {
  color: var(--va-text-dark);
}

.woocommerce-MyAccount-content {
  margin-top: var(--va-padding);
}
.woocommerce-MyAccount-content legend {
  color: var(--va-accent-dark);
}
.woocommerce-MyAccount-content fieldset {
  margin-bottom: var(--va-padding);
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid lightgray;
  padding: 0.5em;
}

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

.popup-content {
  background: #fff;
  padding: 20px;
  width: 450px;
  max-width: 90%;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--va-text-dark);
}
.popup-content .woocommerce-form-login {
  display: flex;
  flex-direction: column;
  margin: 1em 0;
}
.popup-content .woocommerce-form-login p {
  width: 100% !important;
}
.popup-content .lost_password a,
.popup-content .va-create-account a {
  color: var(--va-accent);
}

#closePopup {
  position: absolute;
  top: 0px;
  left: 15px;
  cursor: pointer;
  font-size: 30px;
  color: var(--va-text-dark);
}

.btn-login {
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 8px;
  background: #0073aa;
  color: #fff;
  border: none;
}

.va-search-results {
  margin-top: var(--va-offset-small);
  margin-bottom: var(--va-offset);
}

.va-search-results-top {
  margin-top: 24px;
}

#updatesPopup {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
}

#updatesPopup .updates-content {
  position: relative;
  text-align: center;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 480px) {
  #updatesPopup .updates-content {
    width: 100%;
    padding: 8px;
  }
}

#updatesPopup .updates-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

#updatesPopup .updates-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

#updatesPopup .updates-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#updatesPopup .updatesclosePopup {
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 30px;
  cursor: pointer;
  z-index: 10000;
}
@media (max-width: 480px) {
  #updatesPopup .updatesclosePopup {
    top: 0px;
    right: 12px;
  }
}

.vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number-btnclick {
  background-color: var(--va-accent) !important;
  border-radius: 100px;
}

.vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row {
  background-color: var(--va-text-light);
  padding: 24px;
  border-radius: 12px;
}
.vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row input {
  border: 1px solid var(--va-grey) !important;
  border-radius: 12px !important;
  margin-right: 16px !important;
}

form.vi-woo-orders-tracking-form-search {
  margin: 15px 0px !important;
}

.va-product-video {
  width: 100%;
}
@media (max-width: 998px) {
  .va-product-video {
    display: none;
  }
}

.va-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.va-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.va-product-gallery-wrap {
  display: flex;
  flex-direction: column;
  float: left;
  width: calc((100% - 24px) / 2);
  gap: var(--va-padding);
}
.va-product-gallery-wrap .va-presenter {
  height: 100%;
  min-height: 500px;
  margin-bottom: unset !important;
}
.va-product-gallery-wrap .va-presenter iframe {
  height: 100% !important;
}
@media (max-width: 998px) {
  .va-product-gallery-wrap {
    width: 100%;
  }
}
.va-product-gallery-wrap .woocommerce-product-gallery {
  width: 100% !important;
}

.vi-woo-orders-tracking-form-search {
  max-width: unset !important;
}

.vi-woo-orders-tracking-form-row {
  gap: 16px;
}

.navigation.pagination {
  margin-top: 40px;
  text-align: center;
}
.navigation.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
}
.navigation.pagination .page-numbers.current {
  background: #000;
  color: #fff;
}
.navigation.pagination .page-numbers:hover {
  background: #f5f5f5;
  color: black;
}

.va-content__archive {
  margin-bottom: var(--va-offset);
}

.va-header-flex {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.va-header-flex .va-post-thumbnail img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.va-header-flex .va-post-header-text {
  flex: 1;
}
@media (max-width: 800px) {
  .va-header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .va-header-flex .va-post-thumbnail img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }
}

.va-img-opacity {
  opacity: 0.1;
}

.va-date {
  flex-grow: 0 !important;
}

.userway_buttons_wrapper {
  bottom: 18px !important;
}

.ui_w {
  filter: invert(0.3);
}

.lg-sub-html {
  display: none !important;
}

.va-activation {
  background-color: var(--va-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 24px;
  transition: 0.5s ease-out;
  top: 100px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 480px) {
  .va-activation {
    top: 88px;
  }
}
.va-activation div {
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-family: var(--va-titlefont);
  font-size: 16px;
}

.va-activation:hover {
  background-color: var(--va-hover-dark);
}

.va-featured {
  margin-bottom: var(--va-offset);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.va-featured__grid {
  -moz-column-count: 5;
       column-count: 5;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.va-featured__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 24px;
  width: 100%;
  border-radius: var(--va-border-radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  --ratio: 2;
  aspect-ratio: 1/var(--ratio);
  cursor: pointer;
  transition: var(--va-transition);
}
.va-featured__item:hover {
  transform: var(--va-transform);
}
.va-featured__item:nth-child(1) {
  --ratio: 2;
}
.va-featured__item:nth-child(2) {
  --ratio: 1.6;
}
.va-featured__item:nth-child(3) {
  --ratio: 1.2;
}
.va-featured__item:nth-child(4) {
  --ratio: 1.6;
}
.va-featured__item:nth-child(5) {
  --ratio: 1.2;
}
@media (max-width: 1100px) {
  .va-featured__grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 600px) {
  .va-featured__grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.product .va-featured {
  width: 100%;
}

.va-masonry {
  margin-bottom: var(--va-offset);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.va-masonry__grid {
  -moz-column-count: 5;
       column-count: 5;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 600px) {
  .va-masonry__grid > *:nth-child(n+6) {
    display: none;
  }
}
.va-masonry__item {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 24px;
  width: 100%;
  border-radius: var(--va-border-radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  --ratio: 2;
  position: relative;
  transition: var(--va-transition);
  will-change: transform;
  cursor: pointer;
  aspect-ratio: 1/var(--ratio);
}
.va-masonry__item:nth-child(9n+1) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+2) {
  --ratio: 1.2;
}
.va-masonry__item:nth-child(9n+3) {
  --ratio: 1.6;
}
.va-masonry__item:nth-child(9n+4) {
  --ratio: 1.6;
}
.va-masonry__item:nth-child(9n+5) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+6) {
  --ratio: 1.6;
}
.va-masonry__item:nth-child(9n+7) {
  --ratio: 1.2;
}
.va-masonry__item:nth-child(9n+8) {
  --ratio: 1.6;
}
.va-masonry__item:nth-child(9n+9) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+10) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+11) {
  --ratio: 1.2;
}
.va-masonry__item:nth-child(9n+12) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+13) {
  --ratio: 1.6;
}
.va-masonry__item:nth-child(9n+14) {
  --ratio: 2;
}
.va-masonry__item:nth-child(9n+15) {
  --ratio: 1.2;
}
.va-masonry__item:hover {
  transform: var(--va-transform);
}
@media (max-width: 1100px) {
  .va-masonry__grid {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 600px) {
  .va-masonry__grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.va-cards {
  margin-bottom: var(--va-offset);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.va-cards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 600px) {
  .va-cards__grid > *:nth-child(n+6) {
    display: none;
  }
}
.va-cards__item {
  flex: 0 1 calc((100% - 96px) / 5);
  border-radius: var(--va-border-radius);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--va-cards-back);
  transition: var(--va-transition);
  will-change: transform;
}
.va-cards__item .va-smalltext {
  display: flex;
  flex-grow: 1;
}
.va-cards__item img {
  border-radius: var(--va-border-radius);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}
.va-cards__item .added_to_cart {
  position: absolute;
  background-color: var(--va-accent);
  padding: 8px;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media (max-width: 1100px) {
  .va-cards__item {
    flex: 0 1 calc((100% - 24px) / 2);
    height: unset;
  }
}
@media (max-width: 600px) {
  .va-cards__item {
    flex: 0 1 100%;
  }
}
.va-cards__item:hover {
  transform: var(--va-transform);
}
.va-cards__content {
  display: flex;
  flex-direction: column;
  padding: 0 8px 8px 8px;
  gap: 12px;
  transform: translateZ(0);
  backface-visibility: hidden;
  flex-grow: 1;
}
.va-cards__caps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.va-cards__caps div {
  border-radius: var(--va-border-radius);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 3px 16px;
}
.va-cards__caps a {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.va-cards__caps-price {
  background-color: var(--va-caps-red-back);
  color: var(--va-caps-red);
}
.va-cards__caps-plug {
  background-color: var(--va-caps-green-back);
  color: var(--va-caps-green);
}
.va-cards__caps-plug a {
  color: var(--va-caps-green) !important;
}
.va-cards__caps-iconic {
  background-color: var(--va-caps-blue-back);
  color: var(--va-caps-blue);
}
.va-cards__caps-iconic a {
  color: var(--va-caps-blue) !important;
}
.va-cards__caps-ai {
  background-color: var(--va-caps-brown-back);
  color: var(--va-caps-brown);
}
.va-cards__caps-ai a {
  color: var(--va-caps-brown) !important;
}
.va-cards__caps-soon {
  background-color: var(--va-caps-purple-back);
  color: var(--va-caps-purple);
}
.va-cards__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .va-cards__bottom {
    display: none;
  }
}

.va-banner {
  background-color: var(--va-accent);
  display: flex;
  padding: 48px 16px;
  transition: 0.5s ease-out;
  margin-bottom: var(--va-offset);
  transition: var(--va-transition);
}
.va-banner a {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.va-banner h2 {
  font-size: 60px;
}
@media (max-width: 480px) {
  .va-banner h2 {
    font-size: 52px;
  }
}

.va-banner:hover {
  background-color: var(--va-hover);
  transform: var(--va-transform);
}

.woo-container {
  display: flex;
  gap: 48px;
}
.woo-container .va-store-btn {
  display: none;
}
@media (max-width: 998px) {
  .woo-container .va-store-btn {
    display: flex;
    padding-bottom: 24px;
    cursor: pointer;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    color: var(--va-text);
  }
}
@media (max-width: 998px) {
  .woo-container .va-store-btn::before {
    content: "\e920";
    font-size: 24px;
    color: var(--va-accent);
    margin-right: 8px;
  }
}
.woo-container .va-store-btn-close {
  display: none;
}
@media (max-width: 998px) {
  .woo-container .va-store-btn-close {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    justify-content: end;
    position: absolute;
    top: 0px;
    right: 8px;
    font-size: 48px;
  }
}
.woo-container .woo-categories-list {
  list-style: none;
  padding: 0;
}
.woo-container .woo-categories-list li {
  padding: 14px 10px 0px 0px;
}
.woo-container .woo-categories-list li > a {
  font-weight: 500;
}
.woo-container .woo-categories-list li ul li > a {
  font-weight: 400;
}
.woo-container .woo-categories-list li ul li {
  padding: 14px 10px 14px 30px !important;
}

.woo-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--va-offset);
}

.woo-header {
  display: flex;
  flex-direction: column;
  gap: var(--va-offset-small);
}

.woocommerce .va-cards {
  width: 100%;
}

.woocommerce .label {
  color: var(--va-accent-dark);
}

.woocommerce ul.products li.product {
  flex-basis: calc((100% - 96px) / 3);
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: var(--va-box-shadow);
  transition: var(--va-transition);
  align-items: center;
}
@media (max-width: 1380px) {
  .woocommerce ul.products li.product {
    flex-basis: calc((100% - 48px) / 2);
  }
}
@media (max-width: 640px) {
  .woocommerce ul.products li.product {
    flex-basis: calc((100% - 24px) / 2);
  }
}
@media (max-width: 460px) {
  .woocommerce ul.products li.product {
    flex-basis: 100%;
  }
}

.woocommerce ul.products li.product:hover {
  transform: var(--va-transform);
}

.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .woocommerce ul.products {
    gap: 24px;
    width: 100%;
  }
}
@media (max-width: 460px) {
  .woocommerce ul.products {
    gap: 16px;
    margin-top: unset;
  }
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.woocommerce-loop-product__title {
  font-size: 22px;
  font-family: var(--va-titlefont);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: var(--va-accent);
  text-align: center;
  padding: 0.5em;
}

.products .woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--va-text);
  text-align: center;
  display: flex;
  justify-content: center;
}

.price {
  font-size: 29px;
  font-weight: 700;
  color: var(--va-accent-dark);
  text-align: center;
  display: flex;
  padding: 4px 16px;
  border: 3px solid var(--va-accent-dark);
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 480px) {
  .price {
    font-size: 26px;
  }
}

.woocommerce-products-header {
  padding-bottom: 24px;
}

.woocommerce-result-count,
.woocommerce-ordering select {
  font-size: 16px;
  color: var(--va-light-text);
}

.woocommerce .product_meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--va-accent-dark);
}

.woocommerce .product_meta a {
  color: var(--va-accent);
}

.woocommerce-Tabs-panel h2,
.related h2 {
  color: var(--va-accent-dark);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}

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

.woocommerce form .form-row label.hidden {
  visibility: hidden;
}

.woocommerce form .form-row label.inline {
  display: inline;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description {
  background: #1e85be;
  color: #fff;
  border-radius: 3px;
  padding: 1em;
  margin: 0.5em 0 0;
  clear: both;
  display: none;
  position: relative;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description a {
  color: #fff;
  text-decoration: underline;
  border: 0;
  box-shadow: none;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
  left: 50%;
  top: 0;
  margin-top: -4px;
  transform: translateX(-50%) rotate(180deg);
  content: "";
  position: absolute;
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: #1e85be transparent transparent transparent;
  z-index: 100;
  display: block;
}

.woocommerce form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select {
  font-family: inherit;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0.5em;
  display: block;
  border: 1px solid var(--va-accent);
  border-radius: 6px;
  color: var(--va-accent-dark);
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  line-height: normal;
  height: auto;
}

.woocommerce form .form-row .input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: currentColor;
}

.woocommerce form .form-row select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 3em;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: calc(100% - 0.5em) 50%;
}

.woocommerce form .form-row textarea {
  height: 4em;
  line-height: 1.5;
  box-shadow: none;
}

.woocommerce form .form-row .required {
  color: var(--wc-red);
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: hidden;
}

.woocommerce form .form-row .optional {
  visibility: visible;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: var(--wc-red);
}

.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: var(--wc-red);
}

.woocommerce form .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--wc-red);
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: var(--wc-green);
}

.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection {
  border-color: var(--wc-green);
}

.woocommerce form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-moz-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-ms-input-placeholder {
  line-height: normal;
}

.select2-container {
  width: 100%;
}

.select2-container .select2-selection--single {
  height: auto;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0.5em;
  line-height: normal;
  box-sizing: border-box;
  color: var(--wc-form-color-text, #444);
  font-weight: 400;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 2px;
  right: 0.5em;
  height: 100%;
  width: 16px;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  border: none;
  display: block;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0;
}

.select2-container .select2-dropdown,
.select2-container .select2-selection {
  background-color: var(--wc-form-color-background, #fff);
  border: var(--wc-form-border-width, 1px) solid var(--wc-form-border-color, #aaa);
  border-radius: var(--wc-form-border-radius, 4px);
}

.select2-container.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  margin: 0;
}

.woocommerce-store-notice,
p.demo_store {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 1em 0;
  text-align: center;
  background-color: #720eec;
  color: #fcfbfe;
  z-index: 99998;
  box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  display: none;
}

.woocommerce-store-notice a,
p.demo_store a {
  color: #fcfbfe;
  text-decoration: underline;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.admin-bar p.demo_store {
  top: 32px;
}

.clear {
  clear: both;
}

.woocommerce .blockUI.blockOverlay {
  position: relative;
}

.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: var(--wc-red) !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.woocommerce a.remove:hover {
  color: var(--va-accent) !important;
  background: var(--wc-red);
}

.woocommerce small.note {
  display: block;
  color: #767676;
  font-size: 0.857em;
  margin-top: 10px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 24px 0;
  padding: 0;
  font-size: 16px;
  color: var(--va-text);
}
.woocommerce .woocommerce-breadcrumb a {
  font-size: 16px;
}

.woocommerce .woocommerce-breadcrumb::after,
.woocommerce .woocommerce-breadcrumb::before {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-breadcrumb::after {
  clear: both;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
}

.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.woocommerce div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
  color: var(--va-accent-dark);
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  background: inherit;
  font-weight: 700;
  display: inline-block;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  opacity: 0.5;
  display: inline-block;
}

.woocommerce div.product p.stock {
  font-size: 0.92em;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
}

.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  aspect-ratio: 1/1;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.woocommerce div.product div.images div.thumbnails {
  padding-top: 1em;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.woocommerce-product-gallery .flex-viewport {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.woocommerce-product-gallery .flex-control-thumbs {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
  opacity: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
  border: 1px solid #f2f2f2;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 25%;
  display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image a {
  display: block;
  outline-offset: -2px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  background: #fff;
  border: none;
  box-sizing: content-box;
  border-radius: 100%;
  cursor: pointer;
  font-size: 2em;
  height: 36px;
  padding: 0;
  position: absolute;
  right: 16px;
  text-indent: -9999px;
  top: 0.5em;
  width: 36px;
  z-index: 3;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
  border: 2px solid #000;
  border-radius: 100%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  top: 9px;
  position: absolute;
  width: 10px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
  background: #000;
  border-radius: 6px;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 8px;
  left: 22px;
  position: absolute;
  top: 19px;
  transform: rotate(-45deg);
  width: 2px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true] {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  left: 50%;
  margin: -1px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  width: 1px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: hidden;
  zoom: 1;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: 0.5;
  margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
}

.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: left;
}

.woocommerce div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}

.woocommerce div.product div.social span {
  margin: 0 0 0 2px;
}

.woocommerce div.product div.social span span {
  margin: 0;
}

.woocommerce div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}

.woocommerce div.product div.social iframe {
  float: left;
  margin-top: 3px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  overflow: hidden;
  position: relative;
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #cfc8d8;
  background-color: var(--va-back);
  color: #515151;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 4px 4px 0 0;
  margin: 0 -5px;
  padding: 0 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0.5em 0;
  font-weight: 700;
  color: var(--va-white);
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #6a6a6a;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  color: #515151;
  z-index: 2;
  border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  box-shadow: 2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  box-shadow: -2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border: 1px solid #cfc8d8;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: " ";
  box-sizing: border-box;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: -5px;
  border-bottom-right-radius: 4px;
  border-width: 0 1px 1px 0;
  box-shadow: 2px 2px 0 #e9e6ed;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: -5px;
  border-bottom-left-radius: 4px;
  border-width: 0 0 1px 1px;
  box-shadow: -2px 2px 0 #e9e6ed;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: absolute;
  content: " ";
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 var(--va-offset);
  padding: var(--va-padding);
  background-color: var(--va-text-light);
  border-radius: 12px;
}
.woocommerce div.product .woocommerce-tabs .panel p {
  color: var(--va-accent-dark);
}
.woocommerce div.product .woocommerce-tabs .panel h3 {
  color: var(--va-accent-dark);
}

.woocommerce div.product p.cart {
  margin-bottom: 2em;
}

.woocommerce div.product p.cart::after,
.woocommerce div.product p.cart::before {
  content: " ";
  display: table;
}

.woocommerce div.product p.cart::after {
  clear: both;
}

.woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.woocommerce div.product form.cart div.quantity {
  float: left;
  margin: 10px 16px 10px 0;
  display: flex;
  align-items: center;
}

.woocommerce div.product form.cart table {
  border-width: 0 0 1px;
}

.woocommerce div.product form.cart table td {
  padding-left: 0;
}

.woocommerce div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}

.woocommerce div.product form.cart table small.stock {
  display: block;
  float: none;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
  background-color: var(--va-back-light);
  border-radius: 12px;
  padding: 24px;
  border-collapse: separate;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  border: 0;
  line-height: 1.7em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 400;
  text-align: left;
}

.woocommerce div.product form.cart .variations select {
  max-width: 100%;
  min-width: 75%;
  display: inline-block;
  margin-right: 1em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3em;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=) no-repeat;
  background-size: 16px;
  -webkit-background-size: 16px;
  background-position: calc(100% - 12px) 50%;
  -webkit-background-position: calc(100% - 12px) 50%;
}

.woocommerce div.product form.cart .variations td.label {
  padding-right: 1em;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 1em;
}

.woocommerce div.product form.cart .reset_variations {
  visibility: hidden;
  font-size: 0.83em;
}

.variable-item-span-button {
  font-size: 0.83em;
}

.woocommerce div.product form.cart .wc-no-matching-variations {
  display: none;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
}

.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
  padding-right: 1em;
  padding-left: 1em;
}

.woocommerce div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: 0.5em;
  border: 0;
}

.woocommerce div.product form.cart .group_table td:first-child {
  width: 4em;
  text-align: center;
}

.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  transform: scale(1.5, 1.5);
}

.woocommerce span.onsale {
  min-height: 3.236em;
  min-width: 3.236em;
  padding: 0.202em;
  font-size: 1em;
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 3.236;
  top: -0.5em;
  left: -0.5em;
  margin: 0;
  border-radius: 100%;
  background-color: #958e09;
  color: #fff;
  font-size: 0.857em;
  z-index: 9;
}

.woocommerce .products ul li,
.woocommerce ul.products li {
  list-style: none outside;
}

.woocommerce ul.products li.product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: -0.5em -0.5em 0 0;
  display: none;
}

.woocommerce ul.products li.product a {
  text-decoration: none;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.woocommerce ul.products li.product strong {
  display: block;
}

.woocommerce ul.products li.product .woocommerce-placeholder {
  border: 1px solid #f2f2f2;
}

.woocommerce ul.products li.product .star-rating {
  font-size: 0.857em;
}

.woocommerce ul.products li.product .button {
  margin-top: 1em;
}

.woocommerce ul.products li.product .price {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  margin-bottom: 0.5em;
  font-size: 0.857em;
  flex-grow: 1;
  justify-content: end;
}

.woocommerce ul.products li.product .price del {
  color: inherit;
  opacity: 0.5;
  display: inline-block;
}

.woocommerce ul.products li.product .price ins {
  background: 0 0;
  font-weight: 700;
  display: inline-block;
}

.woocommerce ul.products li.product .price .from {
  font-size: 0.67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
  color: rgba(90, 89, 68, 0.5);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering > label {
  margin-right: 0.25rem;
}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border: 1px solid #cfc8d8;
  border-right: 0;
  margin: 1px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 1px solid #cfc8d8;
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1;
  font-size: 1em;
  font-weight: 400;
  padding: 0.5em;
  min-width: 1em;
  display: block;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: #e9e6ed;
  color: #816e99;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
  float: none;
}

.woocommerce a.added_to_cart {
  display: inline-block;
  position: absolute;
  background: var(--va-accent);
  padding: 0 6px;
  border-bottom-right-radius: 6px;
  border-top-left-radius: 6px;
}

.woocommerce #reviews h2 small {
  float: right;
  color: #767676;
  font-size: 15px;
  margin: 10px 0 0;
}

.woocommerce #reviews h2 small a {
  text-decoration: none;
  color: #767676;
}

.woocommerce #reviews h3 {
  margin: 0;
}

.woocommerce #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}

.woocommerce #reviews #comment {
  height: 75px;
}

.woocommerce #reviews #comments .add_review::after,
.woocommerce #reviews #comments .add_review::before {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments .add_review::after {
  clear: both;
}

.woocommerce #reviews #comments h2 {
  clear: none;
}

.woocommerce #reviews #comments ol.commentlist {
  margin: 0;
  width: 100%;
  background: 0 0;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist::after,
.woocommerce #reviews #comments ol.commentlist::before {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments ol.commentlist::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  position: relative;
  background: 0;
  border: 0;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 32px;
  height: auto;
  background: #e9e6ed;
  border: 1px solid #e1dde7;
  margin: 0;
  box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 50px;
  border: 1px solid #e1dde7;
  border-radius: 4px;
  padding: 1em 1em 0;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after,
.woocommerce #reviews #comments ol.commentlist li .comment-text::before {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 0.83em;
}

.woocommerce #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist #respond {
  border: 1px solid #e1dde7;
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments .commentlist > li::before {
  content: "";
}

.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: WooCommerce;
}

.woocommerce .star-rating::before {
  content: "sssss";
  color: #cfc8d8;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
}

.woocommerce .woocommerce-product-rating {
  line-height: 2;
  display: block;
}

.woocommerce .woocommerce-product-rating::after,
.woocommerce .woocommerce-product-rating::before {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-product-rating::after {
  clear: both;
}

.woocommerce .woocommerce-product-rating .star-rating {
  margin: 0.5em 4px 0 0;
  float: left;
}

.woocommerce .products .star-rating {
  display: block;
  margin: 0 0 0.5em;
  float: none;
}

.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0;
}

.woocommerce #review_form #respond {
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0;
}

.woocommerce #review_form #respond::after,
.woocommerce #review_form #respond::before {
  content: " ";
  display: table;
}

.woocommerce #review_form #respond::after {
  clear: both;
}

.woocommerce #review_form #respond p {
  margin: 0 0 10px;
}

.woocommerce #review_form #respond .form-submit input {
  left: auto;
}

.woocommerce #review_form #respond textarea {
  box-sizing: border-box;
  width: 100%;
}

.woocommerce p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.woocommerce p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: WooCommerce;
  content: "\e021";
  content: "\e021"/"";
  text-indent: 0;
}

.woocommerce p.stars a:hover ~ a::before {
  content: "\e021";
}

.woocommerce p.stars:hover a::before {
  content: "\e020";
}

.woocommerce p.stars.selected a.active::before {
  content: "\e020";
}

.woocommerce p.stars.selected a.active ~ a::before {
  content: "\e021";
}

.woocommerce p.stars.selected a:not(.active)::before {
  content: "\e020";
}

.woocommerce table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
  color: var(--va-accent-dark);
}

.woocommerce table.shop_attributes th {
  width: 150px;
  font-weight: 700;
  padding: 8px;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td {
  font-style: italic;
  padding: 0;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: rgba(0, 0, 0, 0.025);
}

@media (max-width: 480px) {
  .woocommerce-orders-table__row {
    display: flex;
    flex-direction: column;
  }
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  width: 100%;
  border-collapse: separate;
  border-radius: 12px;
  background-color: var(--va-text-light);
  color: var(--va-accent-dark);
}
.woocommerce table.shop_table .woocommerce-orders-table__cell-order-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.woocommerce table.shop_table .woocommerce-button {
  text-decoration: none;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
}

.woocommerce table.shop_table td {
  padding: 9px 12px;
}

.woocommerce table.shop_table td small {
  font-weight: 400;
}

.woocommerce table.shop_table td del {
  font-weight: 400;
}

.woocommerce table.shop_table tbody:first-child tr:first-child td,
.woocommerce table.shop_table tbody:first-child tr:first-child th {
  border-top: 0;
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.my_account_orders {
  font-size: 0.85em;
}

.woocommerce table.my_account_orders td,
.woocommerce table.my_account_orders th {
  padding: 4px 8px;
  vertical-align: middle;
}

.woocommerce table.my_account_orders .button {
  white-space: nowrap;
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
  vertical-align: top;
  text-align: center;
}

.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,
.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before {
  content: "↓";
  display: inline-block;
}

.woocommerce td.product-name .wc-item-meta,
.woocommerce td.product-name dl.variation {
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name dl.variation dt {
  float: left;
  clear: both;
  margin-right: 0.25em;
  display: inline-block;
  list-style: none outside;
}

.woocommerce td.product-name .wc-item-meta dd,
.woocommerce td.product-name dl.variation dd {
  margin: 0;
}

.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child,
.woocommerce td.product-name dl.variation p,
.woocommerce td.product-name dl.variation:last-child {
  margin-bottom: 0;
}

.woocommerce td.product-name p.backorder_notification {
  font-size: 0.83em;
}

.woocommerce td.product-quantity {
  min-width: 80px;
}

.woocommerce ul.cart_list,
.woocommerce ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  list-style: none;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.cart_list li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce ul.product_list_widget li::before {
  content: " ";
  display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after {
  clear: both;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  box-shadow: none;
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.cart_list li dl::before,
.woocommerce ul.product_list_widget li dl::after,
.woocommerce ul.product_list_widget li dl::before {
  content: " ";
  display: table;
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::after {
  clear: both;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dd,
.woocommerce ul.product_list_widget li dl dt {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
  font-weight: 700;
  padding: 0 0 0.25em;
  margin: 0 4px 0 0;
  clear: left;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  padding: 0 0 0.25em;
}

.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  float: none;
}

.woocommerce .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
  border-top: 3px double #e9e6ed;
  padding: 4px 0 0;
}

.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}

.woocommerce .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::before,
.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::before {
  content: " ";
  display: table;
}

.woocommerce .widget_shopping_cart .buttons::after,
.woocommerce.widget_shopping_cart .buttons::after {
  clear: both;
}

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
  margin-right: 5px;
  margin-bottom: 5px;
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid #cfc8d8;
  padding: 20px;
  margin: 2em 0;
  border-radius: 5px;
}

.woocommerce form.checkout_coupon .coupon-error-notice {
  color: var(--wc-red);
  display: block;
  font-size: 0.75em;
  margin-top: 8px;
}

.woocommerce form.checkout_coupon .input-text.has-error:focus {
  border-color: var(--wc-red);
}

.woocommerce ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.woocommerce ul#shipping_method li {
  margin: 0 0 0.5em;
  line-height: 1.5em;
  list-style: none outside;
}

.woocommerce ul#shipping_method li input {
  margin: 3px 0.4375em 0 0;
  vertical-align: top;
}

.woocommerce ul#shipping_method li label {
  display: inline;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 700;
}

.woocommerce p.woocommerce-shipping-contents {
  margin: 0;
}

.woocommerce ul.order_details {
  margin: 0 0 3em;
  list-style: none;
}

.woocommerce ul.order_details::after,
.woocommerce ul.order_details::before {
  content: " ";
  display: table;
}

.woocommerce ul.order_details::after {
  clear: both;
}

.woocommerce ul.order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: 0.715em;
  line-height: 1;
  border-right: 1px dashed #cfc8d8;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}

.woocommerce ul.order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
}

.woocommerce ul.order_details li:last-of-type {
  border: none;
}

.woocommerce .wc-bacs-bank-details-account-name {
  font-weight: 700;
}

.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
  margin-top: 24px;
}

.woocommerce .woocommerce-customer-details .order-actions--heading,
.woocommerce .woocommerce-order-details .order-actions--heading,
.woocommerce .woocommerce-order-downloads .order-actions--heading {
  vertical-align: middle;
}

.woocommerce .woocommerce-customer-details .order-actions-button,
.woocommerce .woocommerce-order-details .order-actions-button,
.woocommerce .woocommerce-order-downloads .order-actions-button {
  margin-right: 10px;
}

.woocommerce .woocommerce-customer-details .order-actions-button:last-child,
.woocommerce .woocommerce-order-details .order-actions-button:last-child,
.woocommerce .woocommerce-order-downloads .order-actions-button:last-child {
  margin-right: 0;
}

.woocommerce .woocommerce-customer-details :last-child,
.woocommerce .woocommerce-order-details :last-child,
.woocommerce .woocommerce-order-downloads :last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details .additional-fields,
.woocommerce .woocommerce-customer-details .addresses {
  margin-bottom: 2em;
}

.woocommerce .woocommerce-customer-details .additional-fields:last-child,
.woocommerce .woocommerce-customer-details .addresses:last-child {
  margin-bottom: 0;
}

.woocommerce .addresses .wc-block-components-additional-fields-list {
  margin: 0;
  padding: 0;
}

.woocommerce .addresses .wc-block-components-additional-fields-list dt {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 700;
  display: inline;
}

.woocommerce .addresses .wc-block-components-additional-fields-list dt::after {
  content: ": ";
}

.woocommerce .addresses .wc-block-components-additional-fields-list dt::before {
  content: "";
  display: block;
}

.woocommerce .addresses .wc-block-components-additional-fields-list dd {
  margin: 0;
  padding: 0;
  font-style: normal;
  display: inline;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr max-content;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-style: normal;
  font-weight: 700;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 !important;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt::after {
  display: none;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt:last-of-type {
  border-bottom: 0;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  box-sizing: border-box;
  text-align: right;
  margin: 0 !important;
}

.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd:last-of-type {
  border-bottom: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-column__title {
  margin-top: 0;
}

.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
  box-sizing: border-box;
  color: var(--va-accent-dark);
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
  padding-left: 1.5em;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:last-child,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e037";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e02d";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-widget-layered-nav-list {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
  clear: both;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span {
  padding: 1px 0;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e013";
  text-decoration: none;
  color: var(--wc-red);
}

.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 1em;
}

.woocommerce .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}

.woocommerce .widget_layered_nav_filters ul li {
  float: left;
  padding: 0 1em 1px 1px;
  list-style: none;
}

.woocommerce .widget_layered_nav_filters ul li a {
  text-decoration: none;
}

.woocommerce .widget_layered_nav_filters ul li a::before {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e013";
  text-decoration: none;
  color: var(--wc-red);
  vertical-align: inherit;
  margin-right: 0.5em;
}

.woocommerce .widget_price_filter .price_slider {
  margin-bottom: 1em;
}

.woocommerce .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: 0.8751em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
  float: left;
}

.woocommerce .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  background-color: #7f54b3;
  border-radius: 1em;
  cursor: ew-resize;
  outline: 0;
  top: -0.3em;
  margin-left: -0.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #7f54b3;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  background-color: #35224c;
  border: 0;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

.woocommerce .widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .widget_rating_filter ul li {
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .widget_rating_filter ul li::after,
.woocommerce .widget_rating_filter ul li::before {
  content: " ";
  display: table;
}

.woocommerce .widget_rating_filter ul li::after {
  clear: both;
}

.woocommerce .widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
}

.woocommerce .widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
}

.woocommerce .widget_rating_filter ul li.chosen a::before {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\e013";
  text-decoration: none;
  color: var(--wc-red);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: left;
  margin-right: 1em;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-block;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading {
  opacity: 0.25;
  padding-right: 2.618em;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after {
  font-family: WooCommerce;
  content: "\e01c";
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 0.618em;
  right: 1em;
  animation: spin 2s linear infinite;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: 0.5;
  padding: 0.618em 1em;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]:hover {
  color: inherit;
  background-color: #e9e6ed;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
  font-size: 0.92em;
  color: #767676;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
  color: #767676;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) #reviews #comments ol.commentlist li .meta {
  color: #767676;
  font-size: 0.75em;
}

.woocommerce-no-js form.woocommerce-form-coupon,
.woocommerce-no-js form.woocommerce-form-login {
  display: block !important;
}

.woocommerce-no-js .showcoupon,
.woocommerce-no-js .woocommerce-form-coupon-toggle,
.woocommerce-no-js .woocommerce-form-login-toggle {
  display: none !important;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #f6f5f8;
  color: #515151;
  border-top: 3px solid var(--va-accent);
  border-top-color: var(--va-accent);
  list-style: none outside;
  width: auto;
  word-wrap: break-word;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
  content: " ";
  display: table;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  clear: both;
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
  float: right;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  list-style: none outside !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
  direction: ltr;
  unicode-bidi: embed;
}

.woocommerce-message {
  border-top-color: var(--va-accent);
}

.woocommerce-message::before {
  content: "\e014";
  color: var(--va-accent);
  font-family: WooCommerce;
}

.woocommerce-info {
  border-top-color: var(--va-accent);
}

.woocommerce-info::before {
  color: var(--va-accent);
}

.woocommerce-error {
  background-color: var(--va-text-light);
  border: none;
}
.woocommerce-error a {
  color: var(--va-accent) !important;
}

.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before {
  content: " ";
  display: table;
}

.woocommerce-account .woocommerce::after {
  clear: both;
}

.woocommerce-account .addresses .title::after,
.woocommerce-account .addresses .title::before {
  content: " ";
  display: table;
}

.woocommerce-account .addresses .title::after {
  clear: both;
}

.woocommerce-account .addresses .title h3 {
  float: left;
}

.woocommerce-account .addresses .title .edit {
  float: right;
}

.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}

.woocommerce-account ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

#add_payment_method table.cart .product-thumbnail,
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail {
  min-width: 32px;
}

#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
  width: 32px;
  box-shadow: none;
}

#add_payment_method table.cart td,
#add_payment_method table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th,
.woocommerce-checkout table.cart td,
.woocommerce-checkout table.cart th {
  vertical-align: middle;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  float: left;
  box-sizing: border-box;
  border: 1px solid #cfc8d8;
  padding: 6px 6px 5px;
  margin: 0 4px 0 0;
  outline: 0;
}

#add_payment_method table.cart td.actions .coupon .input-text.has-error:focus,
.woocommerce-cart table.cart td.actions .coupon .input-text.has-error:focus,
.woocommerce-checkout table.cart td.actions .coupon .input-text.has-error:focus {
  border-color: var(--wc-red);
}

#add_payment_method table.cart td.actions .coupon .coupon-error-notice,
.woocommerce-cart table.cart td.actions .coupon .coupon-error-notice,
.woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice {
  clear: left;
  color: var(--wc-red);
  flex-basis: 100%;
  float: none;
  font-size: 0.75em;
  margin-bottom: 0;
  margin-top: 8px;
  text-align: left;
  width: auto;
}

#add_payment_method table.cart input,
.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input {
  margin: 0;
  vertical-align: middle;
}

#add_payment_method .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout {
  padding: 1em 0;
}

#add_payment_method .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::before,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::before,
.woocommerce-checkout .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::before {
  content: " ";
  display: table;
}

#add_payment_method .wc-proceed-to-checkout::after,
.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::after {
  clear: both;
}

#add_payment_method .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  padding: 1em;
}

#add_payment_method .cart-collaterals .shipping-calculator-button,
.woocommerce-cart .cart-collaterals .shipping-calculator-button,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button {
  float: none;
  margin-top: 0.5em;
  display: inline-block;
}

#add_payment_method .cart-collaterals .shipping-calculator-button::after,
.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after {
  font-family: "icomoon" !important;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 0.618em;
  content: "\e927";
  text-decoration: none;
}

#add_payment_method .cart-collaterals .shipping-calculator-form,
.woocommerce-cart .cart-collaterals .shipping-calculator-form,
.woocommerce-checkout .cart-collaterals .shipping-calculator-form {
  margin: 1em 0 0 0;
}

#add_payment_method .cart-collaterals .cart_totals p small,
.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small {
  color: #767676;
  font-size: 0.83em;
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
}

#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th {
  border-top: 0;
}

#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  width: 35%;
}

#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  line-height: 1.5em;
}

#add_payment_method .cart-collaterals .cart_totals table small,
.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small {
  color: #767676;
}

#add_payment_method .cart-collaterals .cart_totals table select,
.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select {
  width: 100%;
}

#add_payment_method .cart-collaterals .cart_totals .discount td,
.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td {
  color: #958e09;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #e9e6ed;
}

#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination {
  margin-bottom: 0;
}

#add_payment_method .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}

#add_payment_method .checkout .col-2 h3#ship-to-different-address,
.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}

#add_payment_method .checkout .col-2 .notes,
.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes {
  clear: left;
}

#add_payment_method .checkout .col-2 .form-row-first,
.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first {
  clear: left;
}

#add_payment_method .checkout .create-account small,
.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small {
  font-size: 11px;
  color: #767676;
  font-weight: 400;
}

#add_payment_method .checkout div.shipping-address,
.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}

#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
  clear: both;
}

#add_payment_method .checkout .checkout-inline-error-message,
.woocommerce-cart .checkout .checkout-inline-error-message,
.woocommerce-checkout .checkout .checkout-inline-error-message {
  color: var(--wc-red);
  font-size: 0.75em;
  margin-bottom: 0;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: var(--va-text-light);
  border-radius: 5px;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid rgba(104, 87, 125, 0.14);
  margin: 0;
  list-style: none outside;
}

#add_payment_method #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::before,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::before,
.woocommerce-checkout #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::before {
  content: " ";
  display: table;
}

#add_payment_method #payment ul.payment_methods::after,
.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::after {
  clear: both;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: 400;
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
  margin: 0 1em 0 0;
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 0.5em;
  padding: 0;
  position: relative;
  box-shadow: none;
}

#add_payment_method #payment ul.payment_methods li img + img,
.woocommerce-cart #payment ul.payment_methods li img + img,
.woocommerce-checkout #payment ul.payment_methods li img + img {
  margin-left: 2px;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before {
  content: " ";
  display: table;
}

#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after {
  clear: both;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row {
  padding: 1em;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: 0.92em;
  line-height: 1.5;
  color: #515151;
  border-radius: 12px;
  background-color: #eee;
}

#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea,
.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea {
  border-color: #c2b9ce;
  border-top-color: #b5aac3;
}

#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder {
  color: #b5aac3;
}

#add_payment_method #payment div.payment_box :-moz-placeholder,
.woocommerce-cart #payment div.payment_box :-moz-placeholder,
.woocommerce-checkout #payment div.payment_box :-moz-placeholder {
  color: #b5aac3;
}

#add_payment_method #payment div.payment_box :-ms-input-placeholder,
.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder {
  color: #b5aac3;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods {
  list-style: none outside;
  margin: 0;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token {
  margin: 0 0 0.5em;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label {
  cursor: pointer;
}

#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  vertical-align: middle;
  margin: -3px 1em 0 0;
  position: relative;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form {
  border: 0;
  padding: 0;
  margin: 1em 0 0;
}

#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right 0.618em center;
  background-size: 32px 20px;
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  width: 100%;
}
@media (max-width: 998px) {
  .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    flex-direction: column;
    display: flex;
  }
}

.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
  content: " ";
  display: table;
}

.woocommerce .col2-set::after,
.woocommerce-page .col2-set::after {
  clear: both;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  float: left;
  width: 48%;
}
@media (max-width: 998px) {
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1 {
    width: 100%;
  }
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  float: right;
  width: 48%;
}
@media (max-width: 998px) {
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    width: 100%;
  }
}

.woocommerce img,
.woocommerce-page img {
  height: auto;
  max-width: 100%;
}

.woocommerce #content div.product div.images,
.woocommerce div.product div.images,
.woocommerce-page #content div.product div.images,
.woocommerce-page div.product div.images {
  float: left;
  width: 48%;
}
@media (max-width: 998px) {
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
    width: 100%;
  }
}

.woocommerce #content div.product div.thumbnails::after,
.woocommerce #content div.product div.thumbnails::before,
.woocommerce div.product div.thumbnails::after,
.woocommerce div.product div.thumbnails::before,
.woocommerce-page #content div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::before,
.woocommerce-page div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::before {
  content: " ";
  display: table;
}

.woocommerce #content div.product div.thumbnails::after,
.woocommerce div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::after {
  clear: both;
}

.woocommerce #content div.product div.thumbnails a,
.woocommerce div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a {
  float: left;
  width: 30.75%;
  margin-right: 3.8%;
  margin-bottom: 1em;
}

.woocommerce #content div.product div.thumbnails a.last,
.woocommerce div.product div.thumbnails a.last,
.woocommerce-page #content div.product div.thumbnails a.last,
.woocommerce-page div.product div.thumbnails a.last {
  margin-right: 0;
}

.woocommerce #content div.product div.thumbnails a.first,
.woocommerce div.product div.thumbnails a.first,
.woocommerce-page #content div.product div.thumbnails a.first,
.woocommerce-page div.product div.thumbnails a.first {
  clear: both;
}

.woocommerce #content div.product div.thumbnails.columns-1 a,
.woocommerce div.product div.thumbnails.columns-1 a,
.woocommerce-page #content div.product div.thumbnails.columns-1 a,
.woocommerce-page div.product div.thumbnails.columns-1 a {
  width: 100%;
  margin-right: 0;
  float: none;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  float: right;
  width: 48%;
  clear: none;
}
@media (max-width: 998px) {
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100%;
  }
}

.woocommerce #content div.product .woocommerce-tabs,
.woocommerce div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
  clear: both;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::before {
  content: " ";
  display: table;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after {
  clear: both;
}

.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  display: inline-block;
}

.woocommerce #content div.product #reviews .comment::after,
.woocommerce #content div.product #reviews .comment::before,
.woocommerce div.product #reviews .comment::after,
.woocommerce div.product #reviews .comment::before,
.woocommerce-page #content div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::before,
.woocommerce-page div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::before {
  content: " ";
  display: table;
}

.woocommerce #content div.product #reviews .comment::after,
.woocommerce div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::after {
  clear: both;
}

.woocommerce #content div.product #reviews .comment img,
.woocommerce div.product #reviews .comment img,
.woocommerce-page #content div.product #reviews .comment img,
.woocommerce-page div.product #reviews .comment img {
  float: right;
  height: auto;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  float: left;
}
@media (max-width: 460px) {
  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count {
    float: unset;
  }
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: right;
}
@media (max-width: 460px) {
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    float: unset;
  }
}

.woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce .woocommerce-pagination ul.page-numbers::before,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::before {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after {
  clear: both;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  display: inline-block;
}

.woocommerce form .form-row::after,
.woocommerce form .form-row::before,
.woocommerce-page form .form-row::after,
.woocommerce-page form .form-row::before {
  content: " ";
  display: table;
}

.woocommerce form .form-row::after,
.woocommerce-page form .form-row::after {
  clear: both;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
  display: inline;
}

.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  width: 100%;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  box-sizing: border-box;
  width: 100%;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 47%;
  overflow: visible;
}

.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
  float: left;
}

.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
  float: right;
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
  clear: both;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.woocommerce form .password-input input[type=password],
.woocommerce-page form .password-input input[type=password] {
  padding-right: 2.5rem;
}

.woocommerce form .password-input input::-ms-reveal,
.woocommerce-page form .password-input input::-ms-reveal {
  display: none;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  color: var(--wc-form-color-text, #000);
  cursor: pointer;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0.7em;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  -webkit-font-smoothing: inherit;
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
  font-family: WooCommerce;
  speak: never;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 0.618em;
  content: "\e010";
  text-decoration: none;
  margin-left: 0;
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block;
}

.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
  color: #585858;
}

.woocommerce #payment .form-row select,
.woocommerce-page #payment .form-row select {
  width: auto;
}

.woocommerce #payment .terms,
.woocommerce #payment .wc-terms-and-conditions,
.woocommerce-page #payment .terms,
.woocommerce-page #payment .wc-terms-and-conditions {
  text-align: left;
  padding: 0 1em 0 0;
  float: left;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: right;
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-billing-fields::before,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce .woocommerce-shipping-fields::before,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-billing-fields::before,
.woocommerce-page .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-shipping-fields::before {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-shipping-fields::after {
  clear: both;
}

.woocommerce .woocommerce-terms-and-conditions,
.woocommerce-page .woocommerce-terms-and-conditions {
  margin-bottom: 1.618em;
  padding: 1.618em;
}

.woocommerce .woocommerce-oembed,
.woocommerce-page .woocommerce-oembed {
  position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 30%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 68%;
}

.woocommerce-account .woocommerce-MyAccount-content mark {
  background-color: transparent;
  color: inherit;
  font-weight: 700;
}

.rtl .woocommerce .col2-set .col-1,
.rtl .woocommerce-page .col2-set .col-1 {
  float: right;
}

.rtl .woocommerce .col2-set .col-2,
.rtl .woocommerce-page .col2-set .col-2 {
  float: left;
}

.woocommerce table.shop_table_responsive thead,
.woocommerce-page table.shop_table_responsive thead {
  display: none;
}

.woocommerce table.shop_table_responsive tbody tr:first-child td:first-child,
.woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
  border-top: 0;
}

.woocommerce table.shop_table_responsive tbody th,
.woocommerce-page table.shop_table_responsive tbody th {
  display: none;
}

.woocommerce table.shop_table_responsive tr td::before,
.woocommerce-page table.shop_table_responsive tr td::before {
  content: attr(data-title) ": ";
  font-weight: 700;
  margin-right: 6px;
}

.woocommerce table.shop_table_responsive tr td.actions::before,
.woocommerce table.shop_table_responsive tr td.product-remove::before,
.woocommerce-page table.shop_table_responsive tr td.actions::before,
.woocommerce-page table.shop_table_responsive tr td.product-remove::before {
  display: none;
}

.woocommerce table.my_account_orders tr td.order-actions::before,
.woocommerce-page table.my_account_orders tr td.order-actions::before {
  display: none;
}

.woocommerce table.my_account_orders tr td.order-actions .button,
.woocommerce-page table.my_account_orders tr td.order-actions .button {
  float: none;
  margin: 0.125em 0.25em 0.125em 0;
}

.woocommerce #content div.product div.images,
.woocommerce #content div.product div.summary,
.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.images,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.images,
.woocommerce-page div.product div.summary {
  float: left;
  width: calc((100% - 24px) / 2);
}
@media (max-width: 998px) {
  .woocommerce #content div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.images,
  .woocommerce-page div.product div.summary {
    width: 100%;
  }
}

div.entry-summary {
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 998px) {
  div.entry-summary {
    padding-left: unset;
  }
}

.woocommerce #content table.cart td.actions,
.woocommerce table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce-page table.cart td.actions {
  text-align: left;
}

.woocommerce #content table.cart td.actions .coupon .coupon-error-notice,
.woocommerce table.cart td.actions .coupon .coupon-error-notice,
.woocommerce-page #content table.cart td.actions .coupon .coupon-error-notice,
.woocommerce-page table.cart td.actions .coupon .coupon-error-notice {
  clear: left;
  color: var(--wc-red);
  float: left;
  font-size: 0.75em;
  margin-bottom: 0;
  text-align: left;
  width: 48%;
}

.woocommerce-page.woocommerce-checkout form.login .form-row,
.woocommerce.woocommerce-checkout form.login .form-row {
  width: 100%;
  float: none;
}

.woocommerce #payment .terms,
.woocommerce-page #payment .terms {
  text-align: left;
  padding: 0;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: none;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1em;
}

.woocommerce .lost_reset_password .form-row-first,
.woocommerce .lost_reset_password .form-row-last,
.woocommerce-page .lost_reset_password .form-row-first,
.woocommerce-page .lost_reset_password .form-row-last {
  width: 100%;
  float: none;
  margin-right: 0;
}

.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
}

.woocommerce-tabs a {
  color: var(--va-accent);
}

#content_description ul li,
#tab-description ul li {
  list-style: unset;
  color: var(--va-accent-dark);
}

#content_description ul,
#tab-description ul {
  padding: 8px 0 8px 32px;
  list-style: disc !important;
}

.payment_method_spgw_card label {
  display: inline-flex;
  align-items: center;
}
.payment_method_spgw_card label img {
  width: 120px;
  height: 20px;
}

.payment_method_ppcp-gateway label {
  display: inline-flex;
  align-items: center;
}

.woocommerce div.product form.cart {
  flex-direction: column;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qib-button-wrapper {
  justify-content: left !important;
}

.woocommerce-tabs h4 {
  color: var(--va-accent);
}

.variable-item-span-color {
  display: block;
  height: 28px;
  width: 28px;
  border-radius: 100px !important;
}

.variable-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.va-product-pdf a {
  text-decoration: none !important;
}

.woocommerce form .form-row label,
.woocommerce-LostPassword a {
  color: var(--va-accent-dark);
}

.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.woocommerce-MyAccount-navigation ul li {
  display: flex;
  align-items: center;
  padding: 8px 24px;
  background-color: black;
  border-radius: 100px;
  justify-content: center;
}
.woocommerce-MyAccount-navigation ul li a {
  color: var(--va-accent);
  font-weight: 600;
  font-family: var(--va-titlefont);
  font-size: 16px;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul .is-active {
  background-color: var(--va-text-light);
}

.woocommerce div.product form.cart .variations th {
  text-align: left;
}

.woo-variation-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.reset_variations {
  color: var(--va-accent);
  border: 2px solid var(--va-accent);
  padding: 1px 6px;
  border-radius: 6px;
  line-height: 1.5;
}

.button-variable-item {
  padding: 0 24px;
  border-radius: 100px;
  border: 2px solid var(--va-grey);
  color: var(--va-grey);
}

.button-variable-item.selected {
  border: 2px solid var(--va-accent-dark);
  color: var(--va-accent-dark);
}

.variable-item.selected {
  border: 2px solid var(--va-accent);
  border-radius: 100px;
}

.woocommerce-variation-price .price,
.wapf--inner .price {
  border: unset !important;
}

.wapf {
  color: var(--va-accent-dark);
}

.wapf-wrapper,
.wapf-product-totals {
  background-color: var(--va-back-light);
  padding: 24px;
  border-radius: 12px;
  margin: 16px 0;
}

.wapf-product-totals .wapf--inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wc-block-cart__sidebar {
  background-color: var(--va-accent-dark);
  border-radius: 12px;
  padding: 24px;
}

.woocommerce .entry-summary {
  background-color: var(--va-text-light);
  border-radius: 12px;
  padding: var(--va-padding);
}
.woocommerce .entry-summary p {
  color: var(--va-accent-dark);
}

.wc-tabs-wrapper {
  width: 100%;
}

.sku_wrapper {
  display: none;
}

.wapf-grand-total {
  color: var(--va-accent);
}

.wapf--above {
  font-weight: 600;
}

.wapf-checkable .wapf-input-label {
  display: flex;
  align-items: baseline;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  gap: 10px;
}

.wapf-field-checkboxes .wapf-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wapf-field-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.woo-content .va-presenter {
  margin-bottom: unset;
}

.variable-item-radio-value-wrapper {
  color: var(--va-accent-dark);
  margin-right: 8px;
}

input[type=radio][name=deposit-mode][value=check_full] {
  display: none !important;
}

.deposits-input-wrapper {
  display: none;
}

.p-Input {
  color: var(--va-accent-dark) !important;
}

#tab-additional_information {
  display: none !important;
}

.woocommerce-product-gallery {
  position: relative;
}

.flex-direction-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.flex-direction-nav a {
  position: absolute;
  top: 40px;
  background: rgba(0, 0, 0, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  text-decoration: none;
  pointer-events: auto;
  z-index: 10;
  transition: background 0.3s;
}

.flex-direction-nav a:hover {
  background: rgba(0, 0, 0, 0.2);
}

.flex-direction-nav .flex-prev {
  left: 10px;
}

.flex-direction-nav .flex-next {
  right: 10px;
}

.woocommerce-product-gallery .flex-viewport {
  position: relative;
}

.woocommerce-product-gallery .flex-viewport .flex-direction-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

body .lg-outer.lg-css3 .lg-current {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.interier-slider,
.outdoor-slider,
.scheme-slider {
  cursor: pointer;
  border-radius: 12px;
}
.interier-slider .swiper-button-next,
.interier-slider .swiper-button-prev,
.outdoor-slider .swiper-button-next,
.outdoor-slider .swiper-button-prev,
.scheme-slider .swiper-button-next,
.scheme-slider .swiper-button-prev {
  background: rgba(255, 255, 255, 0.2509803922);
  border-radius: 2px;
}

.product-sliders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.outdoor-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.outdoor-slider .swiper-slide img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}

.va-page-faq {
  display: flex;
  flex-direction: column;
  gap: var(--va-gap);
  margin-bottom: var(--va-offset);
}

.va-faq {
  background-color: var(--va-accent-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
@media (max-width: 998px) {
  .va-faq {
    padding: 50px 20px;
  }
}
.va-faq p {
  color: var(--va-text);
}
.va-faq__item {
  margin: 8px 0;
  border-bottom: 1px solid var(--va-accent);
}
@media (max-width: 998px) {
  .va-faq__item {
    border-bottom: unset;
  }
}
.va-faq__question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.va-faq__answer {
  display: none;
  margin: 20px 0;
}
.va-faq__item.active .va-faq__answer {
  display: block;
}
.va-faq__item.active .va-faq__question span::after {
  transform: rotate(45deg);
}
.va-faq__btn {
  margin-top: 20px;
}
.va-faq .va-accordeon-more {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.va-faq-plus {
  background-color: var(--va-accent);
  width: 48px;
  height: 48px;
  position: relative; /* нужно для абсолютного позиционирования псевдоэлемента */
  display: flex;
  flex-shrink: 0;
}

.va-faq-plus::after {
  content: "+";
  font-size: 32px;
  color: var(--va-white);
  font-family: var(--va-userfont);
  font-weight: 400;
  line-height: 1; /* убираем лишние отступы шрифта */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* ровно по центру */
  transition: transform 0.3s ease;
}

.va-faq__item.active .va-faq__question span::after {
  transform: translate(-50%, -50%) rotate(45deg); /* центр + вращение */
  padding-left: 1px;
}

.va-tracking__item {
  display: flex;
  gap: var(--va-gap);
  margin-bottom: var(--va-offset);
  flex-wrap: wrap;
}
.va-tracking__item:nth-child(2n) .va-tracking__video {
  order: 1;
}
@media (max-width: 998px) {
  .va-tracking__item:nth-child(2n) .va-tracking__video {
    order: 2;
  }
}
.va-tracking__item:nth-child(2n) .va-tracking__text {
  order: 2;
}
@media (max-width: 998px) {
  .va-tracking__item:nth-child(2n) .va-tracking__text {
    order: 1;
  }
}
.va-tracking__text {
  display: flex;
  width: 100%;
  flex-basis: calc((100% - var(--va-gap)) / 2);
  align-items: center;
}
@media (max-width: 998px) {
  .va-tracking__text {
    flex-basis: 100%;
  }
}
.va-tracking__video {
  display: flex;
  width: 100%;
  flex-basis: calc((100% - var(--va-gap)) / 2);
  aspect-ratio: 2/1;
}
.va-tracking__video iframe {
  border-radius: 12px;
}
@media (max-width: 998px) {
  .va-tracking__video {
    flex-basis: 100%;
  }
}

.va-features {
  counter-reset: feature;
}
.va-features__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--va-offset);
  background-color: var(--va-accent-dark);
  border-radius: 12px;
}
.va-features__item:nth-child(2n) .va-features__video {
  order: 2;
}
@media (max-width: 998px) {
  .va-features__item:nth-child(2n) .va-features__video {
    order: 1;
  }
}
.va-features__item:nth-child(2n) .va-features__text {
  order: 1;
}
@media (max-width: 998px) {
  .va-features__item:nth-child(2n) .va-features__text {
    order: 2;
  }
}
.va-features__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  flex-basis: 50%;
  padding: 24px;
  justify-content: center;
}
@media (max-width: 998px) {
  .va-features__text {
    flex-basis: 100%;
    padding: 24px;
  }
}
.va-features__video {
  display: flex;
  width: 100%;
  flex-basis: 50%;
  aspect-ratio: 2/1;
}
.va-features__video iframe {
  border-radius: 12px;
}
@media (max-width: 998px) {
  .va-features__video {
    flex-basis: 100%;
  }
}

.va-features__item h3::before {
  counter-increment: feature;
  content: counter(feature);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: #2e2e2e;
  font-weight: bold;
  font-size: 30px;
  border-radius: 6px;
}

.va-presenter {
  margin-bottom: var(--va-offset);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.va-presenter iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
}
.va-presenter iframe .id_window-wrapper,
.va-presenter iframe .id_sidebar-wrapper {
  display: none !important;
}
.va-presenter .va-btn {
  position: absolute;
  bottom: 16px;
  left: 40px;
  z-index: 1000;
}

.va-presenter-mainpage {
  display: none;
}

.main_wrapper {
  aspect-ratio: 16/8;
  width: 100%;
  display: flex;
  position: relative;
  left: 0;
  top: 0;
}

.content_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  pointer-events: none;
}

.header_container {
  display: none;
}

.price_container {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  color: rgb(9, 67, 130);
  z-index: 50;
  padding-right: 14px;
  display: flex;
  gap: 1rem;
  font-size: 16px;
}

@media (max-aspect-ratio: 12/10) {
  .main_wrapper {
    aspect-ratio: auto;
    height: 83%;
    height: 83svh;
    /*background-color: red;*/
  }
  .header_container {
    position: absolute;
    top: 10px;
    color: rgb(193, 193, 193);
    z-index: 50;
    display: flex;
    gap: 1rem;
    font-size: 2rem;
    pointer-events: auto;
    font-family: Inter, Sans-serif;
  }
  .price_container {
    left: auto;
    bottom: -10px;
    color: rgb(193, 193, 193);
    padding-right: 0px;
    pointer-events: auto;
    transform: translateY(0);
  }
}
@media (max-width: 640px) and (orientation: portrait) {
  .main_wrapper {
    aspect-ratio: 10/16;
  }
  .header_container {
    position: absolute;
    top: 10px;
    color: rgb(193, 193, 193);
    z-index: 50;
    display: flex;
    gap: 1rem;
    font-size: 1.6rem;
    pointer-events: auto;
    font-family: Inter, Sans-serif;
  }
  .price_container {
    left: auto;
    bottom: 10px;
    color: rgb(193, 193, 193);
    padding-right: 0px;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.va-my-shikkee {
  margin-bottom: var(--va-offset);
}

.va-presenter-single-product {
  width: 100%;
}

.cart_item {
  padding: 16px 16px 16px 0;
}
.cart_item .product-thumbnail img {
  width: 100px;
  height: auto;
  border-radius: 5px;
}
.cart_item .product-thumbnail::before {
  display: none;
}

.coupon {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.coupon #coupon_code {
  min-width: 180px;
  border-radius: 100px;
  border: 2px solid lightgray;
  padding: 8px 12px;
}

#pwgc-redeem-gift-card-number {
  min-width: 180px;
  border-radius: 100px;
  border: 2px solid lightgray;
  padding: 8px 12px;
  margin-right: 12px;
}

#pwgc-redeem-gift-card-container {
  color: var(--va-accent-dark);
}

.wp-block-woocommerce-checkout,
.woocommerce-order {
  border-radius: 12px;
  background-color: var(--va-text-light);
  padding: 24px;
  color: var(--va-accent-dark);
}
.wp-block-woocommerce-checkout p,
.wp-block-woocommerce-checkout h2,
.wp-block-woocommerce-checkout h3,
.wp-block-woocommerce-checkout h4,
.woocommerce-order p,
.woocommerce-order h2,
.woocommerce-order h3,
.woocommerce-order h4 {
  color: var(--va-accent-dark);
}
.wp-block-woocommerce-checkout .price,
.woocommerce-order .price {
  font-size: unset;
  text-align: unset;
  padding: unset;
  border: unset;
  border-radius: unset;
  width: unset;
}

.product-quantity::before,
.product-name::before {
  display: none;
}

@media (max-width: 768px) {
  .product-quantity::before,
  .product-name::before {
    display: flex;
  }
  .woocommerce-cart-form table.shop_table {
    border: 0;
  }
  .woocommerce-cart-form table.shop_table thead {
    display: none;
  }
  .woocommerce-cart-form table.shop_table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 10px;
    background: #fff;
  }
  .woocommerce-cart-form table.shop_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 8px 5px;
    text-align: left;
  }
  .woocommerce-cart-form table.shop_table td::before {
    content: attr(data-title);
    font-weight: 600;
    flex: 1;
    text-align: left;
    padding-right: 10px;
    color: #333;
  }
  .woocommerce-cart-form table.shop_table td.product-remove::before {
    content: "";
  }
  .woocommerce-cart-form table.shop_table td.product-thumbnail img {
    max-width: 100px;
    height: auto;
    display: block;
  }
  .woocommerce-cart-form table.shop_table td.product-name {
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-cart-form table.shop_table td.product-name::before {
    margin-bottom: 5px;
  }
  .woocommerce-cart-form table.shop_table td.product-quantity {
    flex-wrap: wrap;
  }
  .woocommerce-cart-form table.shop_table td.product-quantity .quantity {
    margin-left: auto;
  }
  .woocommerce-cart-form table.shop_table .actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .woocommerce-cart-form table.shop_table .actions .coupon {
    width: 100%;
  }
  .woocommerce-cart-form table.shop_table .actions input,
  .woocommerce-cart-form table.shop_table .actions button {
    width: 100%;
  }
}
.va-prepp-repeater {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.va-prepp-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.va-prepp-row--reverse {
  flex-direction: row-reverse;
}

.va-prepp-image {
  display: inline-flex;
  max-height: 800px;
}

.va-prepp-image img {
  display: block;
  max-height: 800px;
  height: auto;
  width: auto;
  border-radius: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid var(--va-grey);
}

.va-prepp-text {
  flex: 1;
  color: var(--va-accent-dark);
}

@media (max-width: 768px) {
  .va-prepp-row,
  .va-prepp-row--reverse {
    flex-direction: column;
    gap: 20px;
  }
  .va-prepp-image,
  .va-prepp-text {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */