@charset "UTF-8";

/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 1920px !important;
    margin-left: -375px !important;
    margin-right: -375px !important;
  }
}

:root{
  --primary: #382600;
    --hover: #704900;
    --btn: #4b1f00;
    --secondary: #FFF0CA;
    --hovertwo: 3 / 2;
    
}

/* =========== BASE CONFIG =========== */
html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background-color: #fff;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  -webkit-box-shadow: 0 0 20px 5px #747474;
  box-shadow: 0 0 20px 5px #747474;
}

a {
  text-decoration: none;
  color: #121212;
  transition: all 0.3s ease-in;
}

a:hover {
  color: var(--btn);
}

ul li {
  list-style-position: inside;
  color: #1C1C1C;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #1C1C1C;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: #1C1C1C;
  font-size: 18px;
  line-height: 24px;
}

h1.page-title {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 40px;
  font-family: "Vollkorn", sans-serif;
}

h2 {
  margin-top: 40px;
  margin-bottom: 35px;
  font-weight: 700;
  color: #1C1C1C;
  font-size: 36px;
  line-height: 36px;
  font-family: "Vollkorn", sans-serif;
}

h3 {
  margin-top: 35px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #1C1C1C;
  font-size: 30px;
  line-height: 40px;
  font-family: "Vollkorn", sans-serif;
}

h4 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #1C1C1C;
  font-size: 24px;
  line-height: 34px;
  font-family: "Vollkorn", sans-serif;
}

h5 {
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1C1C1C;
  font-size: 20px;
  line-height: 30px;
  font-family: "Vollkorn", sans-serif;
}

h6 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1C1C1C;
  font-size: 16px;
  line-height: 24px;
  font-family: "Vollkorn", sans-serif;
}

.breadcrumbs {
  padding: 40px 0 20px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1C1C1C;
}

.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.breadcrumbs span.current-item {
  color: var(--btn);
}

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  height: 55px;
  background: var(--btn);
  border-radius: 30px;
  border: 1px solid var(--btn);
  outline: none;
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding: 17px 40px;
}



.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

.btn:hover {
  color: var(--btn);
  background-color: #fff;
}

.btn:hover svg path {
  fill: var(--btn);
}
.phone__item svg {
  fill: var(--btn);
}
.btn.invert {
  background-color: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn.invert:hover {
  color: #fff;
  background-color: var(--btn);
}

#main,
#primary {
  min-height: 83vh;
}

.wp-block-column figure.wp-block-image {
  position: sticky;
  top: 150px;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  margin: 0 10px;
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers.current {
  color: var(--btn);
}

.navigation.pagination a.prev,
.navigation.pagination a.next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

.navigation.pagination a.prev svg path,
.navigation.pagination a.next svg path {
  transition: fill 0.3s ease-in;
}

.navigation.pagination a.prev:hover,
.navigation.pagination a.next:hover {
  background-color: var(--btn);
  border-color: var(--btn);
}

.navigation.pagination a.prev:hover svg path,
.navigation.pagination a.next:hover svg path {
  fill: #fff;
}

.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}

.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

/*========= 404 ==========*/
main.error-page .error__holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
}

main.error-page .error__image {
  max-width: 600px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 20px;
}

main.error-page h2 {
  margin-top: 0;
  margin-bottom: 10px;
}

main.error-page .btn {
  margin: 0 auto;
}

/*============ HEADER =================*/
#header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

#header.front {
  background-color: transparent;
  position: fixed;
}

#header.front .bot__line,
#header.front .top__line {
  background-color: transparent;
  border-bottom: 1px solid #3C3B3B;
}

#header.front .top__line .menu__holder li a,
#header.front .top__line .phone__item,
#header.front .top__line .soc__block .block__title {
  color: #fff;
  transition: color 0.3s ease-in;
}

.phone__item svg path{
  fill: var(--btn);
}
#header .favorite__btn svg path,
#header .cart__btn svg path{
  fill: var(--btn);
}

#header.front .top__line .soc__block .block__title svg path {
  fill: #fff;
  transition: fill 0.3s ease-in;
}

#header.painted .top__line {
  background-color: #fff;
  border: none;
  padding: 5px 0;
}

.related-button-next svg path,
.related-button-prev svg path,
.pseudo__btn svg path{
  fill: var(--btn);
}

#header.painted .top__line .menu__holder li a,
#header.painted .top__line .phone__item,
#header.painted .top__line .soc__block .block__title {
  color: #5B5E61;
  transition: color 0.3s ease-in;
}

#header.painted .top__line .soc__block .block__title svg path {
  fill: #5B5E61;
  transition: fill 0.3s ease-in;
}

#header.painted .bot__line {
  padding: 5px 0;
  background-color: #2a1616;
  border: none;
}

#header .top__line {
  padding: 15px 0;
  background-color: #fff;
  transition: background-color 0.3s ease-in, padding 0.3s ease-in;
}

#header .top__line .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#header .top__line .menu__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 500px;
  width: 100%;
}

#header .top__line .menu__holder li {
  margin-bottom: 0;
  list-style-type: none;
}

#header .top__line .menu__holder li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5E61;
}

/* #header .top__line .menu__holder li a:hover {
  color: var(--primary);
} */

/* #header .top__line .menu__holder li.active a {
  color: var(--primary);
} */

#header .top__line .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #5B5E61;
  flex-shrink: 0;
}

#header .top__line .phone__item svg {
  margin: 10px;
}

#header .top__line .phone__item:hover {
  color: var(--btn);
}

#header .top__line .soc__block {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

#header .top__line .soc__block .block__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5E61;
  margin-right: 30px;
}

#header .top__line .soc__block .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  column-gap: 25px;
}

#header .top__line .soc__block .soc__holder .soc__item {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .bot__line {
  padding: 15px 0;
  background-color: #2a1616;
  transition: background-color 0.3s ease-in, padding 0.3s ease-in;
}

#header .bot__line .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#header .bot__line a.logo__holder img {
  object-fit: contain;
  max-width: 170px;
  width: 100%;
  
}

#header .bot__line .dgwt-wcas-search-wrapp {
  margin: 0;
}

#header .bot__line .dgwt-wcas-search-wrapp.dgwt-wcas-search-filled .dgwt-wcas-ico-magnifier {
  opacity: 0;
}

#header .bot__line .dgwt-wcas-search-wrapp input {
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #E0E0E0;
  height: 55px;
  width: 100%;
  padding-left: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #5B5E61;
}

#header .bot__line .dgwt-wcas-search-wrapp input:focus {
  border-color: var(--btn);
}

#header .bot__line .dgwt-wcas-search-wrapp .dgwt-wcas-ico-magnifier {
  left: unset;
  right: 15px;
}

#header .btns__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 35px;
  margin-left: 10px;
}

#header .btns__holder .head__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 55px;
  height: 55px;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

#header .btns__holder .head__btn svg path {
  transition: fill 0.3s ease-in;
}

#header .btns__holder .head__btn .count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #5B5E61;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header .btns__holder .head__btn:hover {
  background-color: var(--btn);
  border-color: var(--btn);
}

#header .btns__holder .head__btn:hover svg path {
  fill: #fff;
}

#header .btns__holder.fixed {
  position: fixed ;
  grid-template-columns: 1fr;
  bottom: 30px;
  right: -150px;
  transition: all 0.3s ease-in;
  z-index: 999;
  row-gap: 20px;
}

#header .btns__holder.fixed .head__btn {
  height: 60px;
  width: 60px;
}

#header .btns__holder.fixed .phone__link {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--btn);
  transition: background-color 0.3s ease-in;
  border-radius: 50%;
}

#header .btns__holder.fixed .phone__link:hover {
  background-color: #5B5E61;
}

#header .btns__holder.fixed.opened {
  right: 20px;
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}

#header .burger.open_menu span {
  background-color: var(--btn);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: var(--btn);
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}

#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: var(--btn);
}

#header #mobile-mnu a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5E61;
}

