* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  scroll-behavior: smooth;
}

body {
  background: #f4eeea;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.p-lr {
  padding-left: 60px;
  padding-right: 60px;
}

.title {
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
}

nav {
  width: 100%;
  background: #212c34;
  position: relative;
}
nav .navbar {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
nav .navbar .navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav .navbar .navbar-left .navlink {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  svg{
      width:40px;
      height:40px;
  }
}
nav .navbar .navbar-left .navDropMenu {
  padding: 8px 0;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu {
  z-index: 3;
  position: absolute;
  top: 65px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.12);
  padding: 20px 0;
  display: flex;
  align-items: start;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
  gap: 60px;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category .subMenu-category-title {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  color: #212c34;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category .subMenu-category-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category .subMenu-category-links .subMenu-link {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-transform: uppercase;
  color: #212c34;
}
nav .navbar .navbar-left .navDropMenu:hover .navSubMenu {
  top: 55px;
  visibility: visible;
  opacity: 1;
}
nav .navbar .nav-logo {
  width: 80px;
}
nav .navbar .nav-logo img {
  width: 100%;
}
nav .navbar .navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav .navbar .navbar-right .showSearch {
  width: 20px;
  min-width: 20px;
}
nav .navbar .navbar-right .showSearch svg {
  width: 100%;
}
nav .navbar .navbar-right .nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 16px;
  border-right: 1px solid #fff;
}
nav .navbar .navbar-right .nav-lang .lang-item {
  padding: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #fff;
}
nav .navbar .navbar-right .nav-lang .active {
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}
nav .navbar .navbar-right .navBusket {
  min-width: 20px;
  width: 20px;
  height: 20px;
}
nav .navbar .navbar-right .navBusket svg {
  width: 100%;
  height: 100%;
}
nav .navbar .navbar-right .navbar_login {
  min-width: 25px;
  width: 25px;
  height: 25px;
}
nav .navbar .navbar-right .navbar_login svg {
  width: 100%;
  height: 100%;
}
nav .navbar .navbar-right .hamburger {
  display: none;
}
nav .nav-search-container {
  width: 100%;
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: none;
}
nav .nav-search-container .nav-search {
  display: flex;
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
nav .nav-search-container .nav-search input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #9a7d5f;
}
nav .nav-search-container .nav-search input::-moz-placeholder {
  color: #9a7d5f;
}
nav .nav-search-container .nav-search input::placeholder {
  color: #9a7d5f;
}
nav .nav-search-container .nav-search .navSearchBtn {
  width: 20px;
  min-width: 20px;
}
nav .nav-search-container .nav-search .navSearchBtn svg {
  width: 100%;
}

.home-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 3;
}
.home-navbar .nav-search-container {
  background: transparent;
  box-shadow: none;
}
.home-navbar .nav-search-container .nav-search input {
  color: #fff;
}
.home-navbar .nav-search-container .nav-search input::-moz-placeholder {
  color: #fff;
}
.home-navbar .nav-search-container .nav-search input::placeholder {
  color: #fff;
}
.home-navbar .nav-search-container .nav-search .navSearchBtn svg path, .home-navbar .nav-search-container .nav-search .navSearchBtn svg circle {
  stroke: #fff;
}

.changed {
  background: #212c34;
  transition: all 0.4s ease-in-out;
}
.changed .nav-lang {
  display: flex;
  align-items: center;
  gap: 12px;
}
.changed .nav-lang .lang-item {
  background: transparent !important;
}
.changed .nav-lang .active {
  -webkit-backdrop-filter: blur(0) !important;
          backdrop-filter: blur(0) !important;
  background: #fff !important;
  color: #000 !important;
  transition: all 0.4s ease-in-out;
}
.changed .nav-search-container {
  background: #fff;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease-in-out;
}
.changed .nav-search-container .nav-search input {
  color: #9a7d5f;
  transition: all 0.4s ease-in-out;
}
.changed .nav-search-container .nav-search input::-moz-placeholder {
  color: #9a7d5f;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.changed .nav-search-container .nav-search input::placeholder {
  color: #9a7d5f;
  transition: all 0.4s ease-in-out;
}
.changed .nav-search-container .nav-search .navSearchBtn svg path, .changed .nav-search-container .nav-search .navSearchBtn svg circle {
  stroke: #9a7d5f;
  transition: all 0.4s ease-in-out;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #212c34;
  padding: 40px 20px;
  transition: 0.4s ease-in-out;
  display: none;
  right: -100%;
}
.mobile-menu .mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.mobile-menu .mobile-menu-top .mobile-logo {
  width: 80px;
}
.mobile-menu .mobile-menu-top .mobile-logo img {
  width: 100%;
}
.mobile-menu .mobile-menu-top .closeMenu {
  width: 30px;
  height: 30px;
}
.mobile-menu .mobile-menu-top .closeMenu svg {
  width: 100%;
  height: 100%;
}
.mobile-menu .mobile-menu-head {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mobile-menu .mobile-menu-head .mobileBusket, .mobile-menu .mobile-menu-head .mobile_login {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #fff;
}
.mobile-menu .mobile-menu-head .mobileBusket svg, .mobile-menu .mobile-menu-head .mobile_login svg {
  width: 18px;
  height: 18px;
}
.mobile-menu .mobile-menu-head .mobile-nav-lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.mobile-menu .mobile-menu-head .mobile-nav-lang .lang-item {
  padding: 6px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #fff;
}
.mobile-menu .mobile-menu-head .mobile-nav-lang .active {
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
}
.mobile-menu .mobile-links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 30px;
}
.mobile-menu .mobile-links .mobile-link {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
}

.home-hero {
  width: 100%;
  position: relative;
  height: 100vh;
}
.home-hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
}
.home-hero .home-hero-content {
  bottom: 300px !important;
  position: absolute;
  max-width: 1440px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  display: flex;
  align-items: start;
  justify-content: start;
}
.home-hero .home-hero-content .hero-content-box {
  max-width: 600px;
  padding: 20px;
  /*border: 1px solid rgba(255, 255, 255, 0.2);*/
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.home-hero .home-hero-content .hero-content-box h1 {
  font-size: 32px;
  line-height: 40px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
}
.home-hero .home-hero-content .hero-content-box p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 2px;
}
.home-hero .home-hero-content .hero-content-box .heroDiscoverLink {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #fff;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.home-hero .home-hero-content .hero-content-box .heroDiscoverLink:hover {
  background: #9a7d5f;
  border-color: #63513f;
}

.home-about {
  margin-top: 60px;
}
.home-about .home-about-container {
  max-width: 1168px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.home-about .home-about-container .home-about-img {
  max-width: 348px;
  width: 100%;
}
.home-about .home-about-container .home-about-img img {
  width: 100%;
}
.home-about .home-about-container .home-about-content {
  max-width: 519px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.home-about .home-about-container .home-about-content .title {
  color: #9a7d5f;
}
.home-about .home-about-container .home-about-content .home-about-texts {
  align-items: start;
  gap: 4px;
}
.home-about .home-about-container .home-about-content .home-about-texts p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #9a7d5f;
}
.home-about .home-about-container .home-about-content .home-about-more {
  margin-top: 16px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.home-about .home-about-container .home-about-content .home-about-more:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.home-about .home-about-container .home-about-content .home-about-more:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}

.homeCategories {
  margin-top: 80px;
  padding: 100px 0;
  background: #EEEAEA;
}
.homeCategories .homeCategories-top {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.homeCategories .homeCategories-top .title {
  width: 100%;
  color: #9a7d5f;
}
.homeCategories .homeCategories-main {
  width: 100%;
  max-width: 1440px;
  margin: 48px auto 0;
  position: relative;
}
.homeCategories .homeCategories-main .homeCategories-slides {
  width: 100%;
  position: initial;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart {
  width: 343px;
  height: 460px;
  position: relative;
  overflow: hidden;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
  transition: 0.4s ease-in-out;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 12px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -50px;
  opacity: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  transition: 0.4s ease-in-out;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #fff;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart:hover img {
  transform: scale(1.05);
}
.homeCategories .homeCategories-main .homeCategories-slides .home-category-cart:hover .cart-body {
  bottom: 0;
  opacity: 1;
}
.homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
  border-radius: 100px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9a7d5f;
}
.homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next::after, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev::after {
  display: none;
}
.homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next svg, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev svg {
  width: 24px;
  min-width: 24px;
}
.homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next {
  right: 40px;
}
.homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
  left: 40px;
}

.homeGallery {
  margin: 100px auto 0;
  max-width: 1440px;
  width: 100%;
}
.homeGallery .homeGallery-items {
  width: 100%;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px;
}
.homeGallery .homeGallery-items .homeGallery-item {
  position: relative;
  display: block;
  width: 32%;
  overflow: hidden;
}
.homeGallery .homeGallery-items .homeGallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
  transition: 0.4s ease-in-out;
}
.homeGallery .homeGallery-items .homeGallery-item:hover img {
  transform: scale(1.03);
}
.homeGallery .homeGallery-items .homeGallery-item .borderDecoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  padding: 20px;
}
.homeGallery .homeGallery-items .homeGallery-item .borderDecoration span {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #FFFFFF;
}
.homeGallery .homeGallery-items .homeGallery-item:nth-child(odd) {
  height: 391px;
}
.homeGallery .homeGallery-items .homeGallery-item:nth-child(even) {
  height: 537px;
}
.homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+4), .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+6) {
  margin-top: -146px;
}

