/* SLIDESHOW */

#slideshow0 .swiper-slide {
  min-height: 100vh;
  animation: pan-y 30s linear infinite;
  background-size: cover;
}

@keyframes pan-y {
  0% {
    background-position: top;
    background-size: cover 110%;
  }

  50% {
    background-position: bottom;
    background-size: cover 100%;
  }

  100% {
    background-position: top;
    background-size: cover 110%;
  }
}

#slideshow0 .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #261e14;
  opacity: 0.4;
  z-index: 0;
}

.swiper-slide__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.swiper-slide__text > p {
  font-size: 4.8rem;
  text-align: center;
  text-transform: uppercase;
  font-family: "Goudy Titling";
  font-weight: 600;
  margin-bottom: 10rem;
  color: #d2c6b7;
}

.swiper-slide__text > p > span {
  color: #fff;
  position: relative;
}

.swiper-slide__text > p > span::before {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4.5rem;
}

.swiper-slide__text > p > span::after {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4.5rem;
}

.swiper-slide__text > a {
  padding: 1.3rem 3rem;
  color: #d2c6b7;
  border: 1px solid #d2c6b7;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: color 0.3s, background-color 0.3s;
}

.swiper-slide__text > a:hover {
  background-color: #d2c6b7;
  color: #1c1c1c;
}

/* PRODUCTS BLOCK */
.products__block {
  margin-top: 10rem;
}

.products__block--header {
  text-align: center;
}

.products__block--header > h2 {
  text-align: center;
  width: max-content;
  margin: auto;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Goudy Titling";
  font-size: 4.6rem;
  color: #a78b6f;
  position: relative;
  font-weight: 600;
}

.products__block--header > h2::before {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #a78b6f;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4.5rem;
}

.products__block--header > h2::after {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #a78b6f;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4.5rem;
}

.products__block--list {
  max-width: var(--container-max-width);
  margin: 7.5rem auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.product-block {
  padding: 0 1rem;
}

.product-block__image {
  position: relative;
}

.product-block__image > a > img {
  width: 100%;
  background-color: var(--primary-color);
}

.product-block__info > h3 {
  margin: 2rem 0;
  text-align: center;
}

.product-block__info > h3 > a {
  font-weight: 700;
  color: #1c1c1c;
  font-size: 2.1rem;
}

.product-block__info > p {
  color: #1c1c1c;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.product-block__info > .price {
  color: #a78b6f;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.product-block__actions {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  top: 50%;
  gap: 1rem;
}

.product-block__actions > button {
  outline: none;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  transform: translateY(2rem);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.product-block__actions > button > span {
  border-radius: 50%;
  height: 4.6rem;
  width: 4.6rem;
  background-color: #fff;
  box-shadow: 0 1.5rem 2.5rem #00000014;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: background-color 0.3s;
}

.product-block__actions > button > span > .bx {
  font-size: 2.4rem;
  color: #1c1c1c;
  transition: color 0.3s;
}

.product:hover .product-block__actions > button:nth-child(1) {
  transition-delay: 0s;
}

.product:hover .product-block__actions > button:nth-child(2) {
  transition-delay: 0.2s;
}

.product:hover .product-block__actions > button:nth-child(3) {
  transition-delay: 0.4s;
}

.product:hover .product-block__actions > button {
  transform: translateY(0);
  opacity: 1;
}

.product-block__actions > button:hover > span {
  background-color: #a78b6f;
}

.product-block__actions > button:hover > span > .bx {
  color: #fff;
}

.product-block__image {
  position: relative;
  overflow: hidden;
}

.product-block__image img {
  transition: opacity 0.3s ease-in-out;
}

.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product:hover .hover-image {
  opacity: 1;
}

.product:hover .main-image {
  opacity: 0;
}

.info {
  background-color: var(--primary-color);
  padding: 7.5rem 0;
  margin-top: 10rem;
}

.info__container {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin: auto;
}

.info__header > h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Goudy Titling";
  font-size: 4.6rem;
  color: #1c1c1c;
  width: max-content;
  margin: auto;
  position: relative;
  font-weight: 600;
}

.info__header > h2::before {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #1c1c1c;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4.5rem;
}

.info__header > h2::after {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #1c1c1c;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4.5rem;
}

.info__blocks {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  margin-top: 7.5rem;
}

.info__blocks > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 0 1rem;
}

.info__blocks > div > span {
  display: block;
  font-size: 1.8rem;
  color: #1c1c1c;
  max-width: 25rem;
  text-align: center;
}

/* instagram */
.instagram {
  padding: 7.5rem 0;
}

.instagram__header > h2 {
  text-align: center;
  color: #1c1c1c;
  font-weight: 600;
  font-family: "Goudy Titling";
  font-size: 4.6rem;
  color: #a78b6f;
}

.instagram__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 5rem;
}

.instagram__list > div {
  position: relative;
}

.instagram__list > div > a {
  display: block;
  position: relative;
}

.instagram__list > div > a > img {
  width: 100%;
}