#header #mobile-mnu a:hover {
  color: var(--btn);
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}

#header #mobile-mnu .menuTop li a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5E61;
}

#header #mobile-mnu .menuTop li a:hover {
  color: var(--btn);
}

#header #mobile-mnu .menuTop li.active a {
  color: var(--btn);
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #5B5E61;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--btn);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #5B5E61;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--btn);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header #mobile-mnu .btns__holder {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto auto 0;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*========== SHOP BASE CONFIG ===========*/
nav.woocommerce-breadcrumb {
  padding: 40px 0 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--btn);
  font-weight: 400;
}

nav.woocommerce-breadcrumb a {
  color: #1C1C1C;
  font-weight: 400;
}

nav.woocommerce-breadcrumb a:hover {
  color: var(--btn);
}

.woocommerce-products-header {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-products-header h1 {
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.woocommerce-notices-wrapper .woocommerce-message {
  padding: 10px;
  width: 100%;
  border-top: 3px solid var(--btn);
  border-radius: 3px;
  background-color: white;
  color: #1C1C1C;
  margin-bottom: 10px;
  box-shadow: 0 0 20px rgba(64, 34, 24, 0.1);
  margin-top: 10px;
}

.woocommerce-notices-wrapper .woocommerce-message a {
  color: var(--btn);
}

.woocommerce-pagination {
  width: 100%;
  margin-top: 30px;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  column-gap: 20px;
}

.woocommerce-pagination ul.page-numbers li {
  margin-bottom: 0;
}

.woocommerce-pagination ul.page-numbers li .page-numbers {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
  font-weight: 400;
}

.woocommerce-pagination ul.page-numbers li .page-numbers.current {
  color: var(--btn);
}

.woocommerce-pagination ul.page-numbers li .page-numbers:hover {
  color: var(--btn);
}

.woocommerce-pagination ul.page-numbers li .page-numbers.prev,
.woocommerce-pagination ul.page-numbers li .page-numbers.next {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in;
}

.woocommerce-pagination ul.page-numbers li .page-numbers.prev svg path,
.woocommerce-pagination ul.page-numbers li .page-numbers.next svg path {
  transition: fill 0.3s ease-in;
}

.woocommerce-pagination ul.page-numbers li .page-numbers.prev:hover,
.woocommerce-pagination ul.page-numbers li .page-numbers.next:hover {
  background-color: var(--btn);
}

.woocommerce-pagination ul.page-numbers li .page-numbers.prev:hover svg path,
.woocommerce-pagination ul.page-numbers li .page-numbers.next:hover svg path {
  fill: #fff;
}

/*============== ARCHIVE SHOP ==============*/
li.product-category {
  box-sizing: border-box;
  list-style-type: none;
  margin-bottom: 0;
  background: #F7F7F7;
  border-radius: 15px;
  display: flex;
  transition: background-color 0.3s ease-in;
}

li.product-category a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

li.product-category .category__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 0 40px;
  margin-bottom: 60px;
  width: 100%;
}

li.product-category .category__top h2 {
  font-size: 24px;
  line-height: 34px;
  color: #1C1C1C;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
  transition: color 0.3s ease-in;
  margin: 0;
}

li.product-category .category__top h2:before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--btn);
  margin-bottom: 15px;
}

li.product-category .category__top .pseudo__btn {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #E0E0E0;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
  flex-shrink: 0;
}

li.product-category .category__top .pseudo__btn svg path {
  transition: fill 0.3s ease-in;
}

li.product-category img {
  width: 100%;
  object-fit: cover;
  margin-top: auto;
  max-height: 200px;
}

li.product-category:hover {
  background-color: #1C1C1C;
}

li.product-category:hover a h2 {
  color: #fff;
}

li.product-category:hover a .pseudo__btn {
  background-color: var(--btn);
  border-color: var(--btn);
}

li.product-category:hover a .pseudo__btn svg path {
  fill: #fff;
}

li.product {
  box-sizing: border-box;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  background: #F7F7F7;
  border-radius: 15px;
  transition: border-color 0.3s ease-in;
  height: auto;
  overflow: hidden;
}

li.product a.woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

li.product a.woocommerce-loop-product__link .product__info {
  padding: 0 30px;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

li.product a.woocommerce-loop-product__link img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 5/6;
  margin-bottom: 15px;
}

li.product a.woocommerce-loop-product__link h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  transition: color 0.3s ease-in;
  margin-top: 0;
  margin-bottom: 10px;
}

li.product a.woocommerce-loop-product__link .description__block {
  margin-bottom: 20px;
}

li.product a.woocommerce-loop-product__link .description__block .block__title {
  font-size: 14px !important;
  line-height: 18px !important;
  color: #1C1C1C !important;
  font-weight: 700;
}

li.product a.woocommerce-loop-product__link .description__block .block__desc * {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}

li.product .btns__holder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: auto auto 0;
  padding: 0 30px 20px;
  gap: 15px;
}

li.product .btns__holder .pseudo__btn {
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid var(--secondary);
  width: 100%;
  text-align: center;
  transition: color 0.3s ease-in, background-color 0.3s ease-in;
}