.product-cart {
  height: 100%;
  position: relative;
  background: transparent;
}
.product-cart .cart-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-cart .cart-img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-cart .cart-tags {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.product-cart .cart-tags .newTag {
  padding: 8px 16px;
  background: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #000;
}
.product-cart .cart-tags .discountTag {
  padding: 8px 16px;
  background: rgba(245, 52, 113, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.product-cart .cart-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.product-cart .cart-body .pro-name {
    font-family: "Bacasime Antique", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.product-cart .cart-body .cart-prices {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-cart .cart-body .cart-prices .normal-price {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  color: #9a7d5f;
}
.product-cart .cart-body .cart-prices .prev-price {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: line-through;
}

.homeProducts-container {
  margin-top: 100px;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #EEEAEA;
}
.homeProducts-container .homeProducts-main {
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
  padding-right: 22px !important;
  display: flex;
  align-items: start;
  gap: 48px;
  position: relative;
}
.homeProducts-container .homeProducts-main .homeProducts-title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  max-width: 298px;
  width: 100%;
}
.homeProducts-container .homeProducts-main .homeProducts-title .title {
  color: #9a7d5f;
  max-width: 260px;
}
.homeProducts-container .homeProducts-main .homeProducts-title .more-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid #9a7d5f;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  transition: 0.4s ease-in-out;
}
.homeProducts-container .homeProducts-main .homeProducts-title .more-link:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.homeProducts-container .homeProducts-main .homeProducts-title .more-link:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}
.homeProducts-container .homeProducts-main .products-slide {
  width: 100%;
  position: initial;
}
.homeProducts-container .homeProducts-main .products-slide .product-cart {
  width: 303px;
}
.homeProducts-container .homeProducts-main .products-slide .product-cart .cart-img {
  height: 380px;
}
.homeProducts-container .homeProducts-main .products-slide .swiper-button-next, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
  border-radius: 100px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9a7d5f;
}
.homeProducts-container .homeProducts-main .products-slide .swiper-button-next::after, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev::after {
  display: none;
}
.homeProducts-container .homeProducts-main .products-slide .swiper-button-next svg, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev svg {
  width: 24px;
  min-width: 24px;
}
.homeProducts-container .homeProducts-main .products-slide .swiper-button-next {
  right: 0;
}
.homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
  left: 384px;
}

.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 100px auto;
  display: flex;
  align-items: start;
  gap: 100px;
  justify-content: space-between;
}
.contact-container .contact-left {
  max-width: 603px;
  width: 100%;
}
.contact-container .contact-left .title {
  color: #9a7d5f;
}
.contact-container .contact-left .contact-items {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.contact-container .contact-left .contact-items .contact-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.contact-container .contact-left .contact-items .contact-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.contact-container .contact-left .contact-items .contact-item .contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9a7d5f;
}
.contact-container .contact-left .contact-items .contact-item .contact-link img {
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.contact-container .contact-left .contact-items .contact-item .socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-container .contact-left .contact-items .contact-item .socials .social-link {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 100px;
  border: 1px solid #63513f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-container .contact-left .contact-items .contact-item .socials .social-link img {
  max-width: 100%;
  max-height: 16px;
}
.contact-container .contact-left .contact-items .line {
  width: 1px;
  height: 66px;
  border-right: 1px solid #D9D9D9;
}
.contact-container .contact-left form {
  margin-top: 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.contact-container .contact-left form input, .contact-container .contact-left form textarea {
  width: 100%;
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.contact-container .contact-left form input::-moz-placeholder, .contact-container .contact-left form textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.contact-container .contact-left form input::placeholder, .contact-container .contact-left form textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.contact-container .contact-left form textarea {
  resize: none;
  height: 100px;
}
.contact-container .contact-left form .form-item {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-container .contact-left form .send_contact {
  margin-top: 16px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.contact-container .contact-left form .send_contact:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.contact-container .contact-left form .send_contact:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}
.contact-container .contact-img {
  max-width: 410px;
  width: 100%;
}
.contact-container .contact-img img {
  width: 100%;
}

.contact-map {
  margin-top: 100px;
  width: 100%;
  height: 500px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
}

.partners-slide-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
.partners-slide-container .title {
  color: #9a7d5f;
  text-align: center;
}
.partners-slide-container .partners-slide {
  margin-top: 60px;
  width: 100%;
}
.partners-slide-container .partners-slide .partner-item {
  width: 180px;
  height: 112px;
  padding: 15px 20px;
  background: #f7f7f7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-slide-container .partners-slide .partner-item img {
  max-width: 140px;
}

footer {
  background: transparent;
    max-width: 1440px;
  margin: 60px auto 0;
  width: 100%;
}
footer .footer-container {
    width: 100%;
  padding-top: 60px;
  border-top:1px solid rgba(0,0,0,.12);
}
footer .footer-container .footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
footer .footer-container .footer-links .footer-link {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #000;
  letter-spacing: 3px;
  text-transform: uppercase;
}
footer .footer-container .footer-center {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  width: 100%;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
footer .footer-container .footer-center .footer-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer .footer-container .footer-center .footer-contacts .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #000;
}
footer .footer-container .footer-center .footer-contacts .footer-contact-item img {
  width: 20px;
  min-width: 20px;
  height: 20px;
  filter:brightness(0);
}
footer .footer-container .footer-center .footer-socials {
  display: flex;
  gap: 24px;
}
footer .footer-container .footer-center .footer-socials .footer-social-link {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  padding: 7px;
}
footer .footer-container .footer-center .footer-socials .footer-social-link img {
  height: 17px;
  max-width: 100%;
  filter:brightness(0)
}
footer .footer-container .footer-copyright {
  padding: 28px 0;
  width: 100%;
}
footer .footer-container .footer-copyright p {
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  text-align: center;
  color: #000;
}

.page-direction {
  max-width: 1440px;
  width: 100%;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-direction a {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #63513f;
  text-transform: uppercase;
  text-wrap: nowrap;
  white-space: nowrap;
}
.page-direction svg {
  width: 18px;
  min-width: 18px;
}
.page-direction .current-page {
  color: #9a7d5f;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.products-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 100px;
}
.products-container .title {
  letter-spacing: 2px;
  color: #9a7d5f;
}
.products-container .filterOpenBtn {
  margin-top: 48px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.products-container .filterOpenBtn svg {
  width: 18px;
}
.products-container .filterOpenBtn:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.products-container .filterOpenBtn:hover svg path {
  fill: #fff;
  transition: 0.4s ease-in-out;
}
.products-container .all-products {
  margin-top: 40px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.products-container .all-products .product-cart {
  width: auto;
}
.products-container .all-products .product-cart .cart-img {
  height: 380px;
}
.products-container .all-products-more {
  width: 100%;
  text-align: center;
  margin-top: 48px;
  padding: 20px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #9a7d5f;
  display: block;
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.products-container .all-products-more:hover {
  border-top: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  color: #63513f;
}

.filter-container {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: start;
  justify-self: start;
  transition: 0.4s ease-in-out;
}
.filter-container .filter {
  width: 400px;
  background: #fff;
  height: 100%;
  padding: 40px 20px;
  height: 100%;
}
.filter-container .filter .filter-top {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.filter-container .filter .filter-top h2 {
  color: #9a7d5f;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.filter-container .filter .filter-top .closeFilter {
  width: 28px;
  height: 28px;
}
.filter-container .filter .filter-top .closeFilter svg {
  width: 100%;
  height: 100%;
}
.filter-container .filter .filter-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 28px;
}
.filter-container .filter .filter-form .filter-items {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.filter-container .filter .filter-form .filter-items .filter-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-item-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #9a7d5f;
  text-transform: uppercase;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-item-list {
  display: none;
  flex-direction: column;
  align-items: start;
  padding-left: 20px;
  gap: 10px;
  width: 100%;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item input {
  width: 16px;
  height: 16px;
  accent-color: #9a7d5f;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #9a7d5f;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-price {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item input {
  width: 100%;
  border: 1px solid #9a7d5f;
  outline: none;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #63513f;
}
.filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  color: #9a7d5f;
}
.filter-container .filter .filter-form .filter-items .active_filter .filter-item-title svg {
  transform: rotate(180deg);
}
.filter-container .filter .filter-form .filter-items .active_filter .filter-item-list {
  display: flex;
}
.filter-container .filter .filter-form .filter-items .active_filter .filter-price {
  display: grid;
}
.filter-container .filter .filter-form .submitProductFilter {
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
.filter-container .filter .filter-form .submitProductFilter:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.filter-container .filter .filter-form .submitProductFilter:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}

.about-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 100px;
  display: flex;
  align-items: start;
  gap: 40px;
  justify-content: space-between;
}
.about-container .about-content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}
.about-container .about-content .title {
  color: #9a7d5f;
  text-transform: uppercase;
}
.about-container .about-content .about-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  letter-spacing: 2px;
}
.about-container .about-content .about-texts p {
  font-size: 14px;
  line-height: 20px;
  color: #9a7d5f;
  font-weight: 400;
  letter-spacing: 3px;
}
.about-container .about-img {
  max-width: 650px;
  width: 100%;
}
.about-container .about-img img {
  max-width: 100%;
}

.product-detail-container {
  margin: 60px auto 100px;
  max-width: 1440px;
  width: 100%;
}
.product-detail-container .product-detail-area {
  display: flex;
  align-items: start;
  gap: 36px;
  width: 100%;
}
.product-detail-container .product-detail-area .product-detail-images {
  max-width: 646px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 20px;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item {
  display: flex;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide {
  width: 100%;
  height: 510px;
  border: 1px solid #9a7d5f;
  margin: 0;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide .mainImg-item {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide .mainImg-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide {
  min-width: 80px;
  width: 80px;
  height: 510px;
  margin: 0;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide .otherImg-item {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #9a7d5f;
  cursor: pointer;
}
.product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide .otherImg-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-container .product-detail-area .product-detail-main {
  max-width: 538px;
}
.product-detail-container .product-detail-area .product-detail-main .detail-tags {
  display: flex;
  align-items: start;
  gap: 6px;
}
.product-detail-container .product-detail-area .product-detail-main .detail-tags .newTag {
  padding: 8px 16px;
  background: #9a7d5f;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.product-detail-container .product-detail-area .product-detail-main .detail-tags .discountTag {
  padding: 8px 16px;
  background: rgba(245, 52, 113, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #fff;
}
.product-detail-container .product-detail-area .product-detail-main h1 {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  color: #9a7d5f;
}
.product-detail-container .product-detail-area .product-detail-main .product-code {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}
.product-detail-container .product-detail-area .product-detail-main .product-code p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.product-detail-container .product-detail-area .product-detail-main .product-code span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.product-detail-container .product-detail-area .product-detail-main .productColors {
  margin-top: 20px;
}
.product-detail-container .product-detail-area .product-detail-main .productColors p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
}
.product-detail-container .product-detail-area .product-detail-main .productColors p span {
  color: #9a7d5f;
  font-weight: 500;
}
.product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .colorBtn {
  width: 16px;
  height: 16px;
  border-radius: 50px;
  border: none;
  outline: none;
}
.product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .checkedColor {
  position: relative;
}
.product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .checkedColor::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid #000;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .sizeTitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
  text-transform: uppercase;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .sizeTitle span {
  color: #9a7d5f;
  font-weight: 500;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items .size-item {
  width: auto;
  height: 32px;
  background: #fff;
  border: 1px solid #E4E7E9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3px 13px;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items .size-item p {
  font-size: 12px;
  line-height: 16px;
  color: #63513f;
  font-weight: 500;
}
.product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items .size-item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
}
.product-detail-container .product-detail-area .product-detail-main .short-desc {
  margin-top: 12px;
}
.product-detail-container .product-detail-area .product-detail-main .short-desc p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
}
.product-detail-container .product-detail-area .product-detail-main .detail-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.product-detail-container .product-detail-area .product-detail-main .detail-prices .prev-price {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: line-through;
}
.product-detail-container .product-detail-area .product-detail-main .detail-prices .current-price {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  color: #9a7d5f;
}
.product-detail-container .product-detail-area .product-detail-main .addBusket {
  margin-top: 28px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.product-detail-container .product-detail-area .product-detail-main .addBusket:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.product-detail-container .product-detail-area .product-detail-main .addBusket:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}
.product-detail-container .detail-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
  margin-top: 60px;
}
.product-detail-container .detail-main .detail-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #63513f;
  text-align: start;
}
.product-detail-container .detail-main .detail-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
  width: 100%;
  transition: 0.4s ease-in-out;
}
.product-detail-container .detail-main .detail-texts p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
}

.busket-container {
  max-width: 1440px;
  margin: 60px auto 100px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.busket-container .busket-carts {
  max-width: 770px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.busket-container .busket-carts .busket-cart {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #F2F2F2;
}
.busket-container .busket-carts .busket-cart .busket-cart-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main {
  width: 100%;
  display: flex;
  align-items: start;
  gap: 16px;
  max-width: 540px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main .cart-img {
  width: 100px;
  height: 120px;
  min-width: 100px;
  border: 1px solid #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main .cart-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main h2 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .current-Price {
  display: flex;
  align-items: end;
  gap: 2px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .current-Price p {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  color: #9a7d5f;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .prev-Price {
  display: flex;
  align-items: end;
  gap: 6px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .prev-Price p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #74767C;
  text-decoration: line-through;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .removeBusketPro {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #B7B7B7;
  border-bottom: 1px solid #B7B7B7;
  width: -moz-max-content;
  width: max-content;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 20px;
  border: 1px solid #E4E7E9;
  background: #fff;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .decrease-btn, .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .increase-btn {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .decrease-btn svg, .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .increase-btn svg {
  width: 100%;
  height: 100%;
}
.busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .counter {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #475156;
}
.busket-container .busket-checkout-container {
  max-width: 424px;
  width: 100%;
}
.busket-container .busket-checkout-container .busket-checkout-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 20px 24px;
  border: 1px solid #E4E7E9;
  width: 100%;
}
.busket-container .busket-checkout-container .busket-checkout-box h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #63513f;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items {
  padding: 20px 0 16px;
  border-bottom: 1px solid #E4E7E9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items .checkout-box-item {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items .checkout-box-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #63513f;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items .checkout-box-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #9a7d5f;
}
.busket-container .busket-checkout-container .busket-checkout-box .totalprice {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.busket-container .busket-checkout-container .busket-checkout-box .totalprice p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #63513f;
}
.busket-container .busket-checkout-container .busket-checkout-box .totalprice span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #9a7d5f;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout_box_btn {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: 0.4s ease-in-out;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout_box_btn:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.busket-container .busket-checkout-container .busket-checkout-box .checkout_box_btn:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}

.checkout-container {
  max-width: 1440px;
  margin: 60px auto 100px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}
.checkout-container .checkout-form {
  max-width: 728px;
  width: 100%;
}
.checkout-container .checkout-form .deliveryDetails {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.checkout-container .checkout-form .deliveryDetails h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  color: #63513f;
}
.checkout-container .checkout-form .deliveryDetails .address-item {
  border: 1px solid #E4E7E9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 14px;
}
.checkout-container .checkout-form .deliveryDetails .address-item .address-fullName {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.checkout-container .checkout-form .deliveryDetails .address-item p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.checkout-container .checkout-form .deliveryDetails .form-checkout {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  width: 100%;
}
.checkout-container .checkout-form .deliveryDetails .form-checkout .form-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  width: 100%;
}
.checkout-container .checkout-form .deliveryDetails .form-checkout .form-item label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.checkout-container .checkout-form .deliveryDetails .form-checkout .form-item input {
  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #63513f;
}
.checkout-container .checkout-form .deliveryDetails .form-checkout .form-item input::-moz-placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.checkout-container .checkout-form .deliveryDetails .form-checkout .form-item input::placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.checkout-container .checkout-form .additional-information {
  margin-top: 40px;
  width: 100%;
}
.checkout-container .checkout-form .additional-information h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-transform: uppercase;
  color: #63513f;
}
.checkout-container .checkout-form .additional-information .additional-information-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  margin-top: 24px;
}
.checkout-container .checkout-form .additional-information .additional-information-box label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
}
.checkout-container .checkout-form .additional-information .additional-information-box textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #E4E7E9;
  resize: none;
  height: 124px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #9a7d5f;
}
.checkout-container .checkout-form .additional-information .additional-information-box textarea::-moz-placeholder {
  color: #9a7d5f;
}
.checkout-container .checkout-form .additional-information .additional-information-box textarea::placeholder {
  color: #9a7d5f;
}
.checkout-container .order-summary {
  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  padding: 20px 24px;
  min-width: 424px;
  width: 424px;
}
.checkout-container .order-summary h2 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #212c34;
}
.checkout-container .order-summary .order-summary-boxes {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E7E9;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border: 1px solid #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  max-width: 260px;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body .cart_price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5F6C72;
}
.checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body .cart_price p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #DD0506;
}
.checkout-container .order-summary .checkout-box-items {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E7E9;
}
.checkout-container .order-summary .checkout-box-items .checkout-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.checkout-container .order-summary .checkout-box-items .checkout-box-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #63513f;
}
.checkout-container .order-summary .checkout-box-items .checkout-box-item span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
}
.checkout-container .order-summary .totalprice {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.checkout-container .order-summary .totalprice p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #63513f;
}
.checkout-container .order-summary .totalprice span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  color: #9a7d5f;
}
.checkout-container .order-summary .accept-terms {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.checkout-container .order-summary .accept-terms input {
  width: 16px;
  height: 16px;
  accent-color: #9a7d5f;
}
.checkout-container .order-summary .accept-terms a {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #212c34;
  border-bottom: 1px solid #212c34;
}
.checkout-container .order-summary .order_box_btn {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
}
.checkout-container .order-summary .order_box_btn:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.checkout-container .order-summary .order_box_btn:hover svg path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}

