:root {
  --primary-color: #914152;
  --primary-color-rgb: 145, 65, 82;
  --primary-color--light: color-mix(in srgb, var(--primary-color), #fff 50%);
  --primary-color--dark: color-mix(in srgb, var(--primary-color), #000 30%);
  --secondary-color: #265886;
  --secondary-color--light: color-mix(in srgb, var(--secondary-color), #fff 50%);
  --secondary-color--dark: color-mix(in srgb, var(--secondary-color), #000 30%);
  --secondary-color-rgb: 38, 88, 134;
  --header-color: #000;
  --font-color: #1f1f1f;
  --font-color--light: #fff;
  --border-color: #ebebeb;
  --border-color-rgb: 235, 235, 235;
  --bg-color: #f9f9f9;
  --box-shadow: 0 4px 10px 4px rgb(0, 0, 0, 0.05);
  --main-header-size: 1.8rem;
  --scroll-width: 5px;
  --scroll-color: var(--primary-color);
  --scroll-color-hover: var(--primary-color--dark);
  --success-color: #20c95a;
  --danger-color: #ef0000;
  /*--swatches--*/
  --wvs-selected-item-text-color: var(--primary-color);
  --wvs-selected-item-box-shadow: var(--box-shadow);
  --wvs-item-text-color: var(--font-color);
  --wvs-item-box-shadow: var(--box-shadow);
  --wvs-hover-item-box-shadow: var(--box-shadow);
  --wvs-tick: url("/wp-content/themes/coralweb/img/icons/check-white.svg");
}

@font-face {
  font-family: 'Onest';
  font-weight: 300;
  font-style: normal;
  src: url('./fonts/onest-v6-cyrillic-ext_latin-ext-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Onest';
  font-weight: 400;
  font-style: normal;
  src: url('./fonts/onest-v6-cyrillic-ext_latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Onest';
  font-weight: 500;
  font-style: normal;
  src: url('./fonts/onest-v6-cyrillic-ext_latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Onest';
  font-weight: 600;
  font-style: normal;
  src: url('./fonts/onest-v6-cyrillic-ext_latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Onest';
  font-weight: 700;
  font-style: normal;
  src: url('./fonts/onest-v6-cyrillic-ext_latin-ext-700.woff2') format('woff2');
}

html {
  overflow: auto;
  box-sizing: border-box;
  font-size: 17px;
}

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

body {
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 0 !important;
  color: var(--font-color);
  font-family: "Onest", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  transition: 0.3s;
  color: var(--primary-color);
}

a[href^="tel"] {
  white-space: nowrap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 1rem;
  color: var(--header-color);
  font-weight: 600;
  text-wrap-style: balance;
}

:is(h1,
  h2,
  h3,
  h4,
  h5,
  h6):last-child {
  margin-bottom: 0;
}

h1,
h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.7rem;
}

button,
input[type="button"],
.btn,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  vertical-align: top;
  color: var(--font-color--light);
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
  font-family: "Onest", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  gap: 1rem;
}

:is(button,
  input[type="button"],
  .btn,
  .button) .icon {
  --size: 0.8rem;
  transition: 0.3s;
  background-color: #fff;
}

:is(.button[name="add-to-cart"], .single_add_to_cart_button) {
  background-color: var(--primary-color);
}

:is(.button[name="add-to-cart"], .single_add_to_cart_button):is(:hover, :focus, :active) {
  color: var(--font-color--light);
  background-color: var(--secondary-color);
}

:is(.button[name="add-to-cart"], .single_add_to_cart_button) .icon {
  --size: 1rem;
  background-color: var(--font-color--light);
}

:is(.button[name="add-to-cart"], .single_add_to_cart_button):is(:hover, :focus) .icon {
  background-color: #fff;
}

:is(.button[name="add-to-cart"], .single_add_to_cart_button).disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

button:hover,
input[type="button"]:hover,
.btn:hover,
.button:hover {
  transition: 0.3s;
  opacity: 1;
  color: var(--font-color--light);
  border: 0;
  background-color: var(--secondary-color);
}

.btn:hover .btn__icon {
  background-color: var(--primary-color);
}

.btn:hover .btn__icon .icon {
  background-color: var(--font-color--light);
}

button:focus,
input[type="button"]:focus,
.btn:focus,
.button:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}

::-webkit-scrollbar {
  width: var(--scroll-width);
  height: 5px;
}

::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 0;
  background-color: var(--scroll-color);
  box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scroll-color-hover);
}

::-webkit-scrollbar-track-piece {
  background-color: var(--border-color);
}

input,
select,
textarea {
  font-family: "Onest", Arial, sans-serif;
  font-size: 1rem;
}

*[type="text"],
*[type="search"],
*[type="tel"] {
  border: 1px solid var(--border-color);
  outline: none;
  box-shadow: none;
  appearance: none;
}

input:hover,
input:focus,
textarea:hover,
textarea:focus {
  border: 1px solid var(--primary-color);
  outline: none;
  box-shadow: none;
}

label {
  display: inline-block;
  margin-bottom: 5px;
}

textarea {
  min-height: 100px;
}

.site-header {
  z-index: 5;
  top: 0;
  width: 100%;
  margin: 0 auto;
  transition: all 0.3s linear;
}

.header-nav__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav {
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  background-color: var(--secondary-color);
}

.fixed {
  position: fixed;
  z-index: 30;
  top: 0;
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  transition: 0.3s;
  transform: translateY(0);
  box-shadow: var(--box-shadow);
}

.fixed .header-search {
  box-shadow: var(--box-shadow);
}

.fixed .header-info {
  display: none;
}

.section {
  position: relative;
  padding: 4rem 0;
}

.header-search {
  position: absolute;
  display: flex;
  visibility: hidden;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s;
  transform: translateY(-100%);
  background-color: #fff;
}

.header-search.active {
  top: 100%;
  bottom: unset;
  visibility: visible;
  transform: translateY(0%);
}

.site-header .header-nav__content .header-search .dgwt-wcas-sf-wrapp {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}

.header-nav__content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

p {
  margin: 0 0 1rem;
}

#page {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.col-full {
  width: 100%;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

address {
  text-wrap: balance;
  font-size: 0.9rem;
  font-style: normal;
}

.header-top__info {
  font-size: 0.9rem;
}

.header-info {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  background-color: var(--font-color--light);
}

.main-site-info__content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
}

.logo__pic {
  position: relative;
  width: 100%;
  max-width: 10rem;
  line-height: 0;
}

.logo__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.logo__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--font-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.logo__name {
  display: block;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.logo__slogan {
  font-size: 16px;
}

.header-info__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.menu-btn {
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 0;
  background-image: none;
}

:is(button.menu-btn) .icon {
  --size: 40%;
  background-color: #fff;
}

.menu-btn--open,
.menu-btn--close {
  display: none;
}

.menu-btn--open {
  background-color: var(--primary-color);
}

.menu-btn--close {
  background-color: var(--primary-color);
}

.menu-btn:hover {
  background-color: var(--primary-color);
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__item {
  text-align: center;
}

.main-nav__item--parent {
  position: relative;
}

.main-nav__link {
  position: relative;
  display: block;
  padding: 20px 0;
  color: var(--font-color--light);
  font-weight: 500;
}

.main-nav__link:hover {
  color: var(--secondary-color--light);
}

.main-nav__item--parent > a {
  position: relative;
  padding-right: 25px;
}

.main-nav__item--parent > a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  content: "";
  transition: 0.3s;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("./img/icons/arrow-next-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55% 55%;
}

.main-nav__item--parent > a:hover::before {
  transition: 0.3s;
  transform: translateY(-50%) rotate(-90deg);
}

.main-nav__sub {
  position: absolute;
  z-index: -2;
  top: 100%;
  left: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: 0.3s;
  transform: translateY(5px);
  pointer-events: none;
  opacity: 0;
  border-top: 2px solid var(--primary-color);
  background-color: var(--font-color--light);
  box-shadow: var(--box-shadow);
}

.main-nav__sub .main-nav__item {
  width: 50%;
  text-align: left;
}

#menu-item-30 .main-nav__sub {
  flex-direction: row;
  width: clamp(320px, 60vw, 900px);
}

.main-nav__sub a {
  text-transform: none;
  color: var(--font-color);
  font-size: 0.9rem;
}

.main-nav__item--parent .main-nav__sub a {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
}

.main-nav__item--parent .main-nav__sub a::after {
  display: none;
}

.main-nav__item--parent .main-nav__sub a:hover {
  color: var(--primary-color);
}

.main-nav__item--parent:hover > .main-nav__sub {
  z-index: 2;
  visibility: visible;
  transition: transform .3s linear;
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.main-nav__sub .main-nav__item--parent:hover > .main-nav__sub {
  top: 0;
  right: -100%;
  left: auto;
}

.main-nav__sub .main-nav__item--parent > a::before {
  right: 10px;
  transform: translateY(-50%) rotate(0);
}

#menu-item-25 {
  position: relative;
  flex-grow: 0;
  width: 50px;
  height: 100%;
}

#menu-item-25 > .main-nav__link {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: 0.3s;
  background-color: var(--primary-color);
  background-position: left center;
  background-size: 200% auto;
  font-size: 0;
}

#menu-item-25 > .main-nav__link:hover {
  transition: 0.3s;
  background-position: right center;
}

#menu-item-25 > .main-nav__link::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  transform: none;
  background-image: url("./img/icons/home.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 24px auto;
}

.modal-active {
  position: relative;
  padding-left: 30px;
  font-size: 0.9rem;
}

.modal-active:last-child {
  margin-bottom: 0;
}

.site-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.section--mobile-menu {
  position: fixed;
  z-index: 40;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 100%;
  max-width: 250px;
  padding: 0;
  padding-top: 0;
  transition: 0.3s;
  transform: translate(-200%, 0%);
  background-color: var(--secondary-color);
  background-repeat: repeat;
  box-shadow: var(--box-shadow);
}

.section--mobile-menu.show {
  transition: 0.3s;
  transform: translate(0%, 0);
}

.mobile-menu {
  position: relative;
  z-index: 0;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.overlay {
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.overlay.show {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: visible;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-color: rgba(0, 0, 0, .7);
}

.modal {
  position: fixed;
  z-index: 31;
  top: 50%;
  left: 50%;
  visibility: hidden;
  width: 95%;
  max-width: 600px;
  height: 100%;
  transition: 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0;
  border-radius: 0;
}

.modal-order {
  max-width: 500px;
}

.modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  pointer-events: auto;
  border: none;
  border-radius: 0;
  outline: 0;
  background-color: transparent;
  background-clip: border-box;
}

.modal-form .modal-header {
  position: relative;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  text-align: center;
  border: none;
  border-radius: 0;
  background-color: var(--secondary-color);
}

.modal__title {
  margin-bottom: 0;
  text-align: center;
  text-wrap: balance;
  color: var(--font-color--light);
  font-size: 1.5rem;
}

.modal__subtitle {
  color: var(--font-color--light);
  font-size: 0.9rem;
}

.modal--show {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal-btn-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  transition: 0.3s;
  opacity: 0.7;
  border: none;
  border-radius: 50px;
}

.modal-btn-close .icon {
  --size: 35%;
  background-color: #fff;
}

.modal-btn-close:hover {
  transition: 0.3s;
  opacity: 1;
  background-color: var(--primary-color);
}

.modal-form .modal-body {
  overflow-y: auto;
  padding: 30px;
  background-color: var(--font-color--light);
}

.modal-form .btn {
  align-self: center;
}

.success-message {
  position: fixed;
  z-index: 31;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 600px;
  padding: 50px;
  transition: 0.3s;
  transform: translate(-50%, 100vh);
  text-align: center;
  opacity: 0;
  color: var(--font-color);
  border: 2px solid var(--font-color--light);
  background-color: var(--font-color--light);
  box-shadow: var(--box-shadow);
  font-size: 30px;
  font-weight: 600;
}

.success-message--show {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.success-message span {
  display: block;
  color: var(--primary-color);
}

.appointment-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.appointment-form--md {
  max-width: 800px;
  margin: 0 auto;
}

.page-id-134 .wpcf7 form .wpcf7-response-output {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.appointment-form__item {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
  margin-bottom: 0;
}

.appointment-form .appointment-form__item {
  margin-bottom: 0;
}

.appointment-form__item--col-1 {
  width: 100%;
}

.appointment-form__item--col-2 {
  width: 50%;
}

.appointment-form__item .appointment-form__control:last-child {
  margin-right: 0;
}

.appointment-form__item:has(.email-confirm-wrap) {
  display: none;
}

.appointment-form__label {
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
}

.appointment-form__asterisk {
  opacity: 0.5;
  font-size: 0.7rem;
}

.promo .appointment-form__asterisk {
  display: block;
  width: 100%;
  padding: 5px;
  text-align: center;
}

.appointment-form__required {
  padding: 0 5px;
  color: var(--primary-color);
}

.appointment-form__input {
  width: 100%;
  appearance: none;
}

.appointment-form__input[name="message"] {
  resize: none;
}

.appointment-form__privacy {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.8rem;
}

.appointment-form__item input {
  width: 100%;
}

.appointment-form__item input[type="submit"] {
  width: auto;
  margin: 0 auto;
}

.appointment-form__item p:has(input[type="submit"]) {
  text-align: center;
}

.appointment-form__control {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
}

.appointment-form__input--good {
  pointer-events: none;
}

.appointment-form__control p:empty {
  display: none;
}

input[type="file"].fileheader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.custom-file-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  color: var(--font-color);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  font-size: 0.8rem;
  font-weight: 600;
  gap: 0.5rem;
}

.custom-file-label::before {
  display: block;
  width: 0.9rem;
  content: "";
  background-image: url("./img/icons/upload.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  aspect-ratio: 1;
}

.custom-file-label:hover {
  opacity: 0.7;
}

.file-name {
  color: var(--font-color);
  font-size: 0.8rem;
}

.wpcf7-not-valid-tip {
  color: var(--danger-color);
  font-size: 0.8rem;
}

.appointment-form__control:has(input[type="file"]) {
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
  gap: 0.5rem;
}

input,
textarea {
  padding: 15px 20px;
  transition: 0.3s;
  color: var(--font-color);
  border: 1px solid #ececec;
  border-radius: 0;
  outline: none;
  background-color: #f9f9f9;
  box-shadow: none;
}

input::placeholder,
textarea::placeholder {
  transition: 0.3s;
}

input:hover,
textarea:hover {
  transition: 0.3s;
  border: 1px solid var(--primary-color);
}

input:hover::placeholder,
textarea:hover::placeholder {
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border: 1px solid var(--primary-color);
}

input[type="search"] {
  margin-bottom: 20px;
  padding-right: 58px;
  background-image: url("./img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px auto;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
  margin-right: 20px;
  padding: 0;
}

.checkbox {
  display: none;
}

.checkbox + label {
  position: relative;
  width: 25px;
  height: 25px;
  margin: 0;
  margin-right: 5px;
  cursor: pointer;
}

.checkbox + label::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  border: 1px solid #ececec;
  background-color: var(--font-color--light);
}

.checkbox + label::after {
  position: absolute;
  top: 0;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
}

.checkbox:checked + label::before {
  border-color: var(--primary-color);
}

.checkbox:checked + label::after {
  background-image: url("./img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.site-footer {
  margin-top: auto;
}

.block-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.block-title::before {
  position: absolute;
  bottom: 0;
  display: block;
  height: 1px;
  content: "";
}

.block-title::before {
  z-index: 1;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.block-title h2:last-child {
  margin-bottom: 0;
}

.block-title--center {
  text-align: center;
}

.block-title--center::before {
  left: 50%;
  transform: translateX(-50%);
}

.block-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
}

.contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contacts-item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.4rem 1fr;
  column-gap: 0.7rem;
  grid-template-rows: repeat(2, 1fr);
}

.contacts__name {
  margin-bottom: 3px;
  opacity: 0.7;
  font-size: 0.8rem;
}

.contacts-item a {
  color: var(--font-color);
}

.contacts-item .address {
  grid-row: span 2;
}

.contacts-item .icon {
  align-self: start;
  margin-top: 0.3em;
  grid-row: 1/end;
}

.contacts-item a:hover {
  color: var(--primary-color);
}

.phone {
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
}

.header-contacts .email {
  font-size: 0.9rem;
}

.address {
  max-width: 300px;
  font-size: 0.9rem;
  text-wrap-style: balance;
}

.styled-list {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  list-style-type: none;
}

.styled-list:last-child {
  margin-bottom: 0;
}

.styled-list > li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1rem;
}

.styled-list > li:last-child {
  margin-bottom: 0;
}

.styled-list > li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--primary-color);
}

.main-slider {
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.main-slider .swiper-slide {
  height: auto;
}

.main-slider__item {
  box-sizing: border-box;
  height: 100%;
  padding-top: 180px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-slider__item::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, .5);
}

.main-slider__item::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("./img/main-slider/shahmati.png");
}