li.product .btns__holder .pseudo__btn:hover {
  background-color: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

li.product .price__holder {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  flex-shrink: 0;
}

li.product .price__holder .price {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #1C1C1C;
}

li.product .price__holder .sale__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

li.product .price__holder .sale__price del {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  margin-right: 15px;
}

li.product .price__holder .sale__price span {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  background: var(--secondary);
  border-radius: 5px;
  color: #fff;
}

li.product .actions__holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

li.product .actions__holder .action__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

li.product .actions__holder .favorite__btn {
  background-color: #fff;
  border: 1px solid #E0E0E0;
  transition: border-color 0.3s ease-in;
}

li.product .actions__holder .favorite__btn svg path {
  transition: fill 0.3s ease-in;
}

li.product .actions__holder .favorite__btn.favorite-remove,
li.product .actions__holder .favorite__btn:hover {
  border-color: var(--btn);
}

li.product .actions__holder .favorite__btn.favorite-remove svg path,
li.product .actions__holder .favorite__btn:hover svg path {
  fill: var(--btn);
}

li.product .actions__holder .add_to_cart_button {
  border: 1px solid var(--btn);
  background-color: var(--btn);
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  padding: 5px 15px;
  border-radius: 3px;
  color: #fff;
}

li.product .actions__holder .add_to_cart_button svg path {
  transition: fill 0.3s ease-in;
}

li.product .actions__holder .add_to_cart_button:hover {
  background-color: #fff;
  color: var(--btn);
}

li.product .actions__holder .add_to_cart_button:hover svg path {
  fill: var(--btn);
}

li.product .wc-forward {
  display: none;
}

li.product .quantity__holder {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 3px;
}

li.product .quantity__holder input {
  background-color: transparent;
  outline: none;
  border: none;
  width: 30px;
  font-weight: 700;
  color: #3C3B3B;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

li.product .quantity__holder input::-webkit-outer-spin-button,
li.product .quantity__holder input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

li.product .quantity__holder button {
  outline: none;
  background: #F7F7F7;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: #1C1C1C;
  flex-shrink: 0;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in, color 0.3s ease-in;
  border: none;
  padding: 7px 0;
  width: 25px;
}

li.product .quantity__holder button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

li.product .quantity__holder button:hover {
  background-color: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

li.product:hover {
  border-color: var(--btn);
}

li.product:hover a h2 {
  color: var(--btn);
}

.woocommerce .archive__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 30px;
  margin-bottom: 30px;
}

.woocommerce .archive__container ul.products {
  display: grid;
  width: 100%;
  grid-gap: 30px;
  align-items: stretch;
}

.woocommerce .archive__container ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 50px;
}

.woocommerce .archive__container ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.woocommerce .archive__container .archive__holder {
  width: 65%;
  flex-grow: 1;
}

.woocommerce .archive__container .sidebar {
  width: 30%;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price {
  width: 100%;
  background: #F7F7F7;
  border-radius: 15px;
  padding: 30px 40px;
  margin-bottom: 20px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .filter-block-header {
  padding: 0;
  border: none;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .filter-block-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #07060B;
  margin-bottom: 10px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider {
  height: 1px;
  margin: 10px 8px;
  display: inline-block;
  width: calc(100% - 16px);
  border-radius: 2px;
  background-color: #E9E9EA;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-base,
.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-connect,
.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-connect {
  top: -2px;
  height: 5px;
  border-radius: 2px;
  background-color: var(--btn);
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-origin {
  left: auto;
  right: 0;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .range-slider .noUi-handle {
  position: absolute;
  top: -7px;
  left: auto;
  right: -7px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--btn);
  background-color: #fff;
  outline: none;
  cursor: pointer;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .inputs .group {
  width: 45%;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .inputs .group+.group {
  margin-top: 0;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price .inputs .group input {
  width: 100%;
  outline: none;
  border: 2px solid #E0E0E0;
  border-radius: 5px;
  font-size: 14px;
  line-height: 20px;
  color: #1C1C1C;
  text-align: center;
  height: 40px;
  appearance: auto;
  display: block;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  cursor: pointer;
  padding: 25px 40px;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-header .filter-block-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-header .filter-block-toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content {
  width: 100%;
  padding-bottom: 20px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .local-search {
  padding: 0 25px;
  margin-bottom: 15px;
  position: relative;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .local-search:after {
  content: url("../images/svg/search.svg");
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .local-search input {
  border: none;
  border-bottom: 1px solid #07060B;
  font-size: 14px;
  line-height: 20px;
  color: #5B5E61;
  font-style: italic;
  outline: none;
  padding-bottom: 3px;
  width: 100%;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .group+.group {
  margin-top: 10px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .group input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: contents;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .group input:checked+label span {
  background-color: var(--btn);
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .group label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  cursor: pointer;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-content .group label span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 2px var(--btn);
  border: 3px solid #fff;
  background-color: #fff;
  margin-right: 10px;
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.opened .filter-block-header {
  border-color: var(--btn);
}

.woocommerce .archive__container .sidebar .filters-widget .filter-block.opened .filter-block-header .filter-block-toggler {
  transform: scaleY(-1);
}

.woocommerce .archive__container .sidebar .filters-widget .buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.woocommerce .archive__container .sidebar .filters-widget .buttons button[type=reset] {
  outline: none;
  border: none;
  color: #5B5E61;
  background-color: transparent;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  transition: color 0.3s ease-in;
}

.woocommerce .archive__container .sidebar .filters-widget .buttons button[type=reset]:hover {
  color: var(--btn);
}

.woocommerce .archive__container #openFilter {
  position: fixed;
  background: var(--btn);
  color: #fff;
  padding: 15px 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in;
  writing-mode: vertical-lr;
  left: 0;
  top: 50%;
  display: none;
  transform: translateX(250px);
}

.woocommerce .archive__container #openFilter:hover {
  background-color: #fff;
  color: #07060B;
}

.woocommerce .archive__container #openFilter.active {
  opacity: 0.5;
}

/*======== QUANTITY INPUT =============*/
.woocommerce .quantity {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.woocommerce .quantity button {
  outline: none;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #1C1C1C;
  flex-shrink: 0;
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in, color 0.3s ease-in;
}

.woocommerce .quantity button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.woocommerce .quantity button:hover {
  background-color: var(--btn);
  border-color: var(--btn);
  color: #fff;
}

.woocommerce .quantity input[type=number] {
  background-color: transparent;
  outline: none;
  border: none;
  width: 50px;
  font-weight: 700;
  color: #3C3B3B;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.woocommerce .quantity input[type=number]::-webkit-outer-spin-button,
.woocommerce .quantity input[type=number]::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*============ SINGLE PRODUCT =============*/
#single-product .page__head {
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#single-product .page__head h1.page-title {
  margin-bottom: 0;
}

#single-product .page__head .favorite__btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 22px;
  color: #1C1C1C;
  cursor: pointer;
  transition: color 0.3s ease-in;
  background: transparent;
  outline: none;
  border: none;
  margin-left: auto;
}

#single-product .page__head .favorite__btn svg {
  margin-right: 10px;
}

#single-product .page__head .favorite__btn svg path {
  transition: fill 0.3s ease-in;
}

#single-product .page__head .favorite__btn.favorite-remove,
#single-product .page__head .favorite__btn:hover {
  color: var(--btn);
}

#single-product .page__head .favorite__btn.favorite-remove svg path,
#single-product .page__head .favorite__btn:hover svg path {
  fill: var(--btn);
}

#single-product .product_top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

#single-product .product_top .slider__block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 48%;
}

#single-product .product_top .slider__block .images__holder {
  background: #F7F7F7;
  border-radius: 15px;
  width: 100%;
  display: flex;
  padding: 34px;
  margin-bottom: 10px;
}

#single-product .product_top .slider__block .overflow {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#single-product .product_top .slider__block .product-button-prev,
#single-product .product_top .slider__block .product-button-next {
  position: initial;
  cursor: pointer;
}

#single-product .product_top .slider__block .product-button-prev svg path,
#single-product .product_top .slider__block .product-button-next svg path {
  transition: fill 0.3s ease-in;
}

#single-product .product_top .slider__block .product-button-prev:hover svg path,
#single-product .product_top .slider__block .product-button-next:hover svg path {
  fill: var(--btn);
}

#single-product .product_top .main__images {
  overflow: hidden;
  width: 100%;
}

#single-product .product_top .main__images .item__image {
  display: flex;
  box-sizing: border-box;
  border-radius: 15px;
  overflow: hidden;
}

#single-product .product_top .main__images .item__image img {
  object-fit: cover;
  aspect-ratio: 1/1;
  width: 100%;
}

#single-product .product_top .main__thumbs {
  overflow: hidden;
  width: 100%;
}

#single-product .product_top .main__thumbs .item__thumb {
  box-sizing: border-box;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  border-radius: 15px;
}

#single-product .product_top .summary.entry-summary {
  width: 48%;
}

#single-product .product_top .block__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
  color: #1C1C1C;
  margin-bottom: 10px;
}

#single-product .product_top .description__block {
  margin-bottom: 30px;
}

#single-product .product_top .description__block .block__desc p,
#single-product .product_top .description__block .block__desc li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
}

#single-product .product_top .attributes__block table {
  width: 100%;
}

#single-product .product_top .attributes__block table p {
  margin-bottom: 0;
}

#single-product .product_top .attributes__block table tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--btn);
  padding: 10px 0 3px;
}

#single-product .product_top .attributes__block table th {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
}

#single-product .product_top .attributes__block table td p,
#single-product .product_top .attributes__block table td a {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
}

#single-product .product_top .attributes__block table td a:hover {
  color: var(--btn);
}

#single-product .product_top .price__holder {
  flex-shrink: 0;
}

#single-product .product_top .price__holder .price {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #1C1C1C;
}

#single-product .product_top .price__holder .sale__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#single-product .product_top .price__holder .sale__price del {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  margin-right: 15px;
}

#single-product .product_top .price__holder .sale__price span {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  background: var(--secondary);
  border-radius: 5px;
  color: #fff;
}

#single-product .product_top form.cart {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}

#single-product .product_bottom {
  margin-bottom: 60px;
}

#single-product .product_bottom .products {
  overflow: hidden;
}

#single-product .product_bottom .products h2 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  margin-bottom: 40px;
}

#single-product .product_bottom .nav__holder {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#single-product .product_bottom .nav__holder .products-pagination {
  position: initial;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  width: fit-content;
}

#single-product .product_bottom .nav__holder .products-pagination .swiper-pagination-bullet {
  background-color: #fff;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid var(--btn);
  box-sizing: border-box;
  width: 10px;
  height: 10px;
}

#single-product .product_bottom .nav__holder .products-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--btn);
}

