@charset "UTF-8";
@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader_Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
body {
  font-size: clamp(14px, 1.0416666667vw, 20px);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  text-transform: uppercase;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a {
  color: inherit;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  position: static !important;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
}

.main {
  display: block;
}

.container {
  max-width: 1261px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

ul {
  margin: 0;
  padding: 0;
}

*:hover {
  transition: ease 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  color: #000;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(14px, 5vw, 96px);
  font-weight: 400;
}
@media screen and (max-width: 1210px) {
  h1 {
    font-size: clamp(14px, 6.25vw, 120px);
  }
}

h2 {
  font-size: clamp(14px, 2.5vw, 48px);
  font-weight: 400;
}
@media screen and (max-width: 769px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 400;
}

.header {
  position: relative;
  width: 100%;
  background: #ECECFB;
  padding: clamp(14px, 1.0416666667vw, 20px) 0;
}
@media screen and (max-width: 769px) {
  .header {
    position: relative;
    width: 100%;
    z-index: 999;
  }
}
.header__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  display: flex;
  align-items: center;
  margin: 0;
  gap: clamp(14px, 2.0833333333vw, 40px);
}
.header__menu ul li {
  list-style: none;
}
.header__menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: clamp(14px, 1.0416666667vw, 20px);
}
.header__menu ul li a:hover {
  color: #6425CB;
}
.header__menu ul li.current-menu-item a {
  color: #6425CB;
}
.header__menu .menu-toggle {
  border: none;
  background: transparent;
}
.header .hamburger {
  display: none;
  position: relative;
  width: 35px;
  margin: 0 0 0 auto;
  cursor: pointer;
  appearance: none;
  background: none;
  outline: none;
  border: none;
  z-index: 99;
}
@media screen and (max-width: 769px) {
  .header .hamburger {
    display: block;
    position: relative;
  }
}
.header .hamburger .bar,
.header .hamburger:after,
.header .hamburger:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background: #000;
  margin: 6px 0;
  transition: 0.4s;
}
.header .hamburger.is-active:before {
  transform: rotate(-45deg) translate(-8px, 6px);
}
.header .hamburger.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}
.header .hamburger.is-active .bar {
  opacity: 0;
}
.header .mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  z-index: 9;
  background-color: #fff;
  transition: ease 0.4s;
  border-top: 3px solid #ECECFB;
}
.header .mobile-nav ul {
  flex-direction: column;
  padding: 0;
}
.header .mobile-nav li {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 40px;
  background-color: #ECECFB;
  margin: 0;
}
@media screen and (max-width: 500px) {
  .header .mobile-nav li {
    padding: 12px 20px;
  }
}
.header .mobile-nav li:before {
  left: 20px;
  right: unset;
  width: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.header .mobile-nav li:nth-child(2n) {
  background-color: #fff;
}
.header .mobile-nav li:has(ul.sub-menu) a {
  position: relative;
}
.header .mobile-nav li:has(ul.sub-menu) a:before {
  content: "\f107";
  position: absolute;
  font-size: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  right: -15px;
  bottom: 0;
  top: 0;
  margin: auto;
}
@media screen and (max-width: 769px) {
  .header .mobile-nav li:has(ul.sub-menu) a:before {
    content: none;
  }
}
.header .mobile-nav li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
}
@media screen and (max-width: 500px) {
  .header .mobile-nav li .sub-menu {
    margin: 0;
  }
}
.header .mobile-nav.is-active {
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  left: 0;
}
.header__contact {
  display: flex;
  gap: clamp(14px, 1.0416666667vw, 20px);
}
.header__contact a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.0416666667vw, 20px);
}
.header__contact a:hover {
  color: #6425CB;
}
@media screen and (max-width: 768px) {
  .header__contact span {
    display: none;
  }
}
.header__logo img {
  width: 200px;
}
@media screen and (max-width: 769px) {
  .header__logo img {
    width: 150px;
  }
}
@media screen and (max-width: 769px) {
  .header__mobile-reverse {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: clamp(14px, 1.3020833333vw, 25px);
  }
}
.header .catalog-item .sub-menu {
  position: relative;
  display: none;
}
.header .catalog-item .sub-menu > li {
  background: unset;
}
.header .submenu-toggle {
  position: absolute;
  right: 81px;
  font-size: 30px;
  top: 0;
}