.main-slider__item--first {
  background-image: url("./img/main-slider/slide-1.jpg");
}

.main-slider__item--second {
  background-image: url("./img/main-slider/slide-2.jpg");
}

.main-slider__item--third {
  background-image: url("./img/main-slider/slide-3.jpg");
}

.main-slider__bg .container {
  height: 100%;
}

.main-slider__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 200px;
  padding-left: 40px;
}

.main-slider__content::after {
  position: absolute;
  z-index: -1;
  top: 60px;
  left: 0;
  width: 2px;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, .2);
}

.main-slider__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 900px;
  color: var(--font-color--light);
  gap: 1rem;
  text-wrap-style: balance;
}

.main-slider__title {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
}

.main-slider__title::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: -40px;
  width: 2px;
  height: 100%;
  content: "";
  background-color: var(--primary-color);
}

.main-slider__title::after {
  display: none !important;
}

.main-slider__subtitle {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.main-slider__text {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.main-slider__text p {
  margin-bottom: 0.5rem;
}

.main-slider__text p:last-child {
  margin-bottom: 0;
}

.main-slider__sub {
  color: var(--font-color--light);
}

.main-slider__controls {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 50px;
  left: 40px;
}

.slider-nav__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  gap: 10px;
}

.main-slider__nav {
  display: flex;
  gap: 10px;
}

.slider-nav {
  display: flex;
  gap: 10px;
}

.slider-nav__btn {
  width: 3rem;
  height: 3rem;
  padding: 0;
  opacity: 0.5;
  border-radius: 0;
}

.slider-nav__btn .icon {
  --size: 25%;
}

.slider-nav__btn:hover {
  opacity: 1;
  background-color: var(--primary-color);
}

.main-slider__pagination {
  display: none !important;
  align-items: center;
  justify-content: center;
}

.main-slider__bullet:focus {
  outline: none;
}

.swiper-slide {
  box-sizing: border-box;
}

.swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  margin-right: 10px;
  transition: 0.3s;
  border-radius: 0;
  background-color: var(--font-color--light);
}

.section--counter {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.section--counter::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("./img/pattern-beton.png");
}

.counter {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.counter__item {
  flex-grow: 1;
  list-style: none;
}

.counter__content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
  row-gap: 0.5rem;
  column-gap: 1rem;
}

.counter__number {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.counter__quantity {
  display: flex;
  align-items: center;
  color: var(--font-color);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  gap: 5px;
}

.counter__quantity .small-text {
  font-size: 0.6em;
  line-height: 1;
}

.counter__mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 26px;
  max-width: 26px;
  height: 26px;
  margin-bottom: auto;
  margin-left: 10px;
  color: var(--font-color--light);
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: 1.2rem;
  line-height: 1;
}

.counter__mark--small {
  font-size: 0.9rem;
}

