@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Thin.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Light.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Regular.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Medium.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-SemiBold.woff2") format("woff2"),
    url("/assets/fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Bold.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Black.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins-Italic.woff2") format("woff2"),
    url("/assets/fonts/Poppins-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

.container {
  max-width: 1320px;
  padding: 0px 20px;
  margin: auto;
  position: relative;
  font-family: "Poppins";
}
.align-center {
  text-align: center;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-family: "Poppins";
}
body {
  margin: 0;
  font-family: "Poppins";
  color: #000;
}
.site-main {
  background: linear-gradient(
    180deg,
    rgba(222, 222, 222, 1) 0%,
    rgba(223, 216, 204, 1) 100%
  );
}
h1 {
  font-size: 40px;
  margin: 0;
  font-family: "Poppins";
}
p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Poppins";
}

/*
 *   Header 
 */

header {
  background-color: #f8f8f8e5;
}
header .top-bar .top-bar-left a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}
header .top-bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #e4e4e4;
}
header .top-bar .top-bar-right {
  display: flex;
  gap: 40px;
}
header .top-bar .top-bar-right a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.2s;
}
header .top-bar a:hover {
  color: #ff7606;
}
header .main-header {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .main-header .main-menu a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  margin-right: 40px;
  transition: 0.2s;
}
header .main-header .main-menu a.active {
  color: #ff7606;
}
header .main-header .main-menu a:last-child {
  margin-right: 0px;
}
header .main-header .menu-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}
header .main-header .menu-buttons a {
  text-decoration: none;
}
header .main-header .menu-buttons .menu-cart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
header .main-header .menu-buttons .cart-items {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #000;
}
header .cart-widget-side {
  position: fixed;
  background: #fff;
  width: 416px;
  right: -416px;
  height: 100%;
  bottom: 0;
  z-index: 99999;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.cart-widget-side.mini-cart-open {
  right: 0;
}
.mini-cart-over {
  position: fixed;
  top: 0;
  height: 100%;
  background: rgb(0 0 0 / 0.5);
  z-index: 99998;
  left: 0;
  width: 100%;
}
header .cart-widget-side .heading {
  padding: 30px 24px 20px 24px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  align-items: center;
}
header .cart-widget-side .heading .title {
  font-family: Poppins;
  font-weight: 700;
  font-size: 20px;
}
header .cart-widget-side .close-mini-cart {
  cursor: pointer;
  transition: 0.2s;
}
header .cart-widget-side .close-mini-cart:hover {
  opacity: 0.6;
}
header .cart-widget-side .cart-footer {
  padding: 24px 24px 40px 24px;
  border-top: 1px solid #000;
}
header .cart-widget-side .cart-footer .mini-cart-total {
  display: flex;
  justify-content: space-between;
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
header .cart-widget-side .mini-cart-buttons {
  margin-top: 24px;
}
header .cart-widget-side .mini-cart-buttons .btn {
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ff7606;
  color: #ffffff;
  border-radius: 8px;
  padding: 15px 0;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
  display: block;
  text-decoration: none;
}
header .cart-widget-side .mini-cart-buttons .btn-transparent {
  width: 100%;
  text-align: center;
  margin-top: 16px;
  display: block;
  border: 1px solid #000;
  border-radius: 8px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  padding: 15px 0;
  text-decoration: none;
  transition: 0.2s;
}
header .cart-widget-side .mini-cart-buttons .btn:hover {
  background-color: #ff953d;
}
header .cart-widget-side .mini-cart-buttons .btn-transparent:hover {
  background-color: #000;
  color: #fff;
}
header .cart-widget-side .cart-content {
  display: flex;
  align-content: space-between;
  flex-direction: column;
  overflow: auto;
  padding: 0px 24px;
  height: 100%;
}
header .cart-widget-side .cart_list.product_list {
  list-style: none;
  margin: 0;
  height: 100%;
  padding: 0;
}
header .cart-widget-side li.mini_cart_item:first-child {
  padding-top: 24px;
}
header .cart-widget-side li.mini_cart_item:not(:last-child) {
  border-bottom: 1px solid #000000;
}
header .cart-widget-side li.mini_cart_item {
  position: relative;
  padding: 16px 0px;
  display: flex;
  gap: 17px;
}
header .cart-widget-side li.mini_cart_item .cart-info .cart-item-title {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
}
header .cart-widget-side li.mini_cart_item .cart-info .quantity-remove-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 25px;
}
header
  .cart-widget-side
  li.mini_cart_item
  .cart-info
  .quantity-remove-row
  .remove-cart-item {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #6e6e6e;
  text-decoration: none;
  background-image: url(assets/icons/remove-cart-item-x.svg);
  background-repeat: no-repeat;
  padding-left: 20px;
  background-position: 0px;
  background-size: 10px 10px;
  transition: 0.2s;
}
header
  .cart-widget-side
  li.mini_cart_item
  .cart-info
  .quantity-remove-row
  .remove-cart-item:hover {
  opacity: 0.6;
}
header .cart-widget-side li.mini_cart_item .cart-info .totals-row {
  display: flex;
  flex-direction: column;
}
header
  .cart-widget-side
  li.mini_cart_item
  .cart-info
  .totals-row
  .single-price-row,
header
  .cart-widget-side
  li.mini_cart_item
  .cart-info
  .totals-row
  .total-price-row {
  display: flex;
  justify-content: space-between;
}
header .cart-widget-side li.mini_cart_item .cart-info .totals-row .title {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
header .cart-widget-side li.mini_cart_item .cart-info .totals-row .price {
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
}

.search-box-header {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  background: #f9f9f9;

  height: 100%;
  align-items: center;
  display: none;
  top: 0;
}
.search-box-header .search-close {
  cursor: pointer;
}

.search-box-header .search-close:hover img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(27%) saturate(4760%)
    hue-rotate(355deg) brightness(104%) contrast(106%);
}

.search-box-header form {
  display: flex;
  align-items: center;
  gap: 21px;
}
.search-box-header form input {
  background-color: transparent;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  font-family: Poppins;
}

.search-box-header form input::placeholder {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #6e6e6e;
}
/*
 *  Footer
*/

footer {
  background-color: #000;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2e2d2d;
}
footer .footer-links-header {
  font-family: Poppins;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #ff7606;
}
footer ul.footer-links {
  list-style: none;
  padding: 0;
}
footer ul.footer-links li a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}
footer ul.footer-links li a.active {
  color: #ff7606;
}
footer ul.footer-links li {
  margin-bottom: 12px;
}
footer ul.footer-links li:last-child {
  margin-bottom: 0px;
}
footer ul.footer-links li a img {
  margin-right: 16px;
}
footer .footer-contacts .footer-links .map-li a {
  display: flex;
  max-width: 190px;
}
footer .footer-bottom {
  padding-top: 24px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
}
footer .footer-bottom .bottom-left {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
footer .footer-bottom .bottom-right a {
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
}
footer .footer-bottom .bottom-right a:first-child {
  margin-right: 40px;
}

/* 
 * Prefooter
*/
.pre-footer .top-part {
  background-image: url("assets/images/prefooter-top.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 613px;
  background-color: #c4c4c4;
  background-blend-mode: luminosity;
  background-position: center;
}
.pre-footer .bottom-part {
  background-color: #0f0f0f;
}
.pre-footer .bottom-part .text-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 54px;
  padding-bottom: 85px;
  z-index: 2;
  position: relative;
}
.pre-footer .bottom-part .text-wrapper .first-col {
  max-width: 420px;
  font-family: Poppins;
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
}
.pre-footer .bottom-part .text-wrapper .first-col span {
  color: #ff7606;
}
.pre-footer .bottom-part .text-wrapper .second-col {
  max-width: 524px;
}
.pre-footer .bottom-part .text-wrapper .second-col p {
  color: #fff;
  margin: 0;
}
.pre-footer .bottom-part .bg-wall {
  background-image: url(assets/images/prefooter-wall.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 457px;
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
}

/* 
 * Breadcrumbs
*/

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 40px;
  padding-top: 24px;
  row-gap: 0;
}
.breadcrumbs .breadcrumb {
  font-size: 12px;
  color: #a9a5a2;
  line-height: 22px;
}
.breadcrumbs .breadcrumb a {
  font-family: Poppins;
  font-size: 12px;
  color: #6e6e6e;
  line-height: 22px;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 400;
}
.breadcrumbs .divider {
  width: 24px;
  height: 1px;
  display: block;
  background-image: url(/assets/icons/breadcrumb-line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumbs .breadcrumb-last {
  font-family: Poppins;
  font-size: 12px;
  color: #000;
  line-height: 22px;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 600;
}
.breadcrumbs .breadcrumb a:hover {
  color: #ff7606 !important;
}

/*Quantity select*/
.quantity {
  border: 1px solid #ededed;
  border-radius: 8px;
  display: flex;
  margin-top: auto;
  max-height: 48px;
  padding: 0px 14px;
  align-items: center;
}

.quantity .minus,
.quantity .plus {
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: none;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.quantity .minus:hover,
.quantity .plus:hover {
  opacity: 0.6;
}

.quantity .minus:after {
  content: " ";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/assets/icons/minus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  cursor: pointer;
}
.quantity .plus:after {
  content: " ";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(/assets/icons/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  cursor: pointer;
}

.quantity .qty.text {
  width: 62px;
  outline: none;
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  padding: 14px;
  margin: 0px 14px;
  background: transparent;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}

.quantity .qty.text::-webkit-outer-spin-button,
.quantity .qty.text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity .qty.text[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.quantity .qty.text:focus {
  outline: none !important;
}

/*Quantity select END*/

/* PRODUCT CARD BEGIN*/
.products-card-block {
  border: 1px solid #d0cbc2;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.products-card-block .product-image {
  margin-bottom: 16px;
}

.products-card-block .product-name {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 12px;
}

.products-card-block .product-specs {
  padding: 16px 0px;
  border-top: 1px solid #ededed;
  gap: 40px;
  display: flex;
}
.products-card-block .product-specs .product-spec {
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
}
.products-card-block .product-specs .product-spec:not(:last-child) {
  margin-bottom: 6px;
}
.products-card-block a {
  color: #000000;
  text-decoration: none;
}
.products-card-block .product-price {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}

.products-card-block .product-price ins {
  text-decoration: none;
}

.products-card-block .product-card-shipping {
  font-family: Poppins;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  display: flex;
}

.products-card-block .product-card-shipping span:before {
  width: 5px;
  height: 5px;
  content: "";
  background-color: #09b285;
  display: block;
  border-radius: 50%;
}

.products-card-block .product-qnt-price {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 24px;
  border-top: 1px solid #ededed;
  padding-top: 24px;
  margin-top: auto;
}

.products-card-block .product-qnt-price .product-card-shipping {
  display: flex;
  gap: 13px;
  align-content: center;
  justify-content: center;
}
.products-card-block .product-qnt-price .product-card-shipping span {
  display: flex;
  gap: 4px;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.products-card-block .add-to-cart-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.add-to-cart {
  padding: 16px 46px;
  width: 100%;
  display: flex;
  gap: 13px;
  background-color: #ff7606;
  border-radius: 8px;
  border: none;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  transition: 0.2s;
}

.slick-prev.slick-arrow {
  position: absolute;
  left: -16px;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.slick-next.slick-arrow {
  position: absolute;
  right: -16px;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.products-card-block .product-image a img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: contain;
}

.product-caruosel .slick-track {
  display: flex !important;
}

.product-caruosel .slick-track .slick-slide {
    height: inherit !important;
    display: flex;
}

/* PRODUCT CARD END*/

/* FORM FIELDS */
.cf-form {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cf-form .input-container-full {
  position: relative;
  width: 100%;
}

.cf-form .input-field {
  padding: 20px 16px 10px 16px;
  border-radius: 8px;
  padding-right: 50px;
  width: 100%;
  border: 0;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #fff;
}

.cf-form label {
  position: absolute;
  left: 0;
  top: 0;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #adadad;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  margin-left: 16px;
  cursor: text;
  transition: 0.2s ease-in-out;
}

.cf-form .input-field:focus + label,
.cf-form .input-field:not(:placeholder-shown) + label {
  color: #ff7606;
  font-size: 8px;
  font-weight: 600;
  top: -10px;
  pointer-events: none;
}
.cf-form .input-field::placeholder {
  color: transparent;
}
.cf-form .input-field:focus,
.cf-form .input-field:not(:placeholder-shown) {
  border: 1px solid #ff7606;
}
.cf-form .btn-submit {
  border: none;
  outline: none;
  margin-top: 24px;
  cursor: pointer;
  background-color: #ff7606;
  color: #ffffff;
  border-radius: 8px;
  padding: 15px 0;
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s;
}
.cf-form .btn-submit:hover {
  background-color: #ff953d;
}
.cf-form .input-container-full {
  position: relative;
  width: 100%;
}
.mobile-item {
  display: none;
}
header,
footer {
  z-index: 100 !important;
  position: relative;
}
.images-wrap {
  z-index: 3;
}
.no-scroll {
  overflow: hidden;
}
header .main-header .menu-buttons a:hover img {
  filter: brightness(0) saturate(100%) invert(51%) sepia(27%) saturate(4760%)
    hue-rotate(355deg) brightness(104%) contrast(106%);
}
header .main-header .menu-buttons a:hover span {
  color: #ff7606;
}
header .main-header .main-menu a:hover {
  color: #ff7606;
}
.mini-cart-total strong {
  font-weight: 600;
}
.product-cart-title {
  line-height: 26px !important;
}

.btn.blackborder-btn:hover,
.btn.btn-back:hover {
  background-color: #000;
  color: #fff;
}
.btn.blackborder-btn:hover img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(4395%)
    hue-rotate(269deg) brightness(121%) contrast(100%);
}

button.add-to-cart:hover,
a.home-btn:hover,
.conf-bnts .btn-next:hover,
.main-content-single button.add-to-cart:hover,
.extra-desk-btn:hover,
.cart-totals-wrap .btn-continue:hover,
.first-page .btn-next:hover {
  cursor: pointer;
  background-color: #ff953d;
}

footer ul.footer-links li a:hover,
footer .footer-bottom .bottom-right a:hover,
.single-post-container .title-wrap .btn-back:hover,
.contact-info-row a:hover {
  color: #ff7606;
}

.unit-btn {
  border: 1px solid #6e6e6e;
}
.unit-btn:hover {
  border: 1px solid #ff7606;
}

.blog .load-more-btn:hover {
  background-color: #606060 !important;
}
.discount-container .input-container-full {
  width: 100%;
  position: relative;
}
.discount-container .input-field {
  padding: 20px 16px 10px 16px;
  border-radius: 8px;
  padding-right: 50px;
  width: 100%;
  border: 0;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  background-color: #ffffff;
  border: 1px solid #fff;
}
.checkout .discount-container .input-field {
  background-color: #f3f3f3;
}
.discount-container label {
  position: absolute;
  left: 0;
  top: 0;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  color: #adadad;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  margin-left: 16px;
  cursor: text;
  transition: 0.2s ease-in-out;
}
.discount-container .input-field:focus + label,
.discount-container .input-field:not(:placeholder-shown) + label {
  color: #ff7606;
  font-size: 8px;
  font-weight: 600;
  top: -10px;
  pointer-events: none;
}
.discount-container .input-field::placeholder {
  color: transparent;
}
.discount-container .input-field:focus,
.discount-container .input-field:not(:placeholder-shown) {
  border: 1px solid #ff7606;
}
.account-details-section .order-title .btn-back:hover,
.single-post-container .title-wrap .btn-back:hover {
  color: #ff7606;
  background-image: url(assets/icons/arrow-hover.svg);
}
/* FORM FIELDS  END*/
@media only screen and (max-width: 1400px) {
  .pre-footer .bottom-part .bg-wall {
    background-image: url(assets/images/prefooter-wall.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 457px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
    left: 0;
  }
}
/* Min 1024px BEGIN*/
@media only screen and (max-width: 1024px) {
  .search-box-header {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    background: #f9f9f9;
    height: 100%;
    align-items: center;
    display: none;
    padding: 0px 20px;
    top: 0;
    left: 0;
  }
  .main-nav .active {
    color: #ff7606;
  }
  .menu-buttons .mobile-item img {
    max-height: 18px;
    width: auto;
  }

  header .main-header .menu-buttons .mobile-item {
    text-decoration: none;
    display: flex !important
        ;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
  header .main-header .menu-buttons .mobile-item:hover img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(27%) saturate(4760%)
      hue-rotate(355deg) brightness(104%) contrast(106%);
  }
  .pre-footer .bottom-part .text-wrapper .first-col {
    font-size: 64px;
  }
  .pre-footer .bottom-part .text-wrapper {
    display: flex;
    justify-content: space-between;
    padding-top: 54px;
    padding-bottom: 64px;
    z-index: 2;
    position: relative;
    flex-direction: column;
    gap: 40px;
  }

  footer .footer-top {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2e2d2d;
    flex-direction: column;
  }

  footer .footer-bottom {
    padding-top: 24px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
  }
  footer .bottom-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-contacts .footer-links {
    margin-bottom: 0px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    max-width: 166px;
  }
  .pre-footer .bottom-part .bg-wall {
    background-image: url(assets/images/prefooter-wall.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 135px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
    top: -135px;
    left: 0;
  }
  .pre-footer .top-part {
    background-image: url(assets/images/prefooter-top.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    background-color: #c4c4c4;
    background-blend-mode: luminosity;
    background-position: center;
  }

  .desktop-item {
    display: none !important;
  }
  .mobile-item {
    display: block !important;
  }
  .mobile-menu-block {
    position: fixed;
    width: 100vw;
    background: linear-gradient(180deg, #dedede 0%, #dfd8cc 100%);
    height: calc(100% - 77px);
    z-index: 9999;
    left: 0;
    bottom: 0;
    padding: 24px 0 64px 0;

    /* Slide animation setup */
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    pointer-events: none; /* prevent interaction while hidden */
  }

  .mobile-menu-block.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-icon:before {
    content: " ";
    width: 24px;
    height: 26px;
    display: block;
    background-image: url(/assets/icons/menu-hamburger.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mobile-menu-wrap.open .mobile-menu-icon:before {
    content: " ";
    display: block;
    background-image: url(/assets/icons/menu-close.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .mobile-contact {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    text-decoration: none;
  }

  .mobile-contacts {
    display: flex;
    gap: 40px;
  }

  .mobile-menu-block .main-nav,
  .mobile-menu-block .main-nav .sub-menu {
    list-style: none;
    text-align: center;
    padding: 0;
  }

  .mobile-menu-block .main-nav .sub-menu {
    list-style: none;
    text-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .no-scroll {
    overflow: hidden;
  }

  .main-nav li a {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
  }
  .mobile-menu-bottom-item a {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 16px;
    font-family: Poppins;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
  }
  .mobile-menu-bottom-item a:hover,
  .mobile-menu-block .main-nav li a:hover,
  .main-nav li.active {
    color: #ff7606;
  }
  .mobile-menu-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .mobile-menu-block .submenu-container {
    position: fixed;
    width: 100vw;
    background: linear-gradient(180deg, #dedede 0%, #dfd8cc 100%);
    height: 100%;
    z-index: 9999;
    left: 0;
    bottom: 0;
    padding: 24px 0 64px 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    pointer-events: none;
    opacity: 0;
  }

  .mobile-menu-block .submenu-container.open-sub {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .highlight-text-menu {
    font-family: Poppins;
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #d0cbc2;
    margin: 0;
    margin-bottom: 24px;
  }

  .sub-menu-close {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 16px;
    position: absolute;
    bottom: 80px;
    width: 100%;
    align-items: center;
    align-content: center;
    left: 0;
  }

  header .main-header {
    padding: 16px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 38px;
  }

  header .main-header .menu-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto;
  }
}
/* Min 1024px END*/

/* Min 768px BEGIN*/
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 24px;
    margin: 0;
  }
  .mobile-item {
    display: block !important;
  }
  .pre-footer .bottom-part .text-wrapper .first-col {
    font-size: 64px;
  }
  footer .footer-top {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 24px;
    border-bottom: 1px solid #2e2d2d;
    flex-direction: column;
  }
  footer .footer-bottom {
    padding-top: 24px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
  }
  footer .bottom-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-logo img {
    max-width: 166px;
  }
  .pre-footer .bottom-part .bg-wall {
    background-image: url(assets/images/prefooter-wall.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 135px;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
    top: -135px;
  }
  .pre-footer .top-part {
    background-image: url(assets/images/prefooter-top.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 380px;
    background-color: #c4c4c4;
    background-blend-mode: luminosity;
    background-position: center;
  }
  .pre-footer {
    margin-bottom: -1px;
  }

  .top-bar {
    display: none !important;
  }
  header .cart-widget-side {
    position: fixed;
    background: #fff;
    width: 100%;
    right: -100%;
    height: 100%;
    bottom: 0;
    z-index: 99999;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }

  header .main-header .menu-buttons .cart-items {
    font-size: 14px;
  }

  .checkout-header .logo img {
    max-width: 117px;
  }
  body .login-page-wrapper .block-title {
    font-size: 24px !important;
    line-height: 24px !important;
  }
  .login-page-wrapper .login-wrap .title-wrap-checkout {
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
    border-bottom: 1px solid #000;
  }
}
/* Min 768px END*/

@media only screen and (max-width: 390px) {
  header .main-header {
    gap: 16px;
  }
}