.instagram__list > div > a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(167, 139, 111, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.instagram__list > div > a > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 6.4rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.instagram__list > div > a:hover::after {
  opacity: 1;
}

.instagram__list > div > a:hover > span {
  opacity: 1;
}

.instagram__all {
  margin-top: 5rem;
  text-align: center;
}

.instagram__all > a {
  border: 1px solid #7b6249;
  padding: 1.2rem 3.5rem;
  display: inline-block;
  font-size: 2.1rem;
  transition: color 0.3s, background-color 0.3s;
  background-color: transparent;
  display: flex;
  align-content: center;
  justify-content: center;
  width: max-content;
  margin: auto;
  gap: 0.5rem;
  line-height: 1.6;
  color: #7b6249;
}

.instagram__all > a:hover {
  color: #fff;
  background-color: #a78b6f;
}

.instagram__all > a > .bx {
  font-size: 3.2rem;
}

.motto {
  width: 100%; /* Adjust to the container's width */
  overflow: hidden; /* Hide text overflow */
  position: relative;
  margin-top: 10rem;
}

.motto-text {
  display: flex;
}

.motto-text > span {
  position: relative;
  font-size: 4.8rem;
  text-transform: uppercase;
  color: #a78b6f;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: "Goudy Titling";
  font-weight: 600;
}

.blog {
  margin-top: 10rem;
  background-color: var(--primary-color);
  padding: 10rem 0;
}

.blog__header > h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Goudy Titling";
  font-size: 4.6rem;
  color: #1c1c1c;
  width: max-content;
  margin: auto;
  position: relative;
}

.blog__header > h2::before {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #1c1c1c;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4.5rem;
}

.blog__header > h2::after {
  content: "";
  width: 3.5rem;
  height: 0.2rem;
  background-color: #1c1c1c;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4.5rem;
}

.blog__list {
  margin-top: 5rem;
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  overflow: hidden;
}

.blog__list-mr.blog__list {
  padding: 0;
}

.blog__article > a > img {
  width: 100%;
}

.blog__article > span {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  color: #1c1c1c;
  margin-top: 2rem;
}

.blog__article > h4 {
  margin: 2rem 0;
  text-align: center;
}

.blog__article > hr {
  margin-top: 0;
  background-color: #1c1c1c;
  width: 0;
  padding: 0.05rem 3rem;
}

.blog__article > h4 > a {
  color: #1c1c1c;
  font-size: 2.4rem;
  font-weight: 700;
}

.blog__article > p {
  text-align: center;
  color: #1c1c1c;
  font-size: 1.8rem;
}

/* FOOTER */

.newsletter {
  background-color: #a78b6f;
  padding: 5rem 0;
}

body > .container ~ .newsletter {
  margin-top: 10rem;
}