.counter__title {
  width: 70%;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.site-content {
  flex-grow: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.content-area {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.page-template-template-maxwidth .content-area {
  max-width: 1920px;
  padding-right: 0;
  padding-left: 0;
}

.page-template-template-maxwidth .site-content {
  padding-top: 0;
  padding-bottom: 0;
}

.page-template-template-maxwidth .site-main section:first-child {
  padding-top: 2rem;
}

.page-template-template-maxwidth .site-main section:last-child {
  padding-bottom: 2rem;
}

.catalog {
  margin: 0;
}

.home .woocommerce .catalog {
  margin-bottom: 2rem;
}

.catalog:last-child {
  margin-bottom: 0;
}

.catalog__item:not(.top-level-category) {
  overflow: hidden;
  transition: 0.3s;
  box-shadow: var(--box-shadow);
}

.catalog__item:not(.top-level-category):hover {
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.catalog__item:not(.top-level-category) .catalog__content {
  backface-visibility: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  cursor: pointer;
  text-align: center;
  color: var(--font-color);
}

.catalog__item--category:not(.top-level-category) .catalog__content {
  border-bottom: none;
}

.catalog__item:not(.top-level-category) .catalog__info {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  width: 100%;
  transition: 0.3s;
  transform: translateY(0);
  background-color: var(--font-color--light);
  background-image: url("./img/pattern-beton.png");
}

.catalog__item:not(.top-level-category) .catalog__title {
  position: relative;
  width: 100%;
  min-height: 55px;
  margin-bottom: 0;
  padding: 15px 20px;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 600;
}

.catalog__item--category:not(.top-level-category) .catalog__title {
  font-size: 1rem;
}

.catalog__item:not(.top-level-category) .catalog__order {
  width: 100%;
  margin-top: auto;
  padding: 15px 20px;
  text-align: center;
  background-color: var(--font-color--light);
}

.catalog__item:not(.top-level-category) .catalog__pic {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  transition: 0.3s;
  text-align: center;
}

.catalog__item:not(.top-level-category) .catalog__pic img {
  backface-visibility: hidden;
  object-fit: contain;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 200px;
  height: 100%;
  transition: 0.3s;
  aspect-ratio: 4/3;
}

.catalog__item:not(.top-level-category) .catalog__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalog__item:not(.top-level-category) .catalog__btn {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 55px;
  transition: 0.3s;
  color: var(--font-color--light);
  border-radius: 0;
  background-color: var(--secondary-color);
  box-shadow: none;
  font-size: 1rem;
  line-height: 1;
}

.catalog__item:not(.top-level-category) .catalog__btn:hover {
  color: var(--secondary-color--light);
  background-color: var(--secondary-color--dark);
}

.catalog__item:not(.top-level-category) .catalog__link:hover .catalog__info {
  position: relative;
  transition: 0.3s;
  transform: translateY(-55px);
  border: none;
}

.catalog:has(.top-level-category) {
  --gap: 0rem;
}

.top-level-category {
  position: relative;
  z-index: 1;
  margin: 0 -1px -1px 0;
}

.top-level-category .catalog__content {
  height: 100%;
}

.top-level-category .catalog__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  transition: 0.3s;
  color: var(--font-color);
  border: 1px solid var(--border-color);
}

.top-level-category:hover {
  z-index: 2;
}

.top-level-category .catalog__link:hover {
  z-index: 1;
  border-color: var(--primary-color);
}

.top-level-category .catalog__pic {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 80px;
  margin-bottom: 1rem;
  aspect-ratio: 1;
}

/* .top-level-category .catalog__pic::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40%;
  content: "";
  border-radius: 50%;
  background-color: var(--primary-color);
  aspect-ratio: 1;
} */
.top-level-category .catalog__img {
  object-fit: contain;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

.top-level-category .catalog__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.top-level-category .catalog__title {
  font-size: 1rem;
}

.top-level-category .catalog__btn {
  display: none;
}

.top-level-category .product-count {
  margin-top: auto;
  margin-bottom: 0;
  opacity: 0.5;
  font-size: 0.8rem;
}

.about__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
}

.about__pic {
  position: relative;
  display: flex;
  width: 50%;
  padding-top: 0;
}

.about__pic::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 100%;
  content: "";
  background-color: var(--font-color--light);
}

.about__img {
  object-fit: cover;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin-top: 0;
  border-top: 0;
}

.about__info {
  width: 50%;
  border-left: 3px solid var(--primary-color);
}

.about__subtitle {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.about__text {
  padding: 40px;
  box-shadow: var(--box-shadow);
}

.experience {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  padding: 30px;
  text-align: center;
  background-color: var(--secondary-color);
}

.experience__title {
  margin: 0;
  color: var(--font-color--light);
  font-weight: 400;
}

.experience__sub {
  font-size: 1.5rem;
}

.experience__count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.experience__number {
  position: relative;
  padding: 0 10px;
  font-size: 2rem;
  font-weight: 600;
}

.experience__text {
  font-size: 1rem;
  font-weight: 400;
}

.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: var(--font-color--light);
  font-size: 0.8rem;
  font-weight: 400;
}

.woocommerce-breadcrumb a {
  padding: 2px 6px;
  transition: 0.3s;
  color: #fff;
  background-color: var(--primary-color);
  font-weight: 400;
}

.woocommerce-breadcrumb a:hover {
  color: var(--primary-color--light);
}

.breadcrumb-separator {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 0;
  background-color: transparent;
  background-image: url("./img/icons/arrow-next-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5px auto;
  font-size: 0;
}

ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-numbers li {
  margin: 5px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.page-numbers li span,
.page-numbers li a {
  display: block;
  min-width: 25px;
  padding: 5px 10px;
  font-size: 0.9rem;
}

.page-numbers li a {
  transition: 0.3s;
  color: var(--font-color--light);
  background-color: var(--primary-color);
}

.page-numbers li a:hover {
  background-color: var(--primary-color--dark);
}

.site-main .storefront-sorting:first-child {
  display: none;
}

.main-product__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.total__value {
  font-size: 1rem;
  font-weight: 600;
}

.main-product {
  display: flex;
  flex-direction: column;
  padding-bottom: 4rem;
  gap: 4rem;
}

.main-product__breadcrumbs {
  font-size: 0.9rem;
}

.main-product__breadcrumbs .col-full {
  padding: 0;
}

.main-product__breadcrumbs .woocommerce-breadcrumb {
  color: #9a9a9a;
}

.main-product__breadcrumbs .breadcrumb-separator {
  opacity: 0.5;
  background-image: url("./img/icons/arrow-next.svg");
}

.main-product__breadcrumbs a {
  padding: 0;
  color: #9a9a9a;
  background-color: transparent;
}

.main-product__breadcrumbs a:hover {
  color: var(--primary-color);
}

.section--related-products {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.main-product__top {
  --gap: 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  gap: var(--gap);
}

.main-product__bottom {
  position: relative;
  z-index: 1;
  width: 100%;
}

.woocommerce-tabs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.main-product__gallery {
  width: 100%;
  max-width: 400px;
  padding: 0;
}

.main-product__summary {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 400px - var(--gap));
  gap: var(--gap);
}

.main-product__info {
  display: flex;
  flex-direction: column;
  width: calc(55% - var(--gap)/2);
  margin: 0 auto;
  text-wrap: balance;
  gap: 1rem;
}

.main-product__order-details {
  margin-bottom: 30px;
}

.main-product__notice {
  text-align: center;
  font-size: 0.8rem;
}

.order-details {
  display: flex;
  margin: 0;
  margin-right: -1%;
  margin-left: -1%;
}

.order-details__item {
  width: 48%;
  margin: 1%;
  font-size: 0.9rem;
}

.order-details__title {
  font-size: 1rem;
  font-weight: 600;
}

.woocommerce-product-gallery {
  position: relative;
  justify-content: center;
  margin: 0;
}

.flex-viewport {
  margin-bottom: 20px;
}

.woocommerce-product-gallery__wrapper {
  margin: 0 auto;
}

.woocommerce-product-gallery__image > a {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0;
}

.woocommerce-product-gallery__image > a:focus {
  outline: none;
  box-shadow: none;
}

.woocommerce-product-gallery__image > a::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: block;
  visibility: hidden;
  width: 50px;
  height: 50px;
  content: "";
  transition: 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  background-image: url("./img/icons/plus-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.woocommerce-product-gallery__image > a:hover::before {
  visibility: visible;
  transition: 0.3s;
  opacity: 1;
}

.woocommerce-product-gallery__image > a > img {
  object-fit: contain;
  -o-object-position: center center;
  object-position: center center;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1rem;
  transition: 0.3s;
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
}

.woocommerce-product-gallery__image > a:hover > img {
  transition: 0.3s;
}

.woocommerce-product-gallery__image--placeholder > img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
}

.flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-right: -1%;
  margin-left: -1%;
  padding: 0;
  list-style: none;
}

.flex-control-thumbs > li {
  display: flex;
  width: 31%;
  height: 120px;
  margin: 1%;
  padding: 5px;
  border: 1px solid #cad3df;
}

.flex-control-thumbs > li:hover {
  transition: 0.3s;
  border: 1px solid var(--primary-color);
}

.flex-control-thumbs > li > img {
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: auto;
  transition: 0.3s;
}

.woocommerce-product-gallery__trigger {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  display: block;
  overflow: hidden;
  width: 30px;
  height: 30px;
}

.main-product .product_title {
  margin: 0;
  font-size: 1.8rem;
}

.product_meta {
  display: none;
}

.woocommerce-product-details__short-description {
  width: 100%;
}

.woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.main-product__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--font-color--light);
  background-color: var(--secondary-color);
}

.main-product__btn:hover {
  color: var(--font-color--light);
  background-color: var(--primary-color);
}

.main-product__btn--callback {
  margin-bottom: 0;
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: 0.3s;
  border-radius: 50%;
  background-color: #fff;
}

:is(button, input[type="button"], .btn, .button) .btn__icon .icon {
  --size: 35%;
  transition: 0.3s;
  background-color: var(--primary-color);
}

.btn__icon--cart {
  background-image: url("./img/icons/cart-white.svg");
}

.price {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--font-color);
  font-size: 1rem;
}

.catalog__item:not(.top-level-category) bdi {
  font-size: 1.2rem;
  font-weight: 600;
}

.catalog__item:not(.top-level-category) .woocommerce-Price-currencySymbol {
  font-size: 1rem;
  font-weight: 400;
}

.main-product__price {
  font-size: 1.3rem;
}

.main-product__price bdi {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
}

.main-product__price .woocommerce-Price-currencySymbol {
  font-size: 1.3rem;
  font-weight: 400;
}

.price__name {
  display: block;
  margin-right: 10px;
}

.main-product__order {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc(35% - var(--gap)/2);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  gap: 1rem;
}

.parameter-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

.parameter-list__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  column-gap: 2rem;
}

.parameter-list__name {
  position: relative;
  z-index: 1;
  padding-right: 10px;
  text-align: left;
  color: rgba(0, 0, 0, 0.5);
  background-color: var(--font-color--light);
}

.parameter-list__value {
  position: relative;
  padding-left: 10px;
  text-align: right;
  color: #000;
  background-color: var(--font-color--light);
}

.parameter-list__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  content: "";
  border-bottom: 1px dashed #ccc;
}

.catalog .parameter-list {
  margin-bottom: 20px;
}

.parameter-list__item--attribute_pa_standart-gorloviny {
  order: -2;
}

.parameter-list__item--attribute_pa_kol-vo-v-upakovke {
  order: -1;
}

.catalog .parameter-list__item:nth-child(1),
.catalog .parameter-list__item:nth-child(2) {
  display: flex;
}

.woocommerce-Tabs-panel .parameter-list {
  --gap: 0rem;
  --count: 4;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: var(--gap);
}

.woocommerce-Tabs-panel .parameter-list__item {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  width: calc((100% + var(--gap)) / var(--count) - var(--gap));
  margin: 0 -1px -1px 0;
  padding: 1rem;
  border: 1px solid var(--border-color);
  gap: 5px;
}

.woocommerce-Tabs-panel .parameter-list__name,
.woocommerce-Tabs-panel .parameter-list__value {
  padding: 0;
  text-align: left;
  white-space: unset;
}

