@keyframes slidedown {
  from {
    transform: translateY(-125px);
  }
  to {
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  transition: 0.5s;
  text-decoration: none;
}

ul {
  padding-left: 40px;
}
ul li {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

input, textarea {
  font-family: "Josefin Sans", sans-serif;
  height: 48px;
  border: 1px solid rgb(223, 223, 223);
  padding: 0 12px;
}
input::placeholder, textarea::placeholder {
  font-size: 1rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}
input:focus, textarea:focus {
  outline: 0;
}

select, button {
  font-family: "Josefin Sans", sans-serif;
}

body {
  font-weight: 400;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Josefin Sans", sans-serif;
  background-color: #fff;
  color: #333333;
  position: relative;
}
body.open:before {
  opacity: 1;
  visibility: visible;
}
body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  body:before {
    display: none;
  }
}

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

.select2 {
  height: 48px;
}
.select2 .selection {
  height: 48px;
}
.select2 .selection .select2-selection {
  height: 48px;
  border-radius: 2px;
  border: 1px solid rgb(223, 223, 223);
  display: flex;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
}
.select2 .selection .select2-selection__rendered {
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
}
.select2 .selection .select2-selection__arrow {
  top: 10px;
  right: 10px;
}

body .product {
  width: 100%;
  background-color: #FFF;
  border: 1px solid rgba(51, 51, 51, 0.25);
  display: flex;
  flex-wrap: wrap;
}
body .product .thumbnail-wrapper {
  width: 100%;
  padding: 12px;
  text-align: center;
}
body .product .thumbnail-wrapper img {
  max-width: 140px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
body .product .info-wrapper {
  padding: 0 12px 12px 12px;
  width: 100%;
}
body .product .info-wrapper a {
  color: #333333;
}
body .product .info-wrapper h3 {
  text-align: center;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
body .product .info-wrapper__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 16px;
}
body .product .info-wrapper__bottom .left {
  width: calc(100% - 32px);
}
body .product .info-wrapper__bottom .right {
  width: 32px;
}
body .product .info-wrapper__bottom .right button {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #BDAFA5;
  border: none;
  transition: 0.5s;
  cursor: pointer;
}
body .product .info-wrapper__bottom .right button:hover, body .product .info-wrapper__bottom .right button:focus {
  background-color: #333333;
}
body .product .info-wrapper__bottom .right button:hover svg path, body .product .info-wrapper__bottom .right button:focus svg path {
  fill: #FFF;
}
body .product .info-wrapper__bottom .right button svg {
  width: 24px;
  height: auto;
}
body .product .info-wrapper__bottom .right button svg path {
  fill: #333333;
  transition: 0.5s;
}
body .product .info-wrapper__bottom .right button.loading .cart-icon {
  display: none;
}
body .product .info-wrapper__bottom .right button.loading .load-icon {
  display: block;
}
body .product .info-wrapper__bottom .right button .load-icon {
  display: none;
}

body .topbar {
  background-color: #BDAFA5;
  position: relative;
}
body .topbar__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body .topbar__inner--left, body .topbar__inner--right {
  width: 100%;
}
@media (min-width: 410px) {
  body .topbar__inner--left, body .topbar__inner--right {
    width: 50%;
  }
}
@media (min-width: 768px) {
  body .topbar__inner--left, body .topbar__inner--right {
    width: 25%;
  }
}
body .topbar__inner--left p, body .topbar__inner--left a, body .topbar__inner--right p, body .topbar__inner--right a {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
body .topbar__inner--left a, body .topbar__inner--right a {
  color: #333333;
}
body .topbar__inner--right {
  padding-top: 6px;
  border-top: 1px solid #FFF;
  margin-top: 6px;
}
@media (min-width: 410px) {
  body .topbar__inner--right {
    padding-top: 0;
    margin-top: 0;
    border: none;
    text-align: right;
  }
}
body .topbar__inner--left a {
  font-weight: 700;
  text-decoration: underline;
}
body .topbar__inner--middle {
  width: 50%;
  display: none;
}
@media (min-width: 768px) {
  body .topbar__inner--middle {
    display: block;
  }
}
body .topbar__inner--middle form {
  max-width: 625px;
  width: 100%;
  margin: 0 auto;
}
body .topbar__inner--middle form .wrapper {
  position: relative;
  z-index: 10;
}
body .topbar__inner--middle form .wrapper input {
  width: 100%;
  background-color: #FFF;
  border: none;
  border-radius: 5px;
  padding: 0 16px;
  height: 48px;
  color: #333333;
}
body .topbar__inner--middle form .wrapper input::placeholder {
  font-weight: 300;
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
  color: #333333;
}
body .topbar__inner--middle form .wrapper button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background-color: #BDAFA5;
  transition: 0.5s;
}
body .topbar__inner--middle form .wrapper button:hover, body .topbar__inner--middle form .wrapper button:focus {
  background-color: #333333;
}
body .topbar__inner--middle form .wrapper button:hover .search-icon svg path, body .topbar__inner--middle form .wrapper button:hover .loading svg path, body .topbar__inner--middle form .wrapper button:focus .search-icon svg path, body .topbar__inner--middle form .wrapper button:focus .loading svg path {
  fill: #FFF;
}
body .topbar__inner--middle form .wrapper button .loading, body .topbar__inner--middle form .wrapper button .search-icon {
  display: none;
}
body .topbar__inner--middle form .wrapper button .visible {
  display: block;
}
body .topbar__inner--middle form .wrapper button .search-icon svg, body .topbar__inner--middle form .wrapper button .loading svg {
  width: 18px;
  height: auto;
}
body .topbar__inner--middle form .wrapper button .search-icon svg path, body .topbar__inner--middle form .wrapper button .loading svg path {
  fill: #333333;
  transition: 0.5s;
}
body .header {
  border-bottom: 5px solid #BDAFA5;
  position: relative;
}
body .header__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
body .header__inner--middle {
  width: 48px;
  text-align: center;
}
body .header__inner--middle svg {
  width: 41px;
  height: auto;
  vertical-align: middle;
}
body .header__inner--left, body .header__inner--right {
  width: calc(50% - 24px);
}
body .header__inner--left {
  display: none;
}
@media (min-width: 768px) {
  body .header__inner--left {
    display: block;
  }
}
body .header__inner--left ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
body .header__inner--left ul li {
  margin-right: 24px;
}
body .header__inner--left ul li:last-child {
  margin-right: 0;
}
body .header__inner--left ul li a {
  color: #333333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body .header__inner--right {
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 48px);
}
@media (min-width: 768px) {
  body .header__inner--right {
    width: calc(50% - 24px);
  }
}
body .header__inner--right .actions {
  display: flex;
  flex-wrap: wrap;
}
body .header__inner--right .actions .account, body .header__inner--right .actions .hamburger, body .header__inner--right .actions .search {
  margin-right: 12px;
}
@media (min-width: 768px) {
  body .header__inner--right .actions .hamburger, body .header__inner--right .actions .search {
    display: none;
  }
}
body .header__inner--right .actions .account, body .header__inner--right .actions .cart, body .header__inner--right .actions .hamburger, body .header__inner--right .actions .search {
  width: 40px;
  height: 40px;
  border: 1px solid #333333;
}
@media (min-width: 768px) {
  body .header__inner--right .actions .account, body .header__inner--right .actions .cart, body .header__inner--right .actions .hamburger, body .header__inner--right .actions .search {
    width: 48px;
    height: 48px;
  }
}
body .header__inner--right .actions .account__inner, body .header__inner--right .actions .cart__inner, body .header__inner--right .actions .hamburger__inner, body .header__inner--right .actions .search__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .header__inner--right .actions .account__inner svg, body .header__inner--right .actions .cart__inner svg, body .header__inner--right .actions .hamburger__inner svg, body .header__inner--right .actions .search__inner svg {
  height: 18px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body .header__inner--right .actions .account__inner svg, body .header__inner--right .actions .cart__inner svg, body .header__inner--right .actions .hamburger__inner svg, body .header__inner--right .actions .search__inner svg {
    height: 24px;
  }
}
body .header__inner--right .actions .account__inner svg path, body .header__inner--right .actions .cart__inner svg path, body .header__inner--right .actions .hamburger__inner svg path, body .header__inner--right .actions .search__inner svg path {
  fill: #333333;
}
body .header__inner--right .actions .account__inner--status {
  position: absolute;
  top: 0;
  right: 0;
}
body .header__inner--right .actions .account__inner--status .logged-in, body .header__inner--right .actions .account__inner--status .logged-out {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .header__inner--right .actions .account__inner--status .logged-in svg, body .header__inner--right .actions .account__inner--status .logged-out svg {
  height: 8px;
  width: auto;
  vertical-align: middle;
}
body .header__inner--right .actions .account__inner--status .logged-in svg path, body .header__inner--right .actions .account__inner--status .logged-out svg path {
  fill: #FFF;
}
body .header__inner--right .actions .account__inner--status .logged-in {
  background-color: #27ae60;
}
body .header__inner--right .actions .account__inner--status .logged-out {
  background-color: #e74c3c;
}
body .header__inner--right .actions .cart {
  position: relative;
  z-index: 10000000;
}
body .header__inner--right .actions .cart__inner--count {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  background-color: #BDAFA5;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .header__inner--right .actions .cart .window {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 10000;
  width: 370px;
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body .header__inner--right .actions .cart .window.open {
  opacity: 1;
  visibility: visible;
}
body .header__inner--right .actions .cart .window .shopping-cart {
  background-color: #FFF;
  width: 100%;
  border: 1px solid #ddd;
  padding: 0 24px;
  position: relative;
}
body .header__inner--right .actions .cart .window .shopping-cart:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 10;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
body .header__inner--right .actions .cart .window .shopping-cart.loading:before {
  opacity: 1;
  visibility: visible;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner {
  width: 100%;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .top-bar .title h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .top-bar .close {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .top-bar .close svg {
  width: 12px;
  height: auto;
  fill: #000;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items {
  max-height: 400px;
  overflow-y: scroll;
  width: 100%;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items::-webkit-scrollbar {
  display: none;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .no-items {
  padding: 12px 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .no-items p {
  font-size: 0.875rem;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .image {
  width: 60px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  vertical-align: bottom;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .remove {
  width: 18px;
  display: flex;
  align-items: center;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .remove svg {
  width: 18px;
  height: auto;
  cursor: pointer;
  vertical-align: bottom;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content {
  width: calc(100% - 78px);
  padding: 0 12px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .title a {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .price {
  margin-left: 12px;
  display: block;
  color: #BDAFA5;
  font-size: 1rem;
  font-weight: 700;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .price del {
  color: #888;
  font-weight: 500;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .price ins {
  text-decoration: none;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper {
  width: 96px;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  height: 34px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus, body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  height: 100%;
  text-align: center;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  cursor: pointer;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus svg, body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus svg {
  width: 12px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .minus {
  border-right: 1px solid #e5e5e5;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .plus {
  border-left: 1px solid #e5e5e5;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity {
  width: 44px;
  float: none;
  height: 100%;
  margin: 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-outer-spin-button,
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input {
  width: 100%;
  height: 100%;
  border: none;
  -moz-appearance: textfield;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .items .item .content .info .number-wrapper .quantity input:focus {
  outline: 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .totals {
  padding: 12px 0 0 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .totals p {
  font-size: 0.875rem;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .totals p strong {
  color: #BDAFA5;
  font-size: 1rem;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .buttons {
  padding: 0 0 12px 0;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .buttons .button {
  margin-top: 12px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .buttons .button a {
  background-color: #BDAFA5;
  color: #000;
  border: 1px solid transparent;
  font-weight: 400;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  font-size: 0.875rem;
  display: block;
  padding: 12px 24px;
}
body .header__inner--right .actions .cart .window .shopping-cart__inner .buttons .button a:hover, body .header__inner--right .actions .cart .window .shopping-cart__inner .buttons .button a:focus {
  color: #FFF;
  background-color: #333333;
}
body .search {
  position: relative;
}
body .search__results {
  position: absolute;
  width: 100%;
  padding-top: 24px;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 100;
}
body .search__results.active .results-container {
  opacity: 1;
  visibility: visible;
}
body .search__results .results-container {
  background-color: #FFF;
  padding: 0 24px;
  width: 100%;
  border: 1px solid #ddd;
  opacity: 0;
  visibility: hidden;
  max-width: 625px;
  transition: 0.5s;
}
body .search__results .results-container .no-results {
  padding: 24px 0;
}
body .search__results .results-container .no-results h3 {
  color: #000;
  font-size: 1.125rem;
}
body .search__results .results-container .top-heading {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .search__results .results-container .top-heading p {
  font-size: 0.875rem;
}
body .search__results .results-container .items .item {
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
body .search__results .results-container .items .item .item__inner {
  display: flex;
  flex-wrap: wrap;
}
body .search__results .results-container .items .item .item__inner--left {
  width: 60px;
}
body .search__results .results-container .items .item .item__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body .search__results .results-container .items .item .item__inner--right {
  width: calc(100% - 60px);
  padding-left: 12px;
}
body .search__results .results-container .items .item .item__inner--right p {
  font-size: 0.875rem;
  color: #888;
}
body .search__results .results-container .items .item .item__inner--right .price {
  display: block;
  color: #BDAFA5;
  font-size: 0.875rem;
  font-weight: 500;
}
body .search__results .results-container .items .item .item__inner--right .price del {
  color: #888;
  font-weight: 500;
}
body .search__results .results-container .items .item .item__inner--right .price ins {
  text-decoration: none;
}
body .search__results .results-container .more-items {
  padding: 12px 0;
}
body .search__results .results-container .more-items a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: 0.875rem;
}
body .search__results .results-container .more-items a svg {
  width: 12px;
  height: auto;
  vertical-align: bottom;
  fill: #000;
  margin-left: 12px;
}

body .footer {
  background-color: #BDAFA5;
}
body .footer__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 8px 24px 24px 24px;
}
body .footer__inner--top {
  border-bottom: 1px solid #FFF;
  padding-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
body .footer__inner--top .column {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body .footer__inner--top .column {
    width: 25%;
  }
}
@media (min-width: 768px) {
  body .footer__inner--top .column:first-child {
    width: 50%;
  }
}
body .footer__inner--top .column .footer-logo svg {
  height: 74px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  body .footer__inner--top .column .footer-logo svg {
    height: 148px;
  }
}
body .footer__inner--top .column p.title {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body .footer__inner--top .column ul {
  margin: 12px 0 0 0;
  padding: 0;
  list-style: none;
}
body .footer__inner--top .column ul li {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
body .footer__inner--top .column ul li a {
  color: #333333;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
body .footer__inner--bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
body .footer__inner--bottom p, body .footer__inner--bottom li {
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
body .footer__inner--bottom .left {
  order: 2;
  margin-top: 12px;
}
@media (min-width: 768px) {
  body .footer__inner--bottom .left {
    order: 1;
    margin-top: 0;
  }
}
body .footer__inner--bottom .right {
  order: 1;
}
@media (min-width: 768px) {
  body .footer__inner--bottom .right {
    order: 2;
  }
}
body .footer__inner--bottom .right ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
body .footer__inner--bottom .right ul li {
  margin-right: 12px;
}
body .footer__inner--bottom .right ul li:last-child {
  margin-right: 0;
}
body .footer__inner--bottom .right ul li a {
  color: #333333;
}

body.page-template-home .hero-new {
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .hero-new__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 64px 12px;
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero-new__inner {
    padding: 112px 24px;
  }
}
body.page-template-home .hero-new__inner--block {
  max-width: 768px;
  background: rgb(189, 175, 165);
  background: linear-gradient(180deg, rgba(189, 175, 165, 0.53) 0%, rgba(189, 175, 165, 0) 100%);
  padding: 24px 12px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (min-width: 768px) {
  body.page-template-home .hero-new__inner--block {
    padding: 24px;
  }
}
body.page-template-home .hero-new__inner--block h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  font-weight: 600;
  color: #FFF;
}
@media (min-width: 768px) {
  body.page-template-home .hero-new__inner--block h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .hero-new__inner--block p {
  margin: 12px 0 0 0;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  color: #FFF;
  font-weight: 300;
}
body.page-template-home .hero {
  min-height: 500px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-template-home .hero__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner {
    padding: 112px 24px;
  }
}
body.page-template-home .hero__inner--vector {
  position: absolute;
  left: -75px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
body.page-template-home .hero__inner--vector svg {
  height: 392px;
  width: auto;
  vertical-align: middle;
}
body.page-template-home .hero__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--left {
    width: 60%;
    padding-right: 24px;
  }
}
body.page-template-home .hero__inner--left h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
  max-width: 768px;
  font-weight: 600;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--left h1 {
    font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
  }
}
body.page-template-home .hero__inner--left p {
  margin: 12px 0 0 0;
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
  max-width: 768px;
  font-weight: 300;
}
body.page-template-home .hero__inner--right {
  width: 100%;
  margin-top: 24px;
}
@media (min-width: 768px) {
  body.page-template-home .hero__inner--right {
    width: 40%;
    margin-top: 0;
  }
}
body.page-template-home .hero__inner--right .images {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.page-template-home .hero__inner--right .images__image {
  width: calc(50% - 12px);
}
body.page-template-home .hero__inner--right .images__image:first-child {
  margin-right: 12px;
  margin-top: 48px;
}
body.page-template-home .hero__inner--right .images__image:last-child {
  margin-left: 12px;
}
body.page-template-home .hero__inner--right .images__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  aspect-ratio: 1/1;
}
body.page-template-home .collection {
  position: relative;
  background: #FFF;
  z-index: 11;
  border-bottom: 5px solid #BDAFA5;
}
body.page-template-home .collection__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 64px 24px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.page-template-home .collection__inner {
    padding: 74px 24px;
  }
}
body.page-template-home .collection__inner h2 {
  font-weight: 500;
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-home .collection__inner--right {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.page-template-home .collection__inner--right {
    width: 50%;
    margin-top: 0;
    padding-left: 24px;
  }
}
body.page-template-home .collection__inner--right .swiper-collection {
  overflow: hidden;
  width: 100%;
  margin-top: 24px;
}
body.page-template-home .collection__inner--right .swiper-collection .swiper-wrapper {
  transition-timing-function: linear;
}
body.page-template-home .collection__inner--right .swiper-collection .swiper-wrapper .swiper-slide {
  height: auto;
}
body.page-template-home .collection__inner--right .swiper-collection .swiper-wrapper .swiper-slide .product {
  width: 100%;
}
body.page-template-home .collection__inner--right .collection-scrollbar {
  width: 100%;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.25);
  height: 10px;
  margin-top: 12px;
}
body.page-template-home .collection__inner--right .collection-scrollbar .swiper-scrollbar-drag {
  background: #333333;
  border-radius: 5px;
  height: 10px;
}
body.page-template-home .collection__inner--right .view-more {
  margin-top: 48px;
  text-align: center;
}
body.page-template-home .collection__inner--right .view-more .button a {
  display: inline-block;
  background: #BDAFA5;
  color: #333333;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  padding: 10px 36px 8px 36px;
  text-align: center;
  border-radius: 5px;
}
body.page-template-home .collection__inner--right .view-more .button a:hover, body.page-template-home .collection__inner--right .view-more .button a:focus {
  background: #333333;
  color: #FFF;
}
body.page-template-home .collection__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .collection__inner--left {
    width: 50%;
    padding-right: 24px;
  }
}
body.page-template-home .collection__inner--left img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
body.page-template-home .collection__inner--left .bullets-wrapper {
  position: relative;
  margin-top: 24px;
  z-index: 10;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap {
  position: absolute;
  z-index: 10;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .circle__inner {
  width: 12px;
  height: 12px;
  background: #BDAFA5;
  border-radius: 50%;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product-wrapper {
  display: none;
  position: absolute;
  top: 24px;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product-wrapper.align-right {
  right: 0;
}
@media (min-width: 768px) {
  body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product-wrapper.align-right {
    right: unset;
    left: 0;
  }
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product-wrapper.align-left {
  left: 0;
}
body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product {
  width: 150px;
  transition: 1s;
  margin-top: 6px;
}
@media (min-width: 768px) {
  body.page-template-home .collection__inner--left .bullets-wrapper .bullet-wrap .product {
    width: 225px;
  }
}
body.page-template-home .search-block {
  width: 100%;
  position: relative;
  border-bottom: 5px solid #BDAFA5;
}
body.page-template-home .search-block__inner {
  width: 100%;
  padding: 64px 24px 32px 24px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1480px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  body.page-template-home .search-block__inner {
    padding: 114px 24px 57px 24px;
  }
}
body.page-template-home .search-block__inner--left, body.page-template-home .search-block__inner--right {
  width: 50%;
}
body.page-template-home .search-block__inner--left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .search-block__inner--left {
    width: 50%;
  }
}
body.page-template-home .search-block__inner--left h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 500;
  max-width: 200px;
}
@media (min-width: 768px) {
  body.page-template-home .search-block__inner--left h2 {
    max-width: 100%;
  }
}
body.page-template-home .search-block__inner--left .categories-wrapper {
  overflow-x: auto;
}
body.page-template-home .search-block__inner--left .categories-wrapper .categories {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  margin-top: 12px;
  min-width: 650px;
}
body.page-template-home .search-block__inner--left .categories-wrapper .categories__category {
  width: auto;
  margin-top: 12px;
  margin-right: 12px;
}
body.page-template-home .search-block__inner--left .categories-wrapper .categories__category a {
  display: inline-block;
  text-align: center;
  background: #BDAFA5;
  padding: 10px 24px 8px 24px;
  border-radius: 5px;
  color: #333333;
}
body.page-template-home .search-block__inner--left .categories-wrapper .categories__category a:hover, body.page-template-home .search-block__inner--left .categories-wrapper .categories__category a:focus {
  background: #333333;
  color: #FFF;
}
body.page-template-home .search-block__inner--left .search-box {
  margin-top: 24px;
}
body.page-template-home .search-block__inner--left .search-box form {
  max-width: 650px;
  width: 100%;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper {
  position: relative;
  z-index: 10;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper input {
  width: 100%;
  background-color: #FFF;
  border: none;
  border-radius: 5px;
  padding: 0 16px;
  height: 48px;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
  color: #333333;
  border: 1px solid rgba(51, 51, 51, 0.5);
}
body.page-template-home .search-block__inner--left .search-box form .wrapper input::placeholder {
  font-weight: 300;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
  color: #333333;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background-color: #BDAFA5;
  transition: 0.5s;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button:hover, body.page-template-home .search-block__inner--left .search-box form .wrapper button:focus {
  background-color: #333333;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button:hover .search-icon svg path, body.page-template-home .search-block__inner--left .search-box form .wrapper button:hover .loading svg path, body.page-template-home .search-block__inner--left .search-box form .wrapper button:focus .search-icon svg path, body.page-template-home .search-block__inner--left .search-box form .wrapper button:focus .loading svg path {
  fill: #FFF;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button .visible {
  display: block;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button .loading {
  display: none;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button .search-icon svg {
  width: 18px;
  height: auto;
}
body.page-template-home .search-block__inner--left .search-box form .wrapper button .search-icon svg path {
  fill: #333333;
  transition: 0.5s;
}
body.page-template-home .search-block__inner--left .questions {
  margin-top: 32px;
}
body.page-template-home .search-block__inner--left .questions__top {
  display: flex;
  align-items: flex-start;
}
body.page-template-home .search-block__inner--left .questions__top .title p {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.page-template-home .search-block__inner--left .questions__top .arrow {
  margin-left: 12px;
  margin-top: 6px;
}
body.page-template-home .search-block__inner--left .questions__button a {
  display: inline-block;
  text-align: center;
  background: #BDAFA5;
  padding: 10px 24px 8px 24px;
  border-radius: 5px;
  color: #333333;
}
body.page-template-home .search-block__inner--left .questions__button a:hover, body.page-template-home .search-block__inner--left .questions__button a:focus {
  background: #333333;
  color: #FFF;
}
body.page-template-home .search-block__inner--right .parralax-image {
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  body.page-template-home .search-block__inner--right .parralax-image {
    right: -64px;
    top: -32px;
    width: 200px;
    height: auto;
  }
}
@media (min-width: 768px) {
  body.page-template-home .search-block__inner--right .parralax-image {
    right: -64px;
    top: 0;
    width: 50%;
    height: 100%;
  }
}
body.page-template-home .search-block__inner--right .parralax-image img {
  transform: rotate(-10deg);
  width: 100%;
  height: 100%;
  aspect-ratio: 616/358;
  object-fit: cover;
  vertical-align: bottom;
  max-height: 350px;
}
@media (min-width: 768px) {
  body.page-template-home .search-block__inner--right .parralax-image img {
    transform: rotate(10deg);
  }
}
body.page-template-home .themes {
  width: 100%;
  position: relative;
  z-index: 11;
  background: #FFF;
}
body.page-template-home .themes__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 32px 24px 64px 24px;
}
@media (min-width: 768px) {
  body.page-template-home .themes__inner {
    padding: 57px 24px 114px 24px;
  }
}
body.page-template-home .themes__inner--top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body.page-template-home .themes__inner--top .left {
  width: 100%;
}
@media (min-width: 768px) {
  body.page-template-home .themes__inner--top .left {
    width: auto;
  }
}
body.page-template-home .themes__inner--top .left h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
  font-weight: 500;
}
body.page-template-home .themes__inner--top .right {
  width: 100%;
  margin-top: 18px;
}
@media (min-width: 768px) {
  body.page-template-home .themes__inner--top .right {
    width: auto;
    margin-top: 0;
  }
}
body.page-template-home .themes__inner--top .right .tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
body.page-template-home .themes__inner--top .right .tabs__tab {
  margin-right: 12px;
  margin-top: 6px;
}
@media (min-width: 768px) {
  body.page-template-home .themes__inner--top .right .tabs__tab {
    margin-top: 0;
  }
}
body.page-template-home .themes__inner--top .right .tabs__tab:last-child {
  margin-right: 0;
}
body.page-template-home .themes__inner--top .right .tabs__tab span {
  color: #BDAFA5;
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
  font-weight: 700;
  transition: 0.5s;
  cursor: pointer;
}
body.page-template-home .themes__inner--top .right .tabs__tab span:not(.active):hover, body.page-template-home .themes__inner--top .right .tabs__tab span:not(.active):focus {
  color: #333333;
}
body.page-template-home .themes__inner--top .right .tabs__tab span.active {
  text-decoration: underline;
}
body.page-template-home .themes__inner--slider {
  margin-top: 24px;
}
body.page-template-home .themes__inner--slider .swiper-theme {
  overflow: hidden;
}
body.page-template-home .themes__inner--slider .swiper-theme .swiper-wrapper .swiper-slide {
  height: auto;
}
body.page-template-home .themes__inner--slider .swiper-theme .swiper-wrapper .swiper-slide .product {
  height: 100%;
}
body.page-template-home .themes__inner--slider .theme-scrollbar {
  width: 100%;
  border-radius: 5px;
  background-color: rgba(51, 51, 51, 0.25);
  height: 10px;
  margin-top: 12px;
}
body.page-template-home .themes__inner--slider .theme-scrollbar .swiper-scrollbar-drag {
  background: #333333;
  border-radius: 5px;
  height: 10px;
}
body.page-template-home .seo-block {
  background: #F1F1F1;
}
body.page-template-home .seo-block__inner {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 24px 74px 24px;
}
body.page-template-home .seo-block__inner--content {
  max-width: 1024px;
  width: 100%;
}
body.page-template-home .seo-block__inner--content h1, body.page-template-home .seo-block__inner--content h2, body.page-template-home .seo-block__inner--content h3, body.page-template-home .seo-block__inner--content h4, body.page-template-home .seo-block__inner--content h5, body.page-template-home .seo-block__inner--content ol, body.page-template-home .seo-block__inner--content ul, body.page-template-home .seo-block__inner--content p {
  margin: 24px 0 0 0;
}
body.page-template-home .seo-block__inner--content h1, body.page-template-home .seo-block__inner--content h2, body.page-template-home .seo-block__inner--content h3, body.page-template-home .seo-block__inner--content h4, body.page-template-home .seo-block__inner--content h5 {
  font-weight: 500;
}
body.page-template-home .seo-block__inner--content h1 {
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.page-template-home .seo-block__inner--content h2 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.page-template-home .seo-block__inner--content h3 {
  font-size: clamp(1.5rem, 1.2983rem + 0.4202vw, 1.75rem);
}
body.page-template-home .seo-block__inner--content h4 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.page-template-home .seo-block__inner--content p, body.page-template-home .seo-block__inner--content li {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7742rem + 0.2101vw, 1rem);
}
body.page-template-home .seo-block__inner--content a {
  color: #BDAFA5;
  font-weight: 700;
}

body.single-product .breadcrumbs {
  padding-top: 24px;
}
body.single-product .breadcrumbs a {
  color: #333333;
}
body.single-product .breadcrumbs span.breadcrumb_last {
  font-weight: 600;
}
body.single-product .woocommerce-wrapper {
  padding: 24px 0 48px 0;
  position: relative;
  z-index: 100000;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper {
    padding: 24px 0 64px 0;
  }
}
body.single-product .woocommerce-wrapper__inner > .product {
  border: none;
  display: block;
}
body.single-product .woocommerce-wrapper .content-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .woocommerce-product-gallery {
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper .content-wrapper__inner .woocommerce-product-gallery {
    width: 50%;
    padding-right: 24px;
  }
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .woocommerce-product-gallery__wrapper {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #333333;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .woocommerce-product-gallery__image {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 24px;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .woocommerce-product-gallery__image img {
  max-width: 400px;
  height: auto;
  vertical-align: bottom;
  aspect-ratio: 1/1;
  object-fit: contain;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary {
  width: 100%;
  margin: 0;
  margin-top: 48px;
}
@media (min-width: 768px) {
  body.single-product .woocommerce-wrapper .content-wrapper__inner .summary {
    width: 50%;
    margin-top: 0;
    padding-left: 24px;
  }
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary h1 {
  font-weight: 400;
  font-size: clamp(2rem, 1.5966rem + 0.8403vw, 2.5rem);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .price {
  color: #BDAFA5;
  font-weight: 700;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .show-calendar {
  margin-top: 24px;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .show-calendar span {
  display: inline-block;
  padding: 12px 12px 10px 12px;
  color: #333333;
  background-color: #BDAFA5;
  cursor: pointer;
  width: 200px;
  text-align: center;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .cart {
  margin: 48px 0 0 0;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .cart .quantity {
  width: 100%;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .cart .quantity input {
  width: 200px;
  height: 32px;
  border: 1px solid #333333;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .cart button {
  margin-top: 12px;
  border-radius: 0;
  height: 48px;
  background-color: #333333;
  color: #FFF;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
  width: 200px;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  overflow: scroll;
  padding: 74px 24px 0 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper.open {
  opacity: 1;
  visibility: visible;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper .calendar-backface {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
  z-index: -1;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper__inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  background-color: #FFF;
  padding: 48px 24px 24px 24px;
  overflow: auto;
  position: relative;
  z-index: 10;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper__inner--close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border-radius: 50%;
  border: 1px solid #333333;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper__inner--close svg {
  width: 16px;
  height: auto;
  vertical-align: middle;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .calendar-wrapper__inner #calendar {
  width: 670px;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper {
  max-width: 480px;
  margin-top: 24px;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item {
  padding: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .top {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .top.open .top__icon svg {
  transform: rotate(180deg);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .top__text {
  font-size: 0.875rem;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .top__icon svg {
  height: 20px;
  width: auto;
  transition: 0.5s;
  vertical-align: middle;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content {
  display: none;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h1, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h2, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h3, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h4, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content ol, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content ul, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content p {
  margin: 12px 0 0 0;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h1, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h2, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h3, body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h4 {
  font-weight: 400;
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h1 {
  font-size: clamp(1.75rem, 1.5483rem + 0.4202vw, 2rem);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h2 {
  font-size: clamp(1.5rem, 1.2983rem + 0.4202vw, 1.75rem);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h3 {
  font-size: clamp(1.25rem, 1.0483rem + 0.4202vw, 1.5rem);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content h4 {
  font-size: clamp(1rem, 0.7983rem + 0.4202vw, 1.25rem);
}
body.single-product .woocommerce-wrapper .content-wrapper__inner .summary .collapse-wrapper .collapse-item .content p {
  font-size: clamp(0.75rem, 0.6492rem + 0.2101vw, 0.875rem);
}
body.single-product .other {
  overflow: hidden;
}
body.single-product .other__inner {
  padding: 0 24px 24px 24px;
}
body.single-product .other__inner h2 {
  font-weight: 400;
  margin: 0 0 24px 0;
}
body.single-product .other__inner .products-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
  width: 45%;
  height: auto;
}
@media (min-width: 768px) {
  body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide {
    width: 20%;
  }
}
body.single-product .other__inner .products-swiper .swiper-wrapper .swiper-slide .product {
  height: 100%;
}

body.woocommerce-checkout .breadcrumbs {
  padding-top: 24px;
}
body.woocommerce-checkout .breadcrumbs a {
  color: #333333;
}
body.woocommerce-checkout .breadcrumbs span.breadcrumb_last {
  font-weight: 600;
}
body.woocommerce-checkout .wrapper {
  margin-bottom: 24px;
}
body.woocommerce-checkout .wrapper__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 24px 64px 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-NoticeGroup-checkout {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-NoticeGroup-checkout a {
  color: #333333;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .woocommerce-form-coupon-toggle {
  height: 0;
  opacity: 0;
  visibility: hidden;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout {
  width: 100%;
  display: grid;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
  border: 1px solid #BDAFA5;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left {
  padding: 24px;
  width: 100%;
  order: 2;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left {
    width: 70%;
    order: 1;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left h3:not(#ship-to-different-address) {
  display: none;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-1, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 h3 {
  font-weight: 400;
  font-size: 1rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .col2-set .col-2 .woocommerce-additional-fields {
  margin-top: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery {
  margin-top: 20px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery #shipping_method li {
  display: flex;
  align-items: center;
  margin: 12px 0 0 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left .delivery #shipping_method li input {
  width: 15px;
  margin-top: 0;
  height: 15px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__left #payment {
  margin-top: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
  width: 100%;
  height: 100%;
  order: 1;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right {
    margin-bottom: 0;
    order: 2;
    width: calc(30% - 24px);
    margin-left: 24px;
    position: sticky;
    top: 24px;
    right: 0;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item {
  border-bottom: 1px solid #BDAFA5;
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item.open .dropdown {
  display: block;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .title {
  cursor: pointer;
  padding: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .title h3 {
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item {
  display: flex;
  flex-wrap: wrap;
  padding: 12px 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item:first-child {
  padding-top: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item:last-child {
  padding-bottom: 24px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image {
  width: 25%;
  padding-right: 12px;
  position: relative;
  z-index: 10;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: 150px;
  aspect-ratio: 1/1;
  vertical-align: bottom;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__image .quantity {
  background-color: #BDAFA5;
  color: #333333;
  width: 20px;
  height: 20px;
  font-size: 0.875rem;
  position: absolute;
  left: -10px;
  top: -10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info {
  width: 75%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p {
  font-size: 0.875rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.price {
  margin-top: 8px;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.preorder {
  color: #F35046;
  font-weight: 700;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__info p.marge {
  font-weight: 700;
  color: #F35046;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total {
  padding-left: 12px;
  text-align: right;
  width: 25%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .product-item__total p {
  font-weight: 700;
  font-size: 0.875rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
  padding: 0 24px 24px 24px;
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form {
    grid-template-columns: 60% 40%;
  }
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  width: 100%;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input:focus, body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button:focus {
  outline: 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group input {
  height: 42px;
  padding-left: 12px;
  font-size: 1rem;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .dropdown-item .dropdown .coupon-form .form-group button {
  height: 42px;
  background-color: #BDAFA5;
  color: #333333;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 400;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .totals {
  padding: 12px 0;
}
body.woocommerce-checkout .wrapper__inner--content .woocommerce .checkout__right .totals__item {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
}

body.woocommerce-shop .woocommerce-wrapper__inner, body.tax-product_cat .woocommerce-wrapper__inner {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 12px 96px 12px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .top, body.tax-product_cat .woocommerce-wrapper__inner .top {
  width: 100%;
  padding: 0 12px 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .top, body.tax-product_cat .woocommerce-wrapper__inner .top {
    flex-wrap: nowrap;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .top__left, body.woocommerce-shop .woocommerce-wrapper__inner .top__right, body.tax-product_cat .woocommerce-wrapper__inner .top__left, body.tax-product_cat .woocommerce-wrapper__inner .top__right {
  width: 100%;
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .top__left, body.woocommerce-shop .woocommerce-wrapper__inner .top__right, body.tax-product_cat .woocommerce-wrapper__inner .top__left, body.tax-product_cat .woocommerce-wrapper__inner .top__right {
    width: auto;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .top h1, body.tax-product_cat .woocommerce-wrapper__inner .top h1 {
  font-size: clamp(2.5rem, 2.0966rem + 0.8403vw, 3rem);
}
body.woocommerce-shop .woocommerce-wrapper__inner .top .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .top .facetwp-facet {
  margin: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
  display: none;
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
    display: block;
    width: 225px;
    padding-left: 12px;
  }
}
@media (min-width: 1200px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .sidebar, body.tax-product_cat .woocommerce-wrapper__inner .sidebar {
    width: 330px;
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group {
  margin-top: 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group h4, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group h4 {
  font-weight: 700;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet {
  margin-bottom: 0;
  margin-top: 24px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox {
  background: none;
  padding-left: 30px;
  position: relative;
  z-index: 10;
  padding-top: 4px;
  margin-bottom: 15px;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox.checked:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox.checked:before {
  background-color: #BDAFA5;
}
body.woocommerce-shop .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox:before, body.tax-product_cat .woocommerce-wrapper__inner .sidebar .group .facetwp-facet .facetwp-checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #BDAFA5;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
  width: 100%;
}
@media (min-width: 1024px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
    padding-left: 32px;
    width: calc(100% - 225px);
  }
}
@media (min-width: 1200px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content, body.tax-product_cat .woocommerce-wrapper__inner .content {
    width: calc(100% - 330px);
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
  margin: 24px 12px 0 12px;
  width: calc(100% - 24px);
}
@media (min-width: 420px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
    width: calc(50% - 24px);
  }
}
@media (min-width: 768px) {
  body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .products .product, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .products .product {
    width: calc(33.3333% - 24px);
  }
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more {
  margin-top: 48px;
  text-align: center;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more .facetwp-facet, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more .facetwp-facet {
  margin: 0;
}
body.woocommerce-shop .woocommerce-wrapper__inner .content .content-area .site-main .load-more button, body.tax-product_cat .woocommerce-wrapper__inner .content .content-area .site-main .load-more button {
  padding: 18px 24px 16px 24px;
  border-radius: 4px;
  background: #BDAFA5;
  cursor: pointer;
  border: none;
}

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