.newsletter__container {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter__container > div > h5 {
  font-size: 3.6rem;
  font-family: "Goudy Titling";
  font-weight: 600;
  color: #1c1c1c;
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.newsletter__container > div > p {
  font-size: 2.1rem;
  color: #1c1c1c;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.newsletter input {
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  width: 100%;
  max-width: 100%;
  border: none;
  color: #1c1c1c;
  font-size: 2.1rem;
  height: 5rem;
  padding-right: 5rem;
  min-width: 64rem;
}
.newsletter input::placeholder {
  color: #1c1c1c;
}

.newsletter button {
  padding: 1rem;
  background-color: transparent;
  border: none;
  color: #1c1c1c;
  cursor: pointer;
  width: 5rem;
  height: 5rem;
  position: absolute;
  right: 0;
  top: 0;
}
.newsletter button .bx {
  font-size: 2.1rem;
}

.footer {
  padding: 7rem 0 3.5rem;
  background-color: var(--primary-color);
}

.footer__container {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo > img {
  max-height: 15rem;
}

.footer__menu > h5,
.footer__info > h5 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 0;
  color: #1c1c1c;
}

.footer__menu > ul {
  padding-left: 0;
  list-style: none;
}

.footer__menu > ul > li {
  padding: 0.5rem 0;
}

.footer__menu > ul > li > a {
  font-size: 2.1rem;

  color: #1c1c1c;
}

.footer__info > div > div > a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1c1c1c;
  font-size: 2.1rem;
}

.footer__info > div > div:not(:last-child) {
  margin-bottom: 1rem;
}

.footer__info > div > div > a > span {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a78b6f;
  border-radius: 50%;
}

.footer__info > div > div > a > span .bx {
  font-size: 2.4rem;
  color: var(--primary-color);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5rem;
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer__bottom > ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.footer__bottom > p {
  font-size: 2.1rem;
  color: #1c1c1c;
  margin-bottom: 0;
}

.footer__bottom > div > a,
.footer__bottom > div > span {
  font-size: 2.1rem;
  color: #1c1c1c;
  padding: 0 0.5rem;
}

/* cart */
#cart .mini__cart {
  min-width: unset;
  width: 46rem;
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  max-height: unset;
  height: 100vh;
  margin: 0;
  padding: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #f4f4f4;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#cart.open .mini__cart {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mini__cart--header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dedede;
  position: relative;
}

.mini__cart--header > button {
  border: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
}

.mini__cart--header > button {
  width: 4.5rem;
  height: 4.5rem;
}

.mini__cart--header > button .bx {
  font-size: 2.4rem;
  color: #1c1c1c;
}

.mini__cart--header > h2 {
  text-align: center;
  flex: 2;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c1c1c;
}

.mini__cart-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini__cart-empty p {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.mini__cart-products {
  padding: 0 2rem;
}

.mini__cart--product {
  border-bottom: 1px solid #e1e1e1;
  padding: 2rem 0;
  display: flex;
  align-items: flex-start;
}

.mini__cart--product > div > a > img {
  background-color: var(--primary-color);
}

.mini__cart--product .details {
  padding-left: 2rem;
  flex: 2;
}

.mini__cart--product .details a,
.mini__cart--product .details span {
  font-size: 1.8rem;
  color: #1c1c1c;
  display: block;
  line-height: 1.4;
}

.mini__product--remove {
  border: none;
  background-color: transparent;
}

.mini__product--remove .bx {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.mini__cart-products {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  justify-content: flex-start;
  overflow-y: auto;
}

.mini__cart-products > div {
  width: 100%;
}

.mini__cart-overlay {
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
}

#cart.open .mini__cart + .mini__cart-overlay {
  opacity: 1;
  visibility: visible;
}

.mini__cart--checkout {
  background-color: #fff;
}

.mini__cart--checkout-total {
  padding: 1rem 2rem;
}

.mini__cart--checkout-total > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.mini__cart--checkout-total > div > div {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.mini__cart--checkout-actions {
  display: flex;
  align-items: center;
}

.mini__cart--checkout-actions > a {
  width: 50%;
  padding: 2rem;
  color: #fff;
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 400;
  color: #131313;
}

.mini__cart--checkout-actions > a:nth-child(2) {
  background-color: #a78b6f;
}

.mini__cart--checkout-actions > a:nth-child(1) {
  background-color: #c7a98b;

}

body > .container {
  padding-top: 17rem;
  width: 100%;
  max-width: var(--container-max-width);
  padding-left: 1rem;
  padding-right: 1rem;
}

body > .container.blog-page {
  max-width: 102.6rem;
}


body > .container + .newsletter {
  margin-top: 5rem;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  position: relative;
  margin-bottom: 5rem;
}

.breadcrumb > li {
  position: relative;
}

.breadcrumb > li + li::before {
  display: none;
}

.breadcrumb > li > a {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.breadcrumb > li:last-child > a {
  color: #a78b6f;
}

.breadcrumb > li:not(:last-child) {
  padding-right: 3rem;
}

.breadcrumb > li:not(:last-child)::after {
  content: "\ea50";
  font-family: boxicons !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #1c1c1c;
  right: 0.5rem;
}

.product-wishlist {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #a78b6f;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: none;
  transition: background-color 0.3s;
  padding: 1rem 1.6rem;
  margin-left: 1.5rem;
  flex: 2 1 100%;
  line-height: 1.3;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #1c1c1c;
}

.product-wishlist .bx {
  font-size: 2.4rem;
}

.product__info > h1,
#ajax-filter-container > h1 {
  margin-top: 0;
  margin-bottom: 2rem;
  color: #1c1c1c;
  font-size: 3.6rem;
  padding-right: 3.5rem;
  line-height: 1.4;
  font-family: "Goudy Titling";
  font-weight: 600;
  text-transform: uppercase;
}

.product__info > p {
  margin-top: 2rem;
}

.price-old {
  text-decoration: line-through;
  color: #969696;
}

.product__price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product__price span {
  font-size: 2.1rem;
}

.product__price h2 {
  font-size: 2.1rem;
  color: #a78b6f;
  margin: 0;
}

.product--add {
  display: flex;
  margin-top: 2rem;
  flex: 2;
}

.product--add > .qty {
  width: 9rem;
  border: 2px solid #ddd;
  margin-right: 1.5rem;
  position: relative;
  flex: 2 0 9rem;
}

.product--add > .qty > input {
  width: 4.5rem;
  border: none;
  padding: 1rem 0;
  box-shadow: none;
  font-size: 1.8rem;
  color: #1c1c1c;
  text-align: center;
  border-radius: 0;
  height: 100%;
  border: none;
  border-right: 1px solid #ddd;
}

.product--add > .qty > input[type="number"] {
  -moz-appearance: textfield;
}

.product--add > .qty > input::-webkit-inner-spin-button,
.product--add > .qty > input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product--add > .qty > .qty-down {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50%;
  width: 4.2rem;
  border: none;
  box-shadow: none;
  border-top: 1px solid #ddd;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product--add > .qty > .qty-up {
  position: absolute;
  top: 0;
  right: 0;
  height: 50%;
  width: 4.2rem;
  border: none;
  box-shadow: none;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product--add > .qty > .qty-up .bx,
.product--add > .qty > .qty-down .bx {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.btn-primary {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #a78b6f;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: none;
  transition: background-color 0.3s;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #c7a98b;
}

.btn-danger {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #a7302a;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: none;
  transition: background-color 0.3s;
}

.btn-default {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #c7a98b;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: none;
  transition: background-color 0.3s;
}

hr {
  border-color: #e7e7e7;
}

#content > h1 {
  font-size: 3.6rem;
  margin-top: 0;
  margin-bottom: 3rem;
  color: #a78b6f;
  font-family: "Goudy Titling";
  font-weight: 600;
  text-transform: uppercase;
}

#content > p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.product__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-cat {
  position: relative;
}

.product-cat > a {
  display: block;
}

.product-cat > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}

.product-cat > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 1px solid #a78b6f;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s, transform 0.6s;
}

.product-cat:hover > a::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.product-cat:hover > a::after {
  opacity: 1;
  visibility: visible;
}

.product-cat > a > img {
  width: 100%;
}

.product-cat > a > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.6rem;
  color: #fff;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  font-family: "Goudy Titling";
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
  text-transform: uppercase;
  visibility: hidden;
  z-index: 2;
  transition: opacity 0.6s, visibility 0.6s;
}

.product-cat:hover > a > span {
  opacity: 1;
  visibility: visible;
}

.category__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 11.6rem;
}

.category__image + .container {
  padding-top: 5rem;
}

.category__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.category__image > img {
  width: 100%;
}

