:root {
  --color-1: #6526BF;
  --color-2: #FFF200;
  --bg-color-1: #6526BF;
  --bg-color-2: #FFF200;
  --bg-color-3: #F1F1F1;
  --bg-color-4: #F8F5CB;
  --bg-color-5: #F2F2F2;
  --text-color-1: #373737;
  --text-color-2: #959595;
  --text-color-3: #303030;
  --text-color-4: #727272;
  --black-1: rgba(0,0,0,0.1);
  --black-2: rgba(0,0,0,0.2);
  --black-3: rgba(0,0,0,0.3);
  --black-4: rgba(0,0,0,0.4);
  --black-5: rgba(0,0,0,0.5);
  --black-6: rgba(0,0,0,0.6);
  --black-7: rgba(0,0,0,0.7);
  --black-8: rgba(0,0,0,0.8);
  --black-9: rgba(0,0,0,0.9);
  --white-1: rgba(255,255,255,0.1);
  --white-2: rgba(255,255,255,0.2);
  --white-3: rgba(255,255,255,0.3);
  --white-4: rgba(255,255,255,0.4);
  --white-5: rgba(255,255,255,0.5);
  --white-6: rgba(255,255,255,0.6);
  --white-7: rgba(255,255,255,0.7);
  --white-8: rgba(255,255,255,0.8);
  --white-9: rgba(255,255,255,0.9);
  --black: #000000;
  --white: #ffffff;
  --general-font: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
}

body {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-family: var(--general-font);
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--bg-color-1);
}

::-webkit-scrollbar-track {
  background-color: var(--white);
}

::-moz-selection {
  background: var(--bg-color-1);
  color: var(--white);
}

::selection {
  background: var(--bg-color-1);
  color: var(--white);
}

a,
a:hover,
a:active,
a:visited {
  text-decoration: none;
}

p {
  margin: 0;
  background-color: transparent;
}

ul {
  margin: 0;
  padding: 0;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: block;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  transition: all 0.3s;
  font-family: var(--general-font);
}

a {
  transition: all 0.3s;
}

input {
  outline: none;
}
input::-webkit-inner-spin-button, input::-webkit-outer-spin-button {
  display: none;
}

main {
  width: 100%;
  min-height: 60vh;
}

.swiper {
  width: 100%;
  z-index: 0;
}

.alert-warning {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color-2);
  color: var(--color-1);
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  margin-bottom: 10px;
}

.d-none {
  display: none !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
}
.d-block {
  display: block !important;
}
@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important;
  }
}
.d-flex {
  display: flex !important;
}
@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-flex {
    display: flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-flex {
    display: flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-flex {
    display: flex !important;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 999999;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#preloader .loader {
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
}
#preloader .loader::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 5px solid var(--color-1);
  border-right-color: var(--color-2);
  border-left-color: var(--color-2);
  animation: loaderspin 1.5s linear infinite;
}
#preloader .loader .logo {
  width: 150px;
  height: 150px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}
#preloader .loader .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes loaderspin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

.menu-button {
  width: 25px;
  height: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin-bottom: 5px;
  border-radius: 5px;
  transition: all 0.2s;
}
.menu-button span:last-child {
  margin-bottom: 0;
}
.menu-button.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-button.active span:nth-child(2) {
  opacity: 0;
}
.menu-button.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.product-category-btns {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  overflow: auto;
  padding-bottom: 20px;
}
.product-category-btns a, .product-category-btns button {
  min-width: 120px;
  text-align: center;
  background-color: var(--bg-color-1);
  padding: 7px 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
}
.product-category-btns a.active, .product-category-btns a:hover, .product-category-btns button.active, .product-category-btns button:hover {
  background-color: var(--bg-color-2);
  color: var(--color-1);
}

.search {
  position: absolute;
  top: -100%;
  opacity: 1;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color-1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 100;
  padding: 0 15px;
  transition: all 0.3s;
}
.search.active {
  top: 0;
  opacity: 1;
}
@media (min-width: 992px) {
  .search {
    position: relative;
    top: 0;
    opacity: 1;
    max-width: 400px;
    z-index: 1;
  }
}
@media (min-width: 1200px) {
  .search {
    max-width: 560px;
  }
}
.search .close-button {
  transform: scale(1.4);
  margin-left: 15px;
  min-width: 25px;
  min-height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--white);
}
@media (min-width: 992px) {
  .search .close-button {
    display: none;
  }
}
.search form {
  width: 100%;
  max-width: 540px;
  background-color: #541AA6;
  position: relative;
  border-radius: 5px;
}
@media (min-width: 1200px) {
  .search form {
    min-height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.search form input {
  border: none;
  background-color: transparent;
  width: 100%;
  padding: 10px;
  color: #C7A2FB;
  font-size: 16px;
  padding-right: 30px;
}
.search form input::-moz-placeholder {
  color: #C7A2FB;
  font-size: 16px;
}
.search form input::placeholder {
  color: #C7A2FB;
  font-size: 16px;
}
.search form button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-color: #541AA6;
  cursor: pointer;
}

.general-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 3px;
}
.general-icons a {
  margin-right: 25px;
  position: relative;
}
.general-icons a .badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--bg-color-2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translate(17px, -10px);
  text-align: center;
  line-height: 0;
}
@media (min-width: 1400px) {
  .general-icons a {
    margin-right: 40px;
  }
}
.general-icons a img {
  max-width: 35px;
  max-height: 35px;
}
.general-icons.mobile {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 999;
  width: 65px;
}
.general-icons.mobile a {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  box-shadow: 0 0 5px var(--black-5);
  padding: 10px;
  border-radius: 5px 0 0 5px;
  position: relative;
  background-color: var(--bg-color-1);
  margin-right: 0;
}
.general-icons.mobile a .badge {
  position: absolute;
  top: 7px;
  right: 22px;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bg-color-2);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--color-1);
  font-weight: 500;
  text-align: center;
  line-height: 0;
}
.general-icons.mobile a img {
  width: 30px;
  height: 25px;
}

