@charset "UTF-8";
/* Define base variables for light theme */
:root {
  --e-global-color-accent: #0351C5;
}

/* Dark theme — override variables when body has .dark-mode class */
.elementor-kit-12638 {
  --e-global-color-7ceac12: #FFFFFF;
  --e-global-color-text: #0A0A0A;
}

/* Base styles for main */
.main {
  background-color: var(--e-global-color-7ceac12);
  color: var(--e-global-color-text);
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

body {
  background-color: #121212;
}
body.desktop-xl .main {
  max-width: 100% !important;
}
body.desktop .main {
  max-width: 1024px !important;
  width: 100%;
}
body.desktop .header,
body.desktop .footer {
  margin: 0 auto;
  width: 100%;
  max-width: 1024px !important;
}
body.tablet .main {
  max-width: 768px !important;
}
body.tablet .header,
body.tablet .footer {
  margin: 0 auto;
  width: 100%;
  max-width: 768px !important;
}
body.mobile .main {
  max-width: 425px !important;
}
body.mobile .header,
body.mobile .footer {
  margin: 0 auto;
  width: 100%;
  max-width: 425px !important;
}

/* Examples of styling text or buttons using theme colors */
h1, p, a, button {
  color: var(--e-global-color-text);
}

button {
  background-color: var(--e-global-color-7ceac12);
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .elementor-kit-12638 {
  --e-global-color-7ceac12: #141414;
  --e-global-color-text: #FFFFFF;
}
body.dark-mode .main {
  background-color: var(--e-global-color-7ceac12);
  color: var(--e-global-color-text);
}

.customizer__wrapper {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 100000;
  height: 350px;
}
.customizer__wrapper.active .customizer__toggle {
  display: none;
}
.customizer__wrapper.active .customizer__content {
  right: 0;
  z-index: 100000;
}
.customizer__toggle {
  color: #fff;
  background-color: #1C1C1B;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  border-radius: 4px 0 0 4px !important;
  font-weight: bold;
  position: absolute;
  top: 25%;
  right: 0;
  box-shadow: 0px 4px 16px 0px rgba(66, 66, 66, 0.2392156863);
  transition: right 1s ease-in-out, color 0.3s ease, background 0.3s ease;
}
.customizer__toggle:hover, .customizer__toggle:focus {
  color: #fff !important;
  background: #1C1C1B !important;
}
.customizer__toggle i {
  font-size: 20px;
}
.customizer__content {
  border-radius: 8px 0 0 8px;
  background: #1C1C1B;
  max-width: 316px;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -370px;
  transition: right 1s ease-in-out;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  padding: 20px;
  color: #020101;
  display: flex;
  flex-direction: column;
}
.customizer__maincontent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding-bottom: 80px;
}
.customizer__top {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.customizer__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.customizer__heading h2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.customizer__colors {
  display: flex;
  gap: 8px;
}
.customizer__item {
  max-width: 24px;
  width: 100%;
  height: 24px;
  cursor: pointer;
  border-radius: 2px;
}
.customizer__item.active {
  transform: scale(1.2);
  transition: 0.5s all;
  border: 1px solid white;
  overflow: hidden;
}
.customizer__buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  position: static;
  margin-top: 20px;
}
.customizer__btn {
  max-width: 50%;
  width: 100%;
  transition: 0.3s all;
}
.customizer__btn span {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
.customizer__btn:hover span {
  color: #fff;
}
.customizer__btn--save {
  background: #5E47D2;
}
.customizer__btn--save:hover, .customizer__btn--save:focus {
  background: #523fb2 !important;
}
.customizer__btn--reset {
  background: #0A0A0A;
}
.customizer__btn--reset:hover, .customizer__btn--reset:focus {
  background: #2C2C2C !important;
}

button.customizer__btn-close {
  background: none;
  color: #fff;
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 30px;
}
button.customizer__btn-close:hover, button.customizer__btn-close:focus {
  background: none !important;
  transition: 0.5s all;
  color: #5E47D2;
}

.theme-switcher {
  position: relative;
  display: inline-block;
  max-width: 48px;
  width: 100%;
  height: 24px;
}
.theme-switcher:hover {
  cursor: pointer;
}
.theme-switcher__input {
  opacity: 0;
  width: 0;
  height: 0;
}
.theme-switcher__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2c2c2c;
  transition: 0.4s ease;
  border-radius: 24px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.6);
}
.theme-switcher__slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #f5f5f5;
  border-radius: 50%;
  transition: 0.4s ease;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}
.theme-switcher__input:checked + .theme-switcher__slider {
  background-color: #2d2c2c;
}
.theme-switcher__input:checked + .theme-switcher__slider::before {
  transform: translateX(24px);
  background-color: #141414;
}

.preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.preview__wrapper {
  max-height: 332px;
  overflow-y: auto;
  padding-right: 12px;
}
.preview__wrapper::-webkit-scrollbar {
  width: 8px;
}
.preview__wrapper::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 10px;
}
.preview__wrapper::-webkit-scrollbar-track {
  background: #222;
  border-radius: 10px;
  margin-block: 4px;
}
.preview__placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
  font-size: 16px;
  font-weight: 500;
  background: #1a1a1a;
  border-radius: 8px;
  display: block;
}
.preview__item {
  position: relative;
  display: none;
}
.preview__item:hover .preview__content {
  visibility: visible;
  opacity: 1;
}
.preview__item.active {
  border: 2px solid #fff;
}
.preview__item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.preview__image {
  position: relative;
  max-width: 150px;
  height: 150px;
}
.preview__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left;
}
.preview__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.preview__content h3 {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
}
.preview.show .preview__placeholder {
  display: none;
}
.preview.show .preview__item {
  display: block;
}

.responsive {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.responsive__item {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px !important;
  max-width: 24px;
  width: 100%;
  height: 24px;
  border-radius: 8px !important;
  transition: background-color 0.3s, color 0.3s;
  color: #fff !important;
  font-size: 14px;
}
.responsive__item.active, .responsive__item:focus, .responsive__item:hover {
  cursor: pointer;
  background-color: #fff !important;
  color: #2c2c2c !important;
}
.responsive__item svg {
  max-width: 20px;
  width: 100%;
  height: 20px;
  stroke: currentColor;
  transition: stroke 0.3s;
}

.product__attribute {
  color: #0A0A0A;
}

.cart__attribute {
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.h-product__cart svg {
  min-width: 20px;
  width: 100%;
  height: 20px !important;
}

.h-product__cart path {
  fill: #969696;
}

.like__attribute svg {
  stroke: #969696;
}

.like__attribute.active {
  fill: #969696;
}

.h-product__cart:hover {
  box-shadow: 0px 2px 12px 0px rgba(66, 66, 66, 0.4) !important;
}

.cart__attribute:hover {
  cursor: pointer;
}

.h-product__cart.elementor-widget:hover {
  box-shadow: 0px 2px 12px 0px rgba(66, 66, 66, 0.4);
}

.cart__attribute-icon {
  min-width: 24px;
  width: 100%;
  height: 24px;
}

.h-product__item.sale .h-price--regular span.woocommerce-Price-amount.amount {
  font-weight: 400;
}

.cart__attribute-quantity {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--e-global-color-accent);
}

.like__attribute.e-con.e-flex {
  max-width: 36px;
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.like__attribute svg {
  min-width: 20px;
  width: 100%;
  height: 20px;
}

div.like__attribute:hover {
  cursor: pointer;
  box-shadow: 0px 2px 12px 0px rgba(66, 66, 66, 0.4) !important;
}

div.like__attribute:hover svg {
  stroke: #fff !important;
}

.cart__attribute {
  display: none;
}

.cart__attribute {
  display: none;
}

.like__attribute.active {
  color: var(--e-global-color-accent);
}

.like__attribute.active path {
  color: var(--e-global-color-accent) !important;
}

/* sizes design */
.product__attributes.product__attributes-sizes {
  align-items: center;
  gap: 12px;
  background: rgba(251, 251, 251, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.product__attributes--desktop.product__attributes.product__attributes-sizes {
  padding: 4px 12px;
}

.product__attributes--mobile.product__attributes.product__attributes-sizes {
  padding: 4px 8px;
  height: 28px;
}

.product__attributes.product__attributes-sizes:hover {
  cursor: pointer;
}

.product__attributes.product__attributes-sizes .product__attribute:hover {
  background: var(--e-global-color-accent);
  box-shadow: 0px 2px 12px 0px rgba(66, 66, 66, 0.4);
  border-radius: 4px;
  color: #fff;
  transition: all 0.5s;
}

.product__attributes.product__attributes-sizes {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.h-product__item:hover .product__attributes--desktop.product__attributes.product__attributes-sizes.e-con.e-flex {
  visibility: visible;
  opacity: 1;
}

.product__attributes--mobile .product__attributes {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product__attributes--mobile.active .product__attributes {
  visibility: visible;
  opacity: 1;
}

.product__attributes--mobile .h-product__item .product__attributes.product__attributes-colors {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-200px);
  flex-direction: column;
  transition: all 0.3s ease;
}

.product__attributes--mobile .h-product__item.active .product__attributes.product__attributes-colors.active {
  opacity: 1;
  visibility: visible;
}

.product__mobile-wrapper {
  z-index: 100;
  width: 100%;
  min-height: 40px;
}

.product__attributes.product__attributes-colors:hover {
  cursor: pointer;
}

.product__attribute--mobile .product__attributes.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.product__mobile-wrapper .product__toggle {
  padding: 4px;
  max-width: 32px;
  height: 32px;
  top: 100%;
  transform: translate(-50%, -40px);
  margin: 0 auto;
  position: absolute;
  background: rgba(251, 251, 251, 0.6);
  border-radius: 50%;
  left: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s;
  margin: auto;
}

.product__mobile-wrapper .product__toggle.active {
  top: 100%;
  background: rgba(251, 251, 251, 0.6);
  border-radius: 50%;
  top: -75%;
  transform: rotate(45deg);
  left: 50%;
  transform: rotate(45deg) translateX(-50%);
  transition: transform 0.5s ease-in-out;
}

button.product__toggle:focus {
  background: rgba(251, 251, 251, 0.6) !important;
  border-radius: 50% !important;
}

button.product__toggle:hover {
  background: rgba(251, 251, 251, 0.6) !important;
  border-radius: 50% !important;
}

@media (min-width: 768px) {
  .product__toggle,
  .product__attributes--mobile {
    display: none !important;
  }
}
.product__mobile-wrapper .product__attributes.product__attributes-colors.e-con.e-flex.product__attributes--desktop {
  opacity: 0;
  visibility: none;
}

.product__attribute--mobile .product__attributes.product__attribute-color.active {
  visibility: visible;
  opacity: 1;
  left: -100%;
  position: absolute;
}

.product__attributes.product__attributes-sizes .product__attribute {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 400;
}

.product__attributes--desktop.product__attributes-sizes .product__attribute {
  max-width: 40px;
  width: 100%;
  height: 32px;
}

.product__attributes--mobile.product__attributes-sizes .product__attribute {
  font-size: 14px;
  line-height: 20px;
  max-width: 18px;
  width: 100%;
  height: 20px;
}

.product__attribute--mobile .product__attributes.product__attributes-sizes .product__attribute {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__attributes.product__attributes-colors.product__attributes--mobile {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-200px);
  flex-direction: column;
  transition: all 0.3s ease;
  align-items: flex-end;
}

.product__attributes.product__attributes-colors .product__color-item {
  max-width: 16px;
  width: 100%;
  height: 16px;
  border-radius: 2px;
}

.h-product__attributes-colors--rounded .product__color-item {
  border-radius: 50% !important;
  transition: all 0.3s;
}

.h-product__attributes-colors--rounded .product__color-item.active {
  box-shadow: 0 0 0 1px #fff, 0 0 0 3px #aaa;
}

.h-tabs-without-colors .product__attributes.product__attributes-colors.e-con.e-flex.product__attributes--desktop {
  display: none;
}

.h-tabs-without-count .cart__attribute.e-con.e-flex {
  display: none;
}

.product__attributes.product__attributes-colors.active.product__attributes--mobile {
  opacity: 1;
  visibility: visible;
}

.elementor.sale .h-price--regular .woocommerce-Price-amount.amount {
  font-weight: 400;
}

.page-template-home-4 .product__attributes {
  visibility: hidden;
  opacity: 0;
}

.page-template-home-4 .cart__attribute {
  visibility: hidden;
  opacity: 0;
}

.page-template-home-4 .product__mobile-wrapper {
  visibility: hidden;
  opacity: 0;
}

.h-tabs-without-colors .product__attributes.product__attributes-colors.e-con.e-flex.product__attributes--desktop {
  display: none;
}

svg.cart__attribute-icon path {
  fill: var(--e-global-color-accent) !important;
  stroke: var(--e-global-color-accent);
}

.tabs__slider a.h-product-link {
  height: 432px !important;
}

video.product-media__video,
img.product-media__image {
  height: 448px;
  width: 100%;
  object-fit: cover;
}

.tabs video.product-media__video,
.tabs img.product-media__image {
  height: 432px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .tabs__slider a.h-product-link {
    height: 360px !important;
  }
  video.product-media__video,
  img.product-media__image {
    height: 260px !important;
    width: 100%;
    object-fit: cover;
  }
  .tabs video.product-media__video,
  .tabs img.product-media__image {
    height: 360px !important;
    width: 100%;
    object-fit: cover;
  }
}
.product__label {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .product__label {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .cart__attribute-icon {
    max-width: 20px;
    width: 100%;
    height: 20px;
  }
  .cart__attribute-quantity {
    font-size: 14px;
    line-height: 20px;
  }
}
/*# sourceMappingURL=main.css.map */