#single-product .product_bottom .nav__holder .btns__holder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  width: fit-content;
}

#single-product .product_bottom .nav__holder .products-slide-button,
#single-product .product_bottom .nav__holder .products-slide-button {
  position: initial;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #E0E0E0;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 0.3s ease-in;
}

#single-product .product_bottom .nav__holder .products-slide-button svg path,
#single-product .product_bottom .nav__holder .products-slide-button svg path {
  transition: fill 0.3s ease-in;
}

#single-product .product_bottom .nav__holder .products-slide-button:hover,
#single-product .product_bottom .nav__holder .products-slide-button:hover {
  background-color: var(--btn);
  border-color: var(--btn);
}

#single-product .product_bottom .nav__holder .products-slide-button:hover svg path,
#single-product .product_bottom .nav__holder .products-slide-button:hover svg path {
  fill: #fff;
}

#single-product .product_bottom .nav__holder .products-slide-button.swiper-button-disabled,
#single-product .product_bottom .nav__holder .products-slide-button.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-disabled{
  pointer-events: none;
}

/*============= CART ==============*/
.woocommerce .product-cart__holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 30px;
}

.woocommerce .woocommerce-cart-form {
  width: 100%;
}

.woocommerce .woocommerce-cart-form table {
  display: flex;
  width: 100%;
}

.woocommerce .woocommerce-cart-form table tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 20px;
}

.woocommerce .woocommerce-cart-form table .cart_item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  gap: 15px;
  background: transparent;
  position: relative;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-thumbnail {
  display: flex;
  flex-shrink: 0;
  border-radius: 5px;
  background-color: #fff;
  overflow: hidden;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-thumbnail a {
  display: inherit;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-thumbnail img {
  object-fit: scale-down;
  width: 60px;
  height: 60px;
  aspect-ratio: 1/1;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 300px;
  width: 100%;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-name a {
  font-size: 16px;
  line-height: 20px;
  color: #3C3B3B;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-name span {
  font-size: 16px;
  line-height: 1;
  color: rgba(55, 73, 87, 0.5);
  margin-top: 10px;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-quantity {
  margin-left: auto;
  flex-shrink: 0;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-price {
  width: 100px;
  text-align: right;
  flex-shrink: 0;
  margin: 0 20px;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-price .price__holder .price {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #1C1C1C;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-price .price__holder .sale__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-price .price__holder .sale__price del {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #1C1C1C;
  margin-right: 15px;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-price .price__holder .sale__price span {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  background: #F4A850;
  border-radius: 5px;
  color: #fff;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-remove {
  right: 15px;
  top: 15px;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-remove a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 0.3s ease-in;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-remove a svg path {
  transition: fill 0.3s ease-in;
}

.woocommerce .woocommerce-cart-form table .cart_item .product-remove a:hover svg path {
  fill: var(--btn);
}

.woocommerce .woocommerce-cart-form table tr.actions__holder {
  display: none;
}

.woocommerce .cart-collaterals {
  width: 100%;
  margin-top: 20px;
}

.woocommerce .cart-collaterals #order_review {
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals {
  box-sizing: border-box;
  padding: 30px 35px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
}

.woocommerce .cart-collaterals table {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  justify-content: flex-end;
}

.woocommerce .cart-collaterals table tbody {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.woocommerce .cart-collaterals table tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
  font-weight: 400;
  gap: 15px;
}

.woocommerce .cart-collaterals table tr th {
  text-align: left;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.woocommerce .cart-collaterals table tr td {
  line-height: inherit;
  color: inherit;
  font-size: inherit;
  text-align: right;
  font-weight: inherit;
}

.woocommerce .cart-collaterals table tr.count_products {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #1C1C1C;
}

.woocommerce .cart-collaterals table tr.count_products td {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1C1C1C;
}

.woocommerce .cart-collaterals table tr.order-total th {
  font-weight: 700;
}

.woocommerce .cart-collaterals table tr.order-total td {
  font-weight: 700;
}

.woocommerce .cart-collaterals table tr.order-total td span,
.woocommerce .cart-collaterals table tr.order-total td bdi {
  font-weight: 700;
}

.woocommerce .cart-collaterals form.clear-cart {
  margin-bottom: 20px;
}

.woocommerce .cart-collaterals button.clear-cart {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  color: #5B5E61;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease-in;
}

.woocommerce .cart-collaterals button.clear-cart svg path {
  transition: fill 0.3s ease-in;
}

.woocommerce .cart-collaterals button.clear-cart:hover {
  color: var(--btn);
}

.woocommerce .cart-collaterals button.clear-cart:hover svg path {
  fill: var(--btn);
}

.woocommerce .cart-collaterals a.checkout-button {
  width: 100%;
}

/*========== CHECKOUT ==========*/
.woocommerce form[name=checkout] {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 60px;
  flex-wrap: wrap;
}

.woocommerce form[name=checkout] #customer_details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.woocommerce form[name=checkout] #customer_details.no-pickup #shipping_method_0_local_pickup1+label {
  display: none !important;
}

.woocommerce form[name=checkout] #customer_details .col-1,
.woocommerce form[name=checkout] #customer_details .col-2 {
  width: 100%;
}

.woocommerce form[name=checkout] #customer_details .need__shipping .block__title,
.woocommerce form[name=checkout] #customer_details .block__title {
  font-size: 36px;
  line-height: 46px;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
}

.woocommerce form[name=checkout] #customer_details .need__shipping .block__title {
  margin: 30px 0 50px;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-shipping-fields__field-wrapper,
.woocommerce form[name=checkout] #customer_details .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px 30px;
  margin-bottom: 30px;
}

.woocommerce form[name=checkout] #customer_details p.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 0;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field {
  margin: 30px 0;
  display: none;
}

.woocommerce form[name=checkout] #customer_details p.form-row#shipping_country_field {
  display: none !important;
}

.woocommerce form[name=checkout] #customer_details p.form-row label {
  display: none;
}

.woocommerce form[name=checkout] #customer_details p.form-row label abbr {
  display: inherit;
}

.woocommerce form[name=checkout] #customer_details p.form-row select {
  width: 100%;
}

.woocommerce form[name=checkout] #customer_details p.form-row textarea,
.woocommerce form[name=checkout] #customer_details p.form-row input {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  border: 1px solid #5B5E61;
  border-radius: 30px;
  padding: 15px 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #5B5E61;
  outline: none;
}

.woocommerce form[name=checkout] #customer_details p.form-row textarea:focus,
.woocommerce form[name=checkout] #customer_details p.form-row input:focus {
  border-color: var(--btn);
}

.woocommerce form[name=checkout] #customer_details p.form-row textarea::placeholder,
.woocommerce form[name=checkout] #customer_details p.form-row input::placeholder {
  color: #5B5E61;
  font-weight: 700;
}

