@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kumbh Sans";
  src: url("../fonts/KumbhSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: "Lora", serif;
  --color1: hsla(49.29,18.92%,29.02%, 1);
  --color2: hsl(40deg 46.15% 94.9%);
  --swiper-navigation-color: var(--color1);
  --swiper-navigation-sides-offset: 0px;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(100%) !important;
          clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 90.06125rem) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 47.99875rem) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

body {
  background: var(--color2);
  font-size: 18px;
  font-family: var(--font-family);
  color: var(--color1);
}
@media (width <= 90.06125rem) {
  body {
    font-size: 16px;
  }
}
@media (width <= 30.06125rem) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}
a:hover {
  opacity: 0.8;
  transition: 0.4s ease;
}

* {
  box-sizing: border-box;
  outline: none;
}

.container {
  max-width: 90%;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.btn,
button.single_add_to_cart_button,
.added_to_cart {
  border: 1px solid var(--color1);
  width: 100%;
  display: table;
  padding: 10px;
  text-align: center;
  border-radius: 60px;
  font-weight: 700;
}
.btn:hover,
button.single_add_to_cart_button:hover,
.added_to_cart:hover {
  background: var(--color1);
  color: var(--color2);
}

.added_to_cart {
  background: var(--color1);
  color: var(--color2) !important;
}

.btn.added {
  display: none;
}

.woocommerce-ordering,
.woocommerce-products-header {
  display: none !important;
}

.page-title {
  display: none;
}

.variations_form {
  margin-bottom: 20px;
}

.variations {
  width: 100%;
  margin: 0 0 20px;
}

.variations tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.variations td.label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.variations td.value select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.variations td.value select:focus {
  border-color: #666;
  outline: none;
}

.woocommerce-variation-price,
.woocommerce-variation-availability {
  margin-bottom: 10px;
  font-size: 16px;
}

.single_variation_wrap {
  margin-top: 10px;
}

.single_variation {
  font-weight: bold;
  margin-bottom: 10px;
}

.reset_variations {
  display: inline-block;
  margin-top: 5px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
  text-decoration: underline;
}

.reset_variations:hover {
  color: #333;
}

.variations_form .button {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.variations_form .button:hover {
  background-color: #444;
}

.header__top {
  padding: 20px 0;
  background: var(--color1);
  color: var(--color2);
  position: relative;
}
.header__top .container {
  display: flex;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}
.header__top a.logo {
  font-size: 36px;
  font-weight: 700;
  width: 130px;
  height: 54px;
  display: flex;
  align-items: center;
}
.header__top a.logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media (width <= 25rem) {
  .header__top a.logo {
    font-size: 19px;
  }
}
.header__top-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__top-navigation ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (width <= 63.99875rem) {
  .header__top-navigation ul {
    visibility: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    position: fixed;
  }
  .header__top-navigation ul.active {
    visibility: visible;
    width: 100%;
    height: calc(100vh - 70px);
    opacity: 1;
    top: 100%;
    left: 0;
    background: var(--color1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    position: absolute;
    z-index: 2;
  }
  .header__top-navigation ul.active li a {
    font-size: clamp(1.3125rem, 1.0103305785rem + 1.2396694215vw, 2.25rem);
  }
}
.header__top-navigation ul li {
  list-style: none;
}
.header__top-navigation ul li {
  position: relative;
}
@media (width <= 63.99875rem) {
  .header__top-navigation ul li {
    text-align: center;
  }
}
.header__top-navigation ul li ul {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
@media (width <= 63.99875rem) {
  .header__top-navigation ul li ul {
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    display: grid;
    position: unset;
    margin-top: 20px;
  }
}
@media (width > 63.99875rem) {
  .header__top-navigation ul li:hover ul {
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color2);
    display: grid;
    border: 10px;
    justify-items: center;
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 3px 2px 20px 0px hsla(49.29, 18.92%, 29.02%, 0.2);
    z-index: 3;
  }
  .header__top-navigation ul li:hover ul li a {
    color: var(--color1);
  }
}
.header__top .lang {
  position: relative;
  cursor: pointer;
}
.header__top .lang span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__top .lang span svg {
  width: 18px;
  height: auto;
}
.header__top .lang .container-lang {
  visibility: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  background: var(--color2);
  color: var(--color1);
  position: absolute;
  top: 100%;
  padding: 5px 20px;
  border-radius: 5px;
  box-shadow: 3px 2px 20px 0px hsla(49.29, 18.92%, 29.02%, 0.2);
}
.header__top .lang:hover .container-lang {
  visibility: visible;
  width: auto;
  height: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header__top li {
  list-style: none;
}
.header__top .cart {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__top .cart svg {
  width: 24px;
  height: auto;
}
.header__top .mobile__nav {
  display: grid;
  position: relative;
  gap: 2px;
  align-items: center;
  display: none;
}
@media (width <= 63.99875rem) {
  .header__top .mobile__nav {
    display: grid;
    width: 30px;
    height: 30px;
  }
}
@media (width <= 25rem) {
  .header__top .mobile__nav {
    width: 25px;
    height: 22px;
  }
}
.header__top .mobile__nav.active span:nth-child(2) {
  display: none;
}
.header__top .mobile__nav.active span:first-child {
  rotate: -45deg;
  position: absolute;
  top: 50%;
  transition: 0.4s ease;
}
.header__top .mobile__nav.active span:last-child {
  rotate: 45deg;
  position: absolute;
  top: 50%;
  transition: 0.4s ease;
}
.header__top .mobile__nav span {
  display: table;
  width: 100%;
  height: 3px;
  background: #FFF;
}

main {
  padding: 60px 0;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.5vw;
}
@media (width <= 63.99875rem) {
  .product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .product-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.product-list-item:hover figure img:nth-child(2) {
  opacity: 1;
  transition: 0.7s ease;
}
.product-list-item figure {
  width: 100%;
  position: relative;
  margin: 0;
  max-height: 704px;
  overflow: hidden;
}
.product-list-item figure img {
  width: 100%;
}
.product-list-item figure img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.product-list-item h2 {
  text-align: center;
  margin-bottom: 10px;
}
@media (width <= 63.99875rem) {
  .product-list-item h2 {
    font-size: 1.5rem;
  }
}
.product-list-item .price {
  display: table;
  margin: 0 auto 10px;
}

.single-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}
@media (width <= 63.99875rem) {
  .single-box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.single-box-item {
  display: grid;
  justify-items: center;
}
.single-box-item:nth-child(2) {
  padding-left: 20%;
}
@media (width <= 63.99875rem) {
  .single-box-item:nth-child(2) {
    padding-left: 0;
    margin-top: 60px;
  }
}
.single-box-item .slider_product_image {
  width: 100%;
}
.single-box-item .slider_product_image img {
  margin: 0 auto;
}
.single-box-item h1 {
  font-size: clamp(2.25rem, 1.645661157rem + 2.479338843vw, 4.125rem);
  line-height: normal;
  margin: 0;
  text-align: center;
}
.single-box-item .price {
  font-size: 1.875rem;
  display: table;
  width: 100%;
  text-align: center;
  margin: 40px 0;
}
.single-box-item .description {
  font-size: 14px;
  display: block;
  margin-bottom: 50px;
  text-align: center;
}
.single-box-item .btn {
  max-width: 400px;
}
.single-box-item form.variations_form.cart {
  width: 100%;
}
.single-box-item button.single_add_to_cart_button.button.alt {
  border: 1px solid var(--color1);
  width: 100%;
  display: table;
  padding: 10px 10px;
  text-align: center;
  border-radius: 60px;
  font-weight: 700;
  background: transparent;
  color: var(--color1);
  width: 100% !important;
  max-width: 400px;
}
.single-box-item button.single_add_to_cart_button.button.alt:hover {
  background: var(--color1);
  color: var(--color2);
}

.single-box-item form.variations_form.cart {
  width: 100%;
  display: grid;
  justify-content: center;
  text-align: center;
}
.single-box-item form.variations_form.cart .price {
  margin: 0;
}
.single-box-item form.variations_form.cart tr {
  margin-bottom: 0;
}

.variable-product-info select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  appearance: none; /* убираем дефолтный стиль стрелки */
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23666" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.variable-product-info select:focus {
  border-color: #888;
  outline: none;
}

.variable-product-info option {
  padding: 10px;
  font-size: 16px;
}

.btn_wrap {
  position: relative;
}
.btn_wrap button {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.btn_wrap a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.grid {
  max-width: 100%;
  margin: 0 auto;
}

.grid-sizer,
.grid-item {
  width: 25%;
}

.grid-item {
  margin-bottom: 16px;
  padding: 8px;
  box-sizing: border-box;
}

.grid-item img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Адаптивность */
@media (max-width: 1024px) {
  .grid-sizer,
  .grid-item {
    width: 33.3333%;
  }
}
@media (max-width: 768px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  border: 1px solid var(--color1);
  color: var(--color1) !important;
  border-radius: 50px;
  background: transparent;
  font-weight: 700;
}
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: var(--color1);
  color: var(--color2) !important;
  transition: background 0.5s !important;
}

.file-upload {
  border: 1px dashed #555;
  border-radius: 6px;
  background-color: #faf6ee;
  padding: 2rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: border 0.3s;
}

.file-upload:hover {
  border-color: #a8863f;
}

.file-upload input[type=file] {
  display: none;
}

.upload-icon {
  display: inline-block;
  background-color: #a8863f;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

.upload-label {
  font-family: monospace;
  font-size: 0.9rem;
  color: #333;
}

.commisions .box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  justify-items: start;
}
@media (width <= 63.99875rem) {
  .commisions .box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.commisions .grid {
  display: grid;
  gap: 20px;
  justify-items: start;
}
.commisions .grid .item {
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .commisions .grid .item {
    flex-direction: column;
  }
}
.commisions .grid .item > div {
  width: 100%;
}
.commisions span.title {
  font-weight: 700;
}
@media (width <= 47.99875rem) {
  .commisions fieldset {
    grid-template-columns: 1fr;
  }
}
.commisions div#form-response {
  background: var(--color1);
  display: table;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  color: var(--color2) !important;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 10px;
  border: 1px solid var(--color1);
  background: transparent;
  border-radius: 5px;
  font-size: 14px;
}
form input:hover, form input:focus,
form textarea:hover,
form textarea:focus {
  background: var(--color1);
  color: var(--color2);
}
form textarea {
  resize: none;
  min-height: 100px;
}
form input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--color2);
  width: 30px;
  height: 30px;
  background: var(--color1);
  position: relative;
}
form input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 12px;
  width: 6px;
  height: 12px;
  border: solid white; /* ← здесь меняешь цвет галочки */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}
form input[type=checkbox]:checked::after {
  display: block;
}
form small {
  font-size: 0.875rem;
  display: table;
  width: 100%;
}
form fieldset {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
}
form fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
}
form label {
  display: table;
  width: 100%;
  font-size: 0.875rem;
}
form .btn {
  background: transparent;
  width: auto;
  min-width: 100px;
}

.woocommerce-checkout fieldset {
  display: grid;
  grid-template-columns: 1fr !important;
}

.footer {
  background: var(--color1);
  color: var(--color2);
  padding: 50px 0;
}
.footer__top {
  margin-bottom: 100px;
}
.footer__top .box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
}
@media (width <= 47.99875rem) {
  .footer__top .box {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2.5rem;
    justify-items: center;
    text-align: center;
  }
  .footer__top .box span {
    display: table;
    width: 100%;
  }
}
.footer__top .box a.logo {
  font-size: 36px;
  font-weight: 700;
  margin-right: auto;
  width: 130px;
  height: 54px;
}
.footer__top .box a.logo img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
}
@media (width <= 47.99875rem) {
  .footer__top .box a.logo {
    margin: auto;
    display: table;
  }
}
@media (width <= 25rem) {
  .footer__top .box a.logo {
    font-size: 19px;
  }
}
.footer__top .box-item span {
  font-weight: 700;
  margin-bottom: 10px;
  display: table;
}
.footer__top .box-item ul.social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__top .box-item ul.social li {
  border: 1px solid var(--color2);
  border-radius: 60px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
}
.footer__top .box-item ul.social li svg,
.footer__top .box-item ul.social li img {
  width: 20px;
  height: auto;
  position: relative;
  bottom: -2px;
}
.footer__top .box-item ul.social li img {
  bottom: 0;
}
.footer__bottom {
  text-align: center;
}/*# sourceMappingURL=main.css.map */