.footer {
  padding: clamp(14px, 2.0833333333vw, 40px) 0;
  background: #ECECFB;
  margin-top: auto;
}
.footer__all {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .footer__all {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 769px) {
  .footer__all {
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  .footer__logo {
    flex-basis: 100%;
    text-align: center;
  }
}
.footer__logo img {
  width: 200px;
}
@media screen and (max-width: 560px) {
  .footer__menu {
    flex-basis: 100%;
    text-align: center;
  }
}
.footer__menu h3 {
  font-weight: 600;
}
.footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.625vw, 12px);
  margin-top: clamp(14px, 1.0416666667vw, 20px);
}
.footer__menu ul li {
  list-style: none;
}
.footer__menu ul li a {
  color: #000;
  text-decoration: none;
}
.footer__menu ul li a:hover {
  color: #6425CB;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.625vw, 12px);
}
@media screen and (max-width: 560px) {
  .footer__contact {
    flex-basis: 100%;
    text-align: center;
  }
}
.footer__contact h3 {
  font-weight: 600;
}
.footer__contact a {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.0416666667vw, 20px);
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 560px) {
  .footer__contact a {
    justify-content: center;
  }
}
.footer__contact a:hover {
  color: #6425CB;
}
.footer .woocommerce-loop-product__link {
  display: none;
}
.footer .sub-menu {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 676px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 769px) {
  .hero-section {
    min-height: 300px;
  }
}
.hero-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.hero-section__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-section__title {
  max-width: clamp(14px, 44.7916666667vw, 860px);
  width: 100%;
  margin: 0 auto;
  font-family: "Newsreader", sans-serif;
  position: relative;
  text-align: center;
  color: #000;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(14px, 2.6041666667vw, 50px);
}

.description {
  background: #ECECFB;
  padding: clamp(14px, 1.71875vw, 33px) 0;
}
.description.description-bg {
  background: #fff;
}

.categories {
  padding: clamp(14px, 1.71875vw, 33px) 0 clamp(14px, 5.2083333333vw, 100px) 0;
}
.categories__description {
  background: #fff;
  padding: 0 0 clamp(14px, 3.6979166667vw, 71px);
}
.categories__posts .product-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.5520833333vw, 49px);
}
.categories__item {
  position: relative;
  flex-basis: 30%;
  height: 325px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  transition: ease 0.3s;
}
@media screen and (max-width: 1201px) {
  .categories__item {
    flex-basis: 48%;
    height: 250px;
  }
}
@media screen and (max-width: 500px) {
  .categories__item {
    flex-basis: 100%;
    height: 200px;
  }
}
.categories__item img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: ease 0.3s;
}
.categories__item:hover .categories__item-title {
  background: rgba(255, 255, 255, 0.9);
}
.categories__item:hover img {
  transform: scale(1.1);
}
.categories__item-title {
  position: relative;
  display: inline-block;
  max-width: 240px;
  background: rgba(236, 236, 251, 0.9);
  z-index: 2;
  padding: clamp(14px, 1.3020833333vw, 25px);
  transition: ease 0.3s;
}
.categories__item-title a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.contact {
  padding: clamp(14px, 5.2083333333vw, 100px) 0;
}
.contact .container {
  max-width: 1000px;
}
.contact__items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(14px, 2.6041666667vw, 50px);
}
@media screen and (max-width: 769px) {
  .contact__items {
    flex-direction: column;
  }
}
.contact__items-description a {
  text-decoration: none;
  color: #000;
}
.contact__items-description a:hover {
  color: #ff0000;
}
.contact__items-form {
  width: 44%;
}
@media screen and (max-width: 769px) {
  .contact__items-form {
    width: 100%;
  }
}
.contact__items-form input {
  width: 100%;
}
.contact__items-form textarea {
  height: 120px;
  resize: none;
}
.contact__items-form .button {
  background: #ECECFB;
  border: none;
  cursor: pointer;
  padding: 10px 0;
}
.contact__items-form .button:hover {
  background: #000;
  color: #fff;
}
.contact__items-map {
  width: 100%;
}
.contact__items-map iframe {
  width: 100%;
}