.user-dashboard {
  margin: 60px auto 100px;
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 24px;
}
.user-dashboard .user-side-bar {
  display: flex;
  flex-direction: column;
  align-items: start;
  min-width: 230px;
  width: 230px;
  gap: 20px;
}
.user-dashboard .user-side-bar .sidebar-link {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #77878F;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .user-side-bar .sidebar-link svg {
  min-width: 20px;
  width: 20px;
}
.user-dashboard .user-side-bar .active_sidebar {
  color: #9a7d5f;
  font-weight: 500;
  border-right: 1px solid #9a7d5f;
}
.user-dashboard .user-side-bar .active_sidebar svg path {
  stroke: #9a7d5f;
}
.user-dashboard .user-side-bar .exit_profile_btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #77878F;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .user-side-bar .exit_profile_btn svg {
  min-width: 20px;
  width: 20px;
}
.user-dashboard .user_direction_box {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.user-dashboard .user_direction_box .user_current_position {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #9a7d5f;
}
.user-dashboard .user_direction_box .user_current_position p {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #9a7d5f;
}
.user-dashboard .user_direction_box .user_current_position p svg {
  min-width: 18px;
  height: 18px;
  width: 18px;
  transform: rotate(0deg) !important;
}
.user-dashboard .user_direction_box .user_current_position svg {
  transform: rotate(-90deg);
}
.user-dashboard .user_direction_box .user-profile-links {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  width: 100%;
}
.user-dashboard .user_direction_box .user-profile-links .sidebar-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: 100%;
  padding: 0 16px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #77878F;
  border-bottom: 1px solid #B8B1B3;
}
.user-dashboard .user_direction_box .user-profile-links .sidebar-link svg {
  min-width: 18px;
  height: 18px;
  width: 18px;
}
.user-dashboard .user_direction_box .user-profile-links .exit_profile_btn {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  width: 100%;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #77878F;
}
.user-dashboard .user_direction_box .user-profile-links .exit_profile_btn svg {
  min-width: 18px;
  height: 18px;
  width: 18px;
}
.user-dashboard .dashboard-main {
  width: 100%;
}
.user-dashboard .dashboard-main .profile-setup {
  width: 100%;
  max-width: 808px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}