.page-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.page-heading .title {
  color: var(--text-color-1);
  margin-bottom: 5px;
}
@media (min-width: 576px) {
  .page-heading .title {
    margin-bottom: 10px;
  }
}
.page-heading .breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.page-heading .breadcrumb img {
  margin: 0 5px;
  transform: scale(0.7);
}
@media (min-width: 576px) {
  .page-heading .breadcrumb img {
    transform: scale(1);
    margin: 0 10px;
  }
}
.page-heading .breadcrumb a {
  display: block;
  color: var(--text-color-2);
  font-size: 12px;
}
.page-heading .breadcrumb a:hover {
  color: var(--color-1);
}
@media (min-width: 576px) {
  .page-heading .breadcrumb a {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .page-heading .breadcrumb a {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .page-heading .breadcrumb a {
    font-size: 18px;
  }
}

.section-title {
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  margin-bottom: 20px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 115px;
  height: 4px;
  background-color: var(--color-1);
}

.general-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
}
.general-form .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .general-form .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.general-form .form-tab {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  align-self: stretch;
}
@media (min-width: 992px) {
  .general-form .form-tab {
    width: 48%;
  }
}
.general-form .form-component {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}
.general-form .form-component label {
  color: #303030;
  margin-bottom: 10px;
  font-weight: 500;
}
.general-form .form-component a.conditions {
  font-size: 20px;
  color: #303030;
  font-weight: 500;
  text-decoration: underline;
}
.general-form .form-component a.conditions:hover {
  color: var(--color-1);
}
.general-form .form-control {
  border: none;
  outline: none;
  width: 100%;
  min-height: 60px;
  background-color: #F3F3F3;
  padding: 12px 20px;
  color: var(--text-color-1);
  border-radius: 10px;
  font-size: 18px;
  border: 2px solid transparent;
  caret-color: var(--color-1);
}
.general-form .form-control::-moz-placeholder {
  color: #6F6F6F;
  font-family: var(--general-font);
}
.general-form .form-control::placeholder {
  color: #6F6F6F;
  font-family: var(--general-font);
}
.general-form .form-control:focus {
  border-color: var(--color-1);
}
.general-form textarea.form-control {
  min-height: 120px;
  resize: none;
}
.general-form .confirm {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.general-form .submit-button {
  width: 100%;
  background-color: var(--color-1);
  min-height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: var(--white);
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border: 3px solid transparent;
  overflow: hidden;
}
@media (min-width: 992px) {
  .general-form .submit-button.right {
    width: 48%;
    align-self: flex-end;
  }
}
.general-form .submit-button:hover {
  border-color: var(--color-1);
  background-color: transparent;
  color: var(--color-1);
  transform: scale(0.95);
}
.general-form .submit-button:active {
  background-color: var(--color-1);
  color: var(--white);
}
.general-form .form-check {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.general-form .form-check-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 30px;
  min-height: 30px;
  background-color: #F9F9F9;
  background-repeat: no-repeat;
  background-size: 0%;
  background-position: center;
  transition: all 0.1s;
}
.general-form .form-check-input:checked {
  background-size: 80%;
}
.general-form .form-check label {
  margin-left: 10px;
  margin-bottom: 0;
  font-weight: 500;
  text-transform: none;
}
.general-form .form-check label a {
  color: #303030;
  text-decoration: underline;
}
.general-form .form-check label a:hover {
  color: var(--color-1);
}
.general-form .custom-checks {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  min-height: 60px;
  border-radius: 10px;
  padding: 10px 20px;
}
@media (min-width: 768px) {
  .general-form .custom-checks {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .general-form .custom-checks {
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .general-form .custom-checks {
    flex-direction: row;
  }
}
.general-form .custom-checks input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.general-form .custom-checks input:checked ~ label {
  background-color: var(--color-2);
  color: var(--color-1);
}
.general-form .custom-checks .custom-check {
  width: 100%;
  min-height: 50px;
  position: relative;
}
.general-form .custom-checks label {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: all 0.2s;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

header {
  width: 100%;
  position: relative;
  z-index: 99999;
}
header nav {
  width: 100%;
  z-index: 999;
}
header nav .inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header nav.fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  animation: fix-nav 0.5s ease forwards;
}

@keyframes fix-nav {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
nav.top-nav {
  background-color: var(--bg-color-1);
  padding: 11px 0;
  min-height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  nav.top-nav {
    min-height: 50px;
  }
}
@media (min-width: 992px) {
  nav.top-nav {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  nav.top-nav {
    min-height: 60px;
  }
}
nav.top-nav .logo {
  width: 100%;
  max-width: 80px;
}
@media (min-width: 768px) {
  nav.top-nav .logo {
    max-width: 90px;
  }
}
@media (min-width: 992px) {
  nav.top-nav .logo {
    max-width: 110px;
  }
}
@media (min-width: 1400px) {
  nav.top-nav .logo {
    max-width: 130px;
  }
}
nav.top-nav .logo img {
  width: 100%;
  height: 100%;
  max-height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
nav.top-nav .right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
nav.top-nav .right .phone-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--white);
  font-size: 14px;
}
@media (min-width: 768px) {
  nav.top-nav .right .phone-link {
    margin-right: 25px;
  }
}
@media (min-width: 1400px) {
  nav.top-nav .right .phone-link {
    font-size: 16px;
    margin-right: 35px;
  }
}
nav.top-nav .right .phone-link img {
  margin-right: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}
nav.top-nav .right .mobile-icons {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
nav.top-nav .right .mobile-icons button:last-child {
  margin-right: 0;
}
nav.top-nav .right .mobile-icons button.search-button {
  margin-top: -2px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}
@media (min-width: 768px) {
  nav.top-nav .right .mobile-icons button.search-button {
    margin-right: 15px;
  }
}
nav.top-nav .right .mobile-icons button.search-button:hover {
  color: var(--bg-color-2);
}

nav.bottom-nav {
  background-color: var(--bg-color-2);
  position: fixed;
  top: 50px;
  right: -100%;
  width: 100%;
  max-width: 500px;
  min-height: calc(100vh - 50px);
  max-height: calc(100vh - 50px);
  overflow: auto;
  z-index: 99999;
  transition: all 0.3s;
  opacity: 0;
}
nav.bottom-nav.active {
  right: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  nav.bottom-nav {
    top: 50px;
    min-height: calc(100vh - 50px);
    max-height: calc(100vh - 50px);
  }
}
@media (min-width: 992px) {
  nav.bottom-nav {
    top: 60px;
    min-height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }
}
@media (min-width: 1200px) {
  nav.bottom-nav {
    position: relative;
    top: 0;
    right: 0;
    opacity: 1;
    max-width: 100%;
    min-height: 55px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: visible;
  }
  nav.bottom-nav .container {
    align-self: stretch;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
nav.bottom-nav .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner {
    align-items: center;
    align-self: stretch;
  }
}
nav.bottom-nav .inner .category-show-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
nav.bottom-nav .inner .category-show-btn img {
  transition: all 0.3s;
}
nav.bottom-nav .inner .category-show-btn.active img {
  transform: rotate(90deg);
}
nav.bottom-nav .inner .menu-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
nav.bottom-nav .inner .menu-links a {
  color: var(--text-color-1);
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 10px;
}
nav.bottom-nav .inner .menu-links a:hover {
  color: var(--color-1);
  transform: translateX(10px);
}
nav.bottom-nav .inner .categories {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories {
    margin-top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    height: 100%;
    margin-bottom: 0;
  }
}
nav.bottom-nav .inner .categories .category {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  transition: all 0.2s;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category {
    padding: 0 12px;
  }
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category:hover {
    background-color: var(--bg-color-4);
  }
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category {
    width: auto;
    align-items: center;
    height: 100%;
  }
}
nav.bottom-nav .inner .categories .category button {
  flex: 1;
  display: none;
}
nav.bottom-nav .inner .categories .category button img {
  transition: all 0.3s;
}
nav.bottom-nav .inner .categories .category.has-child button {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category.has-child button {
    display: none;
  }
}
nav.bottom-nav .inner .categories .category.active button img {
  transform: rotate(90deg);
}
nav.bottom-nav .inner .categories .category .cat-name {
  width: 100%;
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
nav.bottom-nav .inner .categories .category .cat-name a.link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--text-color-1);
  text-transform: capitalize;
  font-weight: 500;
}
nav.bottom-nav .inner .categories .category .cat-name a.link .icon {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
nav.bottom-nav .inner .categories .category .cat-name a.link .icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav.bottom-nav .inner .categories .category .cat-name a.link span {
  font-size: 14px;
}
@media (min-width: 1400px) {
  nav.bottom-nav .inner .categories .category .cat-name a.link span {
    font-size: 16px;
  }
}
nav.bottom-nav .inner .categories .category .subcategories {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category .subcategories {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    z-index: 999;
    padding: 30px;
    background-color: var(--white);
  }
}
@media (min-width: 1400px) {
  nav.bottom-nav .inner .categories .category .subcategories {
    grid-template-columns: repeat(6, 1fr);
  }
}
nav.bottom-nav .inner .categories .category .subcategories .subcategory {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category .subcategories .subcategory {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px;
    text-align: center;
  }
}
nav.bottom-nav .inner .categories .category .subcategories .subcategory:hover {
  background-color: var(--bg-color-4);
}
nav.bottom-nav .inner .categories .category .subcategories .subcategory .image {
  width: 70px;
  height: 70px;
  margin-right: 15px;
}
@media (min-width: 1200px) {
  nav.bottom-nav .inner .categories .category .subcategories .subcategory .image {
    width: 160px;
    height: 120px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
nav.bottom-nav .inner .categories .category .subcategories .subcategory .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav.bottom-nav .inner .categories .category .subcategories .subcategory .sub-name {
  color: var(--text-color-1);
  text-transform: capitalize;
}

.menu-backdrop {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 50px);
  max-height: calc(100vh - 50px);
  background-color: var(--black-6);
  z-index: 99;
  opacity: 0;
  animation: opacit-1 0.3s ease forwards;
}
@media (min-width: 768px) {
  .menu-backdrop {
    top: 50px;
    min-height: calc(100vh - 50px);
    max-height: calc(100vh - 50px);
  }
}
@media (min-width: 992px) {
  .menu-backdrop {
    top: 60px;
    min-height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
  }
}
@media (min-width: 1200px) {
  .menu-backdrop {
    display: none;
  }
}

@keyframes opacit-1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color-3);
}
footer .footer-top {
  width: 100%;
  padding: 50px 0;
}
footer .footer-top .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-top .links-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  footer .footer-top .links-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  footer .footer-top .links-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
footer .footer-top .links-row .footer-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .footer-top .links-row .footer-links h3 {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  footer .footer-top .links-row .footer-links {
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
footer .footer-top .links-row .footer-links a {
  text-transform: capitalize;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--text-color-1);
}
footer .footer-top .links-row .footer-links a:hover {
  color: var(--color-1);
  transform: translateX(10px);
}
footer .footer-bottom {
  width: 100%;
}
footer .footer-bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-top: 3px solid #e1e1e1;
  padding: 30px 12px;
}
footer .footer-bottom .container .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  footer .footer-bottom .container .inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
footer .footer-bottom .container .inner .logo {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  footer .footer-bottom .container .inner .logo {
    margin-bottom: 0;
  }
}
footer .footer-bottom .container .inner .logo img {
  max-width: 150px;
  max-height: 50px;
}
footer .footer-bottom .container .inner .copyright {
  color: #acb1c4;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  footer .footer-bottom .container .inner .copyright {
    margin-bottom: 0;
    padding: 0 40px;
  }
}
footer .footer-bottom .container .inner .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom .container .inner .social-icons a {
  margin-right: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
footer .footer-bottom .container .inner .social-icons a:last-child {
  margin-right: 0;
}

.products-swiper {
  overflow-y: visible;
  z-index: 0;
}
.products-swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: visible;
  z-index: 0;
}

.products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  place-items: center;
  gap: 30px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .products-grid.item-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid.item-xl-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .products-grid.item-xl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid.item-xxl-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .products-grid.item-xxl-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid.item-xl-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .products-grid.item-xl-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .products-grid.item-xl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .products-grid.item-xxl-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .products-grid.item-xxl-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .products-grid.item-xxl-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  width: 100%;
  max-width: 350px;
  position: relative;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  margin-bottom: 40px;
}
.product-card .content {
  width: 100%;
  padding: 0 10px;
}
.product-card .image {
  width: 100%;
  height: 200px;
  position: relative;
}
@media (min-width: 768px) {
  .product-card .image {
    height: 280px;
  }
}
.product-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.product-card .image .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.2s;
}
.product-card .image .hover a.detail-btn {
  width: 70%;
  max-width: 190px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--white);
  font-weight: 500;
  text-transform: capitalize;
  transform: scale(0);
}
.product-card .image .hover a.detail-btn:hover {
  background-color: var(--bg-color-1);
  border-color: var(--color-1);
}
.product-card .information {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 15px 0;
}
.product-card .information .code {
  color: #ACB1C4;
  font-size: 16px;
}
.product-card .information .name {
  width: 100%;
  color: var(--text-color-1);
  font-size: 18px;
  text-transform: capitalize;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .product-card .information .name {
    font-size: 20px;
  }
}
.product-card .information .description {
  width: 100%;
  height: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: var(--text-color-1) !important;
  margin-bottom: 30px;
  line-height: 20px;
  font-weight: 400;
}
.product-card .information .description p {
  color: var(--text-color-1) !important;
}
.product-card .information .price {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.product-card .information .price .old {
  color: #BDBCBE;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: line-through;
  font-weight: 400;
  display: none;
}
.product-card .information .price .new {
  color: var(--color-1);
  font-size: 24px;
  font-weight: 500;
}
.product-card .buttons {
  width: 100%;
  position: relative;
  transition: all 0.2s;
  padding: 0 10px;
}
.product-card .buttons .inner {
  width: 100%;
  display: grid;
  min-height: 55px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.product-card .buttons .inner .card-btn {
  border: 1px solid var(--color-1);
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-1);
  cursor: pointer;
}
.product-card .buttons .inner .card-btn.active {
  background-color: var(--bg-color-1);
  color: var(--white);
}
.product-card .buttons .inner .card-btn.active img:first-child {
  display: none;
}
.product-card .buttons .inner .card-btn.active img:last-child {
  display: block;
}
.product-card .buttons .inner .card-btn span {
  display: none;
  margin-left: 10px;
}
.product-card .buttons .inner .card-btn img {
  display: block;
}
.product-card .buttons .inner .card-btn img:last-child {
  display: none;
}
.product-card .buttons .inner .favorite-button.active {
  background-color: #F8F3FF;
}
.product-card.discount .information .price .old {
  display: inline-block;
}
.product-card.card-xl {
  max-width: 450px;
}
.product-card:hover {
  box-shadow: 0px 4px 20px rgba(50, 50, 50, 0.2);
}
.product-card:hover .image .hover {
  opacity: 1;
}
.product-card:hover .image .hover a.detail-btn {
  transform: scale(1);
}
.product-card:hover .buttons {
  min-height: 55px;
  z-index: 10;
}
.product-card:hover .buttons .inner {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 110px;
  background-color: var(--white);
  box-shadow: 0px 3px 20px rgba(50, 50, 50, 0.2);
  padding: 0 10px 10px;
  grid-template-areas: "compare compare favorite" "basket basket basket";
}
.product-card:hover .buttons .inner .card-btn span {
  display: block;
}
.product-card:hover .buttons .inner .basket-button {
  grid-area: basket;
}
.product-card:hover .buttons .inner .compare-button {
  grid-area: compare;
}
.product-card:hover .buttons .inner .favorite-button {
  grid-area: favorite;
}

.product-detail-grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .product-detail-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.product-detail-grid .product-image {
  width: 100%;
  margin-bottom: 30px;
  align-self: stretch;
}
@media (min-width: 992px) {
  .product-detail-grid .product-image {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .product-detail-grid .product-image {
    width: 40%;
    max-width: 520px;
  }
}
.product-detail-grid .product-image .swiper {
  width: 100%;
}
.product-detail-grid .product-image .swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product-detail-grid .product-image .swiper.product-main-swiper {
  margin-bottom: 15px;
}
.product-detail-grid .product-image .swiper.product-main-swiper .image {
  width: 100%;
  max-width: 520px;
  height: 200px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  overflow: hidden;
}
.product-detail-grid .product-image .swiper.product-main-swiper .image.zoom {
  cursor: zoom-in;
  background-size: 250%;
}
.product-detail-grid .product-image .swiper.product-main-swiper .image.zoom:hover img {
  opacity: 0;
}
@media (min-width: 768px) {
  .product-detail-grid .product-image .swiper.product-main-swiper .image {
    height: 300px;
  }
}
@media (min-width: 1200px) {
  .product-detail-grid .product-image .swiper.product-main-swiper .image {
    height: 350px;
  }
}
.product-detail-grid .product-image .swiper.product-main-swiper .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.2s;
}
.product-detail-grid .product-image .swiper.product-thumb-swiper .image {
  width: 100%;
  max-width: 160px;
  height: 100px;
}
.product-detail-grid .product-image .swiper.product-thumb-swiper .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail-grid .product-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 992px) {
  .product-detail-grid .product-content {
    padding-left: 30px;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .product-detail-grid .product-content {
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
  }
}
.product-detail-grid .product-content .information {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1400px) {
  .product-detail-grid .product-content .information {
    width: 60%;
    padding-right: 30px;
  }
}
.product-detail-grid .product-content .information .header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.product-detail-grid .product-content .information .header .title {
  font-weight: 500;
  color: var(--text-color-1);
  margin-bottom: 5px;
  text-transform: capitalize;
}
.product-detail-grid .product-content .information .header .code {
  color: #ACB1C4;
}
.product-detail-grid .product-content .information .header .compare-button {
  min-width: 65px;
  min-height: 65px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #f8f5f5;
  border-radius: 50%;
  margin-left: 10px;
  align-self: flex-start;
  cursor: pointer;
}
.product-detail-grid .product-content .information .header .compare-button img {
  display: block;
}
.product-detail-grid .product-content .information .header .compare-button img:last-child {
  display: none;
}
.product-detail-grid .product-content .information .header .compare-button.active {
  background-color: var(--bg-color-1);
}
.product-detail-grid .product-content .information .header .compare-button.active img:last-child {
  display: block;
}
.product-detail-grid .product-content .information .header .compare-button.active img:first-child {
  display: none;
}
.product-detail-grid .product-content .information .description {
  width: 100%;
  font-size: 12px;
  color: var(--text-color-1);
  line-height: 20px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .description {
    font-size: 14px;
  }
}
.product-detail-grid .product-content .information .product-checks {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
  padding: 15px 0;
  margin-bottom: 10px;
}
.product-detail-grid .product-content .information .product-checks::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.product-detail-grid .product-content .information .product-check-swiper {
  width: 100%;
}
.product-detail-grid .product-content .information .product-check-swiper .swiper-slide {
  padding: 15px 0;
}
.product-detail-grid .product-content .information .product-check {
  border-radius: 5px;
  border: 1px solid var(--color-1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .product-check {
    margin-right: 18px;
  }
}
.product-detail-grid .product-content .information .product-check .check-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color-1);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(10px, -10px) scale(0);
  transition: all 0.2s;
}
.product-detail-grid .product-content .information .product-check .product-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 80px;
  height: 40px;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .product-check .product-img {
    width: 100px;
    height: 60px;
  }
}
.product-detail-grid .product-content .information .product-check.useless {
  border-color: #998BAC;
  cursor: not-allowed;
}
.product-detail-grid .product-content .information .product-check.useless::before, .product-detail-grid .product-content .information .product-check.useless::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #998BAC;
  z-index: 1;
}
.product-detail-grid .product-content .information .product-check.useless::before {
  transform: scale(1.2) rotate(36deg);
}
.product-detail-grid .product-content .information .product-check.useless::after {
  transform: scale(1.2) rotate(-36deg);
}
.product-detail-grid .product-content .information .product-check.useless img {
  opacity: 0.6;
}
.product-detail-grid .product-content .information .product-check.color-check {
  min-width: 80px;
  min-height: 60px;
  max-width: 80px;
  max-height: 60px;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .product-check.color-check {
    min-width: 120px;
    min-height: 90px;
    max-width: 120px;
    max-height: 90px;
  }
}
.product-detail-grid .product-content .information .product-check.size-check {
  min-width: 60px;
  min-height: 60px;
  max-width: 60px;
  max-height: 60px;
  font-size: 20px;
}
.product-detail-grid .product-content .information .product-check.size-check::before {
  transform: scale(1.3) rotate(44deg);
}
.product-detail-grid .product-content .information .product-check.size-check::after {
  transform: scale(1.3) rotate(-44deg);
}
.product-detail-grid .product-content .information .product-check.size-check span {
  display: block;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .product-check.size-check {
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    font-size: 24px;
  }
}
.product-detail-grid .product-content .information .product-check.active .check-icon {
  transform: translate(10px, -10px) scale(0.7);
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .information .product-check.active .check-icon {
    transform: translate(10px, -10px) scale(1);
  }
}
.product-detail-grid .product-content .product-confirm-cart {
  width: 100%;
  padding: 15px;
  box-shadow: 0 0 5px var(--black-3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .product-detail-grid .product-content .product-confirm-cart {
    padding: 20px;
  }
}
.product-detail-grid .product-content .product-confirm-cart .product-price {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
.product-detail-grid .product-content .product-confirm-cart .product-price .old {
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--text-color-1);
  margin-right: 10px;
}
.product-detail-grid .product-content .product-confirm-cart .product-price .new {
  font-size: 24px;
  font-weight: 500;
  color: var(--color-1);
}
@media (min-width: 1200px) {
  .product-detail-grid .product-content .product-confirm-cart .product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}
.product-detail-grid .product-content .product-confirm-cart .add-basket {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount {
  width: 47%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #A9A9A9;
  border-radius: 5px;
  height: 50px;
  padding: 0 5px;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount input {
  border: none;
  outline: none;
  width: 40px;
  text-align: center;
  color: var(--text-color-1);
  font-weight: 500;
  font-size: 18px;
  margin: 0 5px;
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount input {
    font-size: 20px;
    width: 60px;
  }
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount button {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 50%;
  text-align: center;
  line-height: 0;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount button:hover {
  background-color: var(--color-1);
  color: var(--white);
}
@media (min-width: 768px) {
  .product-detail-grid .product-content .product-confirm-cart .add-basket .product-amount button {
    font-size: 24px;
  }
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button {
  width: 47%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #A9A9A9;
  border-radius: 5px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.2s;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button .icon {
  margin-right: 10px;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button .icon img {
  display: block;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button .icon img:last-child {
  display: none;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button:hover {
  border-color: var(--color-1);
  color: var(--color-1);
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button.active {
  background-color: var(--color-1);
  color: var(--white);
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button.active:hover {
  color: var(--white) !important;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button.active .icon img:first-child {
  display: none;
}
.product-detail-grid .product-content .product-confirm-cart .add-basket .basket-button.active .icon img:last-child {
  display: block;
}
.product-detail-grid .product-content .product-confirm-cart .buy-now {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-1);
  border-radius: 5px;
  color: var(--color-1);
  text-align: center;
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 15px;
}
.product-detail-grid .product-content .product-confirm-cart .buy-now:hover {
  background-color: var(--bg-color-1);
  color: var(--white);
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button .icon {
  margin-right: 10px;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button .icon img {
  display: block;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button .icon img:last-child {
  display: none;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button:hover {
  color: var(--color-1);
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button.active span {
  display: none;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button.active img:first-child {
  display: none;
}
.product-detail-grid .product-content .product-confirm-cart .favorite-button.active img:last-child {
  display: block;
}

.filters-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.filters-wrapper .filter-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.filters-wrapper .filter-item .header {
  width: 100%;
  background-color: #EFEFEF;
  padding: 12px 15px;
  border-radius: 5px 5px 0 0;
  color: var(--text-color-3);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.filters-wrapper .filter-item .header span {
  margin-left: 7px;
  color: #959595;
}
.filters-wrapper .filter-item .header .title {
  text-transform: capitalize;
  font-weight: 500;
}
.filters-wrapper .filter-item .content {
  width: 100%;
  background-color: #F9F9F9;
  padding: 12px 15px;
  border: 0 0 5px 5px;
}
.filters-wrapper .category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.filters-wrapper .category-list a {
  color: var(--text-color-3);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}
.filters-wrapper .category-list a:hover {
  color: var(--color-1);
}
.filters-wrapper .buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.filters-wrapper .buttons button {
  width: 48%;
  padding: 15px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
}
.filters-wrapper .buttons .submit {
  background-color: var(--bg-color-1);
  color: var(--white);
  border-color: var(--color-1);
}
.filters-wrapper .buttons .submit:hover {
  background-color: var(--white);
  color: var(--color-1);
}
.filters-wrapper .buttons .reset:hover {
  background-color: #DB353A;
  color: var(--white);
}

.price-filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}
.price-filter .input-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.price-filter .input-row input {
  width: 45%;
  height: 30px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid var(--color-1);
  color: var(--color-1);
  font-weight: 500;
  font-size: 17px;
}
.price-filter .input-row input::-moz-placeholder {
  color: #afafaf;
  text-transform: capitalize;
}
.price-filter .input-row input::placeholder {
  color: #afafaf;
  text-transform: capitalize;
}
.price-filter .range-row {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
.price-filter .range-row::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 5px;
  transform: translateY(-50%);
  background-color: var(--bg-color-1);
  z-index: 1;
  border-radius: 10px;
}
.price-filter .range-row input {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
  background-color: transparent;
  z-index: 5;
}
.price-filter .range-row input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--bg-color-1);
}
.price-filter .range-row input::-webkit-slider-thumb-active {
  background-color: var(--bg-color-2);
}

.size-filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.size-filter .size-check {
  width: 100%;
  margin-bottom: 12px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.size-filter .size-check input[type=checkbox] {
  margin-right: 10px;
  border: 1px solid var(--color-1) !important;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  accent-color: var(--bg-color-1);
  border: 1px solid var(--color-1) !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.size-filter .size-check input[type=checkbox]:checked {
  background-color: var(--bg-color-1);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.size-filter .size-check label {
  color: var(--text-color-3);
}

.color-filter {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.color-filter input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: attr(data-color);
  position: relative;
  border: 1px solid transparent;
  margin: 10px;
}
.color-filter input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  border-radius: 50%;
}
.color-filter input[type=checkbox]:checked::before {
  border-color: #838383;
}

.sort-filters {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .sort-filters {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.sort-filters .sort-filter {
  width: 100%;
  position: relative;
  cursor: pointer;
  background-color: #f9f9f9;
}
@media (min-width: 992px) {
  .sort-filters .sort-filter {
    border-right: 1px solid #efefef;
    max-width: 220px;
  }
}
.sort-filters .sort-filter .title {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  color: var(--text-color-3);
  text-transform: capitalize;
}
.sort-filters .sort-filter .title a {
  color: var(--text-color-3);
}
.sort-filters .sort-filter .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-top: 1px solid var(--color-1);
  z-index: 10;
  background-color: #f9f9f9;
}
@media (min-width: 992px) {
  .sort-filters .sort-filter .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}
.sort-filters .sort-filter .menu a {
  color: var(--text-color-3);
  margin-bottom: 10px;
}
.sort-filters .sort-filter .menu a:last-child {
  margin-bottom: 0;
}
.sort-filters .sort-filter .menu .option {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  padding: 12px;
}
.sort-filters .sort-filter .menu .option input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.sort-filters .sort-filter .menu .option:hover {
  background-color: var(--color-1);
  color: var(--white);
}
.sort-filters .sort-filter .menu .option:last-child {
  margin-bottom: 0;
}

.comparisons-wrapper {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.comparisons-wrapper .column {
  min-width: 220px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .comparisons-wrapper .column {
    min-width: 240px;
    max-width: 240px;
  }
}
.comparisons-wrapper .column .image-td {
  width: 95%;
  height: 130px;
  margin-bottom: 40px;
}
.comparisons-wrapper .column .image-td img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
  display: block;
}
.comparisons-wrapper .column .parametr-list {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.comparisons-wrapper .column .parametr-list li {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  color: var(--text-color-1);
  text-transform: capitalize;
}
.comparisons-wrapper .column .parametr-list li:nth-child(odd) {
  background-color: var(--bg-color-5);
}
.comparisons-wrapper .column .delete-button {
  width: 22px;
  height: 22px;
  border: 1px solid #acb1c4;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}
.comparisons-wrapper .column .delete-button:hover {
  transform: scale(1.2);
}
.comparisons-wrapper .column.heading .parametr-list li {
  font-weight: 500;
}
.comparisons-wrapper .column.product .parametr-list li {
  justify-content: center;
}

section.banner {
  width: 100%;
  padding: 0 0;
  margin-bottom: 20px;
  position: relative;
}
section.category-cards {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.partners {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.services {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.products {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.products-page {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.product-detail {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.product-accessories {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.similar-products {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
section.wishlist {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.wishlist {
    padding: 40px 0;
  }
}
section.comparisons {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.comparisons {
    padding: 40px 0;
  }
}
section.basket {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.basket {
    padding: 40px 0;
  }
}
section.basket-form {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.basket-form {
    padding: 40px 0;
  }
}
section.login {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.login {
    padding: 40px 0;
  }
}
section.register {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.register {
    padding: 40px 0;
  }
}
section.orders {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.orders {
    padding: 40px 0;
  }
}
section.about {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.about {
    padding: 40px 0;
  }
}
section.contact {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.contact {
    padding: 40px 0;
  }
}
section.page-404 {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 1400px) {
  section.page-404 {
    padding: 40px 0;
  }
}

section.banner {
  max-height: 80vh;
}
section.banner .banner-slide {
  width: 100%;
  min-height: 400px;
  position: relative;
}
section.banner .banner-slide img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.banner .banner-slide .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  background-color: var(--black-4);
}
@media (min-width: 1200px) {
  section.banner .banner-slide .content .title {
    font-size: 28px;
  }
}
section.banner .banner-slide .content a {
  width: 100%;
  max-width: 300px;
  padding: 15px;
  border: 2px solid var(--white);
  font-size: 20px;
  color: var(--white);
  margin-top: 40px;
  text-transform: capitalize;
}
section.banner .banner-slide .content a:hover {
  background-color: var(--bg-color-1);
  border-color: var(--color-1);
}
@media (min-width: 992px) {
  section.banner .banner-slide .content a {
    font-size: 24px;
  }
}

section.category-cards .category-card-swiper .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.category-cards .category-card {
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  border-radius: 5px;
  color: var(--white);
  text-transform: capitalize;
  padding: 20px;
  text-align: center;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  section.category-cards .category-card {
    max-width: 320px;
    min-height: 260px;
  }
}
section.category-cards .category-card .image {
  width: 150px;
  height: 100px;
  margin-bottom: 20px;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  section.category-cards .category-card .image {
    width: 190px;
    height: 140px;
  }
}
section.category-cards .category-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.category-cards .category-card:hover {
  background-position: top 20px left 20px;
}
section.category-cards .category-card:hover .image {
  transform: scale(1.1);
}

section.partners .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.partners .partner-logo {
  width: 200px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.partners .partner-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.partners .partner-logo:hover {
  transform: scale(1.1);
}

section.services .services-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  place-items: center;
}
@media (min-width: 1200px) {
  section.services .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  section.services .services-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}
section.services .services-wrapper .service-cart {
  width: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  padding: 25px;
  color: var(--text-color-1);
  text-align: center;
  text-transform: capitalize;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  section.services .services-wrapper .service-cart {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: start;
  }
}
@media (min-width: 768px) {
  section.services .services-wrapper .service-cart {
    min-height: 300px;
  }
}
@media (min-width: 1400px) {
  section.services .services-wrapper .service-cart:nth-child(4n-3) {
    grid-column: 1/4;
  }
  section.services .services-wrapper .service-cart:nth-child(4n-2) {
    grid-column: 4/6;
  }
  section.services .services-wrapper .service-cart:nth-child(4n-1) {
    grid-column: 1/3;
  }
  section.services .services-wrapper .service-cart:nth-child(4n) {
    grid-column: 3/6;
  }
}
section.services .services-wrapper .service-cart .content {
  margin-bottom: 20px;
  max-width: 500px;
}
@media (min-width: 768px) {
  section.services .services-wrapper .service-cart .content {
    padding-right: 40px;
  }
}
section.services .services-wrapper .service-cart .content .title {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  section.services .services-wrapper .service-cart .content .title {
    font-weight: 500;
    font-size: 32px;
  }
}
section.services .services-wrapper .service-cart .image {
  max-width: 200px;
  height: 200px;
}
@media (min-width: 1200px) {
  section.services .services-wrapper .service-cart .image {
    min-width: 170px;
    max-width: 250px;
    height: auto;
    max-height: 250px;
  }
}
section.services .services-wrapper .service-cart .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 250px;
}
section.services .services-wrapper .service-cart.bg-left {
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: bottom left;
}
section.services .services-wrapper .service-cart.bg-left:hover {
  background-position: bottom right;
}
section.services .services-wrapper .service-cart.bg-right {
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: bottom right;
}
section.services .services-wrapper .service-cart.bg-right:hover {
  background-position: bottom left;
}
section.services .services-wrapper .service-cart.bg-cover {
  background-size: cover;
  background-position: center;
}
section.services .services-wrapper .service-cart.bg-cover:hover {
  background-position: top 50px left 50px;
}

.products-general-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (min-width: 992px) {
  .products-general-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
  }
}
.products-general-wrapper .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (min-width: 992px) {
  .products-general-wrapper .left {
    max-width: 250px;
  }
}
.products-general-wrapper .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
}
@media (min-width: 992px) {
  .products-general-wrapper .right {
    padding-left: 30px;
  }
}
@media (min-width: 1200px) {
  .products-general-wrapper .right {
    padding-left: 60px;
  }
}
.products-general-wrapper .filters-show-btn {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-color-1);
  padding: 15px 12px;
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.products-general-wrapper .filters-show-btn img {
  margin-right: 5px;
  display: block;
}
.products-general-wrapper .product-pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.products-general-wrapper .product-pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-1);
  border-radius: 5px;
  color: var(--color-1);
  margin-right: 5px;
  font-weight: 500;
}
.products-general-wrapper .product-pagination a:last-child {
  margin-right: 0;
}
.products-general-wrapper .product-pagination a.active {
  background-color: var(--bg-color-1);
  color: var(--white);
}
.products-general-wrapper .product-pagination a:hover {
  background-color: var(--bg-color-1);
  color: var(--white);
}

.product-category-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
  padding: 15px 0;
  margin-bottom: 15px;
}
.product-category-buttons button {
  font-size: 20px;
  color: var(--text-color-4);
  font-weight: 500;
  margin-right: 15px;
  text-transform: capitalize;
  cursor: pointer;
}
@media (min-width: 768px) {
  .product-category-buttons button {
    font-size: 24px;
    margin-right: 20px;
  }
}
.product-category-buttons button.active {
  color: var(--color-1);
}

.basket-table-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: auto;
  padding-bottom: 30px;
}
.basket-table-wrapper table {
  width: 100%;
  min-width: 1200px;
  border-collapse: collapse;
}
.basket-table-wrapper table tr {
  border: none;
  border-bottom: 1px solid #C6C6C6;
}
.basket-table-wrapper table td, .basket-table-wrapper table th {
  padding: 20px 0;
  text-align: center;
}
.basket-table-wrapper table th {
  color: #838383;
  font-weight: 400;
  text-transform: capitalize;
}
.basket-table-wrapper table .image-td {
  width: 200px;
}
.basket-table-wrapper table .info-td {
  width: 300px;
}
.basket-table-wrapper table .product-image {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.basket-table-wrapper table .product-image img {
  -o-object-fit: contain;
     object-fit: contain;
}
.basket-table-wrapper table .product-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10px;
}
.basket-table-wrapper table .product-info .name {
  color: var(--text-color-1);
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.basket-table-wrapper table .product-info .code {
  color: #ACB1C4;
}
.basket-table-wrapper table .product-color {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.basket-table-wrapper table .product-color .color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #00477F;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.basket-table-wrapper table .product-color .color span {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.basket-table-wrapper table .product-price,
.basket-table-wrapper table .product-price-total {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.basket-table-wrapper table .amount-td {
  width: 240px;
}
.basket-table-wrapper table .amount-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.basket-table-wrapper table .product-amount {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 60px;
  background-color: #F5F5F5;
  border-radius: 5px;
}
.basket-table-wrapper table .product-amount input {
  width: 60px;
  background-color: transparent;
  border: none;
  outline: none;
  height: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.basket-table-wrapper table .product-amount button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  line-height: none;
  color: #fff;
  background-color: #D1D1D1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.basket-table-wrapper table .product-amount button:hover {
  background-color: var(--color-1);
}
.basket-table-wrapper table .delete-td {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.basket-table-wrapper table .delete-td button {
  transition: all 0.2s;
  cursor: pointer;
}
.basket-table-wrapper table .delete-td button:hover {
  transform: scale(1.3);
}

.basket-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.basket-bottom .basket-result {
  width: 100%;
  padding: 25px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  overflow: auto;
  max-width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #C6C6C6;
}
.basket-bottom .basket-result .line {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 5px;
  font-size: 16px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 576px) {
  .basket-bottom .basket-result .line {
    max-width: 500px;
  }
}
.basket-bottom .basket-result .line:last-child {
  font-size: 18px;
}
.basket-bottom .basket-result .line .label {
  min-width: 125px;
  font-weight: 500;
  text-transform: capitalize;
  margin-right: 20px;
}
@media (min-width: 576px) {
  .basket-bottom .basket-result .line .label {
    text-align: end;
  }
}
.basket-bottom .basket-result .line .value {
  text-align: end;
}
.basket-bottom .basket-confirm {
  width: 100%;
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.basket-bottom .basket-confirm .confirm-button {
  width: 100%;
  max-width: 310px;
  min-height: 60px;
  padding: 15px;
  border-radius: 10px;
  background-color: var(--bg-color-1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.3s;
}
.basket-bottom .basket-confirm .confirm-button:hover {
  border-color: var(--color-1);
  background-color: transparent;
  color: var(--color-1);
  transform: scale(0.95);
}
.basket-bottom .basket-confirm .confirm-button:active {
  background-color: var(--color-1);
  color: var(--white);
}

section.basket-form .basket-information {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.basket-form .basket-information .row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #C6C6C6;
}
section.basket-form .basket-information .row.title h2 {
  font-weight: 500;
}
section.basket-form .basket-information .row.title a {
  font-size: 20px;
  color: var(--color-1);
}
section.basket-form .basket-information .row.product {
  min-width: 600px;
}
section.basket-form .basket-information .row.product .content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
section.basket-form .basket-information .row.product .image {
  margin-right: 15px;
}
section.basket-form .basket-information .row.product .image img {
  -o-object-fit: contain;
     object-fit: contain;
}
section.basket-form .basket-information .row.product .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.basket-form .basket-information .row.product .info .name {
  color: var(--text-color-1);
  margin-bottom: 10px;
  font-weight: 500;
}
section.basket-form .basket-information .row.product .info .name a {
  color: var(--text-color-1);
}
section.basket-form .basket-information .row.product .info .code {
  color: #ACB1C4;
}
section.basket-form .basket-information .row.product .price {
  font-size: 20px;
  font-weight: 500;
}
section.basket-form .basket-information .products {
  width: 100%;
  overflow: auto;
}
section.basket-form .basket-information .basket-result {
  width: 100%;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.basket-form .basket-information .basket-result .line {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
}
section.basket-form .basket-information .basket-result .line:last-child {
  font-size: 20px;
  font-weight: 500;
}

section.orders .order-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  section.orders .order-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
section.orders .order-wrapper .order-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #C6C6C6;
}
@media (min-width: 768px) {
  section.orders .order-wrapper .order-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  section.orders .order-wrapper .order-item {
    width: 50%;
    padding: 30px;
  }
  section.orders .order-wrapper .order-item:nth-child(odd) {
    border-right: 1px solid #C6C6C6;
  }
}
section.orders .order-wrapper .order-item .image {
  width: 100%;
  max-width: 300px;
  min-height: 100px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  section.orders .order-wrapper .order-item .image {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
section.orders .order-wrapper .order-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.orders .order-wrapper .order-item .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.orders .order-wrapper .order-item .content .order-code {
  color: #7D7D7D;
  margin-bottom: 5px;
}
section.orders .order-wrapper .order-item .content .product-name {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
}
section.orders .order-wrapper .order-item .content .product-code {
  color: #ACB1C4;
  margin-bottom: 5px;
}
section.orders .order-wrapper .order-item .content .details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.orders .order-wrapper .order-item .content .details .line {
  margin-bottom: 5px;
}
section.orders .order-wrapper .order-item .content .details span:first-child {
  color: #7D7D7D;
  margin-right: 10px;
}

section.about .about-content {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (min-width: 992px) {
  section.about .about-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
section.about .about-content .column {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  section.about .about-content .column {
    width: 47%;
  }
  section.about .about-content .column:first-child {
    justify-content: flex-start;
  }
}
section.about .about-content .about-image {
  width: 100%;
  max-width: 600px;
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  section.about .about-content .about-image {
    padding-right: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  section.about .about-content .about-image {
    padding-right: 50px;
    padding-bottom: 50px;
  }
}
section.about .about-content .about-image img {
  display: block;
}
section.about .about-content .about-image img.main {
  width: 100%;
  height: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about .about-content .about-image img.small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.about .about-content .text {
  width: 100%;
  max-width: 600px;
}
section.about .about-content .text ul {
  padding-left: 30px;
}
section.about .about-altcontent {
  width: 100%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.about .about-altcontent .text {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 992px) {
  section.about .about-altcontent .text {
    max-width: 100%;
  }
}
section.about .about-altcontent .text ul {
  padding-left: 30px;
}

section.contact .contact-general-wrapper {
  padding: 30px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media (min-width: 992px) {
  section.contact .contact-general-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    align-items: stretch;
  }
}
section.contact .contact-general-wrapper .left,
section.contact .contact-general-wrapper .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  section.contact .contact-general-wrapper .left,
  section.contact .contact-general-wrapper .right {
    width: 48%;
  }
}
section.contact .contact-general-wrapper .general-form {
  padding: 0;
}
section.contact .contact-general-wrapper .right {
  background-color: var(--color-1);
  color: var(--white);
  padding: 50px 20px;
  justify-content: space-between;
}
section.contact .contact-general-wrapper .right .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
}
section.contact .contact-general-wrapper .right .contact-info .item {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.contact .contact-general-wrapper .right .contact-info .item .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
section.contact .contact-general-wrapper .right .contact-info .item .icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
section.contact .contact-general-wrapper .right .contact-info .item .label {
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  section.contact .contact-general-wrapper .right .contact-info .item .label {
    font-size: 22px;
  }
}
section.contact .contact-general-wrapper .right .social-icons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
section.contact .contact-general-wrapper .right .social-icons a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--white);
}

section.page-404 {
  height: 100%;
}
section.page-404 .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}
section.page-404 .content .error {
  font-size: 50px;
  font-weight: 600;
  color: var(--color-1);
}
@media (min-width: 992px) {
  section.page-404 .content .error {
    font-size: 70px;
  }
}
section.page-404 .content .text {
  font-size: 18px;
  margin: 15px 0;
  text-align: center;
}
@media (min-width: 992px) {
  section.page-404 .content .text {
    font-size: 22px;
  }
}
section.page-404 .content a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--color-1);
  color: var(--white);
  padding: 12px 10px;
  width: 100%;
  max-width: 180px;
  margin-top: 10px;
  border-radius: 10px;
}
@media (min-width: 992px) {
  section.page-404 .content a {
    font-size: 22px;
  }
}/*# sourceMappingURL=styles.css.map */