.slider-section {
  padding: 0 0 50px;
}
.slider-section .slick-slide {
  padding: 0 15px;
  box-sizing: border-box;
  width: auto;
}
@media screen and (max-width: 769px) {
  .slider-section .slick-slide {
    padding: 0;
  }
}
.slider-section .slick-slide img {
  width: 100%;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 50px;
  line-height: 1;
  color: #000;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 769px) {
  .slick-prev:before,
  .slick-next:before {
    font-size: 30px;
  }
}

.slick-prev {
  left: -80px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 2px solid #000;
  border-radius: 100%;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
@media screen and (max-width: 769px) {
  .slick-dots li button {
    width: 16px;
    height: 16px;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 769px) {
  .slick-dots li button:before {
    width: 16px;
    height: 16px;
  }
}
.slick-dots li.slick-active button:before {
  color: black;
  background: #000;
  border-radius: 100%;
  opacity: 0.75;
}

.woocommerce__main {
  padding: clamp(14px, 1.0416666667vw, 20px) 0;
}
.woocommerce__main .products {
  margin-top: clamp(14px, 1.8229166667vw, 35px);
}

.woocommerce__header {
  display: flex;
  justify-content: space-between;
}
.woocommerce__header .woocommerce-result-count {
  margin: 0;
}
.woocommerce__header .woocommerce-ordering {
  margin-top: clamp(14px, 1.0416666667vw, 20px);
}

.woocommerce__item {
  text-align: center;
}
.woocommerce__item a {
  text-decoration: none;
}
.woocommerce__item h2 {
  font-size: clamp(14px, 1.0416666667vw, 20px);
  text-transform: capitalize;
  margin-top: clamp(14px, 1.0416666667vw, 20px);
}
.woocommerce__item:hover h2 {
  color: #6425CB;
}
.woocommerce__item img {
  width: 100%;
  object-fit: contain;
  height: clamp(14px, 18.2291666667vw, 350px);
}
@media screen and (min-width: 1350px) {
  .woocommerce__item img {
    height: 270px;
  }
}
@media screen and (max-width: 769px) {
  .woocommerce__item img {
    height: 100%;
    border: 1px solid lightgrey;
  }
}
.woocommerce__item .amount {
  font-weight: 600;
}

@media screen and (max-width: 400px) {
  .woocommerce-products-header {
    display: none;
  }
}

.woocommerce-products-header__title {
  font-size: clamp(14px, 1.5625vw, 30px);
}

.woocommerce-breadcrumb {
  padding-bottom: clamp(14px, 1.5625vw, 30px);
  margin-top: clamp(14px, 1.0416666667vw, 20px);
}
.woocommerce-breadcrumb span {
  font-size: 13px;
}
.woocommerce-breadcrumb a {
  color: #000;
  text-decoration: none;
}
.woocommerce-breadcrumb a:hover {
  color: #ff0000;
  text-decoration: underline;
}
.woocommerce-breadcrumb .arrow {
  opacity: 0.5;
}

.woocommerce-notices-wrapper {
  display: none;
}

#catalog-menu {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 30px;
  z-index: 3;
}
@media screen and (max-width: 769px) {
  #catalog-menu {
    display: none;
  }
}
#catalog-menu .current-menu-item > a,
#catalog-menu .current-menu-ancestor > a {
  color: #ff0000;
}
#catalog-menu .menu-item-has-children.current-menu-item > a {
  color: #ff0000;
}
#catalog-menu .current-menu-parent > a {
  color: #ff0000;
}
#catalog-menu > li {
  position: relative;
  list-style: none;
}
#catalog-menu > li > a {
  position: relative;
  text-transform: capitalize;
}
#catalog-menu > li > a:before {
  content: "\f107";
  position: absolute;
  font-size: 11px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  right: -12px;
  bottom: 0;
}
#catalog-menu > li a {
  text-decoration: none;
  color: #000;
}
#catalog-menu > li a:hover {
  color: #ff0000;
}
#catalog-menu > li .sub-menu {
  display: none;
  position: absolute;
  min-width: 160px;
  left: 0;
  margin: 0;
}
#catalog-menu > li .sub-menu li {
  list-style: none;
  border-bottom: 1px solid rgba(236, 236, 236, 0.5);
  padding: 5px 0;
}
#catalog-menu > li:hover .sub-menu {
  display: block;
  width: max-content;
  background: #fff;
  padding: clamp(14px, 1.0416666667vw, 20px);
}