.woocommerce form[name=checkout] #customer_details p.form-row textarea {
  resize: none;
  height: 100px;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field label {
  display: flex;
  margin-bottom: 10px;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field label[for=Посуше] {
  font-weight: 700;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field label span {
  display: none;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field .woocommerce-input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
  padding-left: 2px;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field .woocommerce-input-wrapper input {
  display: contents;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field .woocommerce-input-wrapper input:checked+label:before {
  background-color: var(--btn);
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field .woocommerce-input-wrapper label {
  cursor: pointer;
}

.woocommerce form[name=checkout] #customer_details p.form-row#fish_type_field .woocommerce-input-wrapper label:before {
  content: "";
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #5B5E61;
  flex-shrink: 0;
  margin-right: 10px;
}

.woocommerce form[name=checkout] #customer_details #ship-to-different-address {
  display: none;
}

.woocommerce form[name=checkout] #customer_details .need__shipping {
  margin-bottom: 30px;
  width: 100%;
  display: none;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li {
  width: 100%;
  margin-right: 30px;
  margin-bottom: 10px;
  list-style-type: none;
  height: auto;
  display: flex;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: contents;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li input:checked+label {
  background-color: var(--btn);
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li input:checked+label:before {
  background-color: #fff;
  border-color: var(--btn);
  box-shadow: 0 0 0 3px #fff;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li input:checked+label span {
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li label {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 15px 15px 15px 50px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  transition: background-color 0.3s ease-in;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #1C1C1C;
  cursor: pointer;
  height: auto;
  flex-wrap: wrap;
  position: relative;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li label:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 3px #5B5E61;
  background-color: transparent;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li label span {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #5B5E61;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li label:hover {
  background-color: var(--btn);
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li label:hover span {
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details #payment .place-order {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.woocommerce form[name=checkout] #customer_details #payment .place-order .woocommerce-terms-and-conditions-wrapper {
  order: 2;
  margin-top: 30px;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li {
  width: 100%;
  margin-right: 30px;
  margin-bottom: 10px;
  list-style-type: none;
  height: auto;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  display: contents;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li input:checked+label {
  background-color: var(--btn);
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li input:checked+label:before {
  background-color: #fff;
  border-color: var(--btn);
  box-shadow: 0 0 0 3px #fff;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li input:checked+label span {
  color: #fff;
}


.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li label {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 15px 15px 15px 50px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  transition: background-color 0.3s ease-in;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #1C1C1C;
  cursor: pointer;
  height: 100%;
  flex-wrap: wrap;
  position: relative;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li label:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow: 0 0 0 3px #5B5E61;
  background-color: transparent;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li label span {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #5B5E61;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li label:hover {
  background-color: var(--btn);
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li label:hover span {
  color: #fff;
}

.woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li .payment_box {
  display: none !important;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-additional-fields p.form-row {
  width: 100%;
}

.woocommerce form[name=checkout] #customer_details #order_comments {
  width: 100%;
  height: 150px;
  resize: none;
  padding: 20px 30px;
  color: #5B5E61;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
}

.woocommerce form[name=checkout] #customer_details #order_comments:focus {
  border-color: var(--btn);
}

.woocommerce form[name=checkout] #customer_details #order_comments::placeholder {
  color: #5B5E61;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-privacy-policy-text {
  border: 1px solid var(--btn);
  border-radius: 15px;
  padding: 10px;
  position: relative;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-privacy-policy-text p {
  margin-bottom: 0;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-privacy-policy-text p a {
  color: var(--btn);
  font-weight: inherit;
  font-size: inherit;
}

.woocommerce form[name=checkout] #customer_details .woocommerce-privacy-policy-text p a:hover {
  opacity: 0.5;
}

.woocommerce form[name=checkout] #customer_details a.cart__btn {
  font-weight: 500;
  color: #1C1C1C;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 15px;
  display: block;
}

.woocommerce form[name=checkout] #customer_details a.cart__btn:hover {
  color: #D4742E;
}

.woocommerce form[name=checkout] #customer_details button[type=submit] {
  margin-top: 20px;
}

.woocommerce form[name=checkout] #order_review {
  width: 23%;
  box-sizing: border-box;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  padding: 30px 35px;
}

.woocommerce form[name=checkout] #order_review table {
  display: flex;
  width: 100%;
}

.woocommerce form[name=checkout] #order_review table tfoot {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.woocommerce form[name=checkout] #order_review table tfoot tr {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
  font-weight: 400;
}

.woocommerce form[name=checkout] #order_review table tfoot tr th {
  text-align: left;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.woocommerce form[name=checkout] #order_review table tfoot tr td {
  text-align: right;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.woocommerce form[name=checkout] #order_review table tfoot tr.count_products {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #1C1C1C;
}

.woocommerce form[name=checkout] #order_review table tfoot tr.count_products td {
  font-weight: 400;
}

.woocommerce form[name=checkout] #order_review table tfoot tr.order-total th {
  font-weight: 700;
}

.woocommerce form[name=checkout] #order_review table tfoot tr.order-total td span,
.woocommerce form[name=checkout] #order_review table tfoot tr.order-total td bdi {
  font-weight: 700;
}

.woocommerce h2.woocommerce-order-details__title {
  color: #492F17;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details thead {
  background: var(--btn);
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details thead th {
  font-weight: 700;
  padding: 5px;
  color: #fff;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details td,
.woocommerce table.woocommerce-table.woocommerce-table--order-details th {
  border: 1px solid var(--btn);
  text-align: left;
  padding: 5px;
  color: #1C1C1C;
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details td a,
.woocommerce table.woocommerce-table.woocommerce-table--order-details th a {
  color: var(--btn);
}

.woocommerce table.woocommerce-table.woocommerce-table--order-details tfoot td,
.woocommerce table.woocommerce-table.woocommerce-table--order-details tfoot th {
  font-weight: 700;
}

.woocommerce table.woocommerce-table--custom-fields td,
.woocommerce table.woocommerce-table--custom-fields th {
  border: 1px solid var(--btn);
  text-align: left;
  padding: 5px;
  color: #1C1C1C;
}

.woocommerce table.woocommerce-table--custom-fields td a,
.woocommerce table.woocommerce-table--custom-fields th a {
  color: var(--btn);
}

.woocommerce .woocommerce-customer-details {
  color: #492F17;
}

/*========== CUSTOM CHECKOUT/CART ===========*/
main#primary .checkout-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  padding-bottom: 60px;
}

main#primary .checkout-page>.woocommerce {
  width: 100%;
}

main#primary .checkout-page>.woocommerce:nth-of-type(2) {
  position: sticky;
  top: 150px;
  height: fit-content;
}

main#primary .checkout-page a.showcoupon {
  font-weight: 700;
  color: var(--btn);
}

main#primary .checkout-page .woocommerce-form-coupon input {
  width: 100%;
  background: transparent;
  box-sizing: border-box;
  border: 1px solid #5B5E61;
  border-radius: 30px;
  padding: 15px 40px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #5B5E61;
  outline: none;
}

main#primary .checkout-page .woocommerce-form-coupon input:focus {
  border-color: var(--btn);
}

main#primary .checkout-page .woocommerce-form-coupon button[type=submit] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
  height: 55px;
  background: var(--btn);
  border-radius: 30px;
  border: 1px solid var(--btn);
  outline: none;
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  padding: 17px 40px;
}

/*============= ARCHIVE QUESTION ===========*/
#main.archive-question {
  margin-bottom: 50px;
}

#main.archive-question .question__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 42px;
  padding: 30px 35px 30px 90px;
  transition: border-color 0.3s ease-in;
  margin-bottom: 10px;
}

#main.archive-question .question__item .item__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  position: relative;
  cursor: pointer;
}

#main.archive-question .question__item .item__title:before {
  content: url("../images/svg/chat.svg");
  position: absolute;
  left: -40px;
}

#main.archive-question .question__item .item__title .flag {
  transition: transform 0.3s ease-in;
}

#main.archive-question .question__item .item__title .flag svg path {
  transition: fill 0.3s ease-in;
}

#main.archive-question .question__item .item__desc {
  padding-top: 30px;
}

#main.archive-question .question__item .item__desc p,
#main.archive-question .question__item .item__desc li {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
}

#main.archive-question .question__item.active {
  border-color: var(--btn);
}

#main.archive-question .question__item.active .item__title .flag {
  transform: rotate(45deg);
}

#main.archive-question .question__item.active .item__title .flag svg path {
  fill: #5B5E61;
}

/*========= ARCHIVE REVIEWS ==========*/
#main.archive-reviews {
  padding-bottom: 60px;
}

#main.archive-reviews .archive__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

#main.archive-reviews .reviews__holder {
  width: 75%;
}

#main.archive-reviews .banner__holder {
  width: 23%;
  border-radius: 20px;
  padding: 35px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: contain;
  background-color: var(--btn);
}

#main.archive-reviews .banner__holder .banner__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Vollkorn", sans-serif;
  margin-bottom: 10px;
}

#main.archive-reviews .banner__holder .banner__subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 30px;
}