.category__image h1 {
  max-width: var(--container-max-width);
  padding: var(--container-padding);
  margin: auto;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 4.8rem;
  z-index: 9;
  font-family: "Goudy Titling";
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

body > .blog-page {
  padding-top: 5rem;
}

.blog--image {
  position: relative;
  overflow: hidden;
  margin-top: 11.6rem;
}

.blog--image img {
  width: 100%;
}

h1.mob {
  display: none;
}

.blog--image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.blog--image h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: var(--container-max-width);
  width: 100%;
  text-align: left;
  z-index: 9;
  color: #fff;
  font-family: "Goudy Titling";
  text-transform: uppercase;
  padding: var(--container-padding);
  margin-top: 0;
  margin-bottom: 0;
}

#information-information #content h2 {
  color: #a78b6f;
  font-size: 2.4rem;
}

#information-information #content a {
  color: #a78b6f;
  font-weight: 600;
}

#information-information #content ul {
  padding-left: 2rem;
}

#information-information #content ul li {
  font-size: 1.8rem;
}

#product-category #content p,
#product-manufacturer #content p{
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

#product-category .product-block,
#product-search .product-block,
#product-manufacturer .product-block{
  padding: 0;
}

/* CONTACT */

.contact__body > div:nth-child(1) {
  background-color: var(--primary-color);
  padding: 5rem;
  border-radius: 5rem;
}

.contact__body > div > h2 {
  font-size: 3.2rem;
  color: #1c1c1c;
  margin-bottom: 2rem;
}

.contact__body > div > div + h2 {
  margin-top: 5rem;
}

.contact__body > div > p {
  font-size: 1.8rem;
  color: #1c1c1c;
  margin-bottom: 2rem;
}

.contact__body--blocks {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 102.4rem;
  margin: 5rem auto;
}

.contact__body--blocks > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.contact__body--blocks > div > span > .bx {
  font-size: 3.8rem;
  color: #1c1c1c;
}

.contact__body--blocks > div > p {
  font-size: 2.1rem;
  color: #1c1c1c;
  margin-bottom: 0rem;
}

.contact__body--blocks > div > a,
.contact__body--blocks > div > p > a,
.contact__body--blocks > div > p + p {
  font-size: 1.8rem;
  color: #1c1c1c;
}

.contact__body form {
  max-width: 102.4rem;
  margin: auto;
}

.contact__body form > h2 {
  font-size: 2.8rem;
  color: #1c1c1c;
  margin-bottom: 3rem;
}

.contact__body form input,
.contact__body form textarea {
  box-shadow: none;
  padding: 1.5rem 1rem;
  border: none;
  border-radius: 1rem;
  height: auto;
  font-size: 1.8rem;
}

.contact__body form input[type="submit"] {
  padding: 1.5rem 3rem;
}

/* Targeting the specific form */
.message-form .input-container {
  position: relative;
  margin-bottom: 2.5rem;
}

/* Label initial positioning inside the input field */
.message-form .input-label {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  pointer-events: none;
  color: #1c1c1c;
}

.message-form .message-input:focus + .input-label,
.message-form .message-input.valid + .input-label {
  top: -2rem;
  left: 1rem;
  font-size: 1.2rem;
}

.message-form .message-input:focus {
  border-color: #007bff;
  outline: none;
}

.message-form .form-group {
  position: relative;
}

.message-form .text-danger {
  color: red;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  margin-top: -2rem;
}

/* FILTERS */

#product-category .ajax-filter {
  border: none;
}

#product-category .ajax-filter .af-body .af-container > .af-heading {
  border-top: 0;
  border-left: 2px solid var(--primary-color);
  padding: 1rem;
  margin: 1rem 0;
  min-height: unset;
}

#product-category .ajax-filter .af-body .af-container > .af-heading > span {
  display: none;
}

#product-category .ajax-filter > .title {
  display: none;
}

/* Categories pages */

.subcategories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.subcategories > div > a > img {
  background-color: var(--primary-color);
  margin-bottom: 2rem;
  width: 100%;
}

.subcategories > div > a {
  font-size: 1.6rem;
  color: #1c1c1c;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subcategories + .row {
  margin-top: 3rem;
}

/* newsletter */
/* Overlay */
.newsletter-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Container */
.newsletter-modal {
  background: #fff;
  border-radius: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%) scale(1);
  opacity: 0;

  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.newsletter-modal.show {
  transform: translateY(0%) scale(1);
  opacity: 1;
}

/* Close Button */
.newsletter-modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 3.2rem;
  color: #333;
  cursor: pointer;
}

/* Content Layout */
.newsletter-modal-content {
  display: flex;
  min-height: 63.8rem;
}

.newsletter-modal-image {
  width: 0;
  transition: width 0.3s;
  transition-delay: 1.2s;
}

.newsletter-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsletter-modal.show .newsletter-modal-image {
  width: 42.5rem;
}

.newsletter-modal-text {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-modal-text h2 {
  font-size: 3.2rem;
  color: #1c1c1c;
  margin-bottom: 0rem;
  font-family: "Goudy Titling";
}

.newsletter-modal-text p {
  margin-bottom: 2rem;
  max-width: 56rem;
  line-height: 1.4;
  font-size: 1.8rem;
}

.newsletter-modal-input {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  height: auto;
  padding: 1rem;
  margin-bottom: 2rem;
}

.newsletter-modal-subscribe-btn {
  padding: 1.3rem 2rem;
}

/* search */

.search {
  top: 0;
  position: fixed;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 10000;
  background-color: #fff;
  transition: top 0.6s ease-out;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-out;
}

.search .search-btn {
  position: absolute;
  top: 3rem;
  right: 3rem;
  font-size: 3.6rem;
  color: #1c1c1c;
}

.search.show {
  opacity: 1;
  visibility: visible;
}

.search__container {
  transform: translateY(-100%) scale(1);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  background-color: var(--primary-color);
  padding: 5rem;
}

.search__container.show {
  transform: translateY(0%) scale(1);
  opacity: 1;
  
}

#search {
  margin: auto;
  position: relative;
  max-width: 100.4rem;
  width: 100%;
  padding: 0 1rem;
}