.woocommerce-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}
.woocommerce-pagination ul {
  display: flex;
  gap: clamp(14px, 1.0416666667vw, 20px);
}
.woocommerce-pagination ul li {
  list-style: none;
}
.woocommerce-pagination ul li .current {
  color: #ff0000;
}
.woocommerce-pagination ul a {
  text-decoration: none;
  color: #000;
}
.woocommerce-pagination ul a:hover {
  color: #ff0000;
}

.woocommerce-Tabs-panel h2 {
  display: none;
}

.woocommerce__single {
  display: flex;
  gap: clamp(14px, 1.0416666667vw, 20px);
}
@media screen and (max-width: 769px) {
  .woocommerce__single {
    flex-direction: column;
  }
}
.woocommerce__single .single_add_to_cart_button {
  margin-top: clamp(14px, 0.78125vw, 15px);
  background: #ECECFB;
  border: none;
  cursor: pointer;
}
.woocommerce__single .single_add_to_cart_button:hover {
  background: #000;
  color: #ECECFB;
}
.woocommerce__single .sku_wrapper {
  display: none;
}

.woocommerce__single-image {
  flex-basis: 40%;
}
.woocommerce__single-image div {
  width: 100%;
}
.woocommerce__single-image .woocommerce-product-gallery__trigger {
  display: none !important;
  text-decoration: none;
}
.woocommerce__single-image .woocommerce-product-gallery .flex-control-nav {
  display: flex;
  gap: 6px;
}
.woocommerce__single-image .woocommerce-product-gallery .flex-control-nav img {
  border: 1px solid lightgray;
  opacity: 1 !important;
}

.woocommerce__single-description {
  flex-basis: 50%;
}
.woocommerce__single-description .product_title {
  font-size: clamp(14px, 1.5625vw, 30px);
}
.woocommerce__single-description .product_meta {
  display: none;
}

.woocommerce-product-attributes-item:first-child th, .woocommerce-product-attributes-item:first-child td {
  border-top: 1px solid #000;
}
.woocommerce-product-attributes-item th, .woocommerce-product-attributes-item td {
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 5px;
  text-align: left;
}
.woocommerce-product-attributes-item th a, .woocommerce-product-attributes-item td a {
  color: #000;
  text-decoration: none;
}
.woocommerce-product-attributes-item th p, .woocommerce-product-attributes-item td p {
  margin: 0;
}
.woocommerce-product-attributes-item td {
  border-right: 1px solid #000;
}

.woocommerce-single-attributes li {
  list-style: none;
  margin-bottom: 5px;
}

.woocommerce-product-gallery {
  overflow: hidden;
}
/*
.woocommerce-product-gallery .flex-viewport {
  overflow: visible !important;
}
*/
.woocommerce-product-gallery .woocommerce-product-gallery__image {
  width: 100%;
}
.woocommerce-product-gallery .woocommerce-product-gallery__image img {
  border: 1px solid lightgray;
}

#tab-custom_description ul {
  margin-left: 15px;
}
@media screen and (max-width: 769px) {
  #tab-custom_description ul {
    margin: 0;
  }
}

.woocommerce__main .woocommerce-tabs ul.tabs {
  display: flex;
  gap: clamp(14px, 1.5625vw, 30px);
  margin-top: clamp(14px, 2.6041666667vw, 50px);
}
.woocommerce__main .woocommerce-tabs ul.tabs li a {
  color: #000;
  text-decoration: none;
  background: #ECECFB;
  padding: clamp(14px, 0.5208333333vw, 10px) clamp(14px, 1.5625vw, 30px);
}
.woocommerce__main .woocommerce-tabs ul.tabs li a:hover {
  color: #fff;
  background: #000;
}
.woocommerce__main .woocommerce-tabs ul.tabs li.active a {
  background: #000;
  color: #fff;
}

.custom-language-switcher {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 769px) {
  .custom-language-switcher {
    justify-content: center;
  }
}
.custom-language-switcher img {
  width: 40px;
}

/*# sourceMappingURL=style.css.map */
