/* Search input CSS */
.header-search {
  background-color: #fff;
  border: 1px solid rgb(37 53 90 / 50%);
  border-radius: 12px;
  -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 2px 10px);
  filter: drop-shadow(rgba(0, 0, 0, 0.1) 0px 2px 10px);
  padding: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  max-width: 400px;
  width: 100%;
  min-width: 220px;
}
@media (max-width: 767px) {
  .header-search {
    position: absolute;
    /* left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); */
    bottom: 10px;
    max-width: 320px;
    display: none;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .header-search {
    max-width: 480px;
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header-search {
    max-width: 300px;
  }
}
.header-search > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
.header-search button.icon {
  font-size: 24px;
  margin-right: 10px;
  color: red;
}
.header-search input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  padding-left: 10px;
}
.header-search input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #818181;
}
.header-search input::-moz-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #818181;
}
.header-search input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #818181;
}
.header-search input::-ms-input-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #818181;
}
.header-search input::placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #818181;
}
/* Search Model CSS */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2223;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(37 53 90 / 55%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.modal.js-modal-filter .modal-wrapper {
  max-width: 330px;
  border-radius: 0;
  left: 0;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.modal.js-modal-filter .modal-wrapper.is-visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.modal:not([class*="js-modal-"]) .modal-wrapper {
  max-height: 720px;
  border-radius: 8px;
  left: 50%;
  -webkit-transform: translateY(100px) translateX(-50%);
  -ms-transform: translateY(100px) translateX(-50%);
  transform: translateY(100px) translateX(-50%);
}
.modal:not([class*="js-modal-"]) .modal-wrapper.is-visible {
  -webkit-transform: translateY(0) translateX(-50%);
  -ms-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
}
.modal-wrapper {
  overflow: hidden;
  padding: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-width: 990px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: red rgb(37 53 90 / 30%);
  scrollbar-width: thin;
}
.modal-wrapper::-webkit-scrollbar-track {
  background-color: rgb(37 53 90 / 30%);
}
.modal-wrapper::-webkit-scrollbar {
  width: 5px;
}
.modal-wrapper::-webkit-scrollbar-thumb {
  background-color: red;
}
@media (max-width: 767px) {
  .modal-wrapper {
    padding: 30px;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1465px) {
  .modal-wrapper {
    padding: 30px;
  }
}
.modal-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal-close {
  font-size: 20px;
  color: #000;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 0 0 0 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: red;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .modal-close {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2223;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(37 53 90 / 55%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.modal.js-modal-filter .modal-wrapper {
  max-width: 330px;
  border-radius: 0;
  left: 0;
  -webkit-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  transform: translateX(-50px);
}
.modal.js-modal-filter .modal-wrapper.is-visible {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.modal:not([class*="js-modal-"]) .modal-wrapper {
  max-height: 720px;
  border-radius: 8px;
  left: 50%;
  -webkit-transform: translateY(100px) translateX(-50%);
  -ms-transform: translateY(100px) translateX(-50%);
  transform: translateY(100px) translateX(-50%);
}
.modal:not([class*="js-modal-"]) .modal-wrapper.is-visible {
  -webkit-transform: translateY(0) translateX(-50%);
  -ms-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
}
.modal-wrapper {
  overflow: hidden;
  padding: 70px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #fff;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-width: 990px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: red rgb(37 53 90 / 30%);
  scrollbar-width: thin;
}
.modal-wrapper::-webkit-scrollbar-track {
  background-color: rgb(37 53 90 / 30%);
}
.modal-wrapper::-webkit-scrollbar {
  width: 5px;
}
.modal-wrapper::-webkit-scrollbar-thumb {
  background-color: red;
}
@media (max-width: 767px) {
  .modal-wrapper {
    padding: 30px;
    padding-top: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1465px) {
  .modal-wrapper {
    padding: 30px;
  }
}
.modal-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
}
.modal-close {
  font-size: 20px;
  color: #000;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 0 0 0 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: red;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .modal-close {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}

.search {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(37 53 90 / 70%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search.is-visible {
  opacity: 1;
  visibility: visible;
}
.search-wrapper {
  width: 800px;
  max-width: 100%;
  height: 90vh;
  max-height: 750px;
  background: #fff;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .search-wrapper {
    height: 85vh;
  }
}
.search-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.search-wrapper .row {
  height: 100%;
}
.search-wrapper .row > div {
  height: 100%;
}

/* Error Modal CSS */
.error-content {
  font-size: 16px;
  color: #494949;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .error-content {
    font-size: 14px !important;
  }
}
.error-wrapper {
  /* width: 800px; */
  max-width: 70%;
  height: 220px;
  max-height: 750px;
  background: #fff;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-70px);
  -ms-transform: translateY(-70px);
  transform: translateY(-70px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .error-wrapper {
    height: 220px;
  }
}
.error-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.error-wrapper .row {
  height: 100%;
}
.error-wrapper .row > div {
  height: 100%;
}
.error-button {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 5px;
  padding-right: 30px;
  padding-block: 5px;
  border: 2px solid rgb(37 53 90 / 10%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.error-button:hover {
  border: 2px solid rgb(37 53 90 / 30%);
}

.error-button:hover span.icon {
  background-color: red;
  color: #fff;
}

.error-button span.icon {
  font-size: 24px;
  margin-right: 12px;
  color: red;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgb(37 53 90 / 10%);
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .error-button span.icon {
    margin-right: 0;
    width: 35px;
    height: 35px;
  }
}

.error-button span.icon {
  font-size: 20px;
}

.search-header {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}
.search-header .heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: red;
  font-weight: 700;
  font-size: 18px;
}
.search-header .heading .icon {
  font-size: 20px;
  margin-right: 20px;
}
.search-header form {
  width: 100%;
}
.search-header input {
  font-family: "Catamaran", sans-serif;
  color: #1e1e1e;
  height: 63px;
  width: 100%;
  font-size: 16px;
}
.search-close {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.search-close .icon {
  color: red;
  font-size: 28px;
}
.search-nav {
  background: rgb(37 53 90 / 8%);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 260px;
  flex: 0 0 260px;
  max-width: 260px;
  position: relative;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 767px) {
  .search-nav {
    display: none;
  }
}
.search-nav ul {
  padding-top: 15px;
}
.search-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 25px;
  color: red;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-nav ul li a:hover {
  background: red;
  color: #fff;
}
.search-nav ul li a .icon {
  width: 25px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 15px;
  opacity: 0.3;
}
.search-nav ul li a .text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.search-content {
  width: calc(100% - 260px);
}
@media (max-width: 767px) {
  .search-content {
    width: 100%;
  }
}
.search-list {
  height: calc(100% - 65px);
  overflow-y: auto;
  scrollbar-color: rgba(0, 0, 0, 0.2) #fff;
  scrollbar-width: thin;
}
.search-list::-webkit-scrollbar-track {
  background-color: #fff;
}
.search-list::-webkit-scrollbar {
  width: 6px;
}
.search-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
}
.search-list ul {
  padding: 10px 25px;
}
.search-list .search-outer ul {
  position: relative;
}
.search-list .search-outer > ul:not(.special) > li {
  border-bottom: 1px solid rgb(232, 61, 67, 0.08);
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
  z-index: 1;
}
.search-list .search-outer > ul:not(.special) > li:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  right: -15px;
  bottom: -1px;
  left: -15px;
  border-radius: 15px;
  background: rgb(37 53 90 / 8%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.search-list .search-outer > ul:not(.special) > li:last-child {
  border-bottom: 0 none;
}
.search-list .search-outer > ul:not(.special) > li:hover:before {
  opacity: 1;
  visibility: visible;
}
.search-list .search-outer > ul:not(.special) > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.search-list__photo {
  width: 100px;
  height: 80px;
  overflow: hidden;
  border-radius: 8px;
  padding: 5px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  background: #fff;
  position: relative;
}
.search-list__photo .icon {
  font-size: 36px;
  color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
}
.search-list__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
.search-list__right {
  padding-left: 15px;
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Catamaran", sans-serif;
}
.search-list__right .title {
  color: red;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  overflow: hidden;
  max-height: 42px;
}
.search-list__right > .text {
  font-size: 14px;
  color: #818181;
}
.search-list__right .tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 11px;
  margin-top: 8px;
  color: #818181;
}
.search-list__right .tag .icon {
  font-size: 11px;
  opacity: 0.5;
  margin-right: 7px;
}
.search-list__right .tag .text {
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.no-gutters {
  margin-left: 0;
  margin-right: 0;
}

/* header sepet css */

.header-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .header-buttons:not([class*="ui-mobile"]) {
    display: none;
  }
}
@media (min-width: 992px) {
  .header-buttons.ui-mobile {
    display: none;
  }
}
.header-buttons .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 5px;
  padding-right: 30px;
  padding-block: 5px;
  border: 2px solid rgb(37 53 90 / 10%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .header-buttons .btn {
    padding-right: 5px;
  }
}
.header-buttons .btn:not(:last-child) {
  margin-right: 10px;
}
.header-buttons .btn:hover {
  border: 2px solid rgb(37 53 90 / 30%);
}
.header-buttons .btn:hover span.icon {
  background-color: red;
  color: #fff;
}
.header-buttons .btn.ui-style-basket span.icon {
  font-size: 20px;
}
.header-buttons .btn span.icon {
  font-size: 24px;
  margin-right: 12px;
  color: red;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgb(37 53 90 / 10%);
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .header-buttons .btn span.icon {
    margin-right: 0;
    width: 35px;
    height: 35px;
  }
}
.header-buttons .btn .count {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  background-color: red;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-family: "Inter", sans-serif;
  position: absolute;
  right: -10px;
  top: -10px;
  -webkit-box-shadow: 0 0 15px rgba(30, 30, 30, 0.2);
  box-shadow: 0 0 15px rgba(30, 30, 30, 0.2);
}
@media (max-width: 991px) {
  .header-buttons .btn .count {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}

/* Giris yap css */

.page-content__login .login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__login .login-logo a {
  display: block;
  position: relative;
}
.page-content__login .login-logo h1 {
  font-size: 0;
  margin: 0;
}
.page-content__login .login-logo img {
  width: 300px;
}
.page-content__login .login-tab {
  background-color: #fff;
  margin-top: 50px;
  border-radius: 15px;
  border: 1px solid #ebebeb;
  min-width: 500px;
}
@media (max-width: 767px) {
  .page-content__login .login-tab {
    min-width: 0;
  }
}
.page-content__login .login-tab__header {
  padding: 30px;
  border-bottom: 1px solid #ebebeb;
}
.page-content__login .login-tab__header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-content__login .login-tab__header ul li:not(:last-child) {
  margin-right: 30px;
}
.page-content__login .login-tab__header ul li.is-current > a,
.page-content__login .login-tab__header ul li:hover > a {
  color: #000;
}
.page-content__login .login-tab__header ul li > a {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.7px;
  color: #818181;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__login .login-tab__bottom {
  padding: 50px;
}
@media (max-width: 767px) {
  .page-content__login .login-tab__bottom {
    padding: 30px;
  }
}
.page-content__login .login-tab__bottom .reset {
  font-size: 14px;
  color: #818181;
  margin-bottom: 20px;
  text-align: center;
}
.page-content__login .login-tab__bottom .form a.text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: red;
  margin-top: 15px;
  display: inline-block;
}
.page-content__login .login-tab__bottom .form a.text:hover {
  text-decoration: underline;
}
.page-content__login .login-tab__bottom .form-send > input {
  width: 100%;
  font-size: 18px;
}
.form > form > ul {
  row-gap: 0;
}
.form > form > ul > li {
  margin-bottom: 15px;
  position: relative;
}

/*SEPET CSS*/
.page-content__account .form ul li .title {
  font-size: 14px;
  color: red;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 3px;
  padding-left: 10px;
}
.page-content__account .form ul li > input {
  color: #000;
  font-family: "Inter", sans-serif;
}
.page-content__account .form > .text {
  font-size: 14px;
  color: #818181;
  margin-bottom: 20px;
}
.page-content__account .form-send > input {
  padding-inline: 30px;
}
.page-content__order .basket-no-product {
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.page-content__order .basket-no-product .basket-icon {
  font-size: 62px;
  margin-bottom: 20px;
  background-color: rgb(37 53 90 / 10%);
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  color: red;
  overflow: hidden;
}
.page-content__order .basket-no-product .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.page-content__order .basket-no-product .text {
  font-size: 14px;
  color: #818181;
  margin-bottom: 10px;
}
.page-content__order ul li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 25px;
  padding-bottom: 25px;
}
.page-content__order ul li .order-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .page-content__order ul li .order-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.page-content__order ul li .order-product__information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .page-content__order ul li .order-product__information {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.page-content__order ul li .order-product .cover {
  width: 170px;
  height: 80px;
  -webkit-box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  border-radius: 15px;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .page-content__order ul li .order-product .cover {
    width: 100%;
  }
}
.page-content__order ul li .order-product .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.page-content__order ul li .order-product .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .page-content__order ul li .order-product .desc {
    padding-left: 0;
    padding-top: 10px;
  }
}
.page-content__order ul li .order-product .desc .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  line-height: 1.3;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__order ul li .order-product .desc .title:hover {
  color: red;
}
.page-content__order ul li .order-product .desc .date {
  font-size: 13px;
  color: #818181;
  font-family: "Inter", sans-serif;
}
.page-content__order ul li .order-product .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #000;
}
@media (max-width: 767px) {
  .page-content__order ul li .order-product .status {
    margin-block: 10px;
  }
}
.page-content__order ul li .order-product .status .icon {
  width: 30px;
  height: 30px;
  font-size: 14px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin-right: 10px;
}
.page-content__order
  ul
  li
  .order-product
  .status
  .icon:not([class*="ui-color-"]) {
  background-color: red;
}
.page-content__order ul li .order-product .status .icon.ui-color-ready {
  background-color: #ffcc00;
}
.page-content__order ul li .order-product .status .icon.ui-color-loading {
  background-color: #13833d;
}
.page-content__order ul li .order-product .status .icon.ui-color-complete {
  background-color: #439b38;
}
.page-content__order ul li .order-product .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.page-content__order ul li .order-product .price .ui-d-flex:first-child {
  /* margin-right: 15px; */
}
.page-content__order ul li .order-product .price .new {
  font-size: 18px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-content__order ul li .order-product .price .new {
    font-size: 20px;
  }
}
.page-content__order ul li .order-product .price .new-tl {
  font-size: 18px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-content__order ul li .order-product .price .new-tl {
    font-size: 20px;
    margin-left: 5px;
  }
}
.breadcrumb:not([class*="ui-color-"]) ul li a {
  color: #d9d9d9;
}
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb.ui-color-1 ul li a {
  color: #000;
}
.breadcrumb:not([class*="ui-color-"]) ul li a {
  color: #d9d9d9;
}
.breadcrumb ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.breadcrumb ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb ul li.is-select a {
  color: red;
  font-weight: 500;
}
.breadcrumb ul li a {
  font-size: 14px;
  text-transform: capitalize;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) and (max-width: 991px) {
  .breadcrumb ul li a {
    font-size: 12px;
  }
}
.breadcrumb ul li a::after {
  content: "/";
  margin-inline: 10px;
}
.breadcrumb ul li a:hover {
  color: red;
}
.breadcrumb ul li:last-child a:after {
  display: none;
}

.sidebar-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.sidebar-header .page-content__heading {
  margin-bottom: 0;
}
.sidebar-header .link {
  color: rgba(129, 129, 129, 0.7);
  font-size: 11px;
  font-weight: 500;
}
.sidebar-header .link:hover {
  color: #000;
}
.sidebar-nav {
  top: 100px;
}
.sidebar-nav ul li:not(:last-child) {
  margin-bottom: 4px;
}
.sidebar-nav ul li:hover a,
.sidebar-nav ul li.is-current a {
  background: #f5f5f5;
  color: #000;
}
.sidebar-nav ul li:hover a .icon,
.sidebar-nav ul li.is-current a .icon {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.sidebar-nav ul li.ui-heading a {
  background: red;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  padding: 10px 25px;
}
.sidebar-nav ul li.ui-heading a .account-cover {
  width: 40px;
  height: 40px;
  font-size: 16px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  margin-right: 10px;
  color: red;
}
.sidebar-nav ul li.ui-exit a .icon {
  color: red;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.sidebar-nav ul li a {
  background: rgba(245, 245, 245, 0.5);
  color: #818181;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 15px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-nav ul li a .icon {
  position: absolute;
  right: 25px;
  color: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  will-change: transform;
}
.sidebar-common {
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.sidebar-common .heading {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  padding-inline: 25px;
  padding-top: 20px;
}
.sidebar-common__item-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  padding-inline: 10px;
  padding-block: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-common__item-heading:hover,
.sidebar-common__item-heading.active {
  background-color: red;
}
.sidebar-common__item-heading:hover > a,
.sidebar-common__item-heading.active > a {
  color: #fff !important;
}
.sidebar-common__item-heading:hover .icon,
.sidebar-common__item-heading.active .icon {
  color: #fff !important;
}
.sidebar-common__item-heading > a {
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-common__sub {
  padding-bottom: 0 !important;
  display: none !important;
}
.sidebar-common__sub a {
  position: relative;
}
.sidebar-common__sub a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 8px;
  background-color: red;
}
.sidebar-common__sub.is-current {
  display: block !important;
}
.sidebar-common__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.sidebar-common__input input {
  width: 40%;
  background-color: #fff;
  border: 2px solid rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: black;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-inline: 8px;
  margin-right: 10px;
  font-family: "Inter", sans-serif;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar-common__input input {
    margin-right: 3px;
    width: 50px;
    font-size: 10px;
    padding-inline: 5px;
  }
}
.sidebar-common__input input:focus {
  border-color: red;
}
.sidebar-common__input input::-webkit-input-placeholder {
  color: #818181;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
}
.sidebar-common__input input::-moz-placeholder {
  color: #818181;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
}
.sidebar-common__input input:-ms-input-placeholder {
  color: #818181;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
}
.sidebar-common__input input::-ms-input-placeholder {
  color: #818181;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
}
.sidebar-common__input input::placeholder {
  color: #818181;
  font-family: "Catamaran", sans-serif;
  font-size: 13px;
}
.sidebar-common__input button {
  font-size: 16px;
  color: red;
  background-color: rgb(37 53 90 / 10%);
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  position: absolute;
  right: -15px;
}
.sidebar-common.ui-style-category > ul > li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}
.sidebar-common.ui-style-category > ul > li .icon {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-common.ui-style-font > ul > li .checkbox .text {
  font-family: "Inter", sans-serif;
}
.sidebar-common:not([class*="ui-style-category"]) > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sidebar-common ul {
  padding-bottom: 30px;
  padding-top: 10px;
  padding-inline: 25px;
  overflow-y: scroll;
  max-height: 400px;
}
.sidebar-common ul::-webkit-scrollbar {
  width: 3px !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar-common ul::-webkit-scrollbar-track {
  background: transparent !important;
  border-radius: 99px;
  overflow: hidden;
}
.sidebar-common ul::-webkit-scrollbar-thumb {
  background: red !important;
  border-radius: 99px;
  overflow: hidden;
}
.sidebar-common ul::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
  width: 10px !important;
}
.sidebar-common ul::-webkit-scrollbar:hover {
  width: 10px !important;
}
.sidebar-common ul li:not(:last-child) {
  margin-bottom: 8px;
}
.sidebar-common ul li a {
  font-size: 13px;
  color: #818181;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sidebar-common ul li a:hover {
  color: #1e1e1e;
}
.sidebar-common ul li .checkbox .text {
  font-size: 13px;
  font-weight: 500;
  color: #818181;
}
.sidebar-common ul li .filtre {
  border: 1px solid rgba(255, 108, 24, 0.4);
  padding-inline: 15px;
  padding-block: 8px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sidebar-common ul li .filtre .desc {
  line-height: 1;
}
.sidebar-common ul li .filtre .desc .text {
  font-size: 12px;
  color: #818181;
  margin-bottom: 7px;
}
.sidebar-common ul li .filtre .desc .title {
  font-size: 16px;
  color: #1e1e1e;
  font-weight: 800;
}
.sidebar-common ul li .filtre .icon {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
  margin-left: 15px;
  cursor: pointer;
}
.sidebar-products {
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sidebar-products {
    display: none;
  }
}
@media (min-width: 768px) {
  .sidebar-products__mobile {
    display: none;
  }
}
.button-border.ui-color-1 {
  color: red;
  border: 1px solid red;
}
.button-border.ui-color-1:hover {
  background-color: red;
  color: #fff;
}
.button-border.ui-color-1 .icon {
  color: red;
}
.page-content__address .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-content__address .item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  min-width: 24px;
  height: 24px;
  border: 2px solid #ebebeb;
  margin-right: 10px;
  border-radius: 8px;
  position: relative;
}
.page-content__address .item input[type="radio"]:checked {
  border: 2px solid red;
}
.page-content__address .item input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  inset: 3px;
  background-color: red;
  border-radius: 8px;
}
.page-content__address .item .box {
  padding: 20px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  position: relative;
}
.page-content__address .item .box .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #000;
  line-height: 1.2;
  margin-bottom: 5px;
}
.page-content__address .item .box .text {
  font-size: 14px;
  color: #818181;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
}
.page-content__address .item .box .icon {
  position: absolute;
  right: 10px;
  top: 10px;
  color: red;
  font-size: 18px;
  cursor: pointer;
}
.button-border:not([class*="ui-color-"]) {
  border: 1px solid #ebebeb;
  color: #818181;
}

.page-content__basket .basket-no-product {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.page-content__basket .basket-no-product .basket-icon {
  font-size: 62px;
  margin-bottom: 20px;
  background-color: rgb(37 53 90 / 10%);
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  color: red;
  overflow: hidden;
}
.page-content__basket .basket-no-product .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.page-content__basket .basket-no-product .text {
  font-size: 14px;
  color: #818181;
  margin-bottom: 10px;
}
.page-content__basket-left {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.page-content__basket-left ul li:not(:last-child) {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 25px;
}
.page-content__basket-left ul li .basket-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .page-content__basket-left ul li .basket-product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.page-content__basket-left ul li .basket-product .cover {
  width: 150px;
  height: 150px;
  border: 2px solid red30;
  box-shadow: 0px 0px 10px red30;
  -webkit-box-shadow: 0px 0px 10px red30;
  border-radius: 15px;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .page-content__basket-left ul li .basket-product .cover {
    width: 100%;
  }
}
.page-content__basket-left ul li .basket-product .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}
.page-content__basket-left ul li .basket-product .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}
@media (max-width: 991px) {
  .page-content__basket-left ul li .basket-product .desc {
    padding-left: 0;
    padding-top: 10px;
  }
}
.page-content__basket-left ul li .basket-product .desc .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  line-height: 1.3;
  margin-bottom: 10px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__basket-left ul li .basket-product .desc .title:hover {
  color: red;
}
.page-content__basket-left ul li .basket-product .desc .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .page-content__basket-left ul li .basket-product .desc .price {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
  }
}
.page-content__basket-left
  ul
  li
  .basket-product
  .desc
  .price
  .ui-d-flex:first-child {
  margin-right: 15px;
}
.page-content__basket-left ul li .basket-product .desc .price .old {
  font-size: 16px;
  color: #818181;
  font-weight: 700;
  position: relative;
  font-family: "Inter", sans-serif;
}
.page-content__basket-left ul li .basket-product .desc .price .old::before {
  content: "";
  position: absolute;
  left: 0;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-5deg);
  -ms-transform: translateY(-50%) rotate(-5deg);
  transform: translateY(-50%) rotate(-5deg);
  height: 1px;
  z-index: 1;
  background-color: #818181;
}
.page-content__basket-left ul li .basket-product .desc .price .old-tl {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #818181;
}
.page-content__basket-left ul li .basket-product .desc .price .new {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__basket-left ul li .basket-product .desc .price .new-tl {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__basket-left ul li .basket-product .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .page-content__basket-left ul li .basket-product .buttons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.page-content__basket-left ul li .basket-product .buttons > a {
  height: 40px;
}
.page-content__basket-left ul li .basket-product .buttons > a:not(:last-child) {
  margin-right: 10px;
}
.page-content__basket-left ul li .basket-product .buttons .value {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #ebebeb;
  max-width: 150px;
  height: 40px;
  border-radius: 8px;
  padding-inline: 15px;
}
.page-content__basket-left ul li .basket-product .buttons .value .icon {
  font-size: 13px;
  color: rgba(129, 129, 129, 0.7);
  cursor: pointer;
}
.page-content__basket-left ul li .basket-product .buttons .value input {
  max-width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input::-webkit-input-placeholder {
  color: #1e1e1e;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input::-moz-placeholder {
  color: #1e1e1e;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input:-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input::-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input::placeholder {
  color: #1e1e1e;
}
.page-content__basket-left
  ul
  li
  .basket-product
  .buttons
  .value
  input[type="number"]::-webkit-inner-spin-button {
  display: none;
}
.page-content__basket-left ul li .basket-product .buttons .trash {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #818181;
  background-color: #fff;
  border: 2px solid #ebebeb;
  padding-inline: 15px;
  border-radius: 8px;
}
.page-content__basket-left ul li .basket-product .buttons .trash:hover {
  color: red;
}
@media (max-width: 991px) {
  .page-content__basket-left ul li .basket-product .coupon {
    margin-bottom: 20px;
  }
}
.page-content__basket-left ul li .basket-product .coupon form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.page-content__basket-left ul li .basket-product .coupon form input {
  max-width: 140px;
  width: 100%;
  background-color: #f5f5f5;
  padding-inline: 20px;
  height: 45px;
  font-size: 13px;
  font-weight: 700;
  color: #818181;
  font-family: "Inter", sans-serif;
}
.page-content__basket-left ul li .basket-product .coupon form button {
  height: 45px;
  background-color: red;
  padding-inline: 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__basket-left ul li .basket-product .coupon form button:hover {
  background-color: rgb(37 53 90 / 70%);
}
.page-content__basket-left ul li .basket-product .coupon .apply-code {
  font-size: 14px;
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
}
.page-content__basket-right {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  top: 80px;
}
.page-content__basket-right .heading {
  font-size: 18px;
  font-weight: 700;
  color: red;
  letter-spacing: -1px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}
.page-content__basket-right .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 700;
  letter-spacing: -0.7px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  color: #000;
  margin-block: 10px;
}
.page-content__basket-right .price .tl {
  padding-left: 2px;
}
.page-content__basket-right .price span {
  color: red;
  font-size: 13px;
  font-weight: 600;
}
.page-content__basket-right .price:not([class*="ui-size-"]) {
  font-size: 26px;
}
.page-content__basket-right .price:not([class*="ui-size-"]) .tl {
  font-size: 18px;
  padding-bottom: 2px;
}
.page-content__basket-right .price.ui-size-small {
  font-size: 16px;
}
.page-content__basket-right .price.ui-size-small .tl {
  font-size: 13px;
  padding-bottom: 0;
}
.page-content__basket-right .text {
  font-size: 14px;
  font-weight: 600;
}
.page-content__basket-right .text:not([class*="ui-color-"]) {
  color: red;
}
.page-content__basket-right .text.ui-color-1 {
  color: #000;
}
.page-content__basket-right .total {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.page-content__basket-right .total ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* kategori css */

.page-content__products-filters {
  margin-bottom: 30px;
}
.page-content__products-filters ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .page-content__products-filters ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.page-content__products-filters ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #ebebeb;
  padding-block: 7px;
  padding-left: 20px;
  padding-right: 15px;
  min-width: 130px;
  border-radius: 8px;
}
.page-content__products-filters ul li:not(:last-child) {
  margin-right: 10px;
}
.page-content__products-filters ul li .desc {
  line-height: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 15px;
}
.page-content__products-filters ul li .desc .text {
  font-size: 12px;
  color: #818181;
}
.page-content__products-filters ul li .desc .title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
}
.page-content__products-filters ul li .icon {
  font-size: 20px;
  color: #818181;
  cursor: pointer;
}
.page-content__products-pagination {
  margin-top: 50px;
}
.page-content__products-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-content__products-pagination ul li:not(:last-child) {
  margin-right: 5px;
}
.page-content__products-pagination ul li.is-active > a {
  border: 2px solid red;
  border-radius: 50%;
}
.page-content__products-pagination ul li.is-active > a .icon,
.page-content__products-pagination ul li.is-active > a .number {
  color: red;
}
.page-content__products-pagination ul li > a {
  border-radius: 8px;
  width: 50px;
  height: 50px;
  border: 2px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-pagination ul li > a:hover {
  border: 2px solid red;
}
.page-content__products-pagination ul li > a .icon {
  font-size: 18px;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-pagination ul li > a .number {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}
.page-content__products-inner {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.page-content__products-photos
  .js-swiper-photos-thumb
  .swiper-slide-thumb-active
  .page-content__products-cover {
  border: 1px solid red;
}
.page-content__products-photos .swiper {
  margin: -20px;
  padding: 20px;
}
.page-content__products-cover {
  display: block;
  width: 100%;
  overflow: hidden;
}
.page-content__products-cover:not([class*="ui-size-small"]) {
  height: 460px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .page-content__products-cover:not([class*="ui-size-small"]) {
    height: auto;
  }
}
.page-content__products-cover.ui-size-small {
  height: 70px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ebebeb;
}
.page-content__products-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right {
  position: relative;
}
.page-content__products-right .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-content__products-right .icons .icon {
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1e1e1e;
}
.page-content__products-right .icons .icon:not(:last-child) {
  margin-bottom: 7px;
}
.page-content__products-right .icons .icon:hover {
  background-color: red;
  color: #fff;
}
.page-content__products-right .category {
  font-size: 14px;
  font-weight: 600;
  color: red;
  display: inline-block;
}
.page-content__products-right .category:hover {
  text-decoration: underline;
}
.page-content__products-right .title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1e1e1e;
  display: block;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 550px;
}
@media (max-width: 991px) {
  .page-content__products-right .title {
    font-size: 20px;
    max-width: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-content__products-right .title {
    max-width: 350px;
  }
}
.page-content__products-right .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.page-content__products-right .price .ui-d-flex:first-child {
  margin-right: 15px;
}
.page-content__products-right .price .old {
  font-size: 16px;
  color: #818181;
  font-weight: 700;
  position: relative;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .price .old::before {
  content: "";
  position: absolute;
  left: 0;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-5deg);
  -ms-transform: translateY(-50%) rotate(-5deg);
  transform: translateY(-50%) rotate(-5deg);
  height: 1px;
  z-index: 1;
  background-color: #818181;
}
.page-content__products-right .price .old-tl {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #818181;
}
.page-content__products-right .price .new {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .price .new-tl {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .discount {
  height: 35px;
  padding-inline: 15px;
  background-color: #13833d;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 50px;
}
.page-content__products-right .info {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .page-content__products-right .info {
    padding-top: 15px;
  }
}
.page-content__products-right .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-content__products-right .info ul li .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-right .info ul li .title span {
  padding-left: 5px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .info ul li .title a {
  color: red;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 10px;
  display: block;
}
.page-content__products-right .info ul li .title a:hover {
  color: #13833d;
}
.page-content__products-right .info ul li.ui-style-tags .title a {
  padding-left: 5px;
  color: #818181;
}
.page-content__products-right .info ul li.ui-style-tags .title a:hover {
  color: red;
}
.page-content__products-right .variation {
  padding-top: 20px;
}
.page-content__products-right .variation .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.page-content__products-right .variation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 479px) {
  .page-content__products-right .variation ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 7px;
  }
}
.page-content__products-right .variation ul li:not(:last-child) {
  margin-right: 7px;
}
@media (max-width: 479px) {
  .page-content__products-right .variation ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: auto;
  }
}
.page-content__products-right .variation ul li.is-active a,
.page-content__products-right .variation ul li.selected a {
  background-color: red;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .variation ul li a {
  padding-inline: 20px;
  height: 40px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  border: 2px solid rgba(37 53 90 / 10%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .variation ul li a:hover {
  background-color: red;
  color: #fff;
}
.page-content__products-right .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .page-content__products-right .buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.page-content__products-right .buttons > a {
  height: 40px;
}
.page-content__products-right .buttons > a:not(:last-child) {
  margin-right: 10px;
}
.page-content__products-right .buttons .value {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #ebebeb;
  max-width: 150px;
  height: 40px;
  border-radius: 8px;
  padding-inline: 15px;
}
.page-content__products-right .buttons .value .icon {
  font-size: 13px;
  color: rgba(129, 129, 129, 0.7);
  cursor: pointer;
}
.page-content__products-right .buttons .value input {
  max-width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .buttons .value input::-webkit-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::-moz-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input:-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::placeholder {
  color: #1e1e1e;
}
.page-content__products-right
  .buttons
  .value
  input[type="number"]::-webkit-inner-spin-button {
  display: none;
}
.page-content__products-right .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.page-content__products-right .social-share .icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background-color: red;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .social-share .icon:not(:last-child) {
  margin-right: 5px;
}
.page-content__products-right .social-share .icon:hover {
  background-color: red !important;
}
.page-content__products-right .social-share .icon:nth-child(1) {
  background-color: #3b5998;
}
.page-content__products-right .social-share .icon:nth-child(2) {
  background-color: #e1306c;
}
.page-content__products-right .social-share .icon:nth-child(3) {
  background-color: #1da1f2;
}
.page-content__products-right .social-share .icon:nth-child(4) {
  background-color: #0077b5;
}
.page-content__products-right .social-share .icon:nth-child(5) {
  background-color: #fd2f35;
}
.page-content__products-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-star .star {
  position: relative;
  height: 15px;
}
.page-content__products-star .star .rating:not([class*="ui-style-"]) {
  width: 100px;
}
.page-content__products-star .star .rating:not([class*="ui-style-"])::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/rating.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 15px;
  display: inline-block;
}
.page-content__products-star .star .rating.ui-style-star {
  position: absolute;
  left: 0;
  top: 0;
}
.page-content__products-star .star .rating.ui-style-star::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/rating-star.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 100%;
  height: 15px;
  z-index: 1;
}
.page-content__products-star .text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #000;
  font-family: "Inter", sans-serif;
  padding-left: 10px;
}
.page-content__products-tab {
  background-color: #fff;
  margin-top: 50px;
  border-radius: 15px;
}
.page-content__products-tab__header {
  padding: 30px 50px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 767px) {
  .page-content__products-tab__header {
    padding: 20px;
  }
}
.page-content__products-tab__header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-tab__header ul li:not(:last-child) {
  margin-right: 30px;
}
.page-content__products-tab__header ul li.is-current > a,
.page-content__products-tab__header ul li:hover > a {
  color: #000;
}
.page-content__products-tab__header ul li > a {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: #818181;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .page-content__products-tab__header ul li > a {
    font-size: 14px;
    line-height: 1.2;
  }
}
.page-content__products-tab__bottom {
  padding: 30px 50px;
}
@media (max-width: 767px) {
  .page-content__products-tab__bottom {
    padding: 20px;
  }
}
.page-content__products-comments ul li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page-content__products-comments ul li .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-content__products-comments ul li .item .icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 52px;
  overflow: hidden;
  color: #fff;
}
.page-content__products-comments ul li .item .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}
.page-content__products-comments ul li .item .desc .star {
  width: 80px;
}
.page-content__products-comments ul li .item .desc .star img {
  width: 100%;
  height: 100%;
}
.page-content__products-comments ul li .item .desc .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
}
.page-content__products-comments ul li .item .desc .text {
  font-size: 14px;
  color: #818181;
}
.page-content__products-form .stars {
  margin-bottom: 30px;
}
.page-content__products-form .stars .heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1e1e1e;
}
.page-content__products-form .stars .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-top: 5px;
}
.page-content__products-form .stars .icons .icon {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
}
.page-content__products-form .stars .icons .icon:hover {
  color: #ffa900;
}
.products.ui-style-border {
  border-radius: 15px;
  overflow: hidden;
}
.products .swiper {
  padding: 25px;
  margin: -25px;
}
.products .swiper-container {
  border: 1px solid #ebebeb;
  border-radius: 15px;
  overflow: hidden;
}
.products .swiper-slide:not(:last-child) {
  border-right: 1px solid #ebebeb;
}
.products.ui-style-border {
  border-radius: 15px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .products:not([class*="ui-style-list"]) > ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.products > ul {
  row-gap: 0;
  position: relative;
  z-index: 2;
}
.products > ul::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid #ebebeb;
  z-index: 1;
  border-radius: 15px;
  pointer-events: none;
}
.products > ul > li {
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 479px) {
  .products > ul > li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.products-card {
  position: relative;
  padding: 15px;
  background-color: #fff;
}
.products-card:hover .products-icons {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}
.products-cover {
  width: 100%;
  height: 220px;
  display: block;
}
@media (max-width: 991px) {
  .products-cover {
    height: 150px;
  }
}
.products-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}
.products-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.products-icons .icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1e1e1e;
}
.products-icons .icon:not(:last-child) {
  margin-bottom: 7px;
}
.products-icons .icon:hover {
  background-color: red;
  color: #fff;
}
.products-footer {
  height: 150px;
}
.products-footer .category {
  font-size: 14px;
  font-weight: 600;
  color: red;
  display: inline-block;
}
.products-footer .category:hover {
  text-decoration: underline;
}
.products-footer .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1e1e1e;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: auto;
  height: 43px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.products-footer .title:hover {
  color: red;
}
@media (max-width: 991px) {
  .products-footer .title {
    font-size: 16px;
    height: 30px;
  }
}
.products-footer .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.products-footer .price .old {
  font-size: 14px;
  color: #818181;
  font-weight: 700;
  margin-right: 15px;
  position: relative;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .products-footer .price .old {
    font-size: 12px;
    margin-right: 10px;
  }
}
.products-footer .price .old::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-5deg);
  -ms-transform: translateY(-50%) rotate(-5deg);
  transform: translateY(-50%) rotate(-5deg);
  height: 1px;
  z-index: 1;
  background-color: #818181;
}
.products-footer .price .new {
  font-size: 18px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .products-footer .price .new {
    font-size: 16px;
  }
}
.products-footer .button-border {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.products-footer .button-border.ui-no-stock {
  background-color: red;
  color: #fff;
}
.button-border {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: inherit;
  text-align: center;
  line-height: 1.2;
  outline: 0;
  color: #fff;
  position: relative;
  border-radius: 8px;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button-border .icon {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button-border .icon svg path {
  stroke: currentColor;
}
.button-border .icon:not(.ui-pos-left) {
  margin-left: 17px;
}
.button-border .icon.ui-pos-left {
  margin-right: 13px;
}
.button-border:not([class*="ui-style-"]) .icon {
  font-size: 12px;
}
.button-border.ui-style-button {
  border-radius: 8px;
}
.button-border.ui-style-button .icon {
  font-size: 23px;
}
.button-border.ui-txt-transform-uppercase {
  text-transform: uppercase;
}
.button-border:not([class*="ui-width-"]) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.button-border.ui-width-min {
  min-width: 160px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.button-border.ui-area-full {
  width: 100%;
  height: 45px !important;
  font-size: 18px !important;
  letter-spacing: -0.5px;
}
.button-border:not([class*="ui-size-"]) {
  padding-left: 25px;
  padding-right: 25px;
  height: 35px;
  font-size: 14px;
  font-weight: 700;
}
.button-border.ui-size-small {
  padding-left: 20px;
  padding-right: 20px;
  height: 35px;
  font-size: 13px;
  font-weight: 600;
}
.button-border:not([class*="ui-color-"]) {
  border: 1px solid #ebebeb;
  color: #818181;
}
.button-border:not([class*="ui-color-"]) .icon {
  display: flex;
  align-items: center;
  color: #818181;
}
.button-border:not([class*="ui-color-"]):hover {
  background-color: red;
  color: #fff;
}
.button-border:not([class*="ui-color-"]):hover .icon {
  color: #fff;
}
.button-border.ui-color-border-dark {
  color: #818181;
  border: 1px solid rgba(129, 129, 129, 0.08);
}
.button-border.ui-color-border-dark .icon {
  color: #818181;
}
.button-border.ui-color-wp {
  color: #25d366;
  border: 1px solid #25d366;
}
.button-border.ui-color-wp:hover {
  background-color: #25d366;
  color: #fff;
}
.button-border.ui-color-wp .icon {
  color: #25d366;
}

.button-border.ui-color-login {
  color: #555555;
  border: 1px solid #555555;
}
.button-border.ui-color-login:hover {
  background-color: #555555;
  color: #fff;
}
.button-border.ui-color-login .icon {
  color: #555555;
}

.button-border.ui-color-1 {
  color: red;
  border: 1px solid red;
}
.button-border.ui-color-1:hover {
  background-color: red;
  color: #fff;
}
.button-border.ui-color-1 .icon {
  color: red;
}

.page-content__products-pagination {
  margin-top: 50px;
}
.page-content__products-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page-content__products-pagination ul li:not(:last-child) {
  margin-right: 5px;
}
.page-content__products-pagination ul li.is-active > a {
  border: 2px solid red;
}
.page-content__products-pagination ul li.is-active > a .icon,
.page-content__products-pagination ul li.is-active > a .number {
  color: red;
}
.page-content__products-pagination ul li > a {
  width: 50px;
  height: 50px;
  border: 2px solid #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-pagination ul li > a:hover {
  border: 2px solid red;
}
.page-content__products-pagination ul li > a .icon {
  font-size: 18px;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-pagination ul li > a .number {
  font-size: 18px;
  font-weight: 700;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Inter", sans-serif;
}

/* description CSS */

.section-explanation {
  padding-block: 70px;
}
.section-explanation .explanation {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  background-color: #fff;
}
.section-explanation .explanation-description {
  font-size: 13px;
  color: #555555;
  padding: 35px 40px;
  max-height: 600px;
  overflow-y: scroll;
}
@media (max-width: 767px) {
  .section-explanation .explanation-description {
    max-height: 400px;
    padding: 30px;
  }
}
.section-explanation .explanation-description::-webkit-scrollbar {
  width: 3px !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-explanation .explanation-description::-webkit-scrollbar-track {
  background: rgba(37 53 90 / 10%5) !important;
  border-radius: 99px;
  overflow: hidden;
}
.section-explanation .explanation-description::-webkit-scrollbar-thumb {
  background: red !important;
  border-radius: 99px;
  overflow: hidden;
}
.section-explanation .explanation-description::-webkit-scrollbar-thumb:hover {
  background: #555 !important;
  width: 10px !important;
}
.section-explanation .explanation-description::-webkit-scrollbar:hover {
  width: 10px !important;
}
.section-explanation .explanation-description strong {
  color: #1e1e1e;
  font-weight: 700;
  font-size: 16px;
}
.section-explanation .explanation-description .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  margin-top: 20px;
  margin-bottom: 10px;
}
.section-explanation .explanation-description .text {
  font-weight: 500;
}
.section-explanation .explanation-description > ul {
  list-style: disc;
  padding-left: 20px;
  margin-block: 10px;
}
.section-explanation .explanation-description > ul > li {
  font-weight: 600;
  color: #1e1e1e;
}

/* wp button css */

.button-fixed {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: var(--circle-size);
  height: var(--circle-size);
  position: fixed;
  border: 5px solid #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  text-align: center;
  color: #fff;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .button-fixed {
    --circle-size: 65px;
  }
}
@media (max-width: 767px) {
  .button-fixed {
    --circle-size: 55px;
  }
}
.button-fixed:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}
.button-fixed:not([class*="ui-color-"]) {
  background: #25d366;
}
.button-fixed:not([class*="ui-color-"])::before,
.button-fixed:not([class*="ui-color-"])::after {
  background: rgba(37, 211, 102, 0.1);
}
@media (min-width: 768px) {
  .button-fixed {
    right: 20px;
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .button-fixed {
    right: 12px;
    bottom: 30px;
  }
}
.button-fixed::before,
.button-fixed::after {
  content: "";
  position: absolute;
  border-radius: 100%;
  -webkit-animation: pulsate 1.5s ease-out;
  animation: pulsate 1.5s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0;
}
.button-fixed::before {
  width: var(--circle-size) 15px;
  height: var(--circle-size) 15px;
}
.button-fixed::after {
  width: var(--circle-size) 35px;
  height: var(--circle-size) 35px;
}
@media (min-width: 768px) {
  .button-fixed .icon {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .button-fixed .icon {
    font-size: 22px;
  }
}

/* fixed oneri button*/
@media (min-width: 768px) {
  .button-fixed.musteri-oneri.is-active {
    -webkit-transform: translateY(-140px);
    -ms-transform: translateY(-140px);
    transform: translateY(-140px);
  }
}
@media (max-width: 767px) {
  .button-fixed.musteri-oneri.is-active {
    -webkit-transform: translateY(-185px);
    -ms-transform: translateY(-185px);
    transform: translateY(-185px);
  }
}
.button-fixed.musteri-oneri:not([class*="ui-color-"]) {
  background: #555555;
}

/* fixed oneri button*/
@media (min-width: 768px) {
  .button-fixed.instagram.js-wp.is-active {
    -webkit-transform: translateY(-210px);
    -ms-transform: translateY(-210px);
    transform: translateY(-210px);
  }
}
@media (max-width: 767px) {
  .button-fixed.instagram.js-wp.is-active {
    -webkit-transform: translateY(-250px);
    -ms-transform: translateY(-250px);
    transform: translateY(-250px);
  }
}
.button-fixed.instagram.js-wp:not([class*="ui-color-"]) {
  background: linear-gradient(
    45deg,
    #515bd4 0%,
    #8134af 25%,
    #dd2a7b 50%,
    #feda77 75%,
    #f58529 100%
  );
}

/* urun CSS */

.page-content__products-inner {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.page-content__products-photos
  .js-swiper-photos-thumb
  .swiper-slide-thumb-active
  .page-content__products-cover {
  border: 1px solid red;
}
.page-content__products-photos .swiper {
  margin: -20px;
  padding: 20px;
}
.page-content__products-cover {
  display: block;
  width: 100%;
  overflow: hidden;
}
.page-content__products-cover:not([class*="ui-size-small"]) {
  height: 460px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .page-content__products-cover:not([class*="ui-size-small"]) {
    height: auto;
  }
}
.page-content__products-cover.ui-size-small {
  height: 70px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #ebebeb;
}
.page-content__products-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right {
  position: relative;
}
.page-content__products-right .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-content__products-right .icons .icon {
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ebebeb;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #1e1e1e;
}
.page-content__products-right .icons .icon:not(:last-child) {
  margin-bottom: 7px;
}
.page-content__products-right .icons .icon:hover {
  background-color: red;
  color: #fff;
}
.page-content__products-right .category {
  font-size: 14px;
  font-weight: 600;
  color: red;
  display: inline-block;
}
.page-content__products-right .category:hover {
  text-decoration: underline;
}
.page-content__products-right .title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #1e1e1e;
  display: block;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 550px;
}
@media (max-width: 991px) {
  .page-content__products-right .title {
    font-size: 20px;
    max-width: 250px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-content__products-right .title {
    max-width: 350px;
  }
}
.page-content__products-right .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.page-content__products-right .price .ui-d-flex:first-child {
  margin-right: 15px;
}
.page-content__products-right .price .old {
  font-size: 16px;
  color: #818181;
  font-weight: 700;
  position: relative;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .price .old::before {
  content: "";
  position: absolute;
  left: 0;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-5deg);
  -ms-transform: translateY(-50%) rotate(-5deg);
  transform: translateY(-50%) rotate(-5deg);
  height: 1px;
  z-index: 1;
  background-color: #818181;
}
.page-content__products-right .price .old-tl {
  font-size: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #818181;
}
.page-content__products-right .price .new {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .price .new-tl {
  font-size: 24px;
  font-weight: 800;
  color: red;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .discount {
  height: 35px;
  padding-inline: 15px;
  background-color: #13833d;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 50px;
}
.page-content__products-right .info {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .page-content__products-right .info {
    padding-top: 15px;
  }
}
.page-content__products-right .info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page-content__products-right .info ul li .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-right .info ul li .title span {
  padding-left: 5px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .info ul li .title a {
  color: red;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 10px;
  display: block;
}
.page-content__products-right .info ul li .title a:hover {
  color: #13833d;
}
.page-content__products-right .info ul li.ui-style-tags .title a {
  padding-left: 5px;
  color: #818181;
}
.page-content__products-right .info ul li.ui-style-tags .title a:hover {
  color: red;
}
.page-content__products-right .variation {
  padding-top: 20px;
}
.page-content__products-right .variation .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.page-content__products-right .variation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 479px) {
  .page-content__products-right .variation ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 7px;
  }
}
.page-content__products-right .variation ul li:not(:last-child) {
  margin-right: 7px;
}
@media (max-width: 479px) {
  .page-content__products-right .variation ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: auto;
  }
}
.page-content__products-right .variation ul li.is-active a,
.page-content__products-right .variation ul li.selected a {
  background-color: red;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .variation ul li a {
  padding-inline: 20px;
  height: 40px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.3px;
  border: 2px solid rgba(37 53 90 / 10%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .variation ul li a:hover {
  background-color: red;
  color: #fff;
}
.page-content__products-right .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .page-content__products-right .buttons {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.page-content__products-right .buttons > a {
  height: 40px;
}
.page-content__products-right .buttons > a:not(:last-child) {
  margin-right: 10px;
}
.page-content__products-right .buttons .value {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #ebebeb;
  max-width: 150px;
  height: 40px;
  border-radius: 8px;
  padding-inline: 15px;
}
.page-content__products-right .buttons .value .icon {
  font-size: 13px;
  color: rgba(129, 129, 129, 0.7);
  cursor: pointer;
}
.page-content__products-right .buttons .value input {
  max-width: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1e1e1e;
  font-family: "Inter", sans-serif;
}
.page-content__products-right .buttons .value input::-webkit-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::-moz-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input:-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::-ms-input-placeholder {
  color: #1e1e1e;
}
.page-content__products-right .buttons .value input::placeholder {
  color: #1e1e1e;
}
.page-content__products-right
  .buttons
  .value
  input[type="number"]::-webkit-inner-spin-button {
  display: none;
}
.page-content__products-right .social-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}
.page-content__products-right .social-share .icon {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background-color: red;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-content__products-right .social-share .icon:not(:last-child) {
  margin-right: 5px;
}
.page-content__products-right .social-share .icon:hover {
  background-color: red !important;
}
.page-content__products-right .social-share .icon:nth-child(1) {
  background-color: #3b5998;
}
.page-content__products-right .social-share .icon:nth-child(2) {
  background-color: #e1306c;
}
.page-content__products-right .social-share .icon:nth-child(3) {
  background-color: #1da1f2;
}
.page-content__products-right .social-share .icon:nth-child(4) {
  background-color: #0077b5;
}
.page-content__products-right .social-share .icon:nth-child(5) {
  background-color: #25d366;
}
.page-content__products-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-star .star {
  position: relative;
  height: 15px;
}
.page-content__products-star .star .rating:not([class*="ui-style-"]) {
  width: 100px;
}
.page-content__products-star .star .rating:not([class*="ui-style-"])::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/rating.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 15px;
  display: inline-block;
}
.page-content__products-star .star .rating.ui-style-star {
  position: absolute;
  left: 0;
  top: 0;
}
.page-content__products-star .star .rating.ui-style-star::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../images/rating-star.svg");
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 100%;
  height: 15px;
  z-index: 1;
}
.page-content__products-star .text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: #000;
  font-family: "Inter", sans-serif;
  padding-left: 10px;
}
.page-content__products-tab {
  background-color: #fff;
  margin-top: 50px;
  border-radius: 15px;
}
.page-content__products-tab__header {
  padding: 30px 50px;
  border-bottom: 1px solid #ebebeb;
}
@media (max-width: 767px) {
  .page-content__products-tab__header {
    padding: 20px;
  }
}
.page-content__products-tab__header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-content__products-tab__header ul li:not(:last-child) {
  margin-right: 30px;
}
.page-content__products-tab__header ul li.is-current > a,
.page-content__products-tab__header ul li:hover > a {
  color: #000;
}
.page-content__products-tab__header ul li > a {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: #818181;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .page-content__products-tab__header ul li > a {
    font-size: 14px;
    line-height: 1.2;
  }
}
.page-content__products-tab__bottom {
  padding: 30px 50px;
}
@media (max-width: 767px) {
  .page-content__products-tab__bottom {
    padding: 20px;
  }
}
.page-content__products-comments ul li {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.page-content__products-comments ul li .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-content__products-comments ul li .item .icon {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  font-size: 52px;
  overflow: hidden;
  color: #fff;
}
.page-content__products-comments ul li .item .desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 20px;
}
.page-content__products-comments ul li .item .desc .star {
  width: 80px;
}
.page-content__products-comments ul li .item .desc .star img {
  width: 100%;
  height: 100%;
}
.page-content__products-comments ul li .item .desc .title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
}
.page-content__products-comments ul li .item .desc .text {
  font-size: 14px;
  color: #818181;
}
.page-content__products-form .stars {
  margin-bottom: 30px;
}
.page-content__products-form .stars .heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #1e1e1e;
}
.page-content__products-form .stars .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-top: 5px;
}
.page-content__products-form .stars .icons .icon {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
}
.page-content__products-form .stars .icons .icon:hover {
  color: #ffa900;
}

/* urun taksit css */

.installment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -12px;
}

@media only screen and (max-width: 1024px) {
  .installment {
    margin: 0 -6px;
  }
}
@media only screen and (max-width: 768px) {
  .installment {
    margin: 0 -12px;
  }
}
@media only screen and (max-width: 600px) {
  .installment {
    margin: 0;
  }
}
.installment .installmentTable {
  width: 25%;
  padding: 0 12px 24px;
}

@media only screen and (max-width: 1024px) {
  .installment .installmentTable {
    padding: 0 6px 24px;
  }
}
@media only screen and (max-width: 768px) {
  .installment .installmentTable {
    width: 50%;
    padding: 0 12px 24px;
  }
}
@media only screen and (max-width: 600px) {
  .installment .installmentTable {
    width: 100%;
    padding: 0 0 24px;
  }
}
.installment .installmentTable .installmentBox {
  border: 1px solid #f5f5f5;
  border-radius: 6px;
  width: 100%;
}

.installment .installmentTable .installmentBox .installmentHeader {
  background-color: #f5f5f5;
  height: 44px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.installment .installmentTable .installmentBox .installmentHeader img {
  height: 25px;
  width: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.installment .installmentTable .installmentBox .installmentBody,
.installment .installmentTable .installmentBox .installmentBody table {
  width: 100%;
}

.installment .installmentTable .installmentBox .installmentBody table thead,
.installment .installmentTable .installmentBox .installmentBody table tbody,
.installment .installmentTable .installmentBox .installmentBody table tr {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  thead:first-child
  th,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tbody:first-child
  th,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tr:first-child
  th {
  border-top-width: 0;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  thead:last-child
  td,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tbody:last-child
  td,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tr:last-child
  td {
  border-bottom-width: 0;
}

.installment .installmentTable .installmentBox .installmentBody table thead td,
.installment .installmentTable .installmentBox .installmentBody table tbody td,
.installment .installmentTable .installmentBox .installmentBody table tr td {
  font-weight: 700;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  thead
  td:first-child,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tbody
  td:first-child,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tr
  td:first-child {
  border-left-width: 0;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  thead
  td:last-child,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tbody
  td:last-child,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tr
  td:last-child {
  border-right-width: 0;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  thead
  td
  span,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tbody
  td
  span,
.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  tr
  td
  span {
  color: #ff6000;
  padding: 0 0 0 2px;
  margin: 0;
}

.installment .installmentTable .installmentBox .installmentBody table th {
  padding: 2px 5px;
  height: 36px;
  text-align: center;
  border: solid 1px #f5f3f3;
  vertical-align: middle;
  font-size: 13px;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  th:first-child {
  border-left-width: 0;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  th:last-child {
  border-right-width: 0;
}

.installment .installmentTable .installmentBox .installmentBody table td {
  padding: 2px 5px;
  height: 36px;
  text-align: center;
  border: solid 1px #f5f3f3;
  vertical-align: middle;
  font-size: 13px;
}

.installment
  .installmentTable
  .installmentBox
  .installmentBody
  table
  td:last-child {
  color: #919191;
}

/* swiper arrow css*/

.swiper-buttons.ui-style-arrow .swiper-button-next,
.swiper-buttons.ui-style-arrow .swiper-button-prev {
  color: red !important;
  width: 15px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -15px;
}
.swiper-buttons.ui-buttons-photos .swiper-button-next::after,
.swiper-buttons.ui-buttons-photos .swiper-button-prev::after {
  font-size: 32px;
}

.swiper-buttons:not([class*="ui-style-"]) .swiper-button-next,
.swiper-buttons:not([class*="ui-style-"]) .swiper-button-prev {
  background-color: rgb(37 53 90 / 75%);
}
.swiper-buttons:not([class*="ui-style-"]) .swiper-button-next:hover,
.swiper-buttons:not([class*="ui-style-"]) .swiper-button-prev:hover {
  background-color: red;
}

@media (max-width: 767px) {
  .swiper-buttons:not([class*="ui-style-"]) .swiper-button-next,
  .swiper-buttons:not([class*="ui-style-"]) .swiper-button-prev {
    width: 35px;
    height: 40px;
  }
}
.swiper-buttons.ui-style-radius .swiper-button-next,
.swiper-buttons.ui-style-radius .swiper-button-prev {
  border: 1px solid #ebebeb;
  color: #1e1e1e !important;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -50px;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
}
.swiper-buttons.ui-style-radius .swiper-button-next::after,
.swiper-buttons.ui-style-radius .swiper-button-prev::after {
  font-size: 14px;
}
.swiper-buttons.ui-style-radius .swiper-button-next:hover,
.swiper-buttons.ui-style-radius .swiper-button-prev:hover {
  background-color: red;
  color: #fff !important;
}
.swiper-buttons.ui-style-radius .swiper-button-prev {
  left: 5px !important;
}
@media (max-width: 767px) {
  .swiper-buttons.ui-style-radius .swiper-button-prev {
    left: 20px !important;
  }
}
.swiper-buttons.ui-style-radius .swiper-button-next {
  right: 5px !important;
}
@media (max-width: 767px) {
  .swiper-buttons.ui-style-radius .swiper-button-next {
    right: 20px !important;
  }
}
.swiper-buttons.ui-style-arrow .swiper-button-next,
.swiper-buttons.ui-style-arrow .swiper-button-prev {
  color: red !important;
  width: 15px;
  height: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -15px;
}
.swiper-buttons.ui-style-arrow .swiper-button-next::after,
.swiper-buttons.ui-style-arrow .swiper-button-prev::after {
  font-size: 24px;
}
.swiper-buttons.ui-style-arrow .swiper-button-prev {
  left: 0 !important;
}
@media (max-width: 767px) {
  .swiper-buttons.ui-style-arrow .swiper-button-prev {
    left: 30px !important;
  }
}
.swiper-buttons.ui-style-arrow .swiper-button-next {
  right: 0 !important;
}
@media (max-width: 767px) {
  .swiper-buttons.ui-style-arrow .swiper-button-next {
    right: 30px !important;
  }
}
.swiper-buttons .swiper-button-prev {
  padding-right: 2px;
}
.swiper-buttons .swiper-button-next {
  padding-left: 2px;
}
.swiper-buttons.ui-buttons-slide .swiper-button-next,
.swiper-buttons.ui-buttons-slide .swiper-button-prev {
  color: #fff !important;
  margin-top: 0;
}
.swiper-buttons.ui-buttons-slide .swiper-button-next::after,
.swiper-buttons.ui-buttons-slide .swiper-button-prev::after {
  font-size: 32px;
}
.swiper-buttons.ui-buttons-slide .swiper-button-next {
  right: 30px !important;
}
.swiper-buttons.ui-buttons-slide .swiper-button-prev {
  left: 30px !important;
}
.swiper-buttons.ui-buttons-photos .swiper-button-next,
.swiper-buttons.ui-buttons-photos .swiper-button-prev {
  color: red !important;
  margin-top: 0;
}
.swiper-buttons.ui-buttons-photos .swiper-button-next::after,
.swiper-buttons.ui-buttons-photos .swiper-button-prev::after {
  font-size: 32px;
}
.swiper-buttons.ui-buttons-photos .swiper-button-next {
  right: 30px !important;
}
.swiper-buttons.ui-buttons-photos .swiper-button-prev {
  left: 30px !important;
}
.swiper-buttons.ui-buttons-gallery {
  margin-top: -15px;
}
.swiper-buttons:not([class*="ui-pos-"]) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-next,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-prev {
    right: 15px;
  }
}
@media (max-width: 767px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-next,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-prev {
    right: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-next,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-prev {
    right: 0;
  }
}
@media (min-width: 768px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-prev,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-next {
    left: 15px;
  }
}
@media (max-width: 767px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-prev,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-next {
    left: 10px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-button-prev,
  .swiper-buttons:not([class*="ui-pos-"]) .swiper-rtl .swiper-button-next {
    left: 0;
  }
}
.swiper-buttons.ui-pos-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
@media (min-width: 768px) {
  .swiper-buttons.ui-pos-bottom-right {
    bottom: 40px;
    right: 0;
  }
}
@media (max-width: 767px) {
  .swiper-buttons.ui-pos-bottom-right {
    bottom: 20px;
    right: 0;
  }
}
.swiper-buttons.ui-pos-bottom-right.ui-swiper-slide {
  margin-inline: auto;
  padding-inline: 10px;
  left: 0;
  max-width: var(--container);
}
@media (min-width: 768px) {
  .swiper-buttons.ui-pos-bottom-right.ui-swiper-slide {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .swiper-buttons.ui-pos-bottom-right.ui-swiper-slide {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.swiper-buttons.ui-pos-bottom-right .swiper-button-prev,
.swiper-buttons.ui-pos-bottom-right .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons.ui-pos-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
}
@media (min-width: 768px) {
  .swiper-buttons.ui-pos-top-right:not([class*="ui-style-"]) {
    top: 40px;
    right: 40px;
  }
}
@media (max-width: 767px) {
  .swiper-buttons.ui-pos-top-right:not([class*="ui-style-"]) {
    top: 20px;
    right: 10px;
  }
}
.swiper-buttons.ui-pos-top-right .swiper-button-prev,
.swiper-buttons.ui-pos-top-right .swiper-button-next {
  position: relative;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.swiper-buttons:not([class*="ui-color-"]) .swiper-button-prev,
.swiper-buttons:not([class*="ui-color-"]) .swiper-button-next {
  color: #fff;
}
.swiper-buttons.ui-color-dark .swiper-button-prev,
.swiper-buttons.ui-color-dark .swiper-button-next {
  color: #1e1e1e;
}

.sepet-temizle {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 5px;
  padding-right: 30px;
  padding-block: 5px;
  border: 2px solid rgb(37 53 90 / 10%);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sepet-temizle:hover {
  border: 2px solid rgb(37 53 90 / 30%);
}

.sepet-temizle:hover span.icon {
  background-color: red;
  color: #fff;
}

.sepet-temizle span.icon {
  font-size: 24px;
  margin-right: 12px;
  color: red;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgb(37 53 90 / 10%);
  border-radius: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .sepet-temizle span.icon {
    margin-right: 0;
    width: 35px;
    height: 35px;
  }
}

.sepet-temizle span.icon {
  font-size: 20px;
}

/* paytr CSS */

#paytr_taksit_tablosu {
  clear: both;
  font-size: 12px;
  max-width: 1200px;
  text-align: center;
  font-family: Arial, sans-serif;
}
#paytr_taksit_tablosu::before {
  display: table;
  content: " ";
}
#paytr_taksit_tablosu::after {
  content: "";
  clear: both;
  display: table;
}
.taksit-tablosu-wrapper {
  margin: 5px;
  width: 280px;
  padding: 12px;
  cursor: default;
  text-align: center;
  display: inline-block;
  border: 1px solid #e1e1e1;
}
.taksit-logo img {
  max-height: 28px;
  padding-bottom: 10px;
}
.taksit-tutari-text {
  float: left;
  width: 126px;
  color: #a2a2a2;
  margin-bottom: 5px;
}
.taksit-tutar-wrapper {
  display: inline-block;
  background-color: #f7f7f7;
}
.taksit-tutar-wrapper:hover {
  background-color: #e8e8e8;
}
.taksit-tutari {
  float: left;
  width: 126px;
  padding: 6px 0;
  color: #474747;
  border: 2px solid #ffffff;
}
.taksit-tutari-bold {
  font-weight: bold;
}
@media all and (max-width: 600px) {
  .taksit-tablosu-wrapper {
    margin: 5px 0;
  }
}

.section-seller {
  padding-top: 70px;
}

/* adres CSS*/

.page-content__payment {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.page-content__payment:not(:last-child) {
  margin-bottom: 30px;
}
.page-content__payment .payment-card .form ul {
  row-gap: 0;
}
.page-content__detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.page-content__detail-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.page-content__detail-header .heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
}
@media (max-width: 767px) {
  .page-content__detail-header .heading {
    font-size: 16px;
  }
}
select.selectbox {
  width: 100%;
  height: 55px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-family: inherit;
  padding-left: 25px;
  padding-right: 25px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
select.selectbox:before {
  content: "";
}
select.selectbox:focus + .icon.arrow {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.form-field .icon.ui-arrow {
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* footer css */
.footer {
  background-color: #fff;
}
.footer-top {
  background-color: rgb(37 53 90 / 7%);
}
.footer-top .container {
  padding-block: 40px;
}
.footer-info ul li {
  text-align: center;
}
@media (max-width: 479px) {
  .footer-info ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .footer-info ul li {
    margin-bottom: 20px;
  }
}
.footer-info ul li .icon {
  font-size: 32px;
  color: red;
  margin-bottom: 10px;
}
.footer-info ul li .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e1e1e;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}
.footer-info ul li .text {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
}
@media (max-width: 767px) {
  .footer-info ul li .text {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.footer-logo h1 {
  font-size: 0;
  margin: 0;
}
.footer-logo a {
  display: block;
  position: relative;
}
.footer-logo img {
  width: 230px;
}
.footer-send {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-send .description {
  margin: 20px 0;
}
@media (max-width: 767px) {
  .footer-send .description {
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-send .description {
    padding-inline: 20px;
  }
}
.footer-send .description .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  margin-bottom: 5px;
}
.footer-send .description .text {
  font-size: 13px;
  color: rgba(129, 129, 129, 0.7);
}
.footer-send .send {
  position: relative;
  max-width: 300px;
  height: 45px;
}
.footer-send input {
  width: 300px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 20px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  height: 45px;
  padding-left: 20px;
  font-size: 14px;
  color: #000;
  padding-right: 50px;
}
.footer-send input::-webkit-input-placeholder {
  font-size: 14px;
  color: #818181;
}
.footer-send input::-moz-placeholder {
  font-size: 14px;
  color: #818181;
}
.footer-send input:-ms-input-placeholder {
  font-size: 14px;
  color: #818181;
}
.footer-send input::-ms-input-placeholder {
  font-size: 14px;
  color: #818181;
}
.footer-send input::placeholder {
  font-size: 14px;
  color: #818181;
}
.footer-send button {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: white;
  background-color: red;
  height: 45px;
  width: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 0;
}
.footer-send button:hover {
  background-color: #000;
}
.footer-middle .container {
  padding-block: 50px;
}
@media (min-width: 768px) {
  .footer-middle .row.ui-row-5 > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 479px) {
  .footer-middle .row.ui-row-5 > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.footer-links .heading {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: red;
  line-height: 1.3;
  margin-bottom: 15px;
}
@media (max-width: 479px) {
  .footer-links .heading {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-links .heading {
    font-size: 18px;
  }
}
.footer-links ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-links ul li a {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-links ul li a:hover {
  color: red;
}
.footer-links ul li a .icon {
  font-size: 14px;
  background-color: rgba(255, 108, 24, 0.05);
  color: red;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 10px;
}
.footer-links .and {
  font-size: 16px;
  font-weight: 500;
  color: rgba(129, 129, 129, 0.7);
  text-align: center;
  margin-bottom: 15px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.footer-links .and::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  width: 70px;
  background-color: #818181;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 479px) {
  .footer-links .and::before {
    width: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-links .and::before {
    width: 50px;
  }
}
.footer-links .and::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 1px;
  width: 70px;
  background-color: #818181;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 479px) {
  .footer-links .and::after {
    width: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-links .and::after {
    width: 50px;
  }
}
.footer-links .phone:not(:last-child) {
  margin-bottom: 20px;
}
.footer-links .phone .title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  line-height: 1.2;
  margin-bottom: 10px;
}
.footer-links .phone .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-links .phone .desc .icon {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
  margin-right: 5px;
}
.footer-links .phone .desc .icon.ui-large {
  font-size: 24px;
}
.footer-links .phone .desc .number {
  font-size: 14px;
  font-weight: 700;
  color: rgba(129, 129, 129, 0.5);
  font-family: "Inter", sans-serif;
}
.footer-links .phone .desc .number:hover {
  color: red;
}
.footer-links .phone .desc .text {
  font-size: 14px;
  color: rgba(129, 129, 129, 0.7);
  line-height: 1;
}
.footer-links .phone .desc .right {
  padding-left: 5px;
}
.footer-links .phone .desc.ui-application {
  border: 1px solid rgba(30, 30, 30, 0.1);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 55px;
  max-width: 180px;
}
.footer-links .phone .desc.ui-application:not(:last-child) {
  margin-bottom: 10px;
}
.footer-bottom .container {
  padding-block: 30px;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.footer-bottom .text {
  font-size: 12px;
  color: #818181;
  padding-top: 10px;
}
@media (max-width: 991px) {
  .footer-bottom .text {
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .footer-bottom .text {
    font-size: 11px;
  }
}
.footer-bottom .text strong {
  color: red;
}
.footer-bank ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 479px) {
  .footer-bank ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .js-btn-modal.is-open {
    margin-right: 5px !important;
  }
  .btn.ux-mobile {
    margin-right: 5px !important;
  }
}
.footer-bank ul li {
  padding: 0 4px;
}
.footer-bank ul li .cover {
  width: 50px;
  height: 28px;
}
.footer-bank ul li .cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* header dil css */

.header-language-v2 {
  margin-left: 30px;
  position: relative;
}
.header-language-v2:hover .header-language__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  pointer-events: inherit;
}
.header-language-v2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-language-v2 .item .text,
.header-language-v2 .item .icon {
  font-size: 13px;
  color: white;
  font-weight: 800;
  letter-spacing: -0.3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-language-v2 .item .text:hover,
.header-language-v2 .item .icon:hover {
  color: #fff;
}
.header-language-v2 .item .icon {
  margin-left: 5px;
  font-size: 11px;
}
.header-language__header {
  height: var(--header-height-top);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-language__header > a {
  margin-right: 5px;
  width: 120px;
  height: 35px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-language__dropdown {
  position: absolute;
  left: -10px;
  right: -10px;
  border-radius: 11px;
  -webkit-box-shadow: 0 0 10px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 10px rgba(30, 30, 30, 0.1);
  padding: 20px 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  pointer-events: none;
  background-color: #fff;
  z-index: 1;
}
.header-language__dropdown ul li:not(:last-child) {
  margin-bottom: 5px;
}
.header-language__dropdown ul li .item:hover .text {
  color: red;
}
.header-language__dropdown ul li .item .text {
  color: #1e1e1e;
}

@media screen and (max-width: 767px) {
  .header-top > .header-container {
    display: flex;
    justify-content: center;
  }
  .mobil-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
/* loader css*/

.loader-body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  position: fixed;
  z-index: 1002;
}

.loader {
  border: 4px solid rgb(37 53 90 / 80%);
  border-left-color: transparent;
  border-radius: 50%;
}

.loader {
  border: 4px solid rgb(37 53 90 / 80%);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
}

.loader {
  border: 4px solid rgb(37 53 90 / 80%);
  border-left-color: transparent;
  width: 36px;
  height: 36px;
  animation: spin89345 1s linear infinite;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 2px solid #f0f0f0;
}
.hesap-btn.active a {
  background: rgb(37 53 90 / 31%);
}
.plus-button {
  padding: 2px;
  font-size: 16px !important;
  color: red !important;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgb(37 53 90 / 10%);
  border-radius: 4px;
  transition: 0.3s;
}
.plus-button:hover {
  background-color: red !important;
  color: #fff !important;
}

.view-button {
  background-color: #fff;
  border: 2px solid #ebebeb;
  padding: 6px 8px;
  border-radius: 8px;
  transition: 0.3s;
}
.view-button:hover {
  background-color: #8080809e !important;
  color: #fff !important;
}
.view-button:hover span {
  background: #fff !important;
  color: #fff !important;
  border: 2px solid #fff;
}
.view-button:hover i {
  color: #8080809e !important;
}
.view-button:hover .status {
  color: #fff !important;
}
.category-no-product {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.category-icon {
  font-size: 62px;
  margin-bottom: 20px;
  background-color: rgb(37 53 90 / 10%);
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 11px;
  color: red;
  overflow: hidden;
}
.category-no-product .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin-bottom: 5px;
}
.category-no-product div {
  font-size: 14px;
  color: #818181;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .price {
    display: flex;
    flex-direction: column;
  }
}
.search-no-product {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.search-icon {
  font-size: 62px;
  margin-bottom: 20px;
  background-color: rgb(37 53 90 / 10%);
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 11px;
  color: red;
  overflow: hidden;
}

.search-no-product .title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #1e1e1e;
  letter-spacing: -0.7px;
  line-height: 1.3;
  margin-bottom: 5px;
}

.search-no-product div {
  font-size: 14px;
  color: #818181;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .price {
    display: flex;
    flex-direction: column;
  }
}

/* yorum yildiz */

.rating:not(:checked) > input {
  position: absolute;
  appearance: none;
}

.rating:not(:checked) > label {
  float: right;
  cursor: pointer;
  font-size: 30px;
  color: #666;
}

.rating:not(:checked) > label:before {
  content: "★";
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
  color: red;
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: red;
}

.rating > input:checked ~ label {
  color: red;
}
#musteri-modal .modal-input-title {
  font-size: 14px;
  color: red;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 3px;
  padding-left: 10px;
}

@media screen and (max-width: 1320px) {
  .header-bottom.sticky .header-buttons:not([class*="ui-mobile"]) {
    display: flex !important;
  }
  .header-bottom.sticky .hamburger.js-btn-navmobile.is-open {
    display: flex !important;
  }
  .navigation {
    display: none;
  }
  .header-bottom {
    display: none;
  }
  .header-bottom.sticky {
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .header-bottom.sticky .header-buttons:not([class*="ui-mobile"]) {
    display: none !important;
  }
  .header-bottom.sticky .header-buttons.ui-mobile {
    display: flex !important;
  }
}
@media screen and (max-width: 360px) {
  .header-bottom.sticky .header-buttons.ui-mobile {
    display: none !important;
  }
}

.products-brand {
  position: absolute;
  left: 20px;
  top: 20px;
}
.products-brand .brand:hover {
  background: red;
  color: #fff;
}

.products-brand .brand {
  font-size: 14px;
  font-weight: 600;
  color: red;
  padding: 0 7px;
  min-width: 65px;
  height: 35px;
  border: 2px solid #ebebeb;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-model {
  position: absolute;
  left: 20px;
  top: 60px;
}
.products-model .model:hover {
  background: red;
  color: #fff;
}

.products-model .model {
  font-size: 14px;
  font-weight: 600;
  color: red;
  padding: 0 7px;
  min-width: 65px;
  height: 35px;
  border: 2px solid #ebebeb;
  -webkit-box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  box-shadow: 0 0 5px rgba(30, 30, 30, 0.1);
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1270px) {
  .header-iron {
    max-width: 300px !important;
  }
}

@media screen and (max-width: 480px) {
  .header-iron {
    max-width: 190px !important;
  }
}

@media screen and (max-width: 484px) {
  .header-iron {
    max-width: 260px !important;
  }

  .header-iron .iron-item .title {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 330px) {
  .header-iron {
    max-width: 150px !important;
  }

  .header-iron .iron-item .title {
    font-size: 10px !important;
  }
}

.header-iron {
  max-width: 550px;
}

.header-iron .iron-item .title {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.3px;
  text-align: center;
  cursor: pointer;
}

.header-iron .iron-item .title strong {
  margin-right: 5px;
  font-weight: 800;
}

/* lazy loading CSS */

img.lazy {
  filter: blur(10px);
  transition: filter 0.3s, opacity 0.3s;
  opacity: 0.6;
}

img.lazy-loaded {
  filter: blur(0);
  opacity: 1;
  transition: filter 0.5s ease-out, opacity 0.5s ease-out;
}

.lazy-spinner {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: red;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.lazy-wrapper img.lazy-loaded + .lazy-spinner {
  display: none;
}

.lazy-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