.woocommerce-Tabs-panel .parameter-list__name {
  font-size: 0.8rem;
}

.woocommerce-Tabs-panel .parameter-list__item::before {
  display: none;
}

.file-link {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 35px;
  transition: 0.3s;
  color: #000;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background-color: var(--primary-color);
}

.file-link:hover {
  background-color: #000;
}

.file-link::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("./img/icons/download.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
}

.pswp {
  display: none !important;
}

.main-product__tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

.main-product__tabs > li {
  margin: 0 -1px -1px 0;
  transition: 0.3s;
  border: 1px solid var(--border-color);
}

.main-product__tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--header-color);
  background-color: var(--bg-color);
  font-weight: 600;
}

.main-product__tabs a:hover {
  background-color: #fff;
}

.main-product__tabs > li.active {
  border-top-color: var(--primary-color);
}

.main-product__tabs > li.active a {
  background-color: var(--font-color--light);
}

/* .main-product__tabs-panel {
  min-height: 10rem;
} */
.section--related-products .catalog {
  margin-bottom: 0;
}

.site-content {
  position: relative;
}

.site-content:focus {
  outline: none;
  box-shadow: none;
}

.site-content::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 600px;
  content: "";
}

.site-content::before,
.site-content::after {
  top: -100px;
}

.home .site-content,
.home .site-content {
  padding: 0;
}

.home .site-content::before,
.home .site-content::after {
  display: none;
}

.archive-sidebar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.archive-sidebar .content-area {
  width: 75%;
  margin: 0;
  padding: 0;
}

.archive-sidebar .widget-area {
  display: flex;
  flex-direction: column;
  width: 22%;
  padding: 0;
  gap: 1rem;
}

.single-product .widget-area {
  display: none !important;
}

.archive-sidebar .widget {
  width: 100%;
}

.wpc-filters-widget-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wpc-filter-set-widget-title {
  display: block;
  padding: 1rem;
  color: var(--font-color);
  background-color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
}

.sidebar {
  font-size: 0.9rem;
}

.product-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-categories__link {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: 0.3s;
  color: var(--font-color);
  gap: 1rem;
}

.level-0 {
  border: 1px solid var(--border-color);
  border-top: 0;
}

.level-0 > .product-categories__item {
  margin-bottom: -1px;
}

.level-0 > .product-categories__item > .product-categories__link {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.product-categories__pic {
  width: 40px;
  aspect-ratio: 1;
}

.product-categories__img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.product-categories__link:has(.product-categories__pic) .product-categories__name {
  width: calc(100% - 40px - 1rem);
  font-weight: 600;
}

.product-categories__subcategories .product-categories__item {
  display: none;
}

.product-categories__item.current .product-categories__subcategories > .product-categories > .product-categories__item {
  display: block;
  padding-right: 1rem;
  padding-left: 1rem;
}

.product-categories__subcategories {
  border-top: 0;
}

.product-categories__item.current > .product-categories__link {
  font-weight: 600;
}

.btn-up {
  position: fixed;
  z-index: 5;
  right: 20px;
  bottom: 160px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0;
  border-radius: 0;
  background-color: var(--primary-color);
}

.btn-up:hover {
  opacity: 1;
  background-color: var(--primary-color);
}

.btn-up .icon {
  --size: 25%;
  background-color: var(--font-color--light);
}

.error-404__pic {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.error-404__pic img {
  width: 100%;
  height: auto;
}

.section--portfolio {
  background-color: #f9f9f9;
}

.gallery {
  --count: 4;
}

.gallery--center {
  justify-content: center;
}

.gallery--col-2 {
  --count: 2;
}

.gallery--col-3 {
  --count: 3;
}

.gallery__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: auto;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: var(--font-color--light);
  aspect-ratio: 4/3;
}

.gallery__content::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  visibility: hidden;
  width: 50px;
  height: 50px;
  content: "";
  transition: 0.3s;
  transform: translate(-50%, -50%);
  transform-origin: 50% 0;
  opacity: 0;
  background-color: var(--primary-color);
  background-image: url("./img/icons/plus-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30% auto;
}

.gallery__content:hover::before {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.gallery__content::after {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: "";
  transition: 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, .5);
}

.gallery__content:hover::after {
  visibility: visible;
  opacity: 1;
}

.gallery__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  position: relative;
  background: none;
}

.lb-nav a.lb-next::before,
.lb-nav a.lb-prev::before {
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  transform: translateY(-50%);
  background-color: var(--font-color);
}

.lb-nav a.lb-next::after,
.lb-nav a.lb-prev::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 50px;
  height: 50px;
  content: "";
  transform: translateY(-50%);
  background-image: url("./img/icons/arrow-next-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px auto;
}

.lb-nav a.lb-next::before {
  right: 0;
}

.lb-nav a.lb-prev::before {
  left: 0;
}

.lb-nav a.lb-next::after {
  right: 0;
}

.lb-nav a.lb-prev::after {
  left: 0;
  transform: translateY(-50%) scale(-1, 1);
}

.responsive-table {
  display: block;
  overflow-x: auto;
  width: 100%;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.section--features {
  position: relative;
  color: var(--font-color--light);
  background-image: url("./img/bg/features.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.section--features::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, .8);
}

.section--features::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("./img/main-slider/shahmati.png");
}

.section--features .col-full {
  position: relative;
  z-index: 1;
}

.features-title {
  color: var(--font-color--light);
}

.section__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section--brands {
  background-color: #f9f9f9;
  background-image: url("./img/pattern-beton.png");
}

.brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}

.brands__item {
  width: 100%;
  padding: 0 10px;
  text-align: center;
}

.brands__pic {
  border: 1px solid var(--border-color);
  background-color: var(--font-color--light);
}

.brands__img {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.section--contacts {
  position: relative;
  z-index: 0;
}

.footer-contacts__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.footer-contacts__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 23%;
  padding: 20px;
  list-style: none;
  border: 1px solid var(--border-color);
}

.footer-contacts__link {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 0;
  text-align: center;
  gap: 0.5rem;
}

.footer-contacts__link .icon {
  --size: 2.2rem;
}

.footer-contacts__link:last-child {
  margin-bottom: 0;
}

.footer-contacts__name,
.footer-contacts__text,
.footer-contacts__number,
.footer-contacts a {
  color: var(--font-color);
}

.footer-contacts a:hover {
  color: var(--primary-color);
}

.footer-contacts__name {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-contacts__number {
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 600;
}

.section--map {
  padding: 0;
}

.map {
  width: 100%;
  max-width: 1920px;
  height: 400px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  border-top: 0;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  background-color: var(--secondary-color);
}

.footer-bottom__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-bottom__item {
  margin-bottom: 5px;
}

.footer-bottom__item:last-child {
  margin-bottom: 0;
}

.footer-bottom__link {
  display: block;
  transition: 0.3s;
  color: var(--font-color--light);
  font-size: 0.9rem;
}

.footer-bottom__link:hover {
  color: var(--secondary-color--light);
}

.section--promo {
  position: relative;
  z-index: 0;
}

.section--promo::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, .8);
  background-image: url("./img/main-slider/shahmati.png");
}