.user-dashboard .dashboard-main .profile-setup h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .dashboard-main .profile-setup form {
  width: 100%;
}
.user-dashboard .dashboard-main .profile-setup form .form-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 18px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  width: 100%;
}
.user-dashboard .dashboard-main .profile-setup form .form-items .form-line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.user-dashboard .dashboard-main .profile-setup form .form-items .form-line label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .dashboard-main .profile-setup form .form-items .form-line input {
  background: #FFFFFF;
  border: 1px solid #9a7d5f;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #63513f;
}
.user-dashboard .dashboard-main .profile-setup form .form-items .form-line input::-moz-placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.user-dashboard .dashboard-main .profile-setup form .form-items .form-line input::placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.user-dashboard .dashboard-main .profile-setup form .save_info {
  margin-top: 32px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.user-dashboard .dashboard-main .profile-setup form .save_info:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.user-dashboard .dashboard-main .profile-setup-password {
  margin-top: 46px;
  width: 100%;
  max-width: 808px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 28px;
}
.user-dashboard .dashboard-main .profile-setup-password h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .dashboard-main .profile-setup-password form {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 18px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  width: 100%;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line {
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password {
  display: flex;
  align-items: center;
  background: #fff;
  width: 100%;
  gap: 8px;
  border: 1px solid #9a7d5f;
  padding: 10px 14px;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password input {
  padding: 0;
  border-radius: 0;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: #63513f;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password input::-moz-placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password input::placeholder {
  color: rgba(154, 126, 95, 0.4039215686);
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password .show_password_btn {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password .show_password_btn .show-eye {
  display: none;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password .show_password_btn .hidden-eye {
  display: block;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password .active .show-eye {
  display: block;
}
.user-dashboard .dashboard-main .profile-setup-password form .form-line .password .active .hidden-eye {
  display: none;
}
.user-dashboard .dashboard-main .profile-setup-password form .change_password {
  margin-top: 16px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: 0.4s ease-in-out;
  width: -moz-max-content;
  width: max-content;
}
.user-dashboard .dashboard-main .profile-setup-password form .change_password:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}
.user-dashboard .show_userLink_box .user_current_position svg {
  transform: rotate(0deg);
}
.user-dashboard .show_userLink_box .user-profile-links {
  display: flex;
}
.user-dashboard .order-history-container {
  width: 100%;
}
.user-dashboard .order-history-container h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.user-dashboard .order-history-container .all-order-history {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}
.user-dashboard .order-history-container .all-order-history .order-history-box {
  border: 1px solid #9a7d5f;
  padding: 16px 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .buy-again {
  font-size: 10px;
  line-height: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: #9a7d5f;
  padding: 4px 6px;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-img {
  width: 64px;
  height: 80px;
  min-width: 64px;
  border: 1px solid #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-img img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  max-width: 260px;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5F6C72;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #212c34;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 26px 17px;
  border-top: 1px solid #9a7d5f;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #9a7d5f;
}
.user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total p {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #63513f;
}

.exit_profile_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  display: none;
}
.exit_profile_modal .exit_profile_box {
  max-width: 700px;
  padding: 20px 20px 40px;
  width: 100%;
  background: #fff;
}
.exit_profile_modal .exit_profile_box .close_exit_profile_modal {
  margin-left: auto;
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.exit_profile_modal .exit_profile_box .close_exit_profile_modal svg {
  width: 100%;
  height: 100%;
}
.exit_profile_modal .exit_profile_box h2 {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.exit_profile_modal .exit_profile_box .exit_profile_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
}
.exit_profile_modal .exit_profile_box .exit_profile_btns .yes {
  border: 1px solid #9a7d5f;
  border-radius: 4px;
  padding: 12px 30px;
  color: #9a7d5f;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: #fff;
}
.exit_profile_modal .exit_profile_box .exit_profile_btns .no {
  border: 1px solid #9a7d5f;
  border-radius: 4px;
  padding: 12px 30px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  background: #9a7d5f;
}

.login-container {
  background: #212c34;
  width: 100%;
  height: 100vh;
  background-repeat: repeat;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-container .login {
  width: 356px;
  min-width: 356px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}
.login-container .login h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  color: #9a7d5f;
  text-transform: uppercase;
}
.login-container .login form {
  width: 100%;
  margin-top: 24px;
}
.login-container .login form .form-mail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.login-container .login form .form-mail label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
}
.login-container .login form .form-mail input {
  width: 100%;
  outline: none;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #9a7d5f;
  background: #fff;
  border: 1px solid #9a7d5f;
}
.login-container .login form .form-mail input::-moz-placeholder {
  color: #9a7d5f;
}
.login-container .login form .form-mail input::placeholder {
  color: #9a7d5f;
}
.login-container .login form .form-line {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.login-container .login form .form-line label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
}
.login-container .login form .form-line .password {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  width: 100%;
  gap: 8px;
  border: 1px solid #9a7d5f;
}
.login-container .login form .form-line .password input {
  padding: 0;
  border-radius: 0;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: #9a7d5f;
}
.login-container .login form .form-line .password .show_password_btn {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.login-container .login form .form-line .password .show_password_btn .show-eye {
  display: none;
}
.login-container .login form .form-line .password .show_password_btn .hidden-eye {
  display: block;
}
.login-container .login form .form-line .password .active .show-eye {
  display: block;
}
.login-container .login form .form-line .password .active .hidden-eye {
  display: none;
}
.login-container .login form .forgetPassBtn {
  margin-top: 12px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  width: -moz-max-content;
  width: max-content;
  color: #9a7d5f;
  border-bottom: 1px solid #9a7d5f;
  display: block;
}
.login-container .login form .loginBtn {
  width: 100%;
  margin-top: 30px;
  padding: 12px;
  background: #fff;
  color: #9a7d5f;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid #9a7d5f;
}
.login-container .login .login_register_link_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  gap: 4px;
}
.login-container .login .login_register_link_area p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #74767C;
  text-transform: uppercase;
}
.login-container .login .login_register_link_area a {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #212c34;
  border-bottom: 1px solid #212c34;
  text-transform: uppercase;
}

.register-container {
  background: #212c34;
  width: 100%;
  height: 100vh;
  background-repeat: repeat;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.register-container .register {
  width: 356px;
  min-width: 356px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}
.register-container .register h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
  color: #9a7d5f;
  text-transform: uppercase;
}
.register-container .register form {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.register-container .register form .form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.register-container .register form .form-item label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
}
.register-container .register form .form-item input {
  width: 100%;
  outline: none;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #9a7d5f;
  background: #fff;
  border: 1px solid #9a7d5f;
}
.register-container .register form .form-item input::-moz-placeholder {
  color: #9a7d5f;
}
.register-container .register form .form-item input::placeholder {
  color: #9a7d5f;
}
.register-container .register form .form-line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.register-container .register form .form-line label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
}
.register-container .register form .form-line .password {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  width: 100%;
  gap: 8px;
  border: 1px solid #9a7d5f;
}
.register-container .register form .form-line .password input {
  padding: 0;
  border-radius: 0;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: #9a7d5f;
}
.register-container .register form .form-line .password .show_password_btn {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.register-container .register form .form-line .password .show_password_btn .show-eye {
  display: none;
}
.register-container .register form .form-line .password .show_password_btn .hidden-eye {
  display: block;
}
.register-container .register form .form-line .password .active .show-eye {
  display: block;
}
.register-container .register form .form-line .password .active .hidden-eye {
  display: none;
}
.register-container .register form .registerBtn {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #fff;
  color: #9a7d5f;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  border: 1px solid #9a7d5f;
}
.register-container .register .login_register_link_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 40px;
  gap: 4px;
}
.register-container .register .login_register_link_area p {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #74767C;
  text-transform: uppercase;
}
.register-container .register .login_register_link_area a {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #212c34;
  border-bottom: 1px solid #212c34;
  text-transform: uppercase;
}

.privacy-terms-container {
  margin: 60px auto 100px;
  max-width: 1440px;
  width: 100%;
}
.privacy-terms-container h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.privacy-terms-container .privacy-terms-content {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.privacy-terms-container .privacy-terms-content h1, .privacy-terms-container .privacy-terms-content h2, .privacy-terms-container .privacy-terms-content h3, .privacy-terms-container .privacy-terms-content h4, .privacy-terms-container .privacy-terms-content h5, .privacy-terms-container .privacy-terms-content h6 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.privacy-terms-container .privacy-terms-content p, .privacy-terms-container .privacy-terms-content span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #212c34;
}

.forget_password_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 20px;
}
.forget_password_container .forget_pass_form {
  max-width: 400px;
  width: 100%;
  padding: 36px 24px;
  border: 1px solid #9a7d5f;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.forget_password_container .forget_pass_form label {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #9a7d5f;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.forget_password_container .forget_pass_form input {
  background: #FFFFFF;
  border: 1px solid #E4E7E9;
  outline: none;
  width: 100%;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #63513f;
  margin-top: 16px;
}
.forget_password_container .forget_pass_form .send_forgetPass_btn {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
}
.forget_password_container .forget_pass_form .send_forgetPass_btn:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}

.reset_password_container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 100px 20px;
}
.reset_password_container .reset_pass_form {
  max-width: 400px;
  width: 100%;
  padding: 36px 24px;
  border: 1px solid #9a7d5f;
  display: flex;
  flex-direction: column;
}
.reset_password_container .reset_pass_form h1 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #212c34;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.reset_password_container .reset_pass_form .form-items {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  width: 100%;
}
.reset_password_container .reset_pass_form .form-items .form-line {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.reset_password_container .reset_pass_form .form-items .form-line label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
  color: #9a7d5f;
}
.reset_password_container .reset_pass_form .form-items .form-line .password {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #fff;
  width: 100%;
  gap: 8px;
  border: 1px solid #9a7d5f;
}
.reset_password_container .reset_pass_form .form-items .form-line .password input {
  padding: 0;
  border-radius: 0;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 24px;
  color: #9a7d5f;
}
.reset_password_container .reset_pass_form .form-items .form-line .password .show_password_btn {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.reset_password_container .reset_pass_form .form-items .form-line .password .show_password_btn .show-eye {
  display: none;
}
.reset_password_container .reset_pass_form .form-items .form-line .password .show_password_btn .hidden-eye {
  display: block;
}
.reset_password_container .reset_pass_form .form-items .form-line .password .active .show-eye {
  display: block;
}
.reset_password_container .reset_pass_form .form-items .form-line .password .active .hidden-eye {
  display: none;
}
.reset_password_container .reset_pass_form .resetPass_btn {
  width: 100%;
  margin-top: 24px;
  border: 1px solid #9a7d5f;
  color: #9a7d5f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
}
.reset_password_container .reset_pass_form .resetPass_btn:hover {
  background: #9a7d5f;
  border-color: #63513f;
  color: #fff;
}

@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 40px;
    padding-right: 40px;
  }
  .title {
    font-size: 28px;
    line-height: 32px;
  }
  nav .navbar .navbar-left {
    gap: 16px;
  }
  nav .navbar .navbar-left .navDropMenu {
    padding: 6px 0;
  }
  nav .navbar .navbar-left .navDropMenu .navSubMenu {
    top: 60px;
    padding: 18px 0;
  }
  nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category {
    gap: 16px;
  }
  nav .navbar .navbar-left .navDropMenu .navSubMenu .navSubMenu-inner .subMenu-category .subMenu-category-links {
    gap: 8px;
  }
  nav .navbar .navbar-left .navDropMenu:hover .navSubMenu {
    top: 51px;
  }
  nav .navbar .nav-logo {
    width: 75px;
  }
  nav .navbar .navbar-right {
    gap: 14px;
  }
  nav .navbar .navbar-right .showSearch {
    width: 18px;
    min-width: 18px;
  }
  nav .navbar .navbar-right .showSearch svg {
    width: 100%;
  }
  nav .navbar .navbar-right .nav-lang {
    gap: 5px;
    padding-right: 14px;
  }
  nav .navbar .navbar-right .nav-lang .lang-item {
    padding: 3px;
    font-size: 11px;
    line-height: 13px;
  }
  nav .navbar .navbar-right .navBusket {
    min-width: 18px;
    width: 18px;
    height: 18px;
  }
  nav .navbar .navbar-right .navbar_login {
    min-width: 22px;
    width: 22px;
    height: 22px;
  }
  nav .nav-search-container .nav-search .navSearchBtn {
    width: 18px;
    min-width: 18px;
  }
  .home-hero .home-hero-content {
    bottom: 300px;
  }
  .home-hero .home-hero-content .hero-content-box {
    max-width: 600px;
    padding: 18px;
  }
  .home-hero .home-hero-content .hero-content-box h1 {
    font-size: 28px;
    line-height: 36px;
  }
  .home-hero .home-hero-content .hero-content-box p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 16px;
  }
  .home-hero .home-hero-content .hero-content-box .heroDiscoverLink {
    margin-top: 24px;
    gap: 8px;
    padding: 10px 24px;
  }
  .home-about {
    margin-top: 45px;
  }
  .home-about .home-about-container {
    max-width: 968px;
    gap: 40px;
  }
  .home-about .home-about-container .home-about-content {
    gap: 14px;
  }
  .home-about .home-about-container .home-about-content .home-about-texts p {
    font-size: 13px;
    line-height: 20px;
  }
  .home-about .home-about-container .home-about-content .home-about-more {
    margin-top: 14px;
    gap: 8px;
    padding: 10px 24px;
  }
  .homeCategories {
    margin-top: 60px;
    padding: 80px 0;
  }
  .homeCategories .homeCategories-main {
    margin: 38px auto 0;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart {
    width: 323px;
    height: 440px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body {
    gap: 10px;
    padding: 14px 10px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next svg, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev svg {
    width: 20px;
    min-width: 20px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next {
    right: 20px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
    left: 20px;
  }
  .homeGallery {
    margin: 80px auto 0;
  }
  .homeGallery .homeGallery-items .homeGallery-item {
    width: 32%;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(odd) {
    height: 341px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(even) {
    height: 487px;
  }
  .product-cart .cart-img {
    padding: 18px;
  }
  .product-cart .cart-tags {
    gap: 4px;
    top: 10px;
    left: 10px;
  }
  .product-cart .cart-tags .newTag {
    padding: 6px 14px;
    font-size: 13px;
    line-height: 16px;
  }
  .product-cart .cart-tags .discountTag {
    padding: 6px 14px;
    font-size: 13px;
    line-height: 16px;
  }
  .product-cart .cart-body {
    gap: 6px;
  }
  .product-cart .cart-body .pro-name {
    font-size: 16px;
    line-height: 20px;
  }
  .product-cart .cart-body .cart-prices {
    gap: 6px;
  }
  .product-cart .cart-body .cart-prices .normal-price {
    font-size: 14px;
  }
  .product-cart .cart-body .cart-prices .prev-price {
    font-size: 10px;
    line-height: 14px;
  }
  .homeProducts-container {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .homeProducts-container .homeProducts-main {
    padding-right: 20px !important;
    gap: 40px;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title {
    gap: 30px;
    max-width: 268px;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title .title {
    max-width: 235px;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title .more-link {
    gap: 8px;
    padding: 10px 24px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart {
    width: 283px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart .cart-img {
    height: 360px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-next, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-next svg, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev svg {
    width: 20px;
    min-width: 20px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-next {
    right: 0;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
    left: 330px;
  }
  .partners-slide-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .partners-slide-container .partners-slide {
    margin-top: 45px;
  }
  .partners-slide-container .partners-slide .partner-item {
    width: 160px;
    height: 90px;
    padding: 10px 15px;
  }
  .partners-slide-container .partners-slide .partner-item img {
    max-width: 120px;
  }
  footer {
    margin:45px auto 0;
  }
  footer .footer-container{
      padding-top: 45px;
  }
  footer .footer-container .footer-links {
    gap: 30px;
  }
  footer .footer-container .footer-center {
    gap: 16px;
    margin-top: 45px;
    padding-bottom: 24px;
  }
  footer .footer-container .footer-center .footer-contacts {
    gap: 14px;
  }
  footer .footer-container .footer-center .footer-contacts .footer-contact-item {
    gap: 6px;
  }
  footer .footer-container .footer-center .footer-contacts .footer-contact-item img {
    width: 18px;
    min-width: 18px;
    height: 18px;
  }
  footer .footer-container .footer-center .footer-socials {
    gap: 20px;
  }
  footer .footer-container .footer-center .footer-socials .footer-social-link {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  footer .footer-container .footer-center .footer-socials .footer-social-link img {
    height: 15px;
    max-width: 100%;
  }
  footer .footer-container .footer-copyright {
    padding: 24px 0;
  }
  .about-container {
    margin: 45px auto 80px;
    gap: 30px;
  }
  .about-container .about-content {
    gap: 24px;
  }
  .about-container .about-content .about-texts {
    gap: 10px;
    letter-spacing: 2px;
  }
  .about-container .about-content .about-texts p {
    font-size: 13px;
    line-height: 18px;
  }
  .page-direction {
    margin: 30px auto 0;
    gap: 6px;
  }
  .busket-container {
    margin: 45px auto 80px;
  }
  .busket-container .busket-carts {
    max-width: 700px;
    gap: 20px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body {
    padding: 18px;
    gap: 30px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main {
    gap: 14px;
    max-width: 440px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main .cart-img {
    width: 90px;
    height: 110px;
    min-width: 90px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main h2 {
    font-size: 13px;
    line-height: 18px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices {
    gap: 6px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .current-Price p {
    font-size: 16px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices .prev-Price p {
    font-size: 13px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom {
    gap: 10px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .removeBusketPro {
    font-size: 13px;
    line-height: 18px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons {
    padding: 4px 16px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .decrease-btn, .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .increase-btn {
    width: 14px;
    min-width: 14px;
    height: 14px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons .counter {
    font-size: 14px;
    line-height: 20px;
  }
  .busket-container .busket-checkout-container {
    max-width: 324px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box {
    padding: 18px 20px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items {
    padding: 18px 0 14px;
    gap: 10px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items .checkout-box-item p {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .checkout-box-items .checkout-box-item span {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .totalprice {
    margin-top: 14px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .totalprice p {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .totalprice span {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .checkout_box_btn {
    margin-top: 24px;
    gap: 8px;
    padding: 10px 24px;
  }
  .checkout-container {
    margin: 45px auto 80px;
    gap: 20px;
  }
  .checkout-container .checkout-form {
    max-width: 628px;
  }
  .checkout-container .checkout-form .deliveryDetails {
    gap: 20px;
  }
  .checkout-container .checkout-form .deliveryDetails h2 {
    font-size: 16px;
    line-height: 24px;
  }
  .checkout-container .checkout-form .deliveryDetails .address-item {
    padding: 18px;
    gap: 12px;
  }
  .checkout-container .checkout-form .deliveryDetails .form-checkout {
    gap: 14px;
  }
  .checkout-container .checkout-form .deliveryDetails .form-checkout .form-item {
    gap: 6px;
  }
  .checkout-container .checkout-form .deliveryDetails .form-checkout .form-item input {
    padding: 8px 12px;
  }
  .checkout-container .checkout-form .additional-information {
    margin-top: 30px;
  }
  .checkout-container .checkout-form .additional-information h2 {
    font-size: 16px;
    line-height: 24px;
  }
  .checkout-container .checkout-form .additional-information .additional-information-box {
    margin-top: 20px;
  }
  .checkout-container .checkout-form .additional-information .additional-information-box label {
    font-size: 13px;
    line-height: 18px;
  }
  .checkout-container .checkout-form .additional-information .additional-information-box textarea {
    width: 100%;
    height: 100px;
    padding: 10px 14px;
  }
  .checkout-container .order-summary {
    padding: 18px 20px;
    min-width: 364px;
    width: 364px;
  }
  .checkout-container .order-summary h2 {
    font-size: 16px;
    line-height: 20px;
  }
  .checkout-container .order-summary .order-summary-boxes {
    margin-top: 18px;
    gap: 14px;
    padding-bottom: 14px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item {
    gap: 14px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-img {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body {
    gap: 6px;
    max-width: 240px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body h4 {
    font-size: 13px;
    line-height: 18px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body .cart_price {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body .cart_price p {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .checkout-box-items {
    margin-top: 14px;
    gap: 10px;
    padding-bottom: 14px;
  }
  .checkout-container .order-summary .checkout-box-items .checkout-box-item p {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .checkout-box-items .checkout-box-item span {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .totalprice {
    margin-top: 14px;
  }
  .checkout-container .order-summary .totalprice p {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .totalprice span {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .order_box_btn {
    margin-top: 20px;
    gap: 8px;
    padding: 10px 24px;
  }
  .contact-map {
    margin-top: 80px;
    height: 400px;
  }
  .contact-container {
    margin: 80px auto;
    gap: 60px;
  }
  .contact-container .contact-left {
    max-width: 503px;
  }
  .contact-container .contact-left .contact-items {
    margin-top: 30px;
    gap: 12px;
  }
  .contact-container .contact-left .contact-items .contact-item {
    gap: 10px;
  }
  .contact-container .contact-left .contact-items .contact-item p {
    font-size: 12px;
    line-height: 16px;
  }
  .contact-container .contact-left .contact-items .contact-item .contact-link {
    gap: 10px;
    font-size: 12px;
    line-height: 16px;
  }
  .contact-container .contact-left .contact-items .contact-item .contact-link img {
    width: 20px;
    min-width: 20px;
    height: 20px;
  }
  .contact-container .contact-left .contact-items .contact-item .socials {
    gap: 16px;
  }
  .contact-container .contact-left .contact-items .contact-item .socials .social-link {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }
  .contact-container .contact-left .contact-items .contact-item .socials .social-link img {
    max-height: 14px;
  }
  .contact-container .contact-left .contact-items .line {
    height: 60px;
  }
  .contact-container .contact-left form {
    margin-top: 50px;
    gap: 14px;
  }
  .contact-container .contact-left form input, .contact-container .contact-left form textarea {
    padding-bottom: 14px;
  }
  .contact-container .contact-left form textarea {
    height: 90px;
  }
  .contact-container .contact-left form .form-item {
    gap: 18px;
  }
  .contact-container .contact-left form .send_contact {
    margin-top: 14px;
    gap: 8px;
    padding: 10px 24px;
  }
  .contact-container .contact-img {
    max-width: 350px;
  }
  .login-container .login {
    padding: 26px 18px;
  }
  .login-container .login h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .login-container .login form {
    margin-top: 20px;
  }
  .login-container .login form .form-mail label {
    font-size: 12px;
    line-height: 16px;
  }
  .login-container .login form .form-mail input {
    padding: 8px 12px;
  }
  .login-container .login form .form-line {
    margin-top: 12px;
  }
  .login-container .login form .form-line label {
    font-size: 12px;
    line-height: 16px;
  }
  .login-container .login form .form-line .password {
    padding: 8px 12px;
    gap: 6px;
  }
  .login-container .login form .form-line .password .show_password_btn {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .login-container .login form .forgetPassBtn {
    margin-top: 10px;
  }
  .login-container .login form .loginBtn {
    margin-top: 25px;
    padding: 10px;
  }
  .login-container .login .login_register_link_area {
    margin-top: 30px;
    gap: 4px;
  }
  .register-container .register {
    padding: 26px 18px;
  }
  .register-container .register h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .register-container .register form {
    margin-top: 20px;
    gap: 12px;
  }
  .register-container .register form .form-item label {
    font-size: 12px;
    line-height: 16px;
  }
  .register-container .register form .form-item input {
    padding: 8px 12px;
  }
  .register-container .register form .form-line label {
    font-size: 12px;
    line-height: 16px;
  }
  .register-container .register form .form-line .password {
    padding: 8px 12px;
    gap: 6px;
  }
  .register-container .register form .form-line .password .show_password_btn {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .register-container .register form .registerBtn {
    margin-top: 10px;
    padding: 10px;
  }
  .register-container .register .login_register_link_area {
    margin-top: 30px;
    gap: 4px;
  }
  .products-container {
    margin: 45px auto 80px;
  }
  .products-container .filterOpenBtn {
    margin-top: 38px;
    gap: 8px;
    padding: 6px 16px;
    font-size: 12px;
    line-height: 16px;
  }
  .products-container .filterOpenBtn svg {
    width: 16px;
  }
  .products-container .all-products {
    margin-top: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
  .products-container .all-products .product-cart .cart-img {
    height: 360px;
  }
  .products-container .all-products-more {
    margin-top: 38px;
    padding: 18px;
  }
  .filter-container .filter .filter-top h2 {
    font-size: 20px;
    line-height: 32px;
  }
  .filter-container .filter .filter-top .closeFilter {
    width: 26px;
    height: 26px;
  }
  .filter-container .filter .filter-form {
    margin-top: 38px;
    gap: 24px;
  }
  .filter-container .filter .filter-form .filter-items {
    gap: 10px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item {
    gap: 10px;
    padding-bottom: 10px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-title {
    font-size: 14px;
    line-height: 20px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-list {
    padding-left: 16px;
    gap: 8px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item input {
    width: 14px;
    height: 14px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item label {
    font-size: 13px;
    line-height: 18px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-price {
    gap: 10px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item input {
    padding: 10px 18px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item label {
    font-size: 13px;
    line-height: 18px;
  }
  .filter-container .filter .filter-form .submitProductFilter {
    gap: 8px;
    padding: 10px 24px;
  }
  .product-detail-container {
    margin: 45px auto 80px;
  }
  .product-detail-container .product-detail-area {
    gap: 30px;
  }
  .product-detail-container .product-detail-area .product-detail-images {
    max-width: 546px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide {
    height: 410px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide {
    min-width: 70px;
    width: 70px;
    height: 410px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide .otherImg-item {
    height: 90px;
  }
  .product-detail-container .product-detail-area .product-detail-main {
    max-width: 500px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-tags .newTag {
    padding: 6px 14px;
    font-size: 12px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-tags .discountTag {
    padding: 6px 14px;
    font-size: 12px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main h1 {
    margin-top: 24px;
    font-size: 24px;
    line-height: 28px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-code {
    margin-top: 10px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-code p {
    font-size: 13px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-code span {
    font-size: 13px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors {
    margin-top: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors p {
    font-size: 13px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons {
    gap: 10px;
    margin-top: 10px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .colorBtn {
    width: 14px;
    height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .checkedColor::after {
    width: 18px;
    height: 18px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes {
    margin-top: 16px;
    gap: 10px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes .sizeTitle {
    font-size: 13px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items {
    gap: 10px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes .size-items .size-item {
    width: auto;
    height: 28px;
    padding: 3px 13px;
  }
  .product-detail-container .product-detail-area .product-detail-main .short-desc {
    margin-top: 10px;
  }
  .product-detail-container .product-detail-area .product-detail-main .short-desc p {
    font-size: 13px;
    line-height: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-prices {
    gap: 6px;
    margin-top: 16px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-prices .prev-price {
    font-size: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-prices .current-price {
    font-size: 20px;
    line-height: 28px;
  }
  .product-detail-container .product-detail-area .product-detail-main .addBusket {
    margin-top: 24px;
    gap: 8px;
    padding: 10px 24px;
  }
  .product-detail-container .detail-main {
    gap: 10px;
    margin-top: 45px;
  }
  .product-detail-container .detail-main .detail-title {
    font-size: 14px;
    line-height: 20px;
  }
  .product-detail-container .detail-main .detail-texts p {
    font-size: 14px;
    line-height: 18px;
  }
  .user-dashboard {
    margin: 45px auto 80px;
    gap: 20px;
  }
  .user-dashboard .user-side-bar {
    min-width: 230px;
    width: 230px;
    gap: 20px;
  }
  .user-dashboard .user-side-bar .sidebar-link {
    gap: 6px;
    width: 100%;
    padding: 6px 14px;
  }
  .user-dashboard .user-side-bar .exit_profile_btn {
    gap: 6px;
    width: 100%;
    padding: 6px 14px;
  }
  .user-dashboard .dashboard-main .profile-setup {
    width: 100%;
    max-width: 700px;
    gap: 24px;
  }
  .user-dashboard .dashboard-main .profile-setup h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .user-dashboard .dashboard-main .profile-setup form .form-items {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .user-dashboard .dashboard-main .profile-setup form .form-items .form-line {
    gap: 6px;
  }
  .user-dashboard .dashboard-main .profile-setup form .form-items .form-line input {
    padding: 8px 12px;
  }
  .user-dashboard .dashboard-main .profile-setup form .save_info {
    margin-top: 28px;
    gap: 8px;
    padding: 10px 34px;
  }
  .user-dashboard .dashboard-main .profile-setup-password {
    margin-top: 36px;
    max-width: 700px;
    gap: 24px;
  }
  .user-dashboard .dashboard-main .profile-setup-password h2 {
    font-size: 20px;
    line-height: 30px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form {
    row-gap: 18px;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .form-line {
    max-width: 400px;
    gap: 6px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .form-line .password {
    gap: 6px;
    padding: 8px 12px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .form-line .password .show_password_btn {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .change_password {
    margin-top: 14px;
    gap: 8px;
    padding: 10px 34px;
  }
  .user-dashboard .order-history-container h1 {
    font-size: 20px;
    line-height: 30px;
  }
  .user-dashboard .order-history-container .all-order-history {
    gap: 20px;
    margin-top: 20px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box {
    padding: 14px 16px;
    gap: 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item {
    gap: 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-img {
    width: 60px;
    height: 76px;
    min-width: 60px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body {
    max-width: 240px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body h4 {
    font-size: 13px;
    line-height: 18px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price {
    font-size: 13px;
    line-height: 18px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price p {
    font-size: 13px;
    line-height: 18px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total {
    padding: 22px 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total h4 {
    font-size: 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total p {
    font-size: 14px;
  }
  .exit_profile_modal .exit_profile_box {
    max-width: 600px;
    padding: 20px 20px 40px;
  }
  .exit_profile_modal .exit_profile_box .close_exit_profile_modal {
    margin-left: auto;
    width: 26px;
    height: 26px;
    min-width: 26px;
  }
  .exit_profile_modal .exit_profile_box h2 {
    margin-top: 30px;
    font-size: 20px;
    line-height: 28px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns {
    gap: 10px;
    margin-top: 45px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns .yes {
    padding: 10px 26px;
    font-size: 14px;
    line-height: 20px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns .no {
    padding: 10px 26px;
    font-size: 14px;
    line-height: 20px;
  }
  .privacy-terms-container {
    margin: 45px auto 80px;
  }
  .privacy-terms-container h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .privacy-terms-container .privacy-terms-content {
    margin-top: 30px;
    gap: 10px;
  }
  .privacy-terms-container .privacy-terms-content h1, .privacy-terms-container .privacy-terms-content h2, .privacy-terms-container .privacy-terms-content h3, .privacy-terms-container .privacy-terms-content h4, .privacy-terms-container .privacy-terms-content h5, .privacy-terms-container .privacy-terms-content h6 {
    font-size: 16px;
    line-height: 24px;
  }
  .privacy-terms-container .privacy-terms-content p, .privacy-terms-container .privacy-terms-content span {
    font-size: 13px;
    line-height: 18px;
  }
  .forget_password_container {
    padding: 80px 20px;
  }
  .forget_password_container .forget_pass_form {
    max-width: 400px;
    padding: 30px 20px;
  }
  .forget_password_container .forget_pass_form label {
    font-size: 13px;
    line-height: 18px;
  }
  .forget_password_container .forget_pass_form input {
    padding: 8px 12px;
    margin-top: 14px;
  }
  .forget_password_container .forget_pass_form .send_forgetPass_btn {
    margin-top: 20px;
    gap: 8px;
    padding: 10px 24px;
  }
  .reset_password_container {
    padding: 80px 20px;
  }
  .reset_password_container .reset_pass_form {
    max-width: 400px;
    padding: 30px 20px;
  }
  .reset_password_container .reset_pass_form h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .reset_password_container .reset_pass_form .form-items {
    margin-top: 14px;
    gap: 10px;
  }
  .reset_password_container .reset_pass_form .form-items .form-line label {
    font-size: 12px;
    line-height: 16px;
  }
  .reset_password_container .reset_pass_form .form-items .form-line .password {
    padding: 8px 12px;
    gap: 6px;
  }
  .reset_password_container .reset_pass_form .form-items .form-line .password .show_password_btn {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
  .reset_password_container .reset_pass_form .resetPass_btn {
    margin-top: 20px;
    gap: 8px;
    padding: 10px 24px;
  }
}
@media only screen and (max-width: 1080px) {
  .homeGallery .homeGallery-items .homeGallery-item {
    width: 31.8%;
  }
}
@media only screen and (max-width: 992px) {
  .homeGallery .homeGallery-items .homeGallery-item {
    width: 31.4%;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(odd) {
    height: 281px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(even) {
    height: 427px;
  }
  .homeProducts-container .homeProducts-main {
    gap: 30px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart {
    width: 263px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart .cart-img {
    height: 340px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
    left: 320px;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
  }
  .about-container .about-content {
    max-width: 100%;
  }
  .busket-container .busket-checkout-container {
    max-width: 254px;
  }
  .checkout-container {
    flex-direction: column;
  }
  .checkout-container .checkout-form {
    max-width: 100%;
  }
  .contact-map {
    height: 300px;
  }
  .contact-container .contact-left .contact-items {
    flex-direction: column;
    align-items: start;
  }
  .contact-container .contact-left .contact-items .line {
    width: 100%;
    height: 2px;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }
  .contact-container .contact-img {
    max-width: 300px;
  }
  .products-container .all-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-detail-container .product-detail-area .product-detail-images {
    max-width: 400px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide {
    height: 310px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide {
    min-width: 60px;
    width: 60px;
    height: 310px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide .otherImg-item {
    height: 80px;
  }
  .product-detail-container .product-detail-area .product-detail-main {
    max-width: 100%;
  }
  .user-dashboard .dashboard-main .profile-setup form .form-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .user-dashboard .order-history-container .all-order-history {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .title {
    font-size: 24px;
    line-height: 30px;
  }
  nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  nav .navbar .navbar-left {
    display: none;
  }
  nav .navbar .nav-logo {
    width: 70px;
  }
  nav .navbar .navbar-right {
    gap: 16px;
  }
  nav .navbar .navbar-right .showSearch {
    width: 18px;
    min-width: 18px;
  }
  nav .navbar .navbar-right .showSearch svg {
    width: 100%;
  }
  nav .navbar .navbar-right .nav-lang {
    display: none;
  }
  nav .navbar .navbar-right .navBusket {
    display: none;
  }
  nav .navbar .navbar-right .navbar_login {
    display: none;
  }
  nav .navbar .navbar-right .hamburger {
    display: block;
  }
  nav .nav-search-container .nav-search .navSearchBtn {
    width: 18px;
    min-width: 18px;
  }
  .mobile-menu {
    display: block;
  }
  .home-hero .home-hero-content {
    bottom: 300px;
  }
  .home-hero .home-hero-content .hero-content-box {
    max-width: 600px;
    padding: 16px;
  }
  .home-hero .home-hero-content .hero-content-box h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .home-hero .home-hero-content .hero-content-box p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .home-hero .home-hero-content .hero-content-box .heroDiscoverLink {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 16px;
  }
  .home-about {
    margin-top: 30px;
  }
  .home-about .home-about-container {
    max-width: 100%;
    gap: 20px;
    flex-direction: column-reverse;
    align-items: end;
  }
  .home-about .home-about-container .home-about-img {
    max-width: 348px;
  }
  .home-about .home-about-container .home-about-content {
    max-width: 100%;
    gap: 12px;
  }
  .home-about .home-about-container .home-about-content .home-about-texts p {
    font-size: 12px;
    line-height: 18px;
  }
  .home-about .home-about-container .home-about-content .home-about-more {
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .homeCategories {
    margin-top: 40px;
    padding: 50px 0;
  }
  .homeCategories .homeCategories-main {
    margin: 30px auto 0;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart {
    width: 303px;
    height: 420px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body {
    gap: 10px;
    padding: 14px 10px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .home-category-cart .cart-body h3 {
    font-size: 14px;
    line-height: 18px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
    width: 36px;
    min-width: 36px;
    height: 36px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next svg, .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev svg {
    width: 16px;
    min-width: 16px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-next {
    right: 2px;
  }
  .homeCategories .homeCategories-main .homeCategories-slides .swiper-button-prev {
    left: 2px;
  }
  .homeGallery {
    margin: 50px auto 0;
  }
  .homeGallery .homeGallery-items .homeGallery-item {
    width: 48.1%;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(odd) {
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(even) {
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+4), .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+6) {
    margin-top: 0;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+1) {
    height: 321px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+2) {
    height: 467px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+3) {
    height: 467px;
    margin-top: -146px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+4) {
    height: 401px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+5) {
    margin-top: -80px;
    height: 467px;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+6) {
    height: 387px;
  }
  .product-cart .cart-img {
    padding: 16px;
  }
  .product-cart .cart-tags .newTag {
    padding: 4px 12px;
    font-size: 12px;
    line-height: 14px;
  }
  .product-cart .cart-tags .discountTag {
    padding: 4px 12px;
    font-size: 12px;
    line-height: 14px;
  }
  .product-cart .cart-body {
    gap: 6px;
  }
  .product-cart .cart-body .pro-name {
    font-size: 16px;
    line-height: 20px;
  }
  .homeProducts-container {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .homeProducts-container .homeProducts-main {
    padding-right: 20px !important;
    gap: 30px;
    flex-direction: column;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title {
    gap: 16px;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title .title {
    max-width: 200px;
  }
  .homeProducts-container .homeProducts-main .homeProducts-title .more-link {
    gap: 8px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart {
    width: 243px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart .cart-img {
    height: 320px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-next, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
    width: 36px;
    min-width: 36px;
    top: 62%;
    height: 36px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-next svg, .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev svg {
    width: 16px;
    min-width: 16px;
  }
  .homeProducts-container .homeProducts-main .products-slide .swiper-button-prev {
    left: 0;
  }
  .partners-slide-container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .partners-slide-container .partners-slide {
    margin-top: 30px;
  }
  .partners-slide-container .partners-slide .partner-item {
    width: 140px;
    height: 80px;
  }
  .partners-slide-container .partners-slide .partner-item img {
    max-width: 100px;
  }
  footer {
   margin:30px auto 0;
  }
  footer .footer-container{
    padding-top: 30px;
  }
  footer .footer-container .footer-links {
    gap: 20px;
  }
  footer .footer-container .footer-center {
    gap: 12px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  footer .footer-container .footer-center .footer-socials {
    gap: 16px;
  }
  footer .footer-container .footer-copyright {
    padding: 20px 0;
  }
  .about-container {
    margin: 30px auto 50px;
  }
  .about-container .about-content {
    gap: 20px;
  }
  .about-container .about-content .about-texts {
    gap: 8px;
  }
  .page-direction {
    margin: 20px auto 0;
  }
  .page-direction a {
    font-size: 10px;
    line-height: 14px;
  }
  .page-direction svg {
    width: 16px;
    min-width: 16px;
  }
  .busket-container {
    margin: 30px auto 50px;
    flex-direction: column;
  }
  .busket-container .busket-carts {
    max-width: 100%;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body {
    gap: 20px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main .cart-img {
    width: 80px;
    height: 100px;
    min-width: 80px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main h2 {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom {
    gap: 10px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .removeBusketPro {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons {
    padding: 4px 14px;
  }
  .busket-container .busket-checkout-container {
    max-width: 354px;
  }
  .busket-container .busket-checkout-container .busket-checkout-box .checkout_box_btn {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container {
    margin: 30px auto 50px;
  }
  .checkout-container .checkout-form .deliveryDetails {
    gap: 16px;
  }
  .checkout-container .checkout-form .additional-information {
    margin-top: 20px;
  }
  .checkout-container .checkout-form .additional-information .additional-information-box {
    margin-top: 16px;
  }
  .checkout-container .checkout-form .additional-information .additional-information-box label {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .order-summary-boxes {
    margin-top: 16px;
    gap: 12px;
    padding-bottom: 12px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item {
    gap: 12px;
  }
  .checkout-container .order-summary .order-summary-boxes .order_product_item .cart-body h4 {
    font-size: 12px;
    line-height: 16px;
  }
  .checkout-container .order-summary .checkout-box-items {
    margin-top: 12px;
    gap: 8px;
    padding-bottom: 12px;
  }
  .checkout-container .order-summary .totalprice {
    margin-top: 12px;
  }
  .checkout-container .order-summary .order_box_btn {
    margin-top: 16px;
    padding: 8px 20px;
    line-height: 16px;
    font-size: 12px;
  }
  .contact-map {
    margin-top: 50px;
    height: 200px;
  }
  .contact-container {
    margin: 50px auto;
    gap: 0;
  }
  .contact-container .contact-left {
    max-width: 100%;
  }
  .contact-container .contact-left .contact-items {
    margin-top: 20px;
  }
  .contact-container .contact-left .contact-items .contact-item {
    gap: 10px;
  }
  .contact-container .contact-left .contact-items .line {
    width: 100%;
    height: 2px;
    border-right: none;
    border-bottom: 1px solid #d9d9d9;
  }
  .contact-container .contact-left form {
    margin-top: 30px;
    gap: 12px;
  }
  .contact-container .contact-left form input, .contact-container .contact-left form textarea {
    padding-bottom: 12px;
  }
  .contact-container .contact-left form .form-item {
    gap: 16px;
  }
  .contact-container .contact-left form .send_contact {
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 16px;
  }
  .contact-container .contact-img {
    display: none;
  }
  .login-container .login {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    padding: 20px 16px;
  }
  .login-container .login h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .login-container .login form {
    margin-top: 16px;
  }
  .login-container .login form .form-line {
    margin-top: 10px;
  }
  .login-container .login form .forgetPassBtn {
    margin-top: 10px;
  }
  .login-container .login form .loginBtn {
    margin-top: 20px;
    padding: 8px;
    font-size: 12px;
    line-height: 16px;
  }
  .login-container .login .login_register_link_area {
    margin-top: 24px;
  }
  .register-container .register {
    width: 100%;
    max-width: 360px;
    min-width: 0;
    padding: 20px 16px;
  }
  .register-container .register h1 {
    font-size: 20px;
    line-height: 28px;
  }
  .register-container .register form {
    margin-top: 16px;
    gap: 10px;
  }
  .register-container .register form .registerBtn {
    padding: 8px;
    font-size: 12px;
    line-height: 16px;
  }
  .register-container .register .login_register_link_area {
    margin-top: 24px;
  }
  .products-container {
    margin: 30px auto 50px;
  }
  .products-container .filterOpenBtn {
    margin-top: 30px;
    padding: 6px 14px;
  }
  .products-container .all-products {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
  .products-container .all-products-more {
    margin-top: 30px;
    padding: 16px;
    font-size: 12px;
    line-height: 16px;
  }
  .filter-container .filter {
    padding: 30px 18px;
  }
  .filter-container .filter .filter-top h2 {
    font-size: 18px;
    line-height: 28px;
  }
  .filter-container .filter .filter-top .closeFilter {
    width: 24px;
    height: 24px;
  }
  .filter-container .filter .filter-form {
    margin-top: 30px;
    gap: 20px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-list {
    padding-left: 12px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-item-list .list-item label {
    font-size: 12px;
    line-height: 16px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item input {
    padding: 8px 16px;
  }
  .filter-container .filter .filter-form .filter-items .filter-item .filter-price .filter-price-item label {
    font-size: 12px;
    line-height: 16px;
  }
  .filter-container .filter .filter-form .submitProductFilter {
    padding: 8px 20px;
    font-size: 12px;
    line-height: 16px;
  }
  .product-detail-container {
    margin: 30px auto 50px;
  }
  .product-detail-container .product-detail-area {
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .product-detail-container .product-detail-area .product-detail-images {
    max-width: 400px;
    width: 100%;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item {
    flex-direction: column-reverse;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide {
    height: 350px;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide {
    min-width: 0;
    width: 100%;
    height: auto;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .otherImg-slide .otherImg-item {
    width: 50px;
    height: 70px;
  }
  .product-detail-container .product-detail-area .product-detail-main {
    width: 100%;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-tags .newTag {
    padding: 4px 12px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-tags .discountTag {
    padding: 4px 12px;
  }
  .product-detail-container .product-detail-area .product-detail-main h1 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 24px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-code p {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-code span {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors {
    margin-top: 12px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors p {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .colorBtn {
    width: 13px;
    height: 13px;
  }
  .product-detail-container .product-detail-area .product-detail-main .productColors .colorButtons .checkedColor::after {
    width: 17px;
    height: 17px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes {
    margin-top: 12px;
  }
  .product-detail-container .product-detail-area .product-detail-main .product-sizes .sizeTitle {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .short-desc p {
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .product-detail-area .product-detail-main .detail-prices {
    margin-top: 12px;
  }
  .product-detail-container .product-detail-area .product-detail-main .addBusket {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 12px;
    line-height: 14px;
  }
  .product-detail-container .detail-main {
    margin-top: 30px;
  }
  .product-detail-container .detail-main .detail-texts p {
    font-size: 13px;
    line-height: 16px;
  }
  .exit_profile_modal .exit_profile_box {
    max-width: 400px;
  }
  .exit_profile_modal .exit_profile_box .close_exit_profile_modal {
    margin-left: auto;
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
  .exit_profile_modal .exit_profile_box h2 {
    margin-top: 20px;
    font-size: 18px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns {
    margin-top: 30px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns .yes {
    padding: 8px 22px;
  }
  .exit_profile_modal .exit_profile_box .exit_profile_btns .no {
    padding: 8px 22px;
  }
  .user-dashboard {
    margin: 30px auto 50px;
    gap: 20px;
    flex-direction: column;
  }
  .user-dashboard .user-side-bar {
    display: none;
  }
  .user-dashboard .user_direction_box {
    display: flex;
  }
  .user-dashboard .dashboard-main .profile-setup {
    max-width: 100%;
    gap: 20px;
  }
  .user-dashboard .dashboard-main .profile-setup h2 {
    font-size: 18px;
    line-height: 28px;
  }
  .user-dashboard .dashboard-main .profile-setup form .save_info {
    margin-top: 24px;
    padding: 8px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .user-dashboard .dashboard-main .profile-setup-password {
    margin-top: 30px;
    max-width: 100%;
    gap: 20px;
  }
  .user-dashboard .dashboard-main .profile-setup-password h2 {
    font-size: 18px;
    line-height: 28px;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .form-line {
    max-width: 100%;
  }
  .user-dashboard .dashboard-main .profile-setup-password form .change_password {
    margin-top: 12px;
    padding: 8px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .user-dashboard .order-history-container h1 {
    font-size: 18px;
    line-height: 28px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box {
    padding: 14px 16px;
    gap: 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item {
    gap: 14px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body {
    max-width: 280px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body h4 {
    font-size: 12px;
    line-height: 16px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price {
    font-size: 12px;
    line-height: 16px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_product_item .cart-body .cart_price p {
    font-size: 12px;
    line-height: 16px;
  }
  .user-dashboard .order-history-container .all-order-history .order-history-box .purchased_products_total {
    padding: 20px 14px;
  }
  .privacy-terms-container {
    margin: 30px auto 50px;
  }
  .privacy-terms-container .privacy-terms-content {
    margin-top: 20px;
    gap: 8px;
  }
  .forget_password_container {
    padding: 60px 20px;
  }
  .forget_password_container .forget_pass_form {
    max-width: 350px;
    padding: 30px 20px;
  }
  .forget_password_container .forget_pass_form label {
    font-size: 12px;
    line-height: 16px;
  }
  .forget_password_container .forget_pass_form input {
    margin-top: 12px;
  }
  .forget_password_container .forget_pass_form .send_forgetPass_btn {
    margin-top: 16px;
  }
  .reset_password_container {
    padding: 60px 20px;
  }
  .reset_password_container .reset_pass_form {
    max-width: 350px;
    padding: 30px 20px;
  }
  .reset_password_container .reset_pass_form .form-items {
    margin-top: 12px;
    gap: 8px;
  }
  .reset_password_container .reset_pass_form .resetPass_btn {
    margin-top: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .homeGallery .homeGallery-items .homeGallery-item {
    width: 100%;
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+1) {
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+2) {
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+3) {
    height: auto;
    margin-top: 0;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+4) {
    height: 0;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+5) {
    margin-top: 0;
    height: auto;
  }
  .homeGallery .homeGallery-items .homeGallery-item:nth-child(6n+6) {
    height: auto;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart {
    width: 223px;
  }
  .homeProducts-container .homeProducts-main .products-slide .product-cart .cart-img {
    height: 300px;
  }
  footer .footer-container .footer-links {
    flex-direction: column;
    align-items: start;
  }
  footer .footer-container .footer-center {
    gap: 16px;
    flex-direction: column;
  }
  footer .footer-container .footer-center .footer-socials {
    gap: 14px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body {
    gap: 20px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top {
    flex-direction: column;
    align-items: center;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main .cart-img {
    width: 100px;
    height: 120px;
    min-width: 100px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .cart-body-main h2 {
    text-align: center;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-top .busketCartPrices {
    align-items: center;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom {
    gap: 10px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .removeBusketPro {
    font-size: 12px;
    line-height: 16px;
  }
  .busket-container .busket-carts .busket-cart .busket-cart-body .cart-body-bottom .counter-buttons {
    padding: 4px 14px;
  }
  .busket-container .busket-checkout-container {
    max-width: 100%;
  }
  .checkout-container .order-summary {
    min-width: 0;
    width: 100%;
  }
  .products-container .all-products {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-container .all-products .product-cart .cart-img {
    height: auto;
  }
  .filter-container .filter {
    width: 100%;
  }
  .product-detail-container .product-detail-area .product-detail-images {
    max-width: 100%;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item {
    flex-direction: column-reverse;
  }
  .product-detail-container .product-detail-area .product-detail-images .product-detail-images-item .mainImg-slide {
    height: 360px;
  }
}/*# sourceMappingURL=style.css.map */