#main.archive-reviews .banner__holder .btn {
  background-color: #fff;
  width: 100%;
  color: var(--btn);
}

#main.archive-reviews .banner__holder .btn:hover {
  background-color: var(--btn);
  border-color: #fff;
  color: #fff;
}

#main.archive-reviews .review__item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
  width: 100%;
}

#main.archive-reviews .review__item .item__top {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

#main.archive-reviews .review__item .item__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
}

#main.archive-reviews .review__item .item__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
}

#main.archive-reviews .review__item .item__date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #5B5E61;
}

#main.archive-reviews .review__item .item__bot {
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  padding: 30px 35px;
  border-radius: 15px;
  position: relative;
  width: 100%;
}

#main.archive-reviews .review__item .item__bot:before {
  content: "";
  width: 30px;
  height: 30px;
  background: #F7F7F7;
  border-left: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
  position: absolute;
  left: 40px;
  top: -15px;
  transform: rotate(45deg);
}

#main.archive-reviews .review__item .item__desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  margin-bottom: 20px;
}

#main.archive-reviews .review__item .read__more {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--btn);
  text-decoration: underline;
  cursor: pointer;
}

#main.archive-reviews .review__item .gallery__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

#main.archive-reviews .review__item .gallery__holder .image__holder {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-right: 10px;
}

#main.archive-reviews .review__item .gallery__holder .image__holder:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(243, 78, 30, 0.8);
  background-image: url("../images/svg/loop.svg");
  background-repeat: no-repeat;
  background-position: center center;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
  opacity: 0;
}

#main.archive-reviews .review__item .gallery__holder .image__holder img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

#main.archive-reviews .review__item .gallery__holder .image__holder:hover:before {
  opacity: 1;
}

/*============= FAVORITE PAGE ============*/
#main.favorite-page .favorites__holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  column-gap: 30px;
}

#main.favorite-page .favorites__holder .products__holder {
  width: 75%;
}

#main.favorite-page .favorites__holder .products__holder .product__item {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  column-gap: 25px;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

#main.favorite-page .favorites__holder .products__holder .product__item .item__image {
  object-fit: scale-down;
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  border-radius: 15px;
}

#main.favorite-page .favorites__holder .products__holder .product__item .item__title {
  font-size: 24px;
  line-height: 34px;
  color: #3C3B3B;
  font-weight: 700;
  font-family: "Vollkorn", sans-serif;
}

#main.favorite-page .favorites__holder .products__holder .product__item .price__holder {
  margin-left: auto;
  flex-shrink: 0;
}

#main.favorite-page .favorites__holder .products__holder .product__item .price__holder .price {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #1C1C1C;
}

#main.favorite-page .favorites__holder .products__holder .product__item .price__holder .sale__price {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}

#main.favorite-page .favorites__holder .products__holder .product__item .price__holder .sale__price del {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #1C1C1C;
  margin-right: 15px;
}

#main.favorite-page .favorites__holder .products__holder .product__item .price__holder .sale__price span {
  padding: 2px 5px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-align: center;
  background: #F4A850;
  border-radius: 5px;
  color: #fff;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 15px;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .action__btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn {
  background-color: #fff;
  border: 1px solid #E0E0E0;
  transition: border-color 0.3s ease-in;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn svg path {
  transition: fill 0.3s ease-in;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn.favorite-remove,
#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn:hover {
  border-color: var(--btn);
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn.favorite-remove svg path,
#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .favorite__btn:hover svg path {
  fill: var(--btn);
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .add_to_cart_button {
  border: 1px solid var(--btn);
  background-color: var(--btn);
  transition: background-color 0.3s ease-in;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .add_to_cart_button svg path {
  transition: fill 0.3s ease-in;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .add_to_cart_button:hover {
  background-color: #fff;
}

#main.favorite-page .favorites__holder .products__holder .product__item .actions__holder .add_to_cart_button:hover svg path {
  fill: var(--btn);
}

#main.favorite-page .favorites__holder .review__order {
  width: 25%;
  box-sizing: border-box;
  padding: 30px 35px;
  background: #F7F7F7;
  border: 1px solid #E0E0E0;
  border-radius: 15px;
  height: fit-content;
}

#main.favorite-page .favorites__holder .review__order .total__items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #1C1C1C;
}

#main.favorite-page .favorites__holder .review__order .total__items .title {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
  font-weight: 400;
}

#main.favorite-page .favorites__holder .review__order .total__items .value {
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
  font-weight: 400;
}

#main.favorite-page .favorites__holder .review__order button.clear-favorite {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 16px;
  line-height: 22px;
  color: #5B5E61;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.3s ease-in;
}

#main.favorite-page .favorites__holder .review__order button.clear-favorite svg path {
  transition: fill 0.3s ease-in;
}

#main.favorite-page .favorites__holder .review__order button.clear-favorite:hover {
  color: var(--btn);
}

#main.favorite-page .favorites__holder .review__order button.clear-favorite:hover svg path {
  fill: var(--btn);
}

/*============ FOOTER ===============*/
#footer {
  background-color: var(--secondary);
}

#footer .top__line {
  padding: 50px 0;
}

#footer .top__line .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

#footer .top__line a.logo__holder img {
  object-fit: contain;
  max-width: 170px;
  width: 100%;
}

#footer .top__line .block__title {
  font-family: "Vollkorn", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--btn);
  font-weight: 700;
  margin-bottom: 20px;
}

#footer .top__line .menu__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

#footer .top__line .menu__holder li {
  list-style-type: none;
}

#footer .top__line .menu__holder li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--btn);
}

#footer .top__line .menu__holder li a:hover {
  color: var(--btn);
}

#footer .top__line .menu__holder li.active a {
  color: var(--btn);
}

#footer .top__line .phone__item,
#footer .top__line .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--btn);
}

#footer .top__line .phone__item svg,
#footer .top__line .email__item svg {
  margin-right: 10px;
}

.email__item svg path{
  fill: var(--btn);
}

#footer .top__line .phone__item:hover,
#footer .top__line .email__item:hover {
  color: var(--btn);
}

#footer .top__line .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#footer .top__line .soc__holder .soc__item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  margin-bottom: 10px;
}

#footer .bot__line {
  border-top: 1px solid var(--btn);
  padding: 25px 0;
}

#footer .bot__line .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#footer .bot__line .container .copyright,
#footer .bot__line .container a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: var(--btn);
}

#footer .bot__line .container a.privacy {
  text-decoration: underline;
}

#footer .bot__line .container a.dev span {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: inherit;
}

#footer .bot__line .container a:hover {
  color: var(--btn);
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

#footer .theme-modal {
  height: fit-content;
  width: 660px;
  max-height: 90vh;
  max-width: 90vw;
  background-color: #FFFFFF;
  border-radius: 15px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 9999;
  padding: 60px 80px;
}

#footer .theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#footer .theme-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 40px;
  font-weight: 700;
  color: #5B5E61;
  transform: rotate(45deg);
  cursor: pointer;
}

#footer .theme-modal .title {
  font-size: 36px;
  line-height: 46px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  margin-bottom: 40px;
}

#footer .theme-modal .subtitle {
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  color: #1C1C1C;
}

#footer .theme-modal .contact_form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#footer .theme-modal .contact_form .form_input {
  width: 48%;
  margin-bottom: 20px;
}

#footer .theme-modal .contact_form .form_input input {
  border: 1px solid #1C1C1C;
  border-radius: 30px;
  height: 55px;
  padding: 0 40px;
  color: #1C1C1C;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  outline: none;
  width: 100%;
}

#footer .theme-modal .contact_form .form_input input:focus {
  border-color: var(--btn);
}

#footer .theme-modal .contact_form .form_input input.wpcf7-not-valid {
  border-color: red;
}

#footer .theme-modal .contact_form .form_input.textarea {
  width: 100%;
}