.section--promo::after {
  filter: grayscale(1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.15;
  background-image: url("./img/bg/promo.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section--promo h2 {
  color: var(--primary-color);
}

.section--promo .sub-text {
  color: var(--font-color--light);
}

.section--promo .col-full {
  position: relative;
  z-index: 1;
}

.promo-form {
  align-items: center;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.promo__content {
  position: relative;
  z-index: 1;
  color: var(--font-color--light);
}

.promo__title {
  margin-bottom: 30px;
  text-align: center;
  color: var(--font-color--light);
}

.promo__discount {
  display: block;
}

.promo__value {
  color: var(--primary-color);
}

.promo .appointment-form__input {
  color: var(--font-color--light);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
}

:is(.promo-form .appointment-form__input)::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

:is(.promo-form .appointment-form__input):is(:hover, :active, :focus)::placeholder {
  color: var(--font-color--light) !important;
}

.promo .appointment-form__privacy {
  width: 100%;
  max-width: 600px;
  text-align: left;
}

.section--promo .checkbox:checked + label::after {
  background-image: url("./img/icons/check-white.svg");
}

.promo .checkbox + label::before {
  background-color: transparent;
}

.promo input[type="file"] {
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
}

.promo input[type="file"] {
  color: white;
}

.promo input[type="file"]:last-child {
  margin-bottom: 0;
}

.promo .appointment-form__control:has(input[type="file"]) {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
}

.promo .file-name {
  color: var(--font-color--light);
}

.appointment-form__privacy .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  gap: 0.5rem;
}

input.custom-check {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
  appearance: none;
}

input.custom-check:checked {
  border-color: var(--primary-color);
}

input.custom-check::before {
  position: absolute;
  bottom: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
  opacity: 0;
  background-image: url("./img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.section--promo input.custom-check::before {
  background-image: url("./img/icons/check-white.svg");
}

input.custom-check:checked::before {
  opacity: 1;
}

label:has(.custom-check) {
  cursor: pointer;
}

.regions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.regions__pic {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  inset: 0;
}

.regions__pic::before {
  filter: grayscale(1);
  position: absolute;
  display: block;
  content: "";
  opacity: 0.3;
  background-image: url("./img/map.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  inset: 0;
}

.regions__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.regions__info {
  position: relative;
  z-index: 2;
}

.regions-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.regions-list__link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  color: #000;
  background-color: var(--font-color--light);
  box-shadow: var(--box-shadow);
  font-size: 14px;
  gap: 10px;
}

.regions-list__icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 2rem;
  height: 100%;
  background-color: var(--primary-color);
}

.regions-list__icon .icon {
  --size: 20px;
  background-color: #fff;
}

.regions-list__name {
  padding: 10px;
}

.section--page-slider {
  padding: 30px 0;
  background-image: url("./img/main-slider/slide-1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.section--page-slider::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, .5);
}

.section--page-slider::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("./img/main-slider/shahmati.png");
}

.page-slider {
  position: relative;
  z-index: 1;
}

.page-slider__breadcrumbs .col-full {
  padding: 0;
}

.page-slider__title {
  color: var(--font-color--light);
}

.woocommerce-info {
  display: none;
}

.table-responsive {
  display: block;
  overflow-x: auto;
  width: 100%;
  max-height: 84vh;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #f1f1f1;
  -webkit-overflow-scrolling: touch;
}

.table-responsive:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

table {
  margin-bottom: 20px;
  border-collapse: collapse;
}

.table-content {
  width: 100%;
}

.table-responsive table {
  margin: 0;
  box-shadow: none;
}

.table-content tr {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--font-color--light);
}

.table-content thead {
  position: sticky;
  top: 0;
  border-bottom: 2px solid var(--font-color--light);
  box-shadow: var(--box-shadow);
}

.table-content td,
.table-content th {
  padding: 10px 15px;
  text-align: center;
  border: none;
  background-color: transparent;
}

.table-content td:first-child {
  text-align: left;
}

.table-content th {
  position: relative;
  color: var(--font-color--light);
  background-color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.table-content th::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.table-content th:last-child:after {
  display: none;
}

.table-content td {
  border-right: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.table-content td.table__caption {
  padding: 10px 15px;
  text-align: center;
  color: var(--font-color);
  background-color: var(--primary-color);
  font-weight: 600;
}

.table-content tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table__link {
  margin-right: 15px;
  padding-bottom: 3px;
  transition: 0.3s;
  opacity: 0.7;
  color: #161616;
  border-bottom: 1px dashed #161616;
}

.table__link:hover {
  opacity: 1;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.table-content .table__pic {
  background-color: var(--font-color--light);
}

.table-content tr .table__pic {
  text-align: center;
}

.table-content .table__pic img {
  width: 100px;
  height: auto;
}

.table-search-block {
  margin-bottom: 30px;
}

.table-search-input {
  width: 100%;
  padding-right: 58px;
  cursor: pointer;
  background-image: url("./img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px auto;
}

.page-id-23 .site-header {
  order: -5;
}

.page-id-23 .section--page-slider {
  order: -4;
}

.page-id-23 .section--contacts {
  order: -3;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.page-id-23 .section--promo {
  order: -2;
}

.table-contacts {
  max-height: unset;
}

.brand-list {
  margin-bottom: 4rem;
}

.brand-list__item {
  width: 33%;
  margin-bottom: 20px;
}

.feedbacks__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 0 10px;
}

.feedbacks__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 300px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: var(--font-color--light);
}

.feedbacks__content::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  visibility: hidden;
  width: 3rem;
  height: 3rem;
  content: "";
  transition: 0.3s;
  transform: translate(-50%, -50%);
  transform-origin: 50% 0;
  opacity: 0;
  background-color: var(--primary-color);
  background-image: url("./img/icons/plus-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30% auto;
}

.feedbacks__content:hover::before {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.feedbacks__content::after {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  content: "";
  transition: 0.3s;
  opacity: 0;
  background-color: rgba(0, 0, 0, .5);
}

.feedbacks__content:hover::after {
  visibility: visible;
  opacity: 1;
}

.feedbacks__img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.site-header .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 0.5rem 2.5rem 0.5rem 1rem;
  color: #161616;
  border: none;
  border-radius: 50px;
  font-family: "Onest";
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.5;
}

.header-search .dgwt-wcas-search-wrapp {
  align-self: stretch;
  max-width: unset;
}

.header-search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  height: auto;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  background-color: var(--bg-color);
}

.header-search .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.dgwt-wcas-search-form {
  height: 100%;
}

.dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input::placeholder {
  font-style: normal;
}

.dgwt-wcas-search-wrapp .dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit,
.dgwt-wcas-om-bar .dgwt-wcas-om-return {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  width: 1.3rem;
  min-width: unset;
  height: 1.3rem;
  min-height: unset;
  padding: 0;
  transform: translateY(-50%);
  background-color: transparent;
}

.dgwt-wcas-ico-magnifier,
.dgwt-wcas-ico-magnifier-handler {
  width: 100%;
  max-width: unset;
}

.dgwt-wcas-sf-wrapp .dgwt-wcas-search-submit:before {
  display: none;
}

.dgwt-wcas-open .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  border-radius: 50px;
}

.dgwt-wcas-suggestions-wrapp {
  margin-top: 10px;
  border: none;
  box-shadow: var(--box-shadow);
}

.dgwt-wcas-suggestion,
.dgwt-wcas-suggestion .js-dgwt-wcas-suggestion-more {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

:is(.dgwt-wcas-suggestion-more) {
  background-color: #f2ce03;
}

.dgwt-wcas-st-more {
  padding: 0;
  text-transform: none;
  color: #000;
  font-weight: 600;
}

.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
  top: 50%;
  right: 1rem;
  left: unset;
  width: 1rem;
  max-width: unset;
  height: 1rem;
  max-height: unset;
  margin: 0;
  transform: translateY(-50%);
}

.dgwt-wcas-preloader {
  right: 2rem;
}

.dgwt-wcas-ico-magnifier,
.dgwt-wcas-ico-magnifier-handler,
html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  max-width: 1rem;
}

.dgwt-wcas-st {
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-form .modal-header {
  padding: 2rem;
  font-size: 18px;
}

.modal-form .modal-body {
  padding: 2rem;
}

.modal-body p {
  width: 100%;
  margin-bottom: 0;
}

.wpcf7-spinner {
  display: none;
}

.politika p {
  text-align: center;
  font-size: 12px;
}

.wpcf7-form-control.wpcf7-submit.has-spinner.btn-new:not(:last-child) {
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  text-align: center;
}

.btn-new:hover {
  transition: 0.3s;
  opacity: 1;
  color: var(--font-color--light);
  border: none;
  background-color: var(--secondary-color);
}

.btn-new {
  position: relative;
  display: inline-block;
  padding: 18px 25px;
  cursor: pointer;
  transition: 0.3s;
  vertical-align: top;
  white-space: nowrap;
  color: var(--font-color--light);
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
  font-family: "Onest", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
}

.flex-list {
  --count: 1;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  gap: var(--gap, 1rem);
}

.flex-list:last-child {
  margin-bottom: 0;
}

.flex-list--col-2 {
  --count: 2;
}

.flex-list--col-3 {
  --count: 3;
}

.flex-list--col-4 {
  --count: 4;
}

.flex-list--col-5 {
  --count: 5;
}

.flex-list--col-6 {
  --count: 6;
}

.flex-list__item {
  width: calc((100% + var(--gap, 1rem)) / var(--count) - var(--gap, 1rem));
}

.blog-list__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-list__pic img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

.blog-list__date {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.blog-list__title {
  font-size: 1.2rem;
}

.blog-list__info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-list__text {
  margin-top: auto;
}

.filter-button {
  display: flex;
  gap: 0.5rem;
}

.filter-button .icon {
  --size: 0.9rem;
  transition: 0.3s;
  background-color: var(--font-color);
}

.filter-button:is(:hover, :active) .icon {
  background-color: var(--font-color--light);
}

.sidebar .widget-title {
  display: block;
  padding: 1rem;
  background-color: var(--primary-color);
}

.filter-products {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.filter-products h3 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.bapf_body {
  overflow-y: auto;
  max-height: 250px;
  padding-right: 1rem;
}

.wc-filter {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.wc-filter:last-child {
  margin-bottom: 0;
}

.wc-filter + .storefront-sorting {
  display: none;
}

.catalog:has(+.storefront-sorting) {
  margin-bottom: 2rem;
}

.filter-sidebar {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: -300px;
  overflow-y: auto;
  width: 300px;
  height: 100%;
  transition: left 0.3s ease;
  background-color: white;
  box-shadow: var(--box-shadow);
  font-size: 0.8rem;
}

.filter-sidebar__content {
  display: flex;
  flex-direction: column;
}

.filter-sidebar.show {
  left: 0;
}

.bapf_sfilter {
  margin-bottom: 0;
}

.bapf_rst_sel {
  border: none;
}

.bapf_button {
  box-shadow: none;
}

.filter-close {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: baseline;
  width: 1rem;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.filter-close:is(:hover, :focus) {
  background-color: transparent;
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  gap: 1rem;
}

.filter-sidebar__title {
  font-size: 1rem;
  font-weight: 600;
}

.bapf_slidr_all {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

.bapf_sfilter ul {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  gap: 1rem;
}

.filter-sidebar .bapf_ckbox_square input[type=checkbox],
.filter-sidebar .bapf_ckbox_sqchck input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-right: 1rem;
  border: 1px solid var(--border-color);
}

.bapf_sfilter label {
  width: 100%;
}

.filter-sidebar__btns {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  background-color: #fff;
  gap: 1rem;
}

.filter-sidebar__btns .bapf_body {
  padding-right: 0;
}

.filter-sidebar__btns .bapf_button {
  width: 100%;
}

.bapf_reset {
  color: var(--font-color--light);
  background-color: var(--secondary-color);
}

.wc-mini-catalog {
  margin-bottom: 2rem;
}

.wc-mini-catalog:last-child {
  margin-bottom: 0;
}

.wc-mini-catalog .subcategory-list {
  --gap: 0rem;
  margin: 0;
  list-style: none;
}

.wc-mini-catalog:has(.empty) {
  display: none;
}

.subcategory-item {
  margin: 0 -1px -1px 0;
  border: 1px solid var(--border-color);
}

.subcategory-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: var(--font-color);
  font-size: 0.9rem;
}

.subcategory-img {
  object-fit: contain;
  width: 50px;
  aspect-ratio: 1;
}

.subcategory-title {
  width: calc(100% - 50px - 1rem);
}

.social-list {
  display: flex;
  align-items: center;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.social-list__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  transition: 0.3s;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  aspect-ratio: 1;
}

.social-list__content::before {
  position: absolute;
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  inset: 0;
}

.social-list__content--whatsapp {
  background-color: #2cb742;
}

.social-list__content--whatsapp::before {
  background-image: url("./img/icons/whatsapp.svg");
}

.social-list__content--telegram {
  background-color: #27a7e7;
}

.social-list__content--telegram::before {
  background-image: url("./img/icons/telegram.svg");
}

.social-list__content:hover {
  filter: brightness(0.95);
}

.social-list:last-child {
  margin-bottom: 0;
}

.header-actions {
  color: var(--font-color--light);
}

.user-action {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  background-color: transparent;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.user-action:is(:hover, :focus) {
  border: none;
  background-color: transparent;
}

.user-actions__content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-action__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  transition: 0.3s;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
  aspect-ratio: 1;
}

.user-action__icon:is(:hover, :focus) {
  opacity: 0.8;
}

.user-action__icon .icon {
  --size: 50%;
  background-color: var(--font-color--light);
}

.user-action__label {
  position: absolute;
  left: 100%;
  visibility: hidden;
}

.cart-info {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  color: var(--font-color--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 0.8rem;
  gap: 0.5rem;
}

.cart-info__count {
  position: relative;
  padding-right: 0.5rem;
}

.cart-info__count::before {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 80%;
  content: "";
  transform: translateY(-50%);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.main-product__cart {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  gap: 1rem;
}

.quantity {
  --gap: 0rem;
  --button-width: 2.5rem;
  display: flex;
  gap: var(--gap);
}

.quantity__button {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: var(--button-width);
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.quantity__button:is(:hover, :focus) {
  background-color: var(--primary-color);
}

.quantity__button .icon {
  --size: 30%;
  background-color: var(--font-color);
}

.quantity__button:is(:hover, :focus) .icon {
  background-color: #fff;
}

.quantity__button--minus {
  border-right-width: 0;
}

.quantity__button--plus {
  border-left-width: 0;
}

.quantity input {
  width: calc(100% - 2*var(--gap) - 2*var(--button-width));
  max-width: 80px;
  padding: 0.5rem;
  text-align: center;
  background-color: #fff;
}

.main-product__buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
}

.wc-message {
  position: fixed;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 !important;
  padding: 2rem;
  background-color: #fff;
  box-shadow: var(--box-shadow);
}

.wc-message.hide {
  visibility: hidden;
  transition: 0.3s;
  transform: translateY(100%);
  opacity: 0;
}

.wc-message__close {
  display: none;
}

.wc-message__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background-color: var(--primary-color);
}

.wc-message__close:hover .icon {
  background-color: #fff;
}

.wc-message__close .icon {
  --size: 30%;
  background-color: var(--font-color);
}

.wc-message:is(:focus, :focus-visible) {
  border: none;
  outline: none;
}

.wc-message__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.all-wc-message {
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
}

.cart-form-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.cart-checkout {
  width: calc(25% - 2rem);
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.cart-checkout__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-checkout__title {
  font-size: 1rem;
  font-weight: 600;
}

.cart-checkout__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.9rem;
}

.cart-checkout__name {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.cart-checkout__name::after {
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 1rem;
  content: "";
  border-bottom: 1px dashed var(--border-color);
}

.cart-checkout__item bdi {
  font-size: 1.2rem;
}

.cart-checkout__item .woocommerce-Price-currencySymbol {
  font-size: 0.8em;
  font-weight: 400;
}

.cart-checkout__order {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.cart-form {
  display: flex;
  flex-direction: column;
  width: 75%;
  gap: 2rem;
}

.cart-form__list,
.cart-form__actions {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-form__list {
  display: flex;
}

.cart-form__container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-form__list--header {
  display: none;
}

.cart-form__link--update {
  display: none !important;
}

.cart-form__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -1px -1px 0;
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.cart-form__item--name {
  width: 40%;
  gap: 1rem;
}

.cart-form__remove a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--danger-color);
  font-size: 1.5rem;
}

.cart-form__remove a .icon {
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.3);
}

.cart-form__remove a:hover .icon {
  background-color: var(--danger-color);
}

.cart-form__list--header .cart-form__item {
  justify-content: center;
  color: var(--font-color--light);
  background-color: var(--secondary-color);
  font-weight: 500;
}

.cart-form__item--quantity,
.cart-form__item--price,
.cart-form__item--total {
  flex-direction: column;
  justify-content: center;
  width: 20%;
  gap: 0.5rem;
}

.cart-form__item--price,
.cart-form__item--total {
  justify-content: center;
  text-align: center;
}

.cart-form__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  max-width: 80px;
  color: var(--font-color);
  aspect-ratio: 1;
  gap: 1rem;
}

.cart-form__title {
  width: calc(100% - 80px - 3rem);
}

.cart-form__title a {
  display: inline-block;
  text-wrap: balance;
  color: var(--font-color);
  font-weight: 600;
}

.cart-form__title a:hover {
  color: var(--primary-color);
}

.cart-form__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.cart-form__item bdi {
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-form__item .woocommerce-Price-currencySymbol {
  font-size: 0.8em;
  font-weight: 400;
}

.cart-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.empty-cart {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.empty-cart__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

.empty-cart__list p:empty {
  display: none;
}

.checkout-order {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.checkout-order__wrapper {
  display: flex;
  flex-direction: column;
  width: 75%;
  gap: 2rem;
}

.checkout-order__item {
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.checkout-order__item--delivery {
  background-color: #fff;
}

.checkout-order__item--delivery .wc-checkout-shipping-methods label {
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
}

.wc-checkout-shipping-methods {
  margin-bottom: 1rem;
}

.woocommerce-input-wrapper input {
  width: 100%;
}

.checkout-order__item .appointment-form-control {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: #fff;
  gap: 1rem;
}

.checkout-order__customer-item--file label {
  justify-content: center;
  margin-bottom: 5px;
}

.checkout-order__customer-item--file .file-types {
  text-align: center;
  opacity: 0.8;
  font-size: 0.8rem;
}

.checkout-order__title {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.checkout-order__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#billing_country_field {
  display: none !important;
}

.form-row {
  display: flex;
  gap: 0.5rem;
}

.form-row label.radio {
  display: flex;
  align-items: center;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  background-color: #fff;
  font-size: 0.8rem;
}

.form-row-wide {
  width: 100%;
}

.address-field {
  width: 100%;
}

.custom-input-class {
  width: 100%;
}

.form-row input,
.form-row textarea {
  background-color: #fff;
}

.form-row textarea {
  width: 100%;
}

.form-row-wide--customer-type {
  width: 100%;
}

.optional {
  display: none;
}

.woocommerce-billing-fields__title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.woocommerce-input-wrapper:has(input[type="radio"]) {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.form-row input[type="radio"] {
  display: none;
}

.form-row input[type="radio"] + label::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  display: block;
  width: 1rem;
  content: "";
  transform: translateY(-50%);
  border: 4px solid var(--border-color);
  border-radius: 50%;
  background-color: #fff;
  aspect-ratio: 1;
}

.form-row input[type="radio"] + label.radio {
  position: relative;
  width: calc(50% - 0.5rem);
  padding: 1rem;
  padding-left: 3rem;
  cursor: pointer;
  text-align: center;
  color: var(--font-color);
  border: 1px solid var(--border-color);
  font-size: 1rem;
}

.form-row input[type="radio"]:checked + label {
  border-color: var(--primary-color);
}

.form-row input[type="radio"]:checked + label::before {
  border-color: var(--primary-color);
  background-color: var(--bg-color);
}

.checkout-review {
  font-size: 0.9rem;
}

.checkout-review__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-review__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.checkout-review__row {
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: #fff;
}

.checkout-order .form-row {
  flex-direction: column;
  margin-bottom: 0;
}

.checkout-review__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checkout-review__pic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  aspect-ratio: 1;
}

.checkout-review__pic img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.checkout-review__item--name {
  width: calc(50% - 70px);
}

.checkout-review__item--price {
  width: 15%;
}

.checkout-review__item--total {
  width: 15%;
  text-align: right;
}

.checkout-review__name {
  transition: 0.3s;
  color: var(--font-color);
}

.checkout-review__name:hover {
  color: var(--primary-color);
}

.checkout-review bdi {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 600;
}

.checkout-review .woocommerce-Price-currencySymbol {
  font-size: 0.8rem;
  font-weight: 400;
}

.checkout-order__item input[type="radio"] {
  display: none;
}

.checkout-order__item label {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  text-wrap: balance;
  font-size: 0.8rem;
}

.wc_payment_method__label {
  background-color: #fff;
}

.woocommerce-shipping-methods label {
  padding: 0.8rem 1rem;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  background-color: var(--bg-color);
  font-weight: 600;
}

.woocommerce-shipping-methods label:hover {
  opacity: 0.8;
}

.woocommerce-shipping-methods input:checked + label {
  color: var(--font-color--light);
  background-color: var(--secondary-color);
}

.wc_payment_method__label {
  --gap: 1rem;
  --icon-size: 1.3rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--border-color);
  gap: var(--gap);
}

.wc_payment_method__label:hover {
  border-color: var(--primary-color);
}

.wc_payment_method__label .icon {
  --size: var(--icon-size);
  background-color: var(--font-color);
}

.wc_payment_methods input:checked + label {
  border-color: rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
}

.wc_payment_method__name {
  width: calc(50% - var(--icon-size) - var(--gap));
  font-size: 0.9rem;
  font-weight: 600;
}

.wc_payment_method__text {
  width: calc(50% - var(--gap));
  font-size: 0.8rem;
}

.woocommerce-notices-wrapper:has(+ .checkout-order) {
  margin-bottom: 2rem;
}

.woocommerce-error {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-error strong {
  color: var(--danger-color);
}

.wc-order {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.wc-order__messages {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 1rem;
  text-align: center;
  background-color: var(--bg-color);
}

.wc-order .woocommerce-notice {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 1rem;
}

.woocommerce-notice__icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 1.5rem;
  background-color: var(--success-color);
  aspect-ratio: 1;
}

.woocommerce-notice__icon .icon {
  --size: 55%;
  background-color: #fff;
}

.wc-order__details-wrapper {
  --gap: 2rem;
  margin-bottom: 0;
}

.wc-order__details {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--border-color);
  gap: 1rem;
}

.wc-order__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.wc-customer__item {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  font-size: 0.9rem;
}

.wc-customer__item-name {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.wc-customer__item-name::after {
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 1rem;
  content: "";
  border-bottom: 1px dashed var(--border-color);
}

.wc-customer__item--total {
  font-size: 1rem;
  font-weight: 600;
}

.wc-order__cart {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.wc-order__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 1rem;
}

.xoo-el-form-container.xoo-el-form-inline {
  max-width: 600px;
  margin: 0 auto;
}

form.xoo-el-action-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--border-color);
  gap: 1rem;
}

.xoo-el-section {
  padding: 0;
}

span.xoo-el-sing-head {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
  text-align: center;
  text-wrap: balance;
  font-size: 1.5rem;
  font-weight: 600;
}

span.xoo-el-sing-subtxt {
  text-align: center;
  font-size: 0.9rem;
}

.xoo-el-sing-fields {
  margin: 0;
}

.xoo-el-fields-cont {
  width: 100%;
  gap: 1rem;
}

.xoo-aff-group {
  float: none;
  width: 100%;
  margin: 0;
}

.xoo-aff-input-group input:is(.xoo-aff-text, .xoo-aff-password, .xoo-aff-email) {
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: var(--bg-color);
  box-shadow: none;
  inset: none;
}

.xoo-aff-input-group input:is(.xoo-aff-text, .xoo-aff-password, .xoo-aff-email):is(:hover, :focus) {
  border-color: var(--primary-color);
}

.xoo-el-form-container button.btn.button.xoo-el-action-btn {
  display: flex;
  justify-content: center;
  width: auto;
  min-width: 125px;
  height: auto;
  margin: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  color: var(--font-color--light);
  background-color: var(--primary-color);
  box-shadow: var(--box-shadow);
  font-size: 0.9rem;
  line-height: 1.5;
}

.xoo-el-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.xoo-aff-group.onehalf {
  width: 100%;
  margin: 0;
}

.xoo_el_reg_fname_cont {
  width: 100%;
  margin: 0;
}

.xoo_el_reg_fname_cont input {
  width: 100%;
  margin: 0;
}

.xoo-aff-checkbox_single label {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  gap: 1rem;
}

.xoo-aff-checkbox_single label p:last-child {
  margin-bottom: 0;
}

.xoo-aff-checkbox_single input {
  margin: 0;
}

.xoo-aff-checkbox_single {
  margin: 0;
}

.xoo-el-notice {
  width: 100%;
  margin: 0;
}

.xoo-el-notice-error,
.xoo-el-notice-success,
.xoo-el-notice-warning {
  padding: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

.xoo-aff-group.xoo-el-login-btm-fields {
  margin: 0;
  font-size: 0.8rem;
}

span.xoo-el-nav-ftspan.xoo-el-nav-ft {
  margin: 0;
  font-size: 0.9rem;
}

span.xoo-el-nav-ft {
  margin: 0;
  font-size: 0.9rem;
}

.xoo-el-notice p:last-child {
  margin-bottom: 0;
}

.xoo-el-form-txt {
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

span.xoo-el-edit-em {
  display: none;
}

.wc-account-list__item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.wc-account-list__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.wc-account-list__link {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--font-color);
  gap: 1rem;
}

.wc-account-list__link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.wc-account-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  aspect-ratio: 1;
}

.wc-account-list__icon .icon {
  --size: 55%;
  transition: 0.3s;
  background-color: var(--font-color);
}

.wc-account-list__link:hover .icon {
  background-color: var(--primary-color);
}

.wc-account-list__name {
  font-weight: 600;
}

.my-account__content {
  --gap: 2rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--gap);
}

.my-account__item--panel {
  width: 25%;
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.my-account__item--info {
  width: calc(75% - var(--gap));
}

.shop_table {
  width: 100%;
}

.wc-order-details {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
}

.wc-order-details__title {
  font-weight: 600;
}

.wc-order-details:last-child {
  margin-bottom: 0;
}

.wc-order-details-total__content {
  padding: 1rem;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.wc-order-details-total__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wc-order-details-total__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wc-order-details-total__name {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.wc-order-details-total__name::after {
  flex-grow: 1;
  flex-shrink: 0;
  margin: 0 1rem;
  content: "";
  border-bottom: 1px dashed var(--border-color);
}

.wc-order-details-total__value {
  text-align: right;
}

.woocommerce-MyAccount-content .wc-order-details {
  margin-bottom: 0;
}

.wc-orders-table {
  text-align: center;
}

.wc-customer-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wc-customer-details__info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--border-color);
  gap: 1rem;
}

.wc-order-details-products__item {
  padding: 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.my-account .address {
  display: none;
}

.woocommerce-orders-table__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.woocommerce-orders-table__row {
  --gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border-color);
}

.woocommerce-orders-table__cell--actions {
  width: auto;
}

.woocommerce-orders-table__cell {
  display: flex;
  flex-direction: column;
}

.woocommerce-orders-table__cell-order-actions .woocommerce-orders-table__title {
  display: none;
}

.woocommerce-orders-table__title {
  opacity: 0.5;
  font-size: 0.8rem;
  font-weight: 400;
}

.woocommerce-orders-table__text {
  font-size: 0.9rem;
}

.woocommerce-orders-table__text .price__none {
  font-size: 0.9rem;
  font-weight: 600;
}

.woocommerce-orders-table__cell--quantity {
  --count: 8;
  align-items: center;
}

.my_account_orders:not(:last-child) {
  margin-bottom: 1rem;
}

.my-account .woocommerce-notices-wrapper {
  margin: 0;
}

.my-account .woocommerce-notices-wrapper:has(:is(.woocommerce-message, .woocommerce-error, .woocommerce-success)) {
  margin-bottom: 1rem;
}

:is(.woocommerce-error, .woocommerce-message, .woocommerce-success):focus-visible {
  outline: none;
}

form.edit-account {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.edit-account__item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid var(--border-color);
  gap: 1rem;
}

.edit-account-list {
  margin-bottom: 0;
}

.edit-account-list__form-row {
  --gap: 1rem;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.edit-account-list__form-row label {
  width: calc(40% - var(--gap)/2);
  margin: 0;
}

.edit-account-list__form-row input {
  width: calc(60% - var(--gap)/2);
}

.edit-account__title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
}

.change-password-list__item .woocommerce-form-row {
  --gap: 1rem;
  display: flex;
  align-items: center;
  gap: var(--gap);
}

.change-password-list__item label {
  width: calc(40% - var(--gap)/2);
  margin: 0;
}

.change-password-list__item .password-input {
  width: calc(60% - var(--gap)/2);
}

.change-password-list__item .password-input input {
  width: 100%;
  margin: 0;
}

.required {
  color: var(--danger-color);
}

.file-warning {
  display: none;
  text-align: center;
  color: var(--danger-color);
  font-size: 0.8rem;
}

.file-warning.show {
  display: block;
}

.single-post article a:not([class]) {
  color: var(--font-color);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}

.single-post article a:not([class]):hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.accent-block {
  margin-bottom: 1rem;
  padding: 2rem;
  text-wrap: balance;
  border: 1px solid var(--primary-color);
  box-shadow: var(--box-shadow);
  font-size: 1.2rem;
  font-weight: 600;
}

.accent-block:last-child {
  margin-bottom: 0;
}

.accent-block a[href*="tel"] {
  color: var(--primary-color);
}

.accent-block p:last-child {
  margin-bottom: 0;
}

.service-list {
  --gap: 2rem;
}

.service-card {
  height: 100%;
  box-shadow: var(--box-shadow);
}

.service-card__content {
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card__pic {
  position: relative;
  aspect-ratio: 4/3;
}

.service-card__pic::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: 0.3s;
  background-color: rgba(0, 0, 0, .4);
}

.service-card:hover .service-card__pic::before {
  background-color: rgba(0, 0, 0, .5);
}

.service-card__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-card__info {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 0;
  left: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  color: var(--font-color--light);
}

.service-card__info::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  height: 100%;
  content: "";
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card__title {
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--font-color--light);
  font-size: 1.2rem;
}

.service-card__title::before {
  position: absolute;
  top: 0;
  left: -1rem;
  display: block;
  height: 2rem;
  content: "";
  border-left: 2px solid var(--primary-color);
}

.service-card__btn {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
  font-weight: 500;
  gap: 0.5rem;
}

.service-card__btn:hover {
  background-color: transparent;
}

.service-card:hover .service-card__btn .icon,
.service-card__btn:hover .icon {
  transform: translate(5px);
}

.appointment-form__control p {
  margin-bottom: 0;
}

.wpcf7-form-control-wrap {
  display: contents;
}

.appointment-form br {
  display: none;
}

.appointment-form__control p .appointment-form__label {
  margin-bottom: 5px;
}

.appointment-form p:last-child {
  margin-bottom: 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--success-color);
}

/* Скрываем штатный блок цены вариации, но не удаляем */
.single_variation_wrap .woocommerce-variation-price {
  position: absolute !important;
  top: auto !important;
  left: -9999px !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
}

.reset_variations {
  padding: 0;
  opacity: 0.5;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  font-size: 0.8rem;
  font-weight: 400;
}

.reset_variations:hover {
  color: var(--font-color);
  border-bottom: 1px dashed var(--font-color);
  background-color: transparent;
}

.variations_form {
  width: 100%;
}

.single_variation_wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

table.variations {
  width: 100%;
}

span.js-product-price {
  min-height: 40px;
}

.woo-variation-swatches .variable-items-wrapper {
  justify-content: center;
}

.woo-variation-swatches.wvs-show-label .variations td,
.woo-variation-swatches.wvs-show-label .variations th {
  text-align: center;
  font-size: 0.8rem;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected,
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).selected:hover {
  opacity: 0.9;
}

@media(max-width: 1366px) {

  .cart-form__item--quantity,
  .cart-form__item--price,
  .cart-form__item--total {
    width: 15%;
  }

  .cart-form__item--quantity {
    width: 30%;
  }
}

@media(max-width: 1199px) {
  html {
    font-size: 16px;
  }

  .header-contacts__item:first-child {
    display: none;
  }

  .main-slider__item {
    padding-top: 200px;
  }

  .regions {
    flex-direction: column;
  }

  .regions__pic {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .regions__info {
    width: 100%;
    margin: 0;
  }

  .regions .block-title {
    text-align: center;
  }

  .regions .block-title::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .main-product__info {
    width: 100%;
    max-width: 500px;
    margin: 0;
  }

  .main-product__order {
    width: 100%;
    max-width: 500px;
  }

  .catalog {
    --count: 2;
  }

  .regions-list {
    --count: 3;
  }

  .wc-mini-catalog .subcategory-list {
    --count: 3;
  }

  .cart-form__list {
    flex-wrap: wrap;
  }

  .cart-form__item--name {
    width: calc(100% - 2px);
  }

  .cart-form__list--header {
    display: none;
  }

  .cart-form__item--quantity,
  .cart-form__item--price,
  .cart-form__item--total {
    width: calc(100%/3);
  }
}

@media(max-width: 991px) {
  html {
    font-size: 15px;
  }

  .site-header.fixed {
    box-shadow: var(--box-shadow);
  }

  .fixed .header-info {
    display: block;
    padding-top: 0;
  }

  .fixed .logo {
    display: none;
  }

  .header-info {
    padding: 0;
    padding-top: 10px;
  }

  .main-site-info {
    border-bottom: 1px solid var(--border-color);
  }

  .header-info__content {
    align-items: center;
    flex-direction: column;
  }

  .header-info .col-full {
    padding: 0;
  }

  .header-contacts {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
  }

  .header-contacts .modal-btn {
    margin-left: auto;
  }

  .header-contacts .contacts__content {
    color: var(--font-color--light);
  }

  .header-contacts .contacts {
    order: -1;
  }

  .header-contacts .contacts a {
    color: var(--font-color--light);
  }

  .header-contacts .contacts .icon {
    background-color: var(--font-color--light);
  }

  .logo {
    margin-right: 0;
  }

  .menu-btn--open {
    display: flex;
  }

  .menu-btn--close {
    position: absolute;
    top: 0;
    right: -3rem;
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .mobile-menu {
    position: relative;
    z-index: 0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-menu__link {
    position: relative;
    display: block;
    padding: 15px 20px;
    transition: 0.3s;
    color: var(--font-color--light);
  }

  .mobile-menu__link::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    height: 1px;
    content: "";
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu__link:hover {
    transition: 0.3s;
    color: var(--font-color--light);
    background-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-menu__link--parent {
    position: relative;
  }

  .mobile-menu__item--back {
    order: -1;
  }

  .mobile-menu__item--parent > a,
  .mobile-menu__item--back > a {
    position: relative;
  }

  .mobile-menu__item--parent > a::after,
  .mobile-menu__item--back > a::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    content: "";
    transform: translateY(-50%);
    background-image: url("./img/icons/arrow-next-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 55% 55%;
  }

  .mobile-menu__item--back > a::after {
    transform: translateY(-50%) scale(-1, 1);
  }

  .mobile-menu__item--parent .mobile-menu__link--parent::after {
    display: none;
  }

  .mobile-menu__sub {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0;
    list-style: none;
    transition: 0.3s;
    transform: translateX(100%);
    background-color: var(--font-color);
  }

  .mobile-menu__sub.show {
    z-index: 3;
    transition: 0.3s;
    transform: translateX(0);
  }

  .header-nav {
    background-color: var(--font-color--light);
  }

  .header-nav__content {
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .header-search {
    width: 100%;
    padding: 0.5rem 0;
  }

  .header-search .dgwt-wcas-search-wrapp {
    width: 100%;
    max-width: 100%;
    box-shadow: none;
  }

  .header-search .dgwt-wcas-search-icon path {
    fill: #161616;
  }

  .site-header .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
    box-shadow: none;
  }

  .cart-info {
    color: var(--font-color);
    border-color: var(--border-color);
    font-weight: 600;
  }

  .cart-info__count::before {
    border-color: var(--border-color);
  }

  .archive-sidebar .sidebar {
    display: none !important;
  }

  .archive-sidebar .content-area {
    width: 100%;
  }

  .sidebar .widget {
    width: 48%;
    margin: 0;
    margin-bottom: 20px;
  }

  .main-product__top {
    flex-direction: column;
  }

  .main-product__gallery {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .main-product__summary {
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .flex-control-thumbs > li {
    max-width: 120px;
  }

  .section--counter {
    padding: 20px 0;
  }

  .counter__content {
    flex-direction: column;
  }

  .counter__title {
    text-align: center;
  }

  .counter__quantity {
    font-size: 2rem;
  }

  .counter__title br {
    display: none;
  }

  .about__content {
    flex-direction: column;
  }

  .about__pic {
    width: 100%;
    height: 450px;
    padding: 0;
  }

  .experience {
    bottom: 0;
  }

  .about__info {
    width: 100%;
    padding: 0;
    border-top: 3px solid var(--primary-color);
    border-left: none;
  }

  .gallery {
    --count: 2;
  }

  .section__row {
    align-items: center;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .block-title {
    text-align: center;
  }

  .block-title::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .main-slider__item {
    padding-top: 150px;
  }

  .footer-contacts__list {
    --count: 2;
  }

  .footer-bottom__content {
    flex-direction: column;
  }

  .footer-bottom__item {
    width: 100%;
  }

  .header-search .dgwt-wcas-search-icon path {
    fill: var(--font-color--light);
  }

  .dgwt-wcas-layout-icon-open .dgwt-wcas-search-icon-arrow {
    display: none !important;
  }

  html:not(.dgwt-wcas-overlay-mobile-on) .dgwt-wcas-search-wrapp.dgwt-wcas-layout-icon .dgwt-wcas-search-form {
    top: 100%;
  }

  .woocommerce-Tabs-panel .parameter-list {
    --count: 3;
  }

  .cart-form-wrapper {
    flex-direction: column;
  }

  .cart-form {
    width: 100%;
  }

  .cart-form__item::before {
    content: attr(data-title);
    font-size: 0.9rem;
  }

  .cart-form__item--name {
    margin-bottom: -1px;
  }

  .cart-form__item--name::before {
    display: none;
  }

  .cart-form__actions {
    justify-content: center;
  }

  .cart-checkout {
    width: 100%;
  }

  .checkout-order__wrapper {
    width: 100%;
  }

  .my-account__content {
    --gap: 1rem;
    flex-direction: column;
  }

  .my-account__item {
    width: 100%;
  }

  .service-list {
    --count: 2;
  }
}

@media(max-width: 767px) {
  .site-header .modal-btn .btn__icon {
    display: none;
  }

  .btn-up {
    display: none !important;
  }

  .wpcf7 input[type="file"] {
    display: block;
    width: 100%;
    cursor: pointer;
  }

  .wpcf7-form-control-wrap {
    position: relative;
    display: block;
    width: 100%;
  }

  .formheader .col-md-6 {
    display: inline-block;
    width: 49%;
  }

  .formheader .nameheader {
    display: block;
    width: 100%;
  }

  .formheader .phoneheader {
    display: block;
    width: 100%;
  }

  .fileadd {
    display: block;
    text-align: center;
  }

  .formheader .text2header {
    display: block;
    width: 100%;
  }

  .formheader .text1header {
    display: block;
    width: 100%;
  }

  .formheader {
    display: block;
  }

  .formheader .col-md-6 {
    width: 100% !important;
  }

  .blog-list {
    --count: 2;
  }

  .woocommerce-Tabs-panel .parameter-list {
    --count: 2;
  }

  .woocommerce-billing-fields__list {
    --count: 1;
  }

  .checkout-review__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .checkout-review__item--name {
    width: 100%;
    text-align: center;
  }

  .checkout-review__item--price {
    width: auto;
  }

  .checkout-review__item--total {
    width: auto;
    text-align: center;
  }

  .wc_payment_method__text {
    width: 100%;
  }

  .wc-order__details-wrapper {
    --gap: 1rem;
  }

  .wc-order__details {
    width: 100%;
  }

  .site-main .my-account__item {
    width: 100%;
  }

  .site-main .wc-account-list {
    --count: 3;
  }

  .wc-account-list__item--greetings {
    --count: 1;
    text-align: center;
  }

  .site-main .wc-account-list__item {
    padding: 0;
    border: none;
  }

  .site-main .wc-account-list__link {
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
    text-align: center;
    background-color: var(--bg-color);
  }

  .site-main .wc-account-list__icon {
    width: 2rem;
  }

  .site-main .woocommerce-MyAccount-content .welcome-message {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .site-main .woocommerce-MyAccount-content .wc-customer-details__info {
    align-items: center;
    text-align: left;
  }

  .woocommerce-orders-table__row {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .woocommerce-orders-table__cell {
    width: calc(50% - 1rem);
  }

  .edit-account .edit-account__title {
    text-align: left;
  }

  .service-card__info {
    right: 1rem;
    left: 1rem;
    padding-bottom: 1rem;
  }
}

@media(max-width: 600px) {
  .top-level-category .catalog__pic {
    width: 60px;
  }

  .header-contacts .modal-btn {
    display: none;
  }

  .menu-btn {
    width: 2.3rem;
    height: 2.3rem;
  }

  .menu-btn--open {
    margin-left: auto;
  }

  .menu-btn--close {
    right: -2.3rem;
  }

  .main-slider__item {
    padding: 0;
  }

  .main-slider__content {
    padding: 100px 0;
  }

  .main-slider__info {
    align-items: center;
    text-align: center;
  }

  .main-slider__title {
    font-size: 2rem;
  }

  .main-slider__title::before {
    display: none;
  }

  .main-slider__content::after {
    display: none;
  }

  .main-slider__subtitle {
    margin: 0;
    font-size: 1.1rem;
  }

  .main-slider__text {
    margin-bottom: 0;
  }

  .main-slider__controls {
    right: 0;
    bottom: 20px;
    left: 0;
    display: none;
  }

  .slider-nav__container {
    justify-content: center;
  }

  .counter {
    flex-wrap: wrap;
  }

  .counter__item {
    width: calc(50% - 0.5rem);
  }

  .promo-form {
    flex-direction: column;
  }

  .appointment-form__item {
    --count: 1;
  }

  .footer-contacts__item::before {
    width: 30px;
    height: 30px;
  }

  .regions-list {
    --count: 2;
  }

  .wc-mini-catalog .subcategory-list {
    --count: 2;
  }

  .cart-form__item {
    justify-content: center;
    width: 100%;
    margin-bottom: -1px;
  }

  .cart-form__actions {
    align-items: center;
    flex-direction: column;
  }

  .wc-message__content {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width: 500px) {
  .catalog {
    --count: 1;
  }

  form.xoo-el-action-form {
    padding: 1rem;
  }

  .site-main .wc-account-list {
    --count: 1;
  }

  .edit-account-list__form-row,
  .change-password-list__item .woocommerce-form-row {
    flex-direction: column;
    gap: 5px;
  }

  .edit-account-list__form-row label,
  .change-password-list__item label {
    width: 100%;
  }

  .edit-account-list__form-row input,
  .change-password-list__item .password-input {
    width: 100%;
  }
}

@media(max-width: 480px) {
  .header-contacts .contacts-item {
    grid-template-columns: 1fr;
  }

  .header-contacts .contacts-item .icon {
    display: none;
  }

  .flex-control-thumbs > li {
    width: 31%;
  }

  .experience {
    right: 0;
  }

  .about__pic {
    height: 225px;
  }

  .about__text {
    padding: 20px;
  }

  .experience {
    padding: 15px;
  }

  .experience__number {
    padding: 0 5px;
    font-size: 1.5rem;
  }

  .gallery {
    --count: 1;
  }

  .regions-list {
    --count: 1;
  }

  .regions-list__link br {
    display: none;
  }

  .footer-contacts__list {
    --count: 1;
  }

  .table-content td,
  .table-content th {
    padding: 5px;
  }

  .blog-list {
    --count: 1;
  }

  .modal-form .modal-header {
    padding: 1rem;
  }

  .modal-form .modal-body {
    padding: 1rem;
  }

  .wc-mini-catalog .subcategory-list {
    --count: 1;
  }

  .woocommerce-Tabs-panel .parameter-list {
    --count: 1;
  }

  .woocommerce-tabs {
    gap: 1rem;
  }

  .cart-form__title {
    width: 100%;
    text-align: center;
  }

  .woocommerce-shipping-methods {
    --count: 1;
  }

  .checkout-review__list {
    text-align: center;
  }

  .checkout-review__item--thumbnail {
    width: 100%;
  }

  .checkout-review__pic {
    margin: 0 auto;
  }

  .woocommerce-input-wrapper:has(input[type="radio"]) {
    flex-direction: column;
  }

  .form-row input[type="radio"] + label.radio {
    width: 100%;
  }

  .woocommerce-orders-table__cell {
    width: 100%;
  }

  .service-list {
    --count: 1;
  }
}

@media(max-width: 375px) {

  h1,
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .promo input[type="file"] {
    max-width: 275px;
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.2);
  }
}