#search input {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #1c1c1c;
  background-color: transparent;
  border-radius: 0;
  width: 100%;
  height: auto;
}

#search input::placeholder,
#search input {
  color: #1c1c1c;
  font-size: 1.8rem;
}

#search .btn-lg {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #1c1c1c;
  padding: 0;
  background-color: transparent;
  font-size: 2.4rem;
  display: flex;
}

.search__container p {
  text-align: center;
  font-size: 3.2rem;
  color: #1c1c1c;
  margin-bottom: 4rem;
}

.filters__row {
  margin-bottom: 2rem;
  background-color: var(--primary-color);
  margin: 3rem 0;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.filters__row .form-group {
  margin: 1rem 0;
}

.filters__row .input-group .input-group-addon {
  border: none;
  height: auto;
  font-size: 1.6rem;
  color: #1c1c1c;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 1rem;
  line-height: 1;
}

.filters__row .input-group-sm > .form-control {
  border: none;
  height: auto;
  font-size: 1.6rem;
  color: #1c1c1c;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 1rem;
  border-bottom: 1px solid #1c1c1c;
}

.filters__row .btn-group button {
  padding: 1rem;
  font-size: 1.6rem;
  background-color: transparent;
  border: none;
  color: #1c1c1c;
  position: relative;
}

.filters__row .btn-group button:not(:last-child):after {
  content: "/";
  position: absolute;
  font-size: 1.6rem;
  color: #1c1c1c;
  right: -0.5rem;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
}

.filters__row .btn-group button.active-filter {
  font-weight: 600;
}

label {
  font-size: 1.4rem;
}

#input-search {
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 100%;
  border: none;
  color: #1c1c1c;
  font-size: 1.8rem;
  height: 5rem;
  box-shadow: none;
  background-color: var(--primary-color);
}

/* events body */

.events__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  margin-top: 10rem;
}

.events__body > div > h2 {
  font-size: 2.8rem;
  color: #a78b6f;
  text-transform: uppercase;
  margin: 5rem auto 2rem auto;
}

.events__body > div > p {
  font-size: 2.1rem;
  color: #1c1c1c;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.events__body > div > a {
  padding: 1.5rem 3rem;
  background-color: #a78b6f;
  color: #fff;
  font-size: 2.1rem;
  display: inline-block;
}

.events__body > div > img {
  width: 100%;
  border-top-right-radius: 10rem;
  border-bottom-left-radius: 10rem;
}

.events__block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10rem;
}

.events__block > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 0 1rem;
}

.events__block > div > h3 {
  margin: 0;
  margin-top: 1rem;
  font-size: 2.4rem;
}

.events__block > div > p {
  font-size: 1.8rem;
  max-width: 42rem;
  text-align: center;
  line-height: 1.4;
}

.events__instagram {
  gap: 2.5rem;
  margin-top: 10rem;
  grid-template-columns: repeat(4, 1fr);
}

.contact__body {
  margin-top: 10rem;
}

#events-form h2 {
  text-align: center;
}

/* product page */

.product__info {
  padding: 0 3rem;
}

.product__content {
  margin-top: 2rem;
}

.product__tab > h2 {
  font-size: 2.1rem;
  padding: 3rem 0rem;
  margin: 0;
  position: relative;
  color: #a78b6f;
  font-weight: 600;
}

.product__tab > div > p {
  font-size: 1.8rem;
  line-height: 1.4;
}

.product__faq > h3 {
  border-top: 1px solid #a78b6f;
}

.product__faq {
  border-bottom: 1px solid #a78b6f;
}

.product__faq > h3.ex + div {
  max-height: 1000rem;
  padding-bottom: 2rem;
}

.product__faq > h3.ex::after {
  content: "\eb8b";
}

.product__faq > h3 {
  color: #1c1c1c;
  margin-top: 0;
  padding: 2rem 0;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  font-size: 2rem;
}

.product__faq > h3::after {
  content: "\ebc0";
  font-family: boxicons;
  font-size: 2rem;
  color: #1c1c1c;
  position: absolute;
  right: 2rem;
}

.product__faq > div {
  max-height: 0;
  overflow: hidden;
}

.product__faq > div li,
.product__faq > div p,
.product__faq > div {
  font-size: 1.8rem;
}

#product > .form-group > label {
  font-size: 1.6rem;
  min-width: 8rem;
  color: #1c1c1c;
  margin-bottom: 1.5rem;
}

#product > .form-group {
  position: relative;
}

#product > .form-group .text-danger {
}

#product > .form-group > div {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

#product-category .filters__row + .row,
#product-manufacturer .filters__row + .row{

  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}


#product > .form-group .checkbox {
  margin: 0;
}

#product > .form-group .checkbox label {
  padding-left: 0;
}

.product-checkbox {
  padding: 1rem 1.8rem;
  font-size: 1.6rem;
  color: #a78b6f;
  border: 1px solid #a78b6f;
  display: block;
  transition: 0.3s;
}