#footer .theme-modal .contact_form .form_input.textarea textarea {
  border: 1px solid #1C1C1C;
  border-radius: 30px;
  height: 130px;
  padding: 20px 40px;
  color: #1C1C1C;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  outline: none;
  width: 100%;
  resize: none;
}

#footer .theme-modal .contact_form .form_input.textarea textarea:focus {
  border-color: var(--btn);
}

#footer .theme-modal .contact_form .form_input.file {
  width: 100%;
}

#footer .theme-modal .contact_form .form_input.file input[type=file] {
  display: contents;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

#footer .theme-modal .contact_form .form_input.file label span {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1C1C1C;
  font-family: "Vollkorn", sans-serif;
  cursor: pointer;
}

#footer .theme-modal .contact_form .submit {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#footer .theme-modal .contact_form .submit span {
  color: #1C1C1C;
  font-size: 14px;
  line-height: 20px;
}

#footer .theme-modal .contact_form .submit span a {
  text-decoration: underline;
}

#footer .theme-modal .contact_form .submit span a:hover {
  color: var(--btn);
}

/*============ NOTICER ==============*/
#noticer {
  position: fixed;
  right: 0;
  top: 20%;
  border-radius: 10px;
  border: 2px solid var(--btn);
  background-color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 15px;
  max-width: 300px;
  width: fit-content;
  transform: translateX(110%);
  transition: transform 0.3s ease-in;
  z-index: 9999;
}

#noticer.active {
  transform: translateX(0);
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1240px) {

  /*=========== HEADER ===========*/
  #header .top__line .soc__block .block__title {
    display: none;
  }

  #header .btns__holder {
    grid-gap: 15px;
  }
}

@media (max-width: 1025px) {

  /*========== HEADER ==========*/
  #header .top__line .phone__item {
    margin: 0 10px;
  }

  #header .top__line .soc__block .soc__holder {
    column-gap: 15px;
  }

  #header .bot__line .catalog__btn {
    margin: 0 10px;
  }

  #header .bot__line .dgwt-wcas-search-wrapp {
    margin: 0 10px;
  }

  /*============ ARCHIVE SHOP ============*/
  li.product-category .category__top {
    padding: 20px 20px 0 20px;
  }

  .woocommerce .archive__container ul.products {
    grid-gap: 15px;
    grid-row-gap: 15px;
  }

  .woocommerce .archive__container .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 250px;
    transform: translateX(-250px);
    transition: transform 0.3s ease-in;
    z-index: 10;
    background-color: #fff;
    padding: 15px;
  }

  .woocommerce .archive__container .sidebar.active {
    transform: translateX(0);
  }

  .woocommerce .archive__container .sidebar .filters-widget {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .woocommerce .archive__container .sidebar .filters-widget .filter-block.filter-block-price {
    border: none;
    padding: 0;
    background: #fff;
  }

  .woocommerce .archive__container .sidebar .filters-widget .filter-block .filter-block-header {
    padding: 10px 15px;
  }

  .woocommerce .archive__container .sidebar .filters-widget .buttons {
    justify-content: center;
    align-items: center;
  }

  .woocommerce .archive__container .sidebar .filters-widget .buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .woocommerce .archive__container #openFilter {
    display: block;
  }

  /*======== CART ===========*/
  .woocommerce .cart-collaterals,
  .woocommerce .woocommerce-cart-form {
    width: 100%;
  }

  .woocommerce .cart-collaterals {
    margin-bottom: 30px;
  }

  /*========= CHECKOUT ===========*/
  .woocommerce form[name=checkout] {
    flex-direction: column-reverse;
  }

  .woocommerce form[name=checkout] #customer_details,
  .woocommerce form[name=checkout] #order_review {
    width: 100%;
  }

  .woocommerce form[name=checkout] #order_review {
    margin-bottom: 30px;
  }

  .woocommerce form[name=checkout] #customer_details #take_methods_field .woocommerce-input-wrapper {
    grid-gap: 20px;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method {
    grid-gap: 20px;
  }

  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
    grid-gap: 20px;
  }

  /*======== ARCHIVE REVIEWS =========*/
  #main.archive-reviews .archive__holder {
    flex-direction: column;
  }

  #main.archive-reviews .archive__holder .reviews__holder,
  #main.archive-reviews .archive__holder .banner__holder {
    width: 100%;
  }

  /*=========== FAVORITE PAGE ============*/
  #main.favorite-page .favorites__holder {
    flex-direction: column-reverse;
  }

  #main.favorite-page .favorites__holder .review__order,
  #main.favorite-page .favorites__holder .products__holder {
    width: 100%;
  }

  #main.favorite-page .favorites__holder .review__order {
    margin-bottom: 20px;
  }

  /*========== CUSTOM CHECKOUT/CART ===========*/
  main#primary .checkout-page {
    grid-template-columns: 1fr;
  }

  main#primary .checkout-page>.woocommerce:nth-of-type(1) {
    order: 2;
  }

  main#primary .checkout-page>.woocommerce:nth-of-type(2) {
    order: 1;
    position: initial;
  }

  /*=========== FOOTER ===========*/
  #footer .top__line .container {
    flex-wrap: wrap;
  }

  #footer .top__line a.logo__holder {
    margin-bottom: 20px;
  }

  #footer .top__line .menu__block {
    width: 100%;
    margin-bottom: 20px;
  }

  #footer .top__line .menu__holder {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  #footer .top__line .menu__holder li {
    margin-right: 15px;
  }

  #footer .top__line .block__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 769px) {

  /*========= BASE CONFIG ===========*/
  h1.page-title {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  h3 {
    font-size: 25px;
    line-height: 30px;
  }

  h4 {
    font-size: 20px;
    line-height: 25px;
  }

  h5 {
    font-size: 18px;
    line-height: 20px;
  }

  h6 {
    font-size: 16px;
    line-height: 20px;
  }

  /*============= NAVIGATION ==============*/
  .navigation.pagination a.prev {
    margin-right: 40px;
    margin-left: -40px;
  }

  .navigation.pagination a.next {
    margin-right: -40px;
    margin-left: 40px;
  }

  /*=========== HEADER ==========*/
  #header .top__line {
    padding: 5px 0;
  }

  #header .top__line .menu__holder {
    display: none;
  }

  #header .top__line .phone__item {
    margin-left: 0;
  }

  #header .bot__line a.logo__holder {
    margin-right: auto;
  }

  #header .bot__line .catalog__btn {
    display: none;
  }

  #header .bot__line .dgwt-wcas-search-wrapp {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 55px;
    height: 55px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
    flex-shrink: 0;
    max-width: unset;
    margin: 0;
  }

  #header .burger.open_menu {
    display: flex;
    margin-left: 10px;
  }

  /*========== SHOP BASE CONFIG ===========*/
  .woocommerce-products-header h1 {
    font-size: 35px;
    line-height: 40px;
  }

  /*========== ARCHIVE SHOP =============*/
  li.product-category .category__top h2 {
    font-size: 16px;
    line-height: 20px;
    word-break: break-word;
  }

  li.product .btns__holder {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  li.product .btns__holder .actions__holder {
    width: 100%;
    justify-content: flex-start;
  }

  li.product .btns__holder .actions__holder .add_to_cart_button {
    width: 100%;
  }

  li.product .quantity__holder {
    margin: 0 auto;
  }

  .woocommerce .archive__container ul.products.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  /*=========== SINGLE PRODUCT ============*/
  #single-product .product_top {
    flex-direction: column;
  }

  #single-product .product_top .slider__block,
  #single-product .product_top .summary.entry-summary {
    width: 100%;
  }

  #single-product .product_top .slider__block {
    margin-bottom: 30px;
  }

  #single-product .product_bottom .products h2 {
    font-size: 35px;
    line-height: 40px;
  }

  /*======== CART ===========*/
  .woocommerce .woocommerce-cart-form table .cart_item {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-thumbnail img {
    margin-bottom: 10px;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-name {
    width: calc(100% - 150px);
    max-width: initial;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-quantity {
    margin-left: 0;
  }

  /*========= CHECKOUT ===========*/
  .woocommerce form[name=checkout] #customer_details .block__title {
    font-size: 25px;
    line-height: 30px;
  }

  .woocommerce form[name=checkout] #customer_details p.form-row {
    margin-right: 10px;
  }

  .woocommerce form[name=checkout] #customer_details p.form-row input {
    padding: 15px 20px;
  }

  .woocommerce form[name=checkout] #customer_details .woocommerce-billing-fields__field-wrapper,
  .woocommerce form[name=checkout] #customer_details .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping .block__title {
    font-size: 25px;
    line-height: 30px;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method {
    grid-template-columns: repeat(2, 1fr);
  }

  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
    grid-template-columns: repeat(2, 1fr);
  }

  /*=========== FAVORITE PAGE ============*/
  #main.favorite-page .favorites__holder .products__holder .product__item {
    flex-wrap: wrap;
    row-gap: 20px;
  }

  #main.favorite-page .favorites__holder .products__holder .product__item .item__title {
    width: calc(100% - 150px);
  }

  /*========== FOOTER =============*/
  #footer .top__line {
    padding: 25px 0;
  }

  #footer .bot__line .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /*============ MODAL ===========*/
  #footer .theme-modal {
    padding: 20px;
  }

  #footer .theme-modal .contact_form .form_input input {
    padding: 0 20px;
  }

  #footer .theme-modal .contact_form .form_input.textarea textarea {
    padding: 20px;
  }
}

@media (max-width: 498px) {

  /*========= BASE CONFIG ===========*/
  h1.page-title {
    font-size: 25px;
    line-height: 30px;
  }

  h2 {
    font-size: 25px;
    line-height: 30px;
  }

  h3 {
    font-size: 20px;
    line-height: 25px;
  }

  /*============= NAVIGATION ==============*/
  .navigation.pagination a.prev {
    margin-right: 20px;
    margin-left: -20px;
  }

  .navigation.pagination a.next {
    margin-right: -20px;
    margin-left: 20px;
  }

  /*============ HEADER ===========*/
  #header .bot__line a.logo__holder img {
    max-width: 100px;
  }

  #header .bot__line .dgwt-wcas-search-wrapp,
  #header .btns__holder .head__btn {
    width: 45px;
    height: 45px;
  }
  

#header .favorite__btn {
    display: none;
  }

  #header .btns__holder {
    grid-template-columns: auto;
  }

  /*========== SHOP BASE CONFIG ===========*/
  .woocommerce-products-header h1 {
    font-size: 25px;
    line-height: 30px;
  }

  /*========== ARCHIVE SHOP ===========*/
  .woocommerce .archive__container ul.products.columns-2,
  .woocommerce .archive__container ul.products.columns-3 {
    grid-template-columns: 1fr;
  }

  li.product a.woocommerce-loop-product__link .product__info {
    padding: 0 10px;
  }

  li.product .btns__holder {
    padding: 0 10px 10px;
  }

  li.product .btns__holder .btn {
    padding: 10px;
    width: 100%;
    height: auto;
  }

  li.product .btns__holder .actions__holder {
    justify-content: space-between;
  }

  /*========== SINGLE PRODUCT ==========*/
  #single-product .product_top .slider__block .images__holder {
    padding: 20px;
  }

  #single-product .product_top .summary.entry-summary .btn {
    width: 100%;
  }

  #single-product .product_bottom .products h2 {
    font-size: 25px;
    line-height: 30px;
  }

  /*======== CART ===========*/
  .woocommerce .woocommerce-cart-form table .cart_item {
    flex-wrap: wrap;
    column-gap: 10px;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-thumbnail img {
    width: 70px;
    height: 70px;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-name {
    width: calc(100% - 100px);
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-name a {
    font-size: 16px;
    line-height: 20px;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-quantity {
    margin: 0 auto;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-price {
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }

  .woocommerce .woocommerce-cart-form table .cart_item .product-price .price__holder .sale__price {
    justify-content: center;
  }

  /*========== CHECKOUT ========*/
  .woocommerce form[name=checkout] #customer_details p.form-row {
    margin-right: 0;
  }

  .woocommerce form[name=checkout] #customer_details .woocommerce-billing-fields__field-wrapper,
  .woocommerce form[name=checkout] #customer_details .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method {
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }

  .woocommerce form[name=checkout] #customer_details .need__shipping #shipping_method li {
    width: 100%;
    margin-right: 0;
  }

  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods {
    grid-gap: 15px;
    grid-template-columns: 1fr;
  }

  .woocommerce form[name=checkout] #customer_details #payment ul.payment_methods li {
    width: 100%;
    margin-right: 0;
  }

  .woocommerce form[name=checkout] #customer_details button[type=submit] {
    max-width: 100%;
    width: 100%;
  }

  /*============ ARCHIVE QUESTION =============*/
  #main.archive-question .question__item {
    padding: 15px 30px;
  }

  #main.archive-question .question__item .item__title:before {
    display: none;
  }

  /*=========== FAVORITE PAGE ============*/
  #main.favorite-page .favorites__holder .products__holder .product__item .item__image {
    margin: 0 auto;
  }

  #main.favorite-page .favorites__holder .products__holder .product__item .item__title {
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    text-align: center;
  }

  #main.favorite-page .favorites__holder .products__holder .product__item .price__holder {
    margin: 0 auto;
  }

  #main.favorite-page .favorites__holder .products__holder .product__item .actions__holder {
    justify-content: space-between;
    width: 100%;
  }

  /*========== FOOTER ===========*/
  #footer .top__line .container .btn {
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
  }

  /*============ MODAL ===========*/
  #footer .theme-modal {
    padding: 20px;
  }

  #footer .theme-modal .title {
    font-size: 25px;
    line-height: 30px;
  }

  #footer .theme-modal .subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  #footer .theme-modal .contact_form .form_input {
    width: 100%;
  }

  #footer .theme-modal .contact_form .form_input input {
    padding: 0 15px;
  }

  #footer .theme-modal .contact_form .form_input.textarea textarea {
    padding: 15px;
    height: 100px;
  }

  #footer .theme-modal .contact_form .submit {
    flex-direction: column;
  }

  #footer .theme-modal .contact_form .submit .btn {
    width: 100%;
    margin-top: 10px;
  }
}

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

.woocommerce form[name=checkout] #customer_details p.form-row textarea{
  height: 100px;
}

.grampus-cookie-notice {
    display: none;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
    padding: 10px 0;
    z-index: 2000;
    background-color: var(--cookie-bg, #fff);
    padding: 30px;
    border-radius: 20px;
}

.cookie-notice-container{
    flex-direction: row;
}

.grampus-cookie-notice p{
    text-align: center;
}

.grampus-cookie-accept-button{
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
}

@media (max-width: 600px){
    .grampus-cookie-accept-button{
        width: 100%;
    }
    .cookie-notice-container{
    flex-direction: column;
    }
}


.policy-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
    
        border: 1px solid #ccc;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        border: 1px solid #000000;
        padding: 0;
    }
    
    /* Стиль для отмеченного чекбокса */
    .policy-checkbox input[type="checkbox"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Стиль для ошибки (только чекбокс) */
    .wpcf7-list-item.first.last input[type="checkbox"].wpcf7-not-valid {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
    }
    
    .policy-checkbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
    align-items: center;
    }
    
    #consent-checkbox{
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #000000 !important;
    }

.policy-checkbox label{
    width: 90% !important;
}

.wpcf7-list-item{
  margin-right: 15px;
}
.wpcf7-list-item input{
  padding: 15px;
  width: 20px;
  height: 20px;
}
.wpcf7-not-valid .wpcf7-list-item input{
  border-color: red;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}
.wpcf7-list-item-label{
  visibility: hidden;
}
.woocommerce form[name=checkout] #customer_details p.form-row textarea {
  resize: none;
  height: 100px;
}