#product > .form-group .checkbox label:hover > input + .product-checkbox,
#product > .form-group .checkbox label > input:checked + .product-checkbox {
  background-color: #a78b6f;
  color: #fff;
}

/* .product__info {
  position: sticky;
  right: 0;
  top: 15rem;
} */

.thumbnails img {
  width: 100%;
  background-color: var(--primary-color);
}

.thumbnails .thumbnail {
  padding: 0;
  border-radius: 0;
  border: none;
}

.thumbnails .slick-dots {
  align-items: center;
  list-style: none;
  gap: 1rem;
  display: flex;
  margin-bottom: 2rem;

  padding-left: 0;
  width: 100%;
  justify-content: center;
}

.thumbnails .slick-dots button {
  font-size: 0;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #a78b6f;
  outline: none;
  background-color: transparent;
}

.thumbnails .slick-dots .slick-active button {
  background-color: #a78b6f;
}

.product__icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  row-gap: 1.5rem;
}

.product__icons > div {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.product__icons > div > svg {
  max-width: 6.4rem;
  fill: #a78b6f;
  height: 6.4rem;
}

.product__icons > div > span {
  font-size: 1.6rem;
  color: #131313;
  margin-top: 1rem;
  display: inline-block;
  text-align: center;
}

.product__act {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.product__share {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.product__share p {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.product__share .bx {
  font-size: 2.4rem;
  color: #a78b6f;
}

.products__related {
  padding: 3rem 0rem;
}

.products__related > .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.products__related > .row::after,
.products__related > .row::before {
  display: none;
}

.products__related > h3 {
  font-size: 2.1rem;
  padding: 3rem 0rem;
  margin: 0;
  position: relative;
  color: #a78b6f;
  font-weight: 600;
}

.products__related .row {
  margin-left: -1rem;
  margin-right: -1rem;
}

.products__related .product {
  padding: 0 1rem;
}

.products__related .product-block {
  padding: 0;
}

.product__thumbnails {
  position: sticky;
  top: 15rem;
  left: 0;
}

@media screen and (max-width: 1024px) {
  .header__logo > a > img {
    max-height: 10rem;
    width: 100%;
  }

  .header__container {
    padding: 4rem 1rem;
  }

  .swiper-slide__text > p {
    font-size: 3.6rem;
    margin-bottom: 5rem;
  }

  .products__block--header > h2,
  .info__header > h2,
  .blog__header > h2,
  .instagram__header > h2 {
    font-size: 3.6rem;
  }

  .products__block--list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }

  .info__blocks {
    flex-wrap: wrap;
    justify-content: center;
    gap: unset;
    row-gap: 5rem;
  }

  .info__blocks > div {
    width: 33.333%;
  }

  .motto-text > span {
    font-size: 3.6rem;
  }

  .instagram__all > a {
    font-size: 1.8rem;
  }

  .newsletter__container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .newsletter__container > div {
    text-align: center;
  }

  .footer__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }

  .footer__container > div {
    width: 33.333%;
  }

  .footer__container > div:nth-child(1) {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
  }

  .footer-logo img {
    max-width: 15rem;
    width: auto;
  }

  .newsletter-modal {
    max-width: 75%;
    margin: auto;
  }

  .newsletter-modal-content {
    min-height: 49.5rem;
  }

  .newsletter-modal-text h2 {
    font-size: 2.4rem;
  }

  .product__categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .events__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
  }

  .events__body > div > h2 {
    margin-top: 3rem;
  }

  .events__block,
  .contact__body,
  .events__instagram {
    margin-top: 5rem;
  }

  .product__tab > h2 {
    padding: 2rem 0;
    font-size: 1.8rem;
  }

  .product__tab > div > p {
    font-size: 1.6rem;
  }

  .product__faq > h3 {
    font-size: 1.7rem;
  }

  .product__faq > div li,
  .product__faq > div p,
  .product__faq > div {
    font-size: 1.6rem;
  }

  .product-block__info > h3 > a {
    font-size: 1.8rem;
  }

  .product-block__info > .price {
    font-size: 1.6rem;
  }

  .product__icons > div > span {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .menu__blocks {
    display: none;
  }

  .search__container.show {
    overflow-y: auto;
  }

  .header__container {
    padding: 0 1rem;
  }

  .header {
    background-color: var(--primary-color);

    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  }

  .header__logo {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
    order: 1;
  }

  .header__logo > a > img,
  header.fixed .header__logo > a > img {
    filter: unset;
    max-height: 6rem;
  }

  .header__container {
    height: 8rem;
  }

  .header__container.expanded {
    height: auto;
  }

  .header__menu {
    position: relative;
    order: 3;
  }

  .header__options {
    order: 2;
    margin-left: auto;
    margin-right: 1rem;
    gap: 1rem;
  }

  .header__options .bx {
    color: #1c1c1c;
    font-size: 3.2rem;
  }

  .menu__btn > span {
    background-color: #1c1c1c;
  }

  .menu {
    top: 8rem;
    height: calc(100vh - 8rem);
  }

  .menu__container {
    padding: 1rem;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
  }

  header.expanded + .menu .menu__links > li {
    transform: unset;
    transition: unset;
    text-align: center;
  }

  .menu__links > li {
    padding: 1rem 0;
  }

  .menu__links > li > a {
    font-size: 2.4rem;
  }

  .swiper-slide__text > p {
    font-size: 2.4rem;
  }

  #common-home {
    padding-top: 8rem;
  }

  #slideshow0 .swiper-slide {
    min-height: calc(100vh - 8rem);
    background-size: cover;
  }

  .swiper-slide__text > a {
    font-size: 1.4rem;
    padding: 1rem 3.5rem;
  }

  .products__block {
    margin-top: 5rem;
  }

  .products__block--list {
    margin-top: 3rem;
    margin-bottom: 0;
  }

  .info {
    margin-top: 3rem;
    padding: 3.5rem 0;
  }

  .products__block--header > h2,
  .info__header > h2,
  .blog__header > h2,
  .instagram__header > h2 {
    font-size: 2.8rem;
  }

  .info__blocks {
    margin-top: 3rem;
  }

  .info__blocks > div {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .info__blocks > div > span {
    font-size: 1.6rem;
    max-width: 20rem;
  }

  .motto,
  .blog {
    margin-top: 5rem;
  }

  .blog {
    padding: 5rem 0;
  }

  .blog {
    overflow: hidden;
  }

  .blog__article > span {
    font-size: 1.6rem;
  }

  .blog__article > p {
    font-size: 1.6rem;
    padding: 0 4rem;
  }

  .blog__article > h4 {
    padding: 0 4rem;
  }

  .blog__article > h4 > a {
    font-size: 2.1rem;
  }

  .instagram {
    padding: 3.5rem 0;
  }

  .instagram__list {
    margin-top: 3rem;
  }

  .newsletter__container > div > h5 {
    font-size: 2.8rem;
  }

  .newsletter input {
    min-width: 100%;
    font-size: 1.8rem;
  }
  .newsletter__container > div > p {
    font-size: 1.8rem;
  }

  .footer {
    padding: 5rem 1.5rem;
  }

  .footer__info > div > div > a,
  .footer__menu > ul > li > a {
    font-size: 1.8rem;
  }

  .footer__info > div > div > a > span {
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer__info > div > div > a > span .bx {
    font-size: 1.8rem;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer__container > div {
    width: 100%;
  }

  .footer__menu > h5,
  .footer__info > h5 {
    width: 100%;
    padding: 1rem;
    font-size: 2.1rem;
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    font-weight: 400;
  }

  .footer__container > div:nth-child(1) {
    margin-bottom: 3.5rem;
  }

  .footer__menu > ul {
    width: 100%;
  }

  .footer__menu > ul > li {
    text-align: center;
  }

  .footer__bottom {
    margin-top: 3.5rem;
    gap: 2rem;
    flex-direction: column-reverse;
  }

  .footer__container > div:nth-child(4) > div {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .footer__info > div > div:not(:last-child) {
    margin-bottom: 0;
  }

  .footer__bottom > div > a,
  .footer__bottom > div > span,
  .footer__bottom > p {
    font-size: 1.8rem;
  }

  .product-block__actions {
    display: none;
  }

  .blog__list {
    position: relative;
    display: block;
  }

  .swiper-pagination-blog {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }

  .swiper-pagination-blog .swiper-pagination-bullet {
    width: 1.4rem;
    height: 1.4rem;
    background-color: #1c1c1c;
  }

  .instagram__list {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
  }

  .instagram__list > div {
    width: 50%;
    padding: 0.5rem;
  }

  .instagram__all {
    margin-top: 3rem;
  }

  #cart > button > span {
    background-color: #1c1c1c;
    color: var(--primary-color);
  }

  .newsletter-modal.show .newsletter-modal-image {
    display: none;
  }

  .newsletter-modal-content {
    background: var(--primary-color);
    min-height: auto;
    padding: 3rem 1rem;
  }

  .newsletter-modal-subscribe-btn {
    font-size: 1.6rem;
    padding: 1rem 2rem;
  }

  .newsletter-modal-text {
    padding: 1rem;
  }

  .languages > form > .dropdown-menu {
    padding: 5rem 0.3rem 0.3rem 0.3rem;
    border-color: #1c1c1c;
    background-color: var(--primary-color);
  }

  .languages > form > button {
    z-index: 10000;
  }

  .search__container {
    padding: 5rem 1rem;
  }

  .search__container p {
    font-size: 2.4rem;
  }

  .search .search-btn {
    top: 1rem;
    right: 1rem;
  }

  #content > h1 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  #content > p {
    font-size: 1.6rem;
  }

  .product-cat > a > span {
    font-size: 2.1rem;
  }

  .product-cat > a::before {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .product-cat > a > span {
    opacity: 1;
    visibility: visible;
  }

  .product-cat > a::after {
    opacity: 1;
    visibility: visible;
  }

  .filters__row {
    border-radius: 1.5rem;
    padding: 1rem 0;
  }

  .category__image {
    margin-top: 8rem;
    max-height: unset;
  }

  .category__image h1 {
    font-size: 3.6rem;
  }

  body > .container .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  body > .container #content {
    padding: 0 1rem;
  }

  body > .container .filters__row {
    margin: 3rem 0;
  }

  .subcategories {
    grid-template-columns: repeat(3, 1fr);
  }

  .events__body > div > h2 {
    font-size: 2.1rem;
  }

  .events__body > div > p {
    font-size: 1.6rem;
  }

  .events__body > div > a {
    font-size: 1.6rem;
    padding: 1rem 3.5rem;
  }

  .events__body > div > img {
    border-top-right-radius: 2rem;
    border-bottom-left-radius: 2rem;
  }

  .events__body {
    gap: 2rem;
    margin-top: 0;
  }

  .events__block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }

  .events__block > div > h3 {
    font-size: 2.1rem;
  }

  .events__instagram {
    gap: unset;
  }

  .contact__body > div:nth-child(1) {
    border-radius: 1.5rem;
  }

  .contact__body form > h2 {
    font-size: 2.1rem;
    font-weight: 600;
  }

  .contact__body > div > h2 {
    font-size: 2.1rem;
    font-weight: 600;
  }

  .contact__body > div > p {
    font-size: 1.6rem;
  }

  .contact__body--blocks > div > a,
  .contact__body--blocks > div > p > a,
  .contact__body--blocks > div > p + p {
    font-size: 1.6rem;
  }

  .contact__body--blocks > div > p {
    font-size: 1.8rem;
    text-align: center;
  }

  .contact__body--blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .contact__body {
    margin-top: 3.5rem;
  }

  .contact__body .buttons {
    margin: 0;
  }

  .contact__body .buttons input {
    width: 100%;
  }

  .product__thumbnails {
    position: relative;
    top: unset;
    padding: 0 1rem;
  }

  .product__info {
    padding: 0 1rem;
  }

  .product__info > h1,
  #ajax-filter-container > h1 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .products__relate,
  .products__block--list {
    padding: 0 0.5rem;
  }

  .products__block--list .product-block {
    padding: 0;
  }

  .products__related .product,
  .products__block--list .product,
  #product-category .product,
  #product-search .product,
  #product-manufacturer .product {
    padding: 0 0.5rem;
  }

  #product-category .filters__row + .row,
  #product-manufacturer .filters__row + .row{
    padding: 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
  }

  .blog--image,
  .category__image {
    margin-top: 8rem;
  }

  .blog--image h1,
  .category__image h1 {
    display: none;
  }

  h1.mob {
    display: block;
    font-size: 2.4rem;
  }

  .blog--image::after,
  .category__image::after {
    display: none;
  }

  .category__image + .container {
    padding-top: 3rem;
  }
}

@media screen and (max-width: 460px) {
  .header__options .bx {
    font-size: 2.4rem;
  }

  .menu__btn > span {
    width: 2.4rem;
    height: 0.3rem;
  }

  .header__logo > a > img,
  header.fixed .header__logo > a > img {
    max-height: 5rem;
    width: auto;
  }

  header.expanded .menu__btn > span:nth-child(1) {
    top: 0.5rem;
  }

  header.expanded .menu__btn > span:nth-child(3) {
    top: -0.9rem;
  }

  .menu__btn > span:not(:last-child) {
    margin-bottom: 0.4rem;
  }

  .products__block--header > h2,
  .info__header > h2,
  .blog__header > h2,
  .instagram__header > h2 {
    font-size: 2.2rem;
    max-width: 19rem;
    margin: auto;
    text-align: center;
  }

  .product-block__info > h3 {
    margin: 1rem 0;
    min-height: 5rem;
  }

  .product-block__info > h3 > a {
    font-size: 1.6rem;
    width: 100%;
    display: block;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-block__info > .price {
    font-size: 1.7rem;
  }

  .info__blocks > div > img {
    max-width: 3.6rem;
    margin: auto;
  }

  .info__blocks > div > span {
    font-size: 1.4rem;
  }

  .instagram__all > a {
    font-size: 1.6rem;
    padding: 1rem 2.5rem;
  }

  .instagram__all > a > .bx {
    font-size: 2.4rem;
  }

  .languages > form > .dropdown-menu {
    padding-top: 3rem;
  }

  .languages > form > .dropdown-menu .language-select img {
    max-width: 2.4rem;
  }

  .footer__container > div:nth-child(4) > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 20rem;
    margin: auto;
    gap: 0.5rem;
  }

  .footer__bottom > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer__bottom > div > span {
    display: none;
  }

  .product__categories {
    grid-template-columns: repeat(1, 1fr);
  }

  .filters__row .input-group .input-group-addon,
  .filters__row .input-group-sm > .form-control,
  .filters__row .btn-group button {
    font-size: 1.4rem;
  }

  .filters__row .form-group {
    margin: 0.5rem 0;
  }

  .subcategories {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__body > div:nth-child(1) {
    padding: 1.5rem;
  }

  .contact__body form input,
  .contact__body form textarea {
    font-size: 1.6rem;
  }

  .contact__body form input[type="submit"] {
    padding: 1.2rem 3rem;
  }

  .product--add {
    flex-direction: column;
    gap: 1rem;
  }

  .product--add > .qty {
    flex: unset;
  }

  .product--add button {
    width: 100%;
  }

  .product-wishlist {
    margin-left: 0;
  }

  .product__icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .product__faq > h3 {
    padding-right: 10rem;
  }

  .product__faq > h3::after {
    top: 50%;
    transform: translateY(-50%);
  }

  .product__faq ul {
    padding-left: 1.5rem;
  }

  body > .container {
    padding-top: 13rem;
  }

  .thumbnails .thumbnail {
    margin-bottom: 1rem;
  }

  #cart .mini__cart {
    width: 100%;
  }

  .mini__cart--checkout-actions {
    flex-direction: column;
    align-items: column;
    justify-content: center;
  }

  .mini__cart--checkout-actions > a {
    width: 100%;
  }

  #cart > button > span {
    width: 1.6rem;
    height: 1.6rem;
    font-size: 1.2rem;
  }

  body > .container#information-information.blog-page {
    padding-top: 3rem;
  }

  .breadcrumb {
    margin-bottom: 3rem;
  }
}

/* checkout */
#container #content .mpt-success p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

#container #content  .mpt-success h1 {
  font-size: 3.2rem;
  color: #a78b6f;
  margin-bottom: 2rem;
}