@import url("https://fonts.cdnfonts.com/css/helvetica-neue-9");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");
#news {
  width: 100vw;
  min-height: 51px;
  background: var(--news);
  background: var(--news-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 400;
  font-size: 16px;
}

#header {
  width: 100vw;
  height: 98px;
  display: flex;
  justify-content: center;
}
#header .header-section {
  max-width: 2000px;
  width: 70%;
  height: 100%;
  display: flex;
}
#header .header-section .small-menu {
  display: none;
}
#header .header-section .header-logo {
  width: 15%;
  display: flex;
  align-items: center;
}
#header .header-section .header-logo img {
  width: 70%;
}
#header .header-section .header-searchBox {
  width: 60%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}
#header .header-section .header-searchBox .header-searchBox-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box {
  width: 80%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1px solid var(--basket-bg);
  border-radius: 5px;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box input {
  width: 90%;
  height: 100%;
  border-radius: 5px;
  outline: none;
  border: none;
  padding: 10px;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box i {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box .result-box {
  position: absolute;
  top: 100%;
  left: 10%;
  width: 80%;
  height: 300px;
  z-index: 1;
  display: none;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 9;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: auto;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li {
  padding: 5px 10px;
  cursor: pointer;
}
#header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li:hover {
  background-color: #f0f0f0;
}
#header .header-section .header-right {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .header-section .header-right .account {
  width: 128px;
  height: 50px;
  border: 0.1px solid var(--border-btn);
  padding: 2px 5px;
  border-radius: 5px;
}
#header .header-section .header-right .account a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  color: var(--black);
}
#header .header-section .header-right .account a .account-icon {
  width: 35%;
}
#header .header-section .header-right .account a .account-icon i {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header-section .header-right .account a .account-desc {
  width: 65%;
  margin: auto;
}
#header .header-section .header-right .account a .account-desc #descTop {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-family: var(--Montserrat);
  color: #000000;
}
#header .header-section .header-right .account a .account-desc #descBottom {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-family: var(--Montserrat);
}
#header .header-section .header-right .basket {
  width: 128px;
  height: 50px;
  border: 0.1px solid var(--border-btn);
  padding: 2px 5px;
  border-radius: 5px;
}
#header .header-section .header-right .basket a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  color: var(--black);
}
#header .header-section .header-right .basket a .basket-icon {
  width: 35%;
}
#header .header-section .header-right .basket a .basket-icon i {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header .header-section .header-right .basket a .basket-icon .basket-count {
  top: 0;
  right: 0;
  background-color: var(--basket-bg);
  width: 10px;
}
#header .header-section .header-right .basket a .basket-desc {
  width: 65%;
  display: flex;
  align-items: center;
}
#header .header-section .header-right .basket a .basket-desc span {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--Montserrat);
  color: #000000;
}

#menu {
  width: 100vw;
  height: 61px;
  background-color: var(--menu-bg);
  display: flex;
  justify-content: center;
}
#menu .menu-section {
  width: 70%;
  height: 100%;
  max-width: 2000px;
}
#menu .menu-section .menu-row {
  width: 100%;
  height: 100%;
}
#menu .menu-section .menu-row ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
}
#menu .menu-section .menu-row ul li {
  height: 100%;
  list-style-type: none;
  display: inline-block;
}
#menu .menu-section .menu-row ul li:hover .otoYedekParcaItem {
  display: block;
}
#menu .menu-section .menu-row ul li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
  font-family: var(--Inter);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.1s ease-in-out;
}
#menu .menu-section .menu-row ul li a:hover {
  color: grey;
  transition: 0.1s ease-in-out;
}
#menu .menu-section .menu-row ul li .otoYedekParcaItem {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 20px 33px;
  z-index: 99999;
  width: 100%;
  display: none;
}

.dropdownMenu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.dropdownMenu .div-1,
.dropdownMenu .div-2 {
  width: 100%;
  height: 100%;
  flex-basis: 100%;
}
.dropdownMenu .div-1 p,
.dropdownMenu .div-2 p {
  margin-bottom: 19px;
  font-family: var(--Inter);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.dropdownMenu .div-1 ul,
.dropdownMenu .div-2 ul {
  margin-top: 20px;
  width: 268px;
  flex-direction: column;
  margin: 0;
  justify-content: center;
}
.dropdownMenu .div-1 ul li,
.dropdownMenu .div-2 ul li {
  width: 100%;
  height: 100%;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 13px;
  line-height: 23px;
  letter-spacing: 0.15px;
  color: #5F5F5F;
  transition: 0.2s ease-out;
}
.dropdownMenu .div-1 ul li:hover,
.dropdownMenu .div-2 ul li:hover {
  color: var(--home-filter_3);
  cursor: pointer;
  font-weight: 500;
  transition: 0.2s ease-in;
}
.dropdownMenu .div-3 {
  width: 266px;
  height: 307px;
  flex-basis: 80%;
  border: 1px solid #F2F6F8;
}
.dropdownMenu .div-3 .div-right-header {
  margin-top: 16px;
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
}
.dropdownMenu .div-3 .div-right-header p {
  font-size: 18px;
  font-family: var(--inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.dropdownMenu .div-3 .resim-alani {
  width: 214px;
  height: 161px;
  background-image: url("../../images/dropdown-menu/kamyon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}
.dropdownMenu .div-4 {
  width: 266px;
  height: 307px;
  flex-basis: 80%;
  border: 1px solid #F2F6F8;
}
.dropdownMenu .div-4 .div-right-header {
  margin-top: 16px;
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
}
.dropdownMenu .div-4 .div-right-header p {
  font-size: 18px;
  font-family: var(--inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.dropdownMenu .div-4 .resim-alani {
  width: 214px;
  height: 161px;
  background-image: url("../../images/dropdown-menu/ekskavator.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin: auto;
}

.advertise-slider {
  width: 100%;
  height: 600px;
  position: relative;
}
.advertise-slider .swiper {
  width: 100%;
  height: 100%;
  max-width: 1920px;
}
.advertise-slider .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left {
  max-width: 860px;
  width: 860px;
  height: 100%;
  position: relative;
  background-color: var(--slider-bg);
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container {
  position: absolute;
  left: 290px;
  top: 146px;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content {
  width: 312px;
  height: 217px;
  position: relative;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header {
  width: 100%;
  height: 80px;
  position: relative;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header span {
  display: block;
  line-height: 44.32px;
  font-family: var(--Inter);
  font-size: 36.62px;
  font-weight: 600;
  color: var(--slider-content);
  text-align: left;
  text-transform: capitalize;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header::before {
  position: absolute;
  content: "";
  height: 2px;
  background-color: var(--slider-content);
  width: 10%;
  bottom: -40%;
  left: 0;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main {
  width: 100%;
  line-height: 10px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main span {
  color: #8C8C8C;
  font-family: var(--Montserrat);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn {
  width: 100px;
  height: 40px;
  position: absolute;
  margin-top: 50px;
  top: 100%;
  left: 0;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn button {
  width: 100px;
  height: 40px;
  padding: 8px 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--slider-button);
  color: white;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  border-radius: 8px;
  border: none;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right {
  width: 1060px;
  max-width: 1060px;
  height: 100%;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img {
  width: 100%;
  height: 100%;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img {
  width: 100%;
  height: 100%;
}
.advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img img {
  width: 100%;
  height: 100%;
}
.advertise-slider .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
}
.advertise-slider .swiper-pagination {
  position: absolute;
  top: 100%;
}

.home-filter {
  width: 100%;
  height: 460px;
  display: flex;
  justify-content: center;
}
.home-filter .home-filter-container {
  width: 70%;
  height: 100%;
  max-width: 2000px;
  padding: 50px 0;
}
.home-filter .home-filter-container .home-filter-row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-filter .home-filter-container .home-filter-row::-webkit-scrollbar {
  display: none;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 {
  width: 32.5%;
  height: 100%;
  border-radius: 5px;
  border: 0.1px solid var(--border-btn);
  background-color: var(--home-filter_1);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_1:hover {
  transform: scale(1.02);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
  width: 100%;
  height: 100%;
  padding: 40px 40px;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
  width: 100%;
  height: 30%;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
  display: block;
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  color: #FFFFFF;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
  max-width: 80%;
  height: 80%;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
  width: 100%;
  height: 30%;
  display: flex;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
  width: 10%;
  height: 100%;
  position: relative;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(255, 255, 255);
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
  width: 90%;
  height: 100%;
  padding: 0 0 0 10px;
}
.home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
  color: white;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 {
  width: 32.5%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 0.1px solid var(--border-btn);
  background-color: var(--home-filter_2);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_2:hover {
  transform: scale(1.02);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
  width: 100%;
  height: 100%;
  padding: 40px 40px;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
  width: 100%;
  height: 30%;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
  display: block;
  color: var(--home-filter_3);
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
  max-width: 80%;
  height: 80%;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
  width: 100%;
  height: 30%;
  display: flex;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
  width: 10%;
  height: 100%;
  position: relative;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--home-filter_3);
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
  width: 90%;
  height: 100%;
  padding: 0 0 0 10px;
}
.home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
  color: var(--home-filter_3);
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 {
  width: 32.5%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  border: 0.1px solid var(--border-btn);
  background-color: var(--home-filter_3);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_3:hover {
  transform: scale(1.02);
  transition: 0.1s ease-in-out;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
  width: 100%;
  height: 100%;
  padding: 40px 40px;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
  width: 100%;
  height: 30%;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
  display: block;
  color: white;
  font-family: var(--Inter);
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
  max-width: 80%;
  height: 80%;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
  width: 100%;
  height: 30%;
  display: flex;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
  width: 10%;
  height: 100%;
  position: relative;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(255, 255, 255);
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
  width: 90%;
  height: 100%;
  padding: 0 0 0 10px;
}
.home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
  color: white;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.new-product {
  width: 100%;
  height: 793px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--slider-bg);
}
.new-product .new-product-container {
  width: 70%;
  height: 100%;
  max-width: 2000px;
}
.new-product .new-product-container .new-product-header {
  width: 100%;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-product .new-product-container .new-product-header .new-product-header-desc {
  position: relative;
  height: 100%;
  width: 90%;
  display: flex;
  align-items: center;
}
.new-product .new-product-container .new-product-header .new-product-header-desc::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30%;
  background-color: var(--new-product-header);
}
.new-product .new-product-container .new-product-header .new-product-header-desc span {
  margin-left: 15px;
  font-size: 34px;
  font-family: var(--Inter);
  font-weight: 600;
}
.new-product .new-product-container .new-product-header .new-product-header-desc span:first-child {
  color: var(--home-filter_3);
}
.new-product .new-product-container .new-product-header .new-product-header-btn {
  height: 100%;
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
  margin: 0;
  width: 57px;
  height: 57px;
  background-color: rgb(255, 255, 255);
  padding: 15%;
  border-radius: 10px;
}
.new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
  font-size: 1rem !important;
  color: grey;
}
.new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
  margin: 0;
  width: 57px;
  height: 57px;
  background-color: rgb(255, 255, 255);
  opacity: 1;
  padding: 15%;
  border-radius: 10px;
}
.new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
  font-size: 1rem !important;
  color: grey;
}
.new-product .new-product-container .new-product-slider {
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.new-product .new-product-container .new-product-slider .swiper5 {
  width: 100%;
  height: 100%;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
  width: 100%;
  height: 100%;
  background-color: var(--new-product-container-bg);
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
  width: 100%;
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
  width: 227px;
  height: 77px;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
  display: block;
  font-size: 35px;
  font-family: var(--Inter);
  font-weight: 800;
  line-height: 42.2px;
  color: white;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
  width: 90%;
  height: 75%;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
  width: 80%;
  height: 51px;
  border-radius: 5px;
  border: none;
  color: var(--new-product-container-bg);
  background-color: white;
  font-weight: 600;
  font-family: var(--Inter);
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0rem;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 311px;
  height: 570px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
  width: 100%;
  height: 100%;
  background-color: white;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
  width: 100%;
  height: 52%;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
  width: 100%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
  color: #000000;
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.15px;
  font-family: var(--Inter);
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
  width: 90%;
  height: 5%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
  width: 100%;
  height: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
  color: #0057A8;
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15px;
  line-height: 28px;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
  color: var(--home-filter_3);
  font-size: 1.5rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
  margin-left: 4px;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
  color: #394454;
  font-size: 20px;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.001px solid #C4C4C4;
  border-radius: 8px;
  overflow: hidden;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
  width: 51px;
  height: 51px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--Montserrat);
  font-weight: 500;
  outline: none;
  border: none;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
  color: black;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
  color: black;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
  font-size: 20px;
  color: #394454;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
  width: 80%;
  height: 51px;
  border-radius: 5px;
  border: none;
  color: var(--home-filter_3);
  background-color: white;
  border: 0.1px solid var(--home-filter_3);
  font-weight: 600;
  font-family: var(--Inter);
  font-size: 14px;
}

.banner {
  width: 100%;
  height: 520px;
  display: flex;
  justify-content: center;
}
.banner .banner-container {
  width: 70%;
  height: 100%;
  max-width: 100%;
  padding: 70px 0;
}
.banner .banner-container .banner-row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.banner .banner-container .banner-row .col-6 {
  max-width: 646px;
  width: 48%;
  height: 387px;
  background-color: rgba(69, 155, 182, 0.1294117647);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.banner .banner-container .banner-row .col-6:hover {
  cursor: pointer;
}
.banner .banner-container .banner-row .col-6:hover .banner-img img {
  transition: 0.1s ease-in-out;
  transform: scale(1.05);
}
.banner .banner-container .banner-row .col-6 .banner-header {
  width: 50%;
  height: 25%;
  position: absolute;
  top: 10%;
  left: 8%;
}
.banner .banner-container .banner-row .col-6 .banner-header span {
  display: block;
  color: var(--new-product-header);
  font-weight: 800;
  font-size: 34.87px;
  line-height: 42.2px;
  font-family: var(--Inter);
}
.banner .banner-container .banner-row .col-6 .banner-desc {
  width: 50%;
  height: 35%;
  position: absolute;
  top: 35%;
  left: 8%;
  display: flex;
  align-items: center;
}
.banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
  width: 100%;
  height: 50%;
}
.banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
  display: block;
  font-family: var(--Inter);
  color: var(--new-product-header);
  font-size: 28.98px;
  line-height: 35.07px;
  font-weight: 500;
}
.banner .banner-container .banner-row .col-6 .banner-btn {
  width: 50%;
  height: 20%;
  position: absolute;
  top: 70%;
  left: 8%;
}
.banner .banner-container .banner-row .col-6 .banner-btn button {
  width: 100px;
  height: 40px;
  color: white;
  background-color: var(--home-filter_3);
  border-radius: 8px;
  border: none;
  font-family: var(--Inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.banner .banner-container .banner-row .col-6 .banner-circle {
  width: 400px;
  height: 400px;
  position: absolute;
  right: -6%;
  bottom: -30%;
  background-color: var(--new-product-container-bg);
  border-radius: 50%;
}
.banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
  width: 100%;
  position: absolute;
  top: -20%;
  left: -10%;
  transition: 0.1s ease-in-out;
}
.banner .banner-container .banner-row .col-6:nth-child(2) {
  max-width: 646px;
  width: 48%;
  height: 387px;
  background-color: rgba(0, 149, 219, 0.1098039216);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
  width: 50%;
  height: 25%;
  position: absolute;
  top: 10%;
  left: 8%;
}
.banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
  display: block;
  color: #68B9D5;
  font-weight: 800;
  font-size: 34.87px;
  line-height: 42.2px;
  font-family: var(--Inter);
}
.banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
  width: 50%;
  height: 35%;
  position: absolute;
  top: 35%;
  left: 8%;
  display: flex;
  align-items: center;
}
.banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
  width: 100%;
  height: 50%;
}
.banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
  display: block;
  font-family: var(--Inter);
  color: #68B9D5;
  font-size: 28.98px;
  line-height: 35.07px;
  font-weight: 500;
}

.best-seller {
  width: 100%;
  height: 793px;
  background-color: var(--new-product-bg);
  display: flex;
  justify-content: center;
}
.best-seller .best-seller-container {
  width: 70%;
  height: 100%;
  max-width: 2000px;
  margin: auto;
  position: relative;
}
.best-seller .best-seller-container .swiper-button-prev {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 55%;
  left: -2%;
  opacity: 1;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  border-radius: 10px;
}
.best-seller .best-seller-container .swiper-button-prev::after {
  font-size: 16px;
  color: black;
}
.best-seller .best-seller-container .swiper-button-next {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 55%;
  right: -2%;
  opacity: 1;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  border-radius: 10px;
}
.best-seller .best-seller-container .swiper-button-next::after {
  font-size: 16px;
  color: black;
}
.best-seller .best-seller-container .best-seller-header {
  width: 100%;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
  display: none;
}
.best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
  position: relative;
  height: 60%;
  display: flex;
  align-items: center;
}
.best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 47px;
  background-color: var(--new-product-header);
}
.best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
  margin-left: 15px;
  font-family: var(--Inter);
  font-weight: 600;
  line-height: 41.15px;
  font-size: 34px;
}
.best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:first-child {
  color: var(--home-filter_3);
}
.best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
  color: var(--home-filter_3);
}
.best-seller .best-seller-container .best-seller-header .best-seller-category {
  width: 60%;
  height: 100%;
  overflow: scroll;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category::-webkit-scrollbar {
  display: none;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list {
  width: 100%;
  height: 100%;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li {
  width: 184px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .category-link {
  width: 184px;
  height: 55px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  /* or 106% */
  text-align: center;
  letter-spacing: 0.15px;
  color: #394454;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .active {
  width: 184px;
  height: 55px;
  background-color: white;
  color: var(--home-filter_3);
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  /* or 106% */
  text-align: center;
  letter-spacing: 0.15px;
  color: #0057A8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-slider {
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
  width: 100%;
  height: 100%;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
  width: 100%;
  height: 100%;
  display: none;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
  display: block;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
  width: 100%;
  height: 100%;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 311px;
  height: 570px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
  width: 100%;
  height: 100%;
  background-color: white;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
  width: 100%;
  height: 52%;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
  width: 100%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
  color: #000000;
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.15px;
  font-family: var(--Inter);
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
  width: 90%;
  height: 5%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
  width: 100%;
  height: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
  color: #0057A8;
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15px;
  line-height: 28px;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
  color: var(--home-filter_3);
  font-size: 1.5rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
  margin-left: 4px;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
  color: #394454;
  font-size: 20px;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.001px solid #C4C4C4;
  border-radius: 8px;
  overflow: hidden;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
  width: 51px;
  height: 51px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--Montserrat);
  font-weight: 500;
  outline: none;
  border: none;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
  color: black;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
  color: black;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
  font-size: 20px;
  color: #394454;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
  width: 266px;
  height: 51px;
  border-radius: 5px;
  border: none;
  color: var(--home-filter_3);
  background-color: white;
  border: 0.1px solid var(--home-filter_3);
  font-weight: 600;
  font-family: var(--Inter);
  font-size: 14px;
}

.partner {
  width: 100%;
  height: 547px;
  display: flex;
  justify-content: center;
}
.partner .partner-container {
  width: 70%;
  height: 100%;
  max-width: 2000px;
}
.partner .partner-container .partner-header {
  width: 100%;
  height: 166px;
  position: relative;
  display: flex;
  align-items: center;
}
.partner .partner-container .partner-header::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30%;
  background-color: var(--new-product-header);
}
.partner .partner-container .partner-header span {
  margin-left: 15px;
  font-size: 34px;
  font-family: var(--Inter);
  font-weight: 600;
}
.partner .partner-container .partner-header span:nth-child(2) {
  color: var(--home-filter_3);
}
.partner .partner-container .partner-slider {
  width: 100%;
  height: 95px;
  overflow: hidden;
}
.partner .partner-container .partner-slider .swiper4 {
  width: 100%;
  height: 100%;
}
.partner .partner-container .partner-slider .swiper4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
}
.partner .partner-container .partner-slider .swiper4 .swiper-slide img {
  display: block;
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
.partner .partner-container .partner-slider .swiper4 .swiper-slide img:hover {
  cursor: pointer;
  filter: none;
  -webkit-filter: grayscale(0);
}
.partner .partner-container .partner-desc {
  width: 100%;
  height: 286px;
  display: flex;
  align-items: center;
}
.partner .partner-container .partner-desc .partner-desc-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 {
  width: 424px;
  height: 130px;
  border: 0.1px solid var(--new-product-header);
  border-radius: 5px;
  overflow: hidden;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
  width: 40%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
  width: 70%;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
  width: 60%;
  height: 55%;
  margin: auto 0;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
  width: 100%;
  margin-bottom: 8px;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
  font-family: var(--Inter);
  font-weight: 600;
  font-size: 16.94px;
  line-height: 18px;
  letter-spacing: 0.16px;
  color: var(--new-product-header);
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
  width: 90%;
}
.partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--new-product-header);
}

.footer-small {
  display: none;
}

.footer {
  width: 100%;
}
.footer .footer-header {
  width: 100%;
  height: 81px;
  background-color: var(--footer-header-bg);
  display: flex;
  justify-content: center;
}
.footer .footer-header .footer-header-container {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-header .footer-header-container .footer-header-logo {
  width: 138.19px;
  height: 61.21px;
  display: flex;
  align-items: center;
  margin: auto 0;
}
.footer .footer-header .footer-header-container .footer-header-logo img {
  width: 80%;
}
.footer .footer-header .footer-header-container .footer-header-contact {
  padding: 20px 0;
  width: 155px;
  height: 36px;
  display: flex;
  align-items: center;
}
.footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon {
  width: 34.99px;
  height: 34.98px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon i {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--footer-header-icon);
}
.footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content {
  width: 115px;
  height: 17px;
  overflow: --Montserrat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content a {
  text-decoration: none;
  font-weight: 700;
  line-height: 19.54px;
  font-size: 16px;
  letter-spacing: 0.25px;
  color: var(--footer-header-icon);
  font-family: var(--Montserrat);
}
.footer .footer-section {
  padding: 30px 0;
  width: 100%;
  background-color: rgb(12, 50, 50);
  display: flex;
  justify-content: center;
}
.footer .footer-section .footer-section-container {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.footer .footer-section .footer-section-container .col-2 {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer .footer-section .footer-section-container .col-2:first-child {
  width: 20%;
  height: 100%;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container {
  width: 100%;
  height: 80%;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header {
  width: 100%;
  height: 20%;
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header span {
  font-size: 12px;
  font-weight: 500;
  font-family: var(--Roboto);
  line-height: 14.06px;
  color: var(--footer-header-icon);
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content {
  width: 100%;
  height: 100%;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon i {
  font-size: 1rem;
  color: white;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 15px 0;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author span {
  font-size: 11px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 13.12px;
  letter-spacing: 0.25px;
  font-family: var(--Montserrat);
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul {
  width: 100%;
  height: 100%;
  list-style: none;
  overflow: --Montserrat;
  display: flex;
  flex-direction: column;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li {
  width: 100%;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a {
  width: 100%;
  text-decoration: none;
  color: #FFFFFF;
  transition: 0.1s ease-in;
  font-family: var(--Montserrat);
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
}
.footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a:hover {
  color: var(--footer-header-icon);
  transition: 0.1s ease-in;
}
.footer .footer-payment {
  width: 100%;
  height: 42px;
  background-color: var(--footer-payment-bg);
}
.footer .footer-payment .footer-payment-container {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.footer .footer-payment .footer-payment-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .footer-author {
  width: 100%;
  height: 42px;
  padding: 15px 0;
  background-color: var(--footer-payment-bg);
}
.footer .footer-author .footer-author-container {
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

button.notification2 {
  background-color: red;
}

.notification-products {
  width: 100vw;
  height: 100vh;
  background-color: rgba(115, 115, 115, 0.823);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  display: none;
}
.notification-products form {
  width: 600px;
  height: 500px;
  background-color: white;
  position: fixed;
  left: 35%;
  top: 25%;
  border-radius: 5px;
}
.notification-products form .notification-products-container {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.notification-products form .notification-products-container .notification-close-btn {
  padding: 1% 2%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--home-filter_3);
  border: none;
}
.notification-products form .notification-products-container .notification-close-btn i {
  font-size: 1.5rem;
  color: white;
  font-weight: 300;
}
.notification-products form .notification-products-container .notification-close-btn i:hover {
  cursor: pointer;
}
.notification-products form .notification-products-container .notification-products-content {
  width: 90%;
  height: 90%;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-header {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-header span {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Montserrat);
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userName {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userName label {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Montserrat);
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userName input {
  padding: 3%;
  border-radius: 5px;
  border: 0.1px solid rgb(208, 208, 208);
  outline: none;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userPhone {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5%;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userPhone label {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Montserrat);
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userPhone input {
  padding: 3%;
  border-radius: 5px;
  border: 0.1px solid rgb(208, 208, 208);
  outline: none;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userEmail {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5%;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userEmail label {
  font-size: 1rem;
  font-weight: 400;
  font-family: var(--Montserrat);
}
.notification-products form .notification-products-container .notification-products-content .notification-products-userEmail input {
  padding: 3%;
  border-radius: 5px;
  border: 0.1px solid rgb(208, 208, 208);
  outline: none;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law {
  width: 100%;
  margin-top: 3%;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law input {
  flex-direction: row;
  align-content: end;
}
.notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law a {
  font-size: 0.8rem;
  font-weight: 400;
  font-family: var(--Montserrat);
  color: black;
}
.notification-products form .notification-products-container .notification-products-content button {
  margin-top: 3%;
  padding: 10px 20px;
  background-color: var(--home-filter_3);
  color: white;
  border-radius: 5px;
  border: none;
}
.notification-products form .notification-products-container .notification-products-content button:hover {
  cursor: pointer;
}

.product-path {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--new-product-bg);
}
.product-path .product-path-container {
  width: 70%;
  height: 100%;
}
.product-path .product-path-container .product-path-row {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.product-path .product-path-container .product-path-row .breadcrumb {
  width: 100%;
  height: 100%;
  padding: 20px 0;
}
.product-path .product-path-container .product-path-row .breadcrumb a {
  color: #666;
  text-decoration: none;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.15px;
}
.product-path .product-path-container .product-path-row .breadcrumb a:hover {
  text-decoration: underline;
}
.product-path .product-path-container .product-path-row .breadcrumb .separator {
  margin: 0 5px;
  color: #666;
}
.product-path .product-path-container .product-path-row .breadcrumb .current {
  color: #666;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.15px;
}

.product-detail {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--new-product-bg);
}
.product-detail .product-detail-container {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.product-detail .product-detail-container .col-12 {
  display: none;
}
.product-detail .product-detail-container .col-5 {
  max-width: 555px;
  width: 49%;
  height: 555px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  border-radius: 5px;
}
.product-detail .product-detail-container .col-5:nth-child(2) {
  max-width: 672px;
  width: 49%;
  height: 555px;
  border-radius: 5px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.product-detail .product-detail-container .col-5:nth-child(2) ::-webkit-scrollbar {
  display: none;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container {
  max-width: 554px;
  width: 90%;
  height: 100%;
  padding: 27px 0 51px 0;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category {
  width: 100%;
  height: 17px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category a {
  text-decoration: none;
  font-family: var(--Inter);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.1px;
  color: #5F5F5F;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name {
  width: 100%;
  height: 72px;
  margin-bottom: 37px;
  display: flex;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name span {
  font-family: var(--Inter);
  font-weight: 600;
  font-size: 34px;
  line-height: 41.15px;
  letter-spacing: 0.25px;
  color: var(--home-filter_3);
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc {
  width: 100%;
  height: 59px;
  margin-bottom: 70px;
  overflow: scroll;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc span {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  font-family: var(--Inter);
  color: #000000;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price {
  width: 100%;
  height: 23px;
  margin-bottom: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price {
  width: 100%;
  display: flex;
  align-items: center;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price span {
  font-family: var(--Inter);
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: var(--home-filter_3);
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order {
  width: 100%;
  margin-bottom: 37px;
  display: flex;
  align-items: center;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus i {
  font-size: 18px;
  font-weight: 900;
  color: #394454;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.001px solid #C4C4C4;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 10px;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  letter-spacing: 0.25px;
  color: #000000;
  font-family: var(--Intere);
  outline: none;
  border: none;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::-moz-placeholder {
  color: black;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::placeholder {
  color: black;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus i {
  font-size: 18px;
  font-weight: 900;
  color: #394454;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button {
  width: 85%;
  height: 51px;
  border-radius: 10px;
  border: none;
  background-color: var(--home-filter_3);
  color: white;
  font-size: 0.8vw;
  font-weight: 600;
  font-family: var(--Montserrat);
  letter-spacing: 0.1rem;
}
.product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button:nth-child(2) {
  width: 10%;
  background-color: white;
  color: var(--home-filter_3);
  border: 0.1px solid var(--home-filter_3);
}
.product-detail .product-detail-container .col-5 .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-detail .product-detail-container .col-5 .swiper .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: white;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
  display: block;
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--home-filter_3);
}
.product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--home-filter_3);
}
.product-detail .product-detail-container .col-5 .mySwiper2 {
  height: 100%;
  width: 100%;
}
.product-detail .product-detail-container .col-5 .mySwiper {
  display: none;
}

.product-property {
  width: 100%;
  height: 550px;
  padding: 51px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--new-product-bg);
}
.product-property .product-property-container {
  width: 70%;
  height: 499px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-property .product-property-container .product-property-row {
  width: 90%;
  height: 100%;
}
.product-property .product-property-container .product-property-row .product-property-section {
  width: 100%;
  height: 60px;
  position: relative;
}
.product-property .product-property-container .product-property-row .product-property-section .tab {
  flex-wrap: wrap;
  overflow: scroll;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
  display: none;
}
.product-property .product-property-container .product-property-row .product-property-section .tab::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  border-radius: 10px;
}
.product-property .product-property-container .product-property-row .product-property-section .tab button {
  width: 174px;
  padding: 20px 0;
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  font-family: var(--Inter);
  font-weight: 400;
  letter-spacing: 0.15px;
}
.product-property .product-property-container .product-property-row .product-property-section .tab .active {
  width: 174px;
  padding: 20px 0;
  font-size: 16px;
  font-family: var(--Inter);
  font-weight: 600;
  letter-spacing: 0.15px;
  background-color: transparent;
  position: relative;
}
.product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: royalblue;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  border-radius: 10px;
}
.product-property .product-property-container .product-property-row .product-property-section-content {
  width: 100%;
  height: 439px;
}
.product-property .product-property-container .product-property-row .product-property-section-content ::-webkit-scrollbar {
  display: none;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
  width: 100%;
  height: 100%;
  overflow: scroll;
  /* Style the tab content */
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
  width: 100%;
  display: none;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
  display: block;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
  padding: 30px 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
  width: 48%;
  height: 100%;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
  width: 100%;
  height: 100%;
  background-color: var(--col-left-header-bg);
  padding: 10px;
  border-radius: 5px;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
  font-family: var(--Inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.15px;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
  width: 100%;
  height: 100%;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 10px;
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgb(235, 235, 235);
}
.product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
  display: block;
  display: flex;
  align-items: center;
  font-family: var(--Inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.1px;
}

.same-products {
  width: 100%;
  height: 793px;
  background-color: var(--same-products-bg);
  display: flex;
  justify-content: center;
}
.same-products .same-products-container {
  width: 70%;
  height: 100%;
  max-width: 2000px;
  margin: auto;
  position: relative;
}
.same-products .same-products-container .swiper-button-prev {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 55%;
  left: -2%;
  opacity: 1;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  border-radius: 10px;
}
.same-products .same-products-container .swiper-button-prev::after {
  font-size: 16px;
  color: black;
}
.same-products .same-products-container .swiper-button-next {
  width: 55px;
  height: 55px;
  position: absolute;
  top: 55%;
  right: -2%;
  opacity: 1;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  border-radius: 10px;
}
.same-products .same-products-container .swiper-button-next::after {
  font-size: 16px;
  color: black;
}
.same-products .same-products-container .same-products-header {
  width: 100%;
  height: 166px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.same-products .same-products-container .same-products-header .same-products-header-desc {
  position: relative;
  height: 60%;
  display: flex;
  align-items: center;
}
.same-products .same-products-container .same-products-header .same-products-header-desc::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 47px;
  background-color: var(--same-products-header);
}
.same-products .same-products-container .same-products-header .same-products-header-desc span {
  margin-left: 15px;
  font-family: var(--Inter);
  font-weight: 600;
  line-height: 41.15px;
  font-size: 34px;
}
.same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
  color: var(--home-filter_3);
}
.same-products .same-products-container .same-products-header .same-products-category {
  width: 60%;
  height: 100%;
  overflow: scroll;
}
.same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
  display: none;
}
.same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
  width: 100%;
  height: 100%;
}
.same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
  width: 184px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
  width: 184px;
  height: 55px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 17px;
  /* or 106% */
  text-align: center;
  letter-spacing: 0.15px;
  color: #394454;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
  width: 184px;
  height: 55px;
  background-color: white;
  color: var(--home-filter_3);
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  /* or 106% */
  text-align: center;
  letter-spacing: 0.15px;
  color: #0057A8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-slider {
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.same-products .same-products-container .same-products-slider .same-products-category-info {
  width: 100%;
  height: 100%;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
  width: 100%;
  height: 100%;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 311px;
  height: 570px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
  width: 100%;
  height: 100%;
  background-color: white;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
  width: 100%;
  height: 52%;
  overflow: hidden;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
  width: 100%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
  color: #000000;
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.15px;
  font-family: var(--Inter);
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
  width: 90%;
  height: 5%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
  width: 100%;
  height: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
  color: #0057A8;
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15px;
  line-height: 28px;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
  color: var(--home-filter_3);
  font-size: 1.5rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
  margin-left: 4px;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-minus i {
  color: #394454;
  font-size: 20px;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.001px solid #C4C4C4;
  border-radius: 8px;
  overflow: hidden;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-input input {
  width: 51px;
  height: 51px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--Montserrat);
  font-weight: 500;
  outline: none;
  border: none;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-input input::-moz-placeholder {
  color: black;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-input input::placeholder {
  color: black;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order .order-container .order-plus i {
  font-size: 20px;
  color: #394454;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
  width: 100%;
  height: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
  width: 266px;
  height: 51px;
  border-radius: 5px;
  border: none;
  color: var(--home-filter_3);
  background-color: white;
  border: 0.1px solid var(--home-filter_3);
  font-weight: 600;
  font-family: var(--Inter);
  font-size: 14px;
}

.category-products {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--new-product-bg);
}
.category-products .category-products-container {
  width: 70%;
  height: 100%;
  overflow: hidden;
}
.category-products .category-products-container .category-products-header {
  width: 100%;
  height: 100%;
}
.category-products .category-products-container .category-products-header .category-products-header-row {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.category-products .category-products-container .category-products-header .category-products-header-row .product-path {
  width: 100%;
  height: 82px;
  display: flex;
  justify-content: center;
  background-color: var(--new-product-bg);
}
.category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
  width: 100%;
  height: 100%;
}
.category-products .category-products-container .category-products-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.category-products .category-products-container .category-products-wrapper .category-products-category-name {
  width: 100%;
  height: 100%;
  padding: 0 0 10px 0;
}
.category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
  width: 72%;
  height: 100%;
  display: flex;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
  font-size: 24px;
  font-family: var(--Inter);
  font-weight: 500;
  line-height: 36px;
}
.category-products .category-products-container .category-products-wrapper .sidebar {
  width: 25%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section {
  width: 100%;
  border-radius: 5px;
  background-color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full {
  width: 90%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header {
  width: 100%;
  padding: 10px 0;
  border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header span {
  font-family: var(--Inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container {
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container:last-child {
  border: none;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name {
  position: relative;
  padding: 15px 0;
  display: flex;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name i {
  text-align: center;
  width: 10%;
  font-weight: 400;
  padding: 0 0;
  font-size: 20px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name span {
  width: 90%;
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content {
  width: 100%;
  display: none;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul {
  width: 100%;
  list-style-type: none;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li {
  width: 100%;
  padding: 15px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(225, 225, 225);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li input {
  margin-right: 11px;
  width: 10px;
  height: 10px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li a {
  text-decoration: none;
  font-family: var(--Inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group {
  width: 100%;
  border-radius: 5px;
  background-color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full {
  width: 90%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header {
  width: 100%;
  padding: 10px 0;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header span {
  font-family: var(--Inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container {
  width: 100%;
  margin-bottom: 10px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul {
  width: 100%;
  list-style-type: none;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li {
  width: 100%;
  padding: 15px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgb(225, 225, 225);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li input {
  margin-right: 11px;
  width: 10px;
  height: 10px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li a {
  font-family: var(--Inter);
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.15px;
  text-decoration: none;
  color: #5F5F5F;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend {
  width: 100%;
  border-radius: 5px;
  background-color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full {
  width: 90%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header {
  width: 100%;
  padding: 10px 0;
  position: relative;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header span {
  font-family: var(--Inter);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container {
  width: 100%;
  margin-bottom: 10px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content {
  width: 100%;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul {
  width: 100%;
  list-style-type: none;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li {
  width: 100%;
  padding: 15px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li input {
  margin-right: 11px;
  width: 10px;
  height: 10px;
}
.category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.15px;
  color: #5F5F5F;
}
.category-products .category-products-container .category-products-wrapper .grid-row {
  width: 72%;
  height: 100%;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
  margin-left: 20px;
  width: 110px;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
  width: 10px;
  height: 10px;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
  font-size: 14px;
  font-family: var(--Inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  font-weight: 400;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
  width: 200px;
  margin-right: 30px;
  height: 100%;
  background-color: var(--new-product-bg);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort {
  width: 100%;
  height: 100%;
  background-color: white;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container {
  width: 100%;
  height: 100%;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: var(--Inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  font-weight: 400;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select:hover {
  cursor: pointer;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser {
  width: 100%;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 9;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container {
  width: 80%;
  height: 100%;
  margin: auto;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section {
  width: 100%;
  height: 85%;
  padding: 20px 0;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container {
  width: 100%;
  height: 100%;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul {
  width: 100%;
  height: 100%;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul .active {
  font-size: 14px;
  font-family: var(--Inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  font-weight: 400;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li a {
  text-decoration: none;
  font-size: 13px;
  font-family: var(--Inter);
  line-height: 28px;
  letter-spacing: 0.15px;
  font-weight: 400;
  color: #000000;
}
.category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
  display: none;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
  gap: 16px;
  margin-bottom: 20px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 100%;
  height: 570px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
  width: 100%;
  height: 100%;
  background-color: white;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
  width: 100%;
  height: 52%;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
  width: 100%;
  height: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
  color: #000000;
  font-size: 12px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.15px;
  font-family: var(--Inter);
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
  width: 90%;
  height: 31px;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0.15px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
  width: 100%;
  height: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
  width: 100%;
  height: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
  color: #0057A8;
  font-family: var(--Inter);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.15px;
  line-height: 28px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
  color: var(--home-filter_3);
  font-size: 1.5rem;
  font-family: var(--Montserrat);
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
  margin-left: 4px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
  width: 100%;
  height: 10%;
  display: flex;
  align-items: center;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
  color: #394454;
  font-size: 20px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.001px solid #C4C4C4;
  border-radius: 8px;
  overflow: hidden;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
  width: 51px;
  height: 51px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--Montserrat);
  font-weight: 500;
  outline: none;
  border: none;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
  color: black;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
  color: black;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
  font-size: 20px;
  color: #394454;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
  width: 80%;
  height: 15%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
  width: 266px;
  height: 51px;
  border-radius: 5px;
  border: none;
  color: var(--home-filter_3);
  background-color: white;
  border: 0.1px solid var(--home-filter_3);
  font-weight: 600;
  font-family: var(--Inter);
  font-size: 14px;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
  display: none;
}
.category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
  display: flex;
}

@media only screen and (max-width: 479px) and (min-width: 0px) {
  .notification-products {
    width: 100vw;
    height: 100vh;
    background-color: rgba(115, 115, 115, 0.823);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
  }
  .notification-products form {
    width: 80%;
    height: 400px;
    background-color: white;
    position: fixed;
    left: 10%;
    top: 10%;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container .notification-close-btn {
    padding: 1% 2%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--home-filter_3);
    border: none;
  }
  .notification-products form .notification-products-container .notification-close-btn i {
    font-size: 1rem;
    color: white;
    font-weight: 300;
  }
  .notification-products form .notification-products-container .notification-close-btn i:hover {
    cursor: pointer;
  }
  .notification-products form .notification-products-container .notification-products-content {
    width: 90%;
    height: 90%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header span {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law {
    width: 100%;
    margin-top: 3%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law input {
    flex-direction: row;
    align-content: end;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law a {
    font-size: 0.6rem;
    font-weight: 300;
    font-family: var(--Montserrat);
    color: black;
  }
  .notification-products form .notification-products-container .notification-products-content button {
    margin-top: 15%;
    padding: 10px 20px;
    background-color: var(--home-filter_3);
    color: white;
    border-radius: 5px;
    border: none;
  }
  .notification-products form .notification-products-container .notification-products-content button:hover {
    cursor: pointer;
  }
  #header {
    display: none;
  }
  #menu {
    display: none;
  }
  .header-small {
    display: block;
  }
  .advertise-slider {
    width: 100%;
    height: 200px;
    position: relative;
  }
  .advertise-slider .swiper {
    width: 100%;
    height: 100%;
    max-width: 2000px;
  }
  .advertise-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left {
    display: none;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .advertise-slider .swiper-pagination {
    position: absolute;
    top: 100%;
  }
  .home-filter {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
  }
  .home-filter .home-filter-container {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .home-filter .home-filter-container .home-filter-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 {
    width: 90%;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_1);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 400;
    font-size: 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 {
    width: 90%;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_2);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: var(--home-filter_3);
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--home-filter_3);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
    color: var(--home-filter_3);
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 0.9rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 {
    width: 90%;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_3);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 0.9rem;
  }
  .new-product {
    width: 100%;
    height: 450px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product .new-product-container {
    width: 95%;
    height: 95%;
  }
  .new-product .new-product-container .new-product-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc::before {
    display: none;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(1) {
    color: var(--home-filter_3);
    margin-right: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn {
    height: 100%;
    width: 40%;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
    width: 40%;
    height: 50%;
    left: 0;
    margin: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
    margin: 0;
    width: 40%;
    height: 50%;
    right: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-container-bg);
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
    display: block;
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 800;
    line-height: 30.2px;
    color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
    width: 90%;
    height: 65%;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
    line-height: 0px;
    letter-spacing: 0rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .banner {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  .banner .banner-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0;
  }
  .banner .banner-container .banner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .banner .banner-container .banner-row .col-6 {
    width: 90%;
    height: 50%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6 .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6 .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) {
    width: 90%;
    height: 50%;
    background-color: rgba(0, 149, 219, 0.1098039216);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .best-seller {
    width: 100%;
    height: 450px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .best-seller .best-seller-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    margin: auto;
  }
  .best-seller .best-seller-container .best-seller-header {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(1) {
    margin: 0;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    color: black;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    margin-left: 10px;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
    height: 100%;
    font-size: 14px;
    font-family: var(--Inter);
    display: flex;
    align-items: center;
    color: var(--home-filter_3);
    font-weight: 600;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn i {
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-size: 12px;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
    position: relative;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-prev {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-next {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
    width: 100%;
    height: 100%;
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
    display: block;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .recommend-product {
    width: 100%;
    height: 450px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .recommend-product .recommend-product-container {
    width: 99%;
    height: 90%;
  }
  .recommend-product .recommend-product-container .recommend-product-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-desc {
    position: relative;
    height: 60%;
    width: 80%;
    display: flex;
    align-items: center;
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-desc::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--new-product-header);
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-desc span {
    margin-left: 10px;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 500;
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-btn {
    height: 100%;
    width: 20%;
    z-index: 9;
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-btn .swiper-button-prev {
    width: 40%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    background-color: rgb(255, 255, 255);
    padding: 0;
    border-radius: 10px;
    box-shadow: 0.1px 1px 1px 3px rgb(220, 220, 220);
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-btn .swiper-button-prev::after {
    font-size: 1rem !important;
    color: grey;
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-btn .swiper-button-next {
    width: 40%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0.1px 1px 1px 3px rgb(220, 220, 220);
  }
  .recommend-product .recommend-product-container .recommend-product-header .recommend-product-header-btn .swiper-button-next::after {
    font-size: 1rem !important;
    color: grey;
  }
  .recommend-product .recommend-product-container .recommend-product-slider {
    width: 100%;
    height: 80%;
    overflow: hidden;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide {
    text-align: center;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child {
    background-color: var(--new-product-container-bg);
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container {
    width: 100%;
    height: 100%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-slider-header {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-slider-header .header-content {
    width: 90%;
    height: 80%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-slider-header .header-content span {
    display: block;
    font-size: 6vw;
    font-family: var(--Montserrat);
    font-weight: 700;
    color: white;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-content {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-content .recommend-product-content-bg {
    width: 85%;
    height: 60%;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-content .recommend-product-content-bg img {
    width: 80%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide:first-child .recommend-product-slider-container .recommend-product-bottom button {
    width: 80%;
    height: 50%;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 800;
    font-family: var(--Montserrat);
    font-size: 2vw;
    letter-spacing: 0rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image {
    width: 100%;
    height: 45%;
    position: relative;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 15%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-new span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-bottom-right-radius: 5px;
    font-size: 0.8rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-discount {
    position: absolute;
    top: 17%;
    left: 0;
    width: 25%;
    height: 15%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-discount span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--home-filter_3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 0.8rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-heart {
    position: absolute;
    top: 0;
    right: 0;
    width: 25%;
    height: 15%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image .badge-heart i {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--home-filter_1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-bottom-left-radius: 5px;
    font-size: 0.8rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-image img {
    width: 100%;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-category span {
    color: var(--grey);
    font-size: 0.7rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-name {
    width: 90%;
    height: 20%;
    overflow: hidden;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-name span {
    color: var(--black);
    font-size: 3.2vw;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .discount-price {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .discount-price del {
    color: var(--grey);
    font-size: 0.8rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .base-price {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .base-price span {
    color: var(--home-filter_3);
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    letter-spacing: 0.1rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .kdv-price {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .kdv-price span {
    color: black;
    font-size: 0.8rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    letter-spacing: 0rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .kdv-price span:nth-child(2) {
    margin-left: 2px;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price .kdv-price span:nth-child(3) {
    margin-left: 5px;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price span {
    color: var(--home-filter_3);
    font-size: 4vw;
    font-family: var(--Montserrat);
    font-weight: 800;
    letter-spacing: 0.1rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-order {
    display: none;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide .recommend-product-item-container .recommend-product-item-bottom button {
    width: 80%;
    height: 65%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 700;
    font-family: var(--Montserrat);
    font-size: 3.2vw;
    letter-spacing: 0rem;
  }
  .recommend-product .recommend-product-container .recommend-product-slider .swiper5 .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products {
    width: 100%;
    height: 450px;
    background-color: var(--same-products-bg);
    display: flex;
    justify-content: center;
  }
  .same-products .same-products-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .same-products .same-products-container .swiper-button-prev {
    display: none;
  }
  .same-products .same-products-container .swiper-button-next {
    display: none;
  }
  .same-products .same-products-container .same-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc::before {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .same-products .same-products-container .same-products-header .same-products-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
    width: 100%;
    height: 52%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
    display: none;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .partner {
    width: 100%;
    height: 700px;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .partner .partner-container .partner-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .partner .partner-container .partner-header::before {
    display: none;
  }
  .partner .partner-container .partner-header span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .partner .partner-container .partner-header span:nth-child(2) {
    margin-left: 10px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .partner .partner-container .partner-slider {
    width: 100%;
    height: 20%;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 {
    width: 100%;
    height: 100%;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: none;
    -webkit-filter: grayscale(0);
  }
  .partner .partner-container .partner-desc {
    width: 100%;
    height: 65%;
  }
  .partner .partner-container .partner-desc .partner-desc-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 {
    width: 90%;
    height: 32%;
    border: 0.1px solid var(--new-product-header);
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    background-color: white;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
    width: 40%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
    width: 60%;
    height: 90%;
    margin: auto 0;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
    width: 100%;
    height: 30%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--Montserrat);
    color: var(--new-product-header);
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
    width: 90%;
    height: 70%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
    color: var(--new-product-header);
  }
  .footer {
    display: none;
  }
  .footer-small {
    display: block;
    width: 100%;
    padding-top: 20px;
    background-color: var(--new-product-bg);
  }
  .footer-small .footer-small-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #customer-service {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #account {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #account .account-container .account-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #account .account-container .account-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #account .account-container .account-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #account .account-container .account-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #contact {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }
  .footer-small .footer-small-container #contact .contact-place {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-place i {
    font-size: 4vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-place span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-email {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-email i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-email span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-phone {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-phone i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-phone span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-online {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-online i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-online span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-social {
    width: 40%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
  }
  .footer-small .footer-small-container #contact .contact-social i {
    font-size: 6vw;
  }
  .footer-small .footer-small-container #contact .contact-qr-code {
    width: 60%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
  }
  .footer-small .footer-small-container #contact .contact-qr-code img {
    max-width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #payment-method {
    width: 100%;
    height: 120px;
    padding: 20px 0;
    position: relative;
  }
  .footer-small .footer-small-container #payment-method::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.006rem;
    background-color: rgb(203, 203, 203);
  }
  .footer-small .footer-small-container #payment-method .payment-method-image {
    width: 90%;
    height: 30%;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #payment-method .payment-method-image img {
    width: 100%;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate span {
    font-size: 3vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #payment-method .payment-method-algoritim {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .product-detail {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-detail .product-detail-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 {
    display: block;
    width: 100%;
    margin-top: 5%;
  }
  .product-detail .product-detail-container .col-12 .product-name {
    width: 100%;
    padding: 10px 0;
  }
  .product-detail .product-detail-container .col-12 .product-name span {
    font-size: 5vw;
    font-weight: 700;
    font-family: var(--Montserrat);
  }
  .product-detail .product-detail-container .col-12 .product-category {
    width: 100%;
    padding: 0;
  }
  .product-detail .product-detail-container .col-12 .product-category span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
    color: grey;
  }
  .product-detail .product-detail-container .col-12 .product-star {
    width: 25%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-12 .product-star i {
    font-size: 16px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-price {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price {
    margin-right: 20px;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price span {
    color: var(--home-filter_3);
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 500;
    list-style: 30px;
    letter-spacing: 0.15px;
  }
  @keyframes glow {
    from {
      text-shadow: 0 0 5px 5px var(--home-filter_3);
    }
    to {
      text-shadow: 0 0 50px var(--home-filter_3), 0 0 20px var(--home-filter_3);
    }
  }
  .product-detail .product-detail-container .col-12 .product-bottom {
    width: 100%;
    height: 60px;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container {
    width: 100%;
    height: 100%;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order {
    width: 25%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input {
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid var(--home-filter_3);
    border-radius: 5px;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::-moz-placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn {
    width: 55%;
    height: 70%;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn button {
    width: 100%;
    height: 100%;
    background-color: var(--home-filter_3);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    font-family: var(--Montserrat);
    transition: 0.1s ease-in-out;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like {
    width: 15%;
    height: 70%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--home-filter_3);
    border-radius: 5px;
    color: white;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like i {
    font-size: 7vw;
  }
  .product-detail .product-detail-container .col-5 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-5 .mySwiper {
    display: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) {
    display: none;
  }
  .product-detail .product-detail-container .col-5 .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-property {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--new-product-bg);
  }
  .product-property .product-property-container {
    width: 95%;
    height: 90%;
    background-color: white;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-property .product-property-container .product-property-row {
    width: 90%;
    height: 95%;
  }
  .product-property .product-property-container .product-property-row .product-property-section {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    position: relative;
    /* Style the tab */
  }
  .product-property .product-property-container .product-property-row .product-property-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(197, 197, 197);
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: scroll;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab button {
    height: 100%;
    padding: 0 20px;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active {
    background-color: transparent;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content {
    width: 100%;
    height: 90%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    /* Style the tab content */
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
    width: 100%;
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
    display: block;
    padding: 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
    width: 48%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
    width: 100%;
    height: 100%;
    background-color: var(--col-left-header-bg);
    padding: 10px 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 800;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
    width: 100%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(235, 235, 235);
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
    display: block;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: var(--Montserrat);
    font-weight: 400;
  }
  .category-products {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-header {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .category-products .category-products-container .category-products-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-bg);
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
    margin-left: 0px;
    height: 100%;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
    width: 10px;
    height: 10px;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
    height: 50%;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--home-filter_3);
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select i:first-child {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser {
    width: 100%;
    height: 300px;
    background-color: white;
    position: fixed;
    bottom: -100%;
    left: 0;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 9;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i {
    font-size: 1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section::-webkit-scrollbar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .bottom_to_top {
    bottom: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
    color: var(--home-filter_3);
    flex-direction: row-reverse;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select i {
    margin-right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i {
    font-size: 2rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .bottom_to_top {
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    gap: 10px 2%;
    margin-bottom: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 383px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
    display: flex;
  }
}
@media only screen and (max-width: 767px) and (min-width: 480px) {
  .notification-products {
    width: 100vw;
    height: 100vh;
    background-color: rgba(115, 115, 115, 0.823);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
  }
  .notification-products form {
    max-width: 80%;
    height: 450px;
    background-color: white;
    position: fixed;
    left: 10%;
    top: 10%;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container .notification-close-btn {
    padding: 1% 2%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--home-filter_3);
    border: none;
  }
  .notification-products form .notification-products-container .notification-close-btn i {
    font-size: 1rem;
    color: white;
    font-weight: 300;
  }
  .notification-products form .notification-products-container .notification-close-btn i:hover {
    cursor: pointer;
  }
  .notification-products form .notification-products-container .notification-products-content {
    width: 90%;
    height: 90%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header span {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law {
    width: 100%;
    margin-top: 3%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law input {
    flex-direction: row;
    align-content: end;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law a {
    font-size: 0.6rem;
    font-weight: 300;
    font-family: var(--Montserrat);
    color: black;
  }
  .notification-products form .notification-products-container .notification-products-content button {
    margin-top: 5%;
    padding: 10px 20px;
    background-color: var(--home-filter_3);
    color: white;
    border-radius: 5px;
    border: none;
  }
  .notification-products form .notification-products-container .notification-products-content button:hover {
    cursor: pointer;
  }
  #header {
    display: none;
  }
  #menu {
    display: none;
  }
  .header-small {
    display: block;
  }
  .advertise-slider {
    width: 100%;
    height: 250px;
  }
  .advertise-slider .swiper {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  .advertise-slider .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 48px;
    background: var(--slider-bg);
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .advertise-slider .swiper .swiper-slide:first-child {
    display: none;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) {
    width: 100% !important;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content {
    width: 100%;
    margin: 0;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header {
    width: 100%;
    height: 30%;
    position: relative;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header span {
    display: block;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--slider-content);
    text-align: left;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--slider-content);
    width: 10%;
    bottom: 0%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-main {
    width: 100%;
    margin-top: 10%;
    line-height: 10px;
    text-align: left;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-main span {
    color: grey;
    font-size: 0.9rem;
    font-family: var --Montserrat;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-btn {
    width: 100%;
    margin-top: 10%;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-btn button {
    width: 20%;
    padding: 8px 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slider-button);
    color: white;
    font-family: var(--Montserrat);
    font-weight: 400;
    letter-spacing: 0.1rem;
    border-radius: 5px;
    border: none;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(even) {
    width: 100% !important;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .advertise-slider .swiper .swiper-slide .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-slide .slider-content-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .home-filter {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
  }
  .home-filter .home-filter-container {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .home-filter .home-filter-container .home-filter-row {
    width: 95%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 {
    width: 95%;
    max-width: 450px;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_1);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 400;
    font-size: 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 {
    width: 95%;
    max-width: 450px;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_2);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: var(--home-filter_3);
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--home-filter_3);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
    color: var(--home-filter_3);
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 0.9rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 {
    width: 95%;
    max-width: 450px;
    height: 32%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_3);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 0.9rem;
  }
  .new-product {
    width: 100%;
    height: 500px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product .new-product-container {
    width: 95%;
    height: 95%;
  }
  .new-product .new-product-container .new-product-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc::before {
    display: none;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(1) {
    color: var(--home-filter_3);
    margin-right: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn {
    height: 100%;
    width: 30%;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
    width: 40%;
    height: 50%;
    left: 0;
    margin: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
    width: 40%;
    height: 50%;
    left: 0;
    margin: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-container-bg);
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
    display: block;
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 800;
    line-height: 30.2px;
    color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
    width: 90%;
    height: 65%;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
    line-height: 0px;
    letter-spacing: 0rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .banner {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  .banner .banner-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0;
  }
  .banner .banner-container .banner-row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .banner .banner-container .banner-row .col-6 {
    width: 90%;
    height: 50%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6 .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6 .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) {
    width: 90%;
    height: 50%;
    background-color: rgba(0, 149, 219, 0.1098039216);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .best-seller {
    width: 100%;
    height: 500px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .best-seller .best-seller-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    margin: auto;
  }
  .best-seller .best-seller-container .best-seller-header {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(1) {
    margin: 0;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    color: black;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    margin-left: 10px;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
    height: 100%;
    font-size: 14px;
    font-family: var(--Inter);
    display: flex;
    align-items: center;
    color: var(--home-filter_3);
    font-weight: 600;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn i {
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-size: 12px;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
    position: relative;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-prev {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-next {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
    width: 100%;
    height: 100%;
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
    display: block;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .same-products {
    width: 100%;
    height: 450px;
    background-color: var(--same-products-bg);
    display: flex;
    justify-content: center;
  }
  .same-products .same-products-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .same-products .same-products-container .swiper-button-prev {
    display: none;
  }
  .same-products .same-products-container .swiper-button-next {
    display: none;
  }
  .same-products .same-products-container .same-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc::before {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .same-products .same-products-container .same-products-header .same-products-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
    width: 100%;
    height: 52%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
    display: none;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .partner {
    width: 100%;
    height: 700px;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .partner .partner-container .partner-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .partner .partner-container .partner-header::before {
    display: none;
  }
  .partner .partner-container .partner-header span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .partner .partner-container .partner-header span:nth-child(2) {
    margin-left: 10px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .partner .partner-container .partner-slider {
    width: 100%;
    height: 20%;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 {
    width: 100%;
    height: 100%;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: none;
    -webkit-filter: grayscale(0);
  }
  .partner .partner-container .partner-desc {
    margin: auto;
    max-width: 450px;
    height: 65%;
  }
  .partner .partner-container .partner-desc .partner-desc-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 {
    width: 100%;
    height: 32%;
    border: 0.1px solid var(--new-product-header);
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    background-color: white;
    display: flex;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
    width: 40%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
    width: 100%;
    height: 100%;
    margin: auto 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
    width: 100%;
    height: 40%;
    margin: 0;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--Inter);
    color: var(--new-product-header);
    line-height: 30px;
    letter-spacing: 0.15px;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
    width: 100%;
    height: 50%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Inter);
    color: var(--new-product-header);
    line-height: 25px;
    letter-spacing: 0.15px;
  }
  .footer {
    display: none;
  }
  .footer-small {
    display: block;
    width: 100%;
    padding-top: 20px;
    background-color: var(--new-product-bg);
  }
  .footer-small .footer-small-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #customer-service {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #account {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #account .account-container .account-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #account .account-container .account-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #account .account-container .account-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #account .account-container .account-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #contact {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }
  .footer-small .footer-small-container #contact .contact-place {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-place i {
    font-size: 4vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-place span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-email {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-email i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-email span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-phone {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-phone i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-phone span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-online {
    width: 95%;
    height: 30px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-online i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-online span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-social {
    width: 40%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
  }
  .footer-small .footer-small-container #contact .contact-social i {
    font-size: 6vw;
  }
  .footer-small .footer-small-container #contact .contact-qr-code {
    width: 60%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
  }
  .footer-small .footer-small-container #contact .contact-qr-code img {
    max-width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #payment-method {
    width: 100%;
    height: 120px;
    padding: 20px 0;
    position: relative;
  }
  .footer-small .footer-small-container #payment-method::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.006rem;
    background-color: rgb(203, 203, 203);
  }
  .footer-small .footer-small-container #payment-method .payment-method-image {
    width: 90%;
    height: 30%;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #payment-method .payment-method-image img {
    width: 100%;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate span {
    font-size: 3vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #payment-method .payment-method-algoritim {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .product-detail {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-detail .product-detail-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 {
    display: block;
    width: 100%;
    margin-top: 5%;
  }
  .product-detail .product-detail-container .col-12 .product-name {
    width: 100%;
    padding: 10px 0;
  }
  .product-detail .product-detail-container .col-12 .product-name span {
    font-size: 5vw;
    font-weight: 700;
    font-family: var(--Montserrat);
  }
  .product-detail .product-detail-container .col-12 .product-category {
    width: 100%;
    padding: 0;
  }
  .product-detail .product-detail-container .col-12 .product-category span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
    color: grey;
  }
  .product-detail .product-detail-container .col-12 .product-star {
    width: 25%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-12 .product-star i {
    font-size: 16px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-price {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price {
    margin-right: 20px;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price span {
    color: var(--home-filter_3);
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 500;
    list-style: 30px;
    letter-spacing: 0.15px;
  }
  @keyframes glow {
    from {
      text-shadow: 0 0 5px 5px var(--home-filter_3);
    }
    to {
      text-shadow: 0 0 50px var(--home-filter_3), 0 0 20px var(--home-filter_3);
    }
  }
  .product-detail .product-detail-container .col-12 .product-bottom {
    width: 100%;
    height: 60px;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container {
    width: 100%;
    height: 100%;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order {
    width: 25%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input {
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid var(--home-filter_3);
    border-radius: 5px;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::-moz-placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn {
    width: 55%;
    height: 70%;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn button {
    width: 100%;
    height: 100%;
    background-color: var(--home-filter_3);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    font-family: var(--Montserrat);
    transition: 0.1s ease-in-out;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like {
    width: 15%;
    height: 70%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--home-filter_3);
    border-radius: 5px;
    color: white;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like i {
    font-size: 26px;
  }
  .product-detail .product-detail-container .col-5 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-5 .mySwiper {
    display: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) {
    display: none;
  }
  .product-detail .product-detail-container .col-5 .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-property {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--new-product-bg);
  }
  .product-property .product-property-container {
    width: 95%;
    height: 90%;
    background-color: white;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-property .product-property-container .product-property-row {
    width: 90%;
    height: 95%;
  }
  .product-property .product-property-container .product-property-row .product-property-section {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    position: relative;
    /* Style the tab */
  }
  .product-property .product-property-container .product-property-row .product-property-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(197, 197, 197);
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: scroll;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab button {
    height: 100%;
    padding: 0 20px;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active {
    background-color: transparent;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content {
    width: 100%;
    height: 90%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    /* Style the tab content */
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
    width: 100%;
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
    display: block;
    padding: 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
    width: 48%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
    width: 100%;
    height: 100%;
    background-color: var(--col-left-header-bg);
    padding: 10px 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 800;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
    width: 100%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(235, 235, 235);
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
    display: block;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: var(--Montserrat);
    font-weight: 400;
  }
  .category-products {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-header {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .category-products .category-products-container .category-products-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-bg);
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
    margin-left: 0px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
    width: 10px;
    height: 10px;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
    height: 50%;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--home-filter_3);
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select i:first-child {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser {
    width: 100%;
    height: 300px;
    background-color: white;
    position: fixed;
    bottom: -100%;
    left: 0;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 9;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i {
    font-size: 1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section::-webkit-scrollbar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .bottom_to_top {
    bottom: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
    color: var(--home-filter_3);
    flex-direction: row-reverse;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select i {
    margin-right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i {
    font-size: 2rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .bottom_to_top {
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    gap: 10px 2%;
    margin-bottom: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 383px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
    display: flex;
  }
}
.header-small {
  width: 100%;
  height: 110px;
  background-color: var(--home-filter_3);
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
}
.header-small .header-small-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.header-small .header-small-container .header-small-icon {
  width: 15%;
  height: 50%;
  display: flex;
  align-items: center;
}
.header-small .header-small-container .header-small-icon i {
  display: inline-block;
  font-size: 2rem;
  color: white;
}
.header-small .header-small-container .header-small-logo {
  width: 65%;
  height: 50%;
  display: flex;
  justify-content: center;
}
.header-small .header-small-container .header-small-logo p,
.header-small .header-small-container .header-small-logo span {
  margin: 0;
  padding: 0;
}
.header-small .header-small-container .header-small-logo a {
  color: rgb(255, 255, 255);
  font-size: 10vw;
  display: flex;
}
.header-small .header-small-container .header-small-logo a img {
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-small .header-small-container .header-small-user-page {
  width: 15%;
  height: 50%;
  display: flex;
}
.header-small .header-small-container .header-small-user-page .user-signPage {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-small .header-small-container .header-small-user-page .user-signPage i {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.header-small .header-small-container .header-small-user-page .user-basket {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-small .header-small-container .header-small-user-page .user-basket i {
  font-size: 1.4rem;
  font-weight: 900;
  color: white;
}
.header-small .header-small-container .header-small-searchBox {
  width: 95%;
  height: 50%;
  margin: auto;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row {
  width: 100%;
  height: 65%;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box i {
  position: absolute;
  right: 10px;
  color: gray;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box input {
  padding: 10px 10px 10px 10px;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  width: 100%;
  height: 90%;
  border: 1px solid var(--border-btn);
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box input:focus {
  outline: none;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box .result-box {
  position: absolute;
  top: 90%;
  left: 0%;
  width: 100%;
  height: 300px;
  background-color: #fff;
  border: 1px solid var(--border-btn);
  z-index: 999;
  display: none;
  overflow: scroll;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box .result-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box .result-box ul li {
  font-size: 0.8rem;
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}
.header-small .header-small-container .header-small-searchBox .header-small-searchBox-container .header-small-searchBox-row .header-searchBox .header-searchBox-container .search-box .result-box ul li:hover {
  background-color: #f1f1f1;
}

.menu-small {
  display: block;
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999999;
  display: none;
}
.menu-small .menu-small-close {
  width: 100%;
  height: 8%;
  background-color: var(--home-filter_3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5%;
  padding-right: 5%;
}
.menu-small .menu-small-close .menu-small-close-logo {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.menu-small .menu-small-close .menu-small-close-logo img {
  width: 90%;
}
.menu-small .menu-small-close .menu-small-close-icon i {
  font-size: 5vw;
  color: white;
}
.menu-small .menu-small-container {
  width: 100%;
  height: 95%;
  background-color: var(--home-filter_2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: scroll;
}
.menu-small .menu-small-container ul {
  width: 90%;
  height: 95%;
  margin: 0;
  padding: 0;
}
.menu-small .menu-small-container ul li {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.menu-small .menu-small-container ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  background-color: rgb(146, 146, 146);
}
.menu-small .menu-small-container ul li a {
  width: 100%;
  height: 90%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-size: 5vw;
  color: rgb(107, 107, 107);
}
.menu-small .menu-small-container ul li a i {
  font-size: 6vw;
  color: rgb(107, 107, 107);
}
.menu-small .menu-small-container ul li .smallOtoYedekParcaItem {
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9;
}
.menu-small .menu-small-container ul li .smallOtoYedekParcaItem ul {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.menu-small .menu-small-container ul li .smallOtoYedekParcaItem ul li a {
  font-size: 4vw;
}
.menu-small .menu-small-container ul li .smallOtoYedekParcaItem ul li a::after {
  display: none;
}

@media only screen and (max-width: 959px) and (min-width: 768px) {
  .notification-products {
    width: 100vw;
    height: 100vh;
    background-color: rgba(115, 115, 115, 0.823);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
  }
  .notification-products form {
    width: 80%;
    height: 500px;
    background-color: white;
    position: fixed;
    left: 10%;
    top: 10%;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container .notification-close-btn {
    padding: 1% 2%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--home-filter_3);
    border: none;
  }
  .notification-products form .notification-products-container .notification-close-btn i {
    font-size: 1rem;
    color: white;
    font-weight: 300;
  }
  .notification-products form .notification-products-container .notification-close-btn i:hover {
    cursor: pointer;
  }
  .notification-products form .notification-products-container .notification-products-content {
    width: 90%;
    height: 90%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header span {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail label {
    font-size: 0.8rem;
    font-weight: 300;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail input {
    padding: 2%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law {
    width: 100%;
    margin-top: 3%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law input {
    flex-direction: row;
    align-content: end;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law a {
    font-size: 0.6rem;
    font-weight: 300;
    font-family: var(--Montserrat);
    color: black;
  }
  .notification-products form .notification-products-container .notification-products-content button {
    margin-top: 5%;
    padding: 10px 20px;
    background-color: var(--home-filter_3);
    color: white;
    border-radius: 5px;
    border: none;
  }
  .notification-products form .notification-products-container .notification-products-content button:hover {
    cursor: pointer;
  }
  #header {
    display: none;
  }
  #menu {
    display: none;
  }
  .header-small {
    display: block;
  }
  .advertise-slider {
    width: 100%;
    height: 300px;
  }
  .advertise-slider .swiper {
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  .advertise-slider .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 48px;
    background: var(--slider-bg);
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .advertise-slider .swiper .swiper-slide:first-child {
    display: none;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) {
    width: 100% !important;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content {
    width: 100%;
    margin: 0;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header {
    width: 100%;
    height: 30%;
    position: relative;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header span {
    display: block;
    font-size: 2rem;
    text-transform: capitalize;
    color: var(--slider-content);
    text-align: left;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-header::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--slider-content);
    width: 10%;
    bottom: 0%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-main {
    width: 100%;
    margin-top: 10%;
    line-height: 10px;
    text-align: left;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-main span {
    color: grey;
    font-size: 0.9rem;
    font-family: var --Montserrat;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-btn {
    width: 100%;
    margin-top: 10%;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(odd) .slider-content .slider-content-btn button {
    width: 20%;
    padding: 8px 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slider-button);
    color: white;
    font-family: var(--Montserrat);
    font-weight: 400;
    letter-spacing: 0.1rem;
    border-radius: 5px;
    border: none;
  }
  .advertise-slider .swiper .swiper-slide:nth-child(even) {
    width: 100% !important;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .advertise-slider .swiper .swiper-slide .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-slide .slider-content-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .home-filter {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
  }
  .home-filter .home-filter-container {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .home-filter .home-filter-container .home-filter-row {
    width: 95%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-between;
    margin: auto;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 {
    width: 48%;
    height: 42%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_1);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 1rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 {
    width: 48%;
    height: 42%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_2);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: var(--home-filter_3);
    letter-spacing: 0 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--home-filter_3);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
    color: var(--home-filter_3);
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 1rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 {
    width: 48%;
    height: 50%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_3);
    transition: 0.1s ease-in-out;
    margin: auto;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 50px 20px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
    display: inline;
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    color: white;
    letter-spacing: 0.1 0.8rem;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
    max-width: 100%;
    height: 100%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Montserrat);
    font-weight: 900;
    font-size: 1.3rem;
  }
  .new-product {
    width: 100%;
    height: 550px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .new-product .new-product-container {
    width: 95%;
    height: 95%;
  }
  .new-product .new-product-container .new-product-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc::before {
    display: none;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(1) {
    color: var(--home-filter_3);
    margin-right: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn {
    height: 100%;
    width: 25%;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
    width: 40%;
    height: 50%;
    margin: 0;
    left: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
    width: 40%;
    height: 50%;
    right: 0;
    top: 60%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
    font-size: 12px !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-container-bg);
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
    display: block;
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 800;
    line-height: 30.2px;
    color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
    width: 100%;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
    width: 90%;
    height: 65%;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
    line-height: 0px;
    letter-spacing: 0rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .banner {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .banner .banner-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0;
  }
  .banner .banner-container .banner-row {
    width: 95%;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
  .banner .banner-container .banner-row .col-6 {
    width: 48%;
    height: 80%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6 .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6 .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) {
    width: 48%;
    height: 80%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle {
    width: 180px;
    height: 180px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .best-seller {
    width: 100%;
    height: 550px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .best-seller .best-seller-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    margin: auto;
  }
  .best-seller .best-seller-container .best-seller-header {
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(1) {
    margin: 0;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
    margin-left: 0px;
    font-size: 20px;
    font-family: var(--Inter);
    color: black;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    margin-left: 10px;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
    height: 100%;
    font-size: 14px;
    font-family: var(--Inter);
    display: flex;
    align-items: center;
    color: var(--home-filter_3);
    font-weight: 600;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn i {
    display: flex;
    align-items: center;
    margin-left: 5px;
    font-size: 12px;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
    position: relative;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-prev {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .swiper-button-next {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
    width: 100%;
    height: 100%;
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
    display: block;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .same-products {
    width: 100%;
    height: 450px;
    background-color: var(--same-products-bg);
    display: flex;
    justify-content: center;
  }
  .same-products .same-products-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .same-products .same-products-container .swiper-button-prev {
    display: none;
  }
  .same-products .same-products-container .swiper-button-next {
    display: none;
  }
  .same-products .same-products-container .same-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc::before {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .same-products .same-products-container .same-products-header .same-products-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
    width: 100%;
    height: 52%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
    display: none;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .partner {
    width: 100%;
    height: 500px;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container {
    width: 95%;
    height: 95%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .partner .partner-container .partner-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
  }
  .partner .partner-container .partner-header::before {
    display: none;
  }
  .partner .partner-container .partner-header span {
    margin-left: 0px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .partner .partner-container .partner-header span:nth-child(2) {
    margin-left: 10px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .partner .partner-container .partner-slider {
    width: 100%;
    height: 35%;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 {
    width: 100%;
    height: 100%;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img {
    width: 50%;
    height: 50%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: none;
    -webkit-filter: grayscale(0);
  }
  .partner .partner-container .partner-desc {
    margin: auto;
    width: 100%;
    height: 50%;
  }
  .partner .partner-container .partner-desc .partner-desc-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 {
    width: 45%;
    height: 48%;
    border: 0.1px solid var(--new-product-header);
    border-radius: 5px;
    overflow: hidden;
    padding: 0;
    background-color: white;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
    width: 40%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
    width: 100%;
    height: 100%;
    margin: auto 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: auto;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
    width: 100%;
    height: 40%;
    margin: 0;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--Inter);
    color: var(--new-product-header);
    line-height: 30px;
    letter-spacing: 0.15px;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
    width: 100%;
    height: 50%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Inter);
    color: var(--new-product-header);
    line-height: 25px;
    letter-spacing: 0.15px;
  }
  .footer {
    display: none;
  }
  .footer-small {
    display: block;
    width: 100%;
    padding-top: 20px;
    background-color: var(--new-product-bg);
  }
  .footer-small .footer-small-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #corporate .corporate-container .corporate-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #customer-service {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #customer-service .customer-service-container .customer-service-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #account {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container {
    width: 100%;
    height: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 15px;
    position: relative;
  }
  .footer-small .footer-small-container #account .account-container .account-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background-color: grey;
    display: inline-block;
  }
  .footer-small .footer-small-container #account .account-container .account-header i {
    font-size: 5vw;
    padding: 0 20px;
  }
  .footer-small .footer-small-container #account .account-container .account-header span {
    font-size: 4vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #account .account-container .account-content {
    width: 90%;
    height: 90%;
    display: none;
    margin: 0 auto;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul {
    width: 100%;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li {
    padding: 15px 0;
    list-style: none;
  }
  .footer-small .footer-small-container #account .account-container .account-content ul li a {
    text-decoration: none;
  }
  .footer-small .footer-small-container #contact {
    width: 100%;
    height: 100%;
    margin-top: 20px;
  }
  .footer-small .footer-small-container #contact .contact-place {
    width: 95%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-place i {
    font-size: 4vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-place span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-email {
    width: 95%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-email i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-email span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-phone {
    width: 95%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-phone i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-phone span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-online {
    width: 95%;
    height: 50px;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #contact .contact-online i {
    font-size: 3vw;
    margin-right: 2%;
  }
  .footer-small .footer-small-container #contact .contact-online span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #contact .contact-social {
    width: 40%;
    height: 60px;
    display: flex;
    align-items: center;
    margin: auto;
    justify-content: space-between;
  }
  .footer-small .footer-small-container #contact .contact-social i {
    font-size: 6vw;
  }
  .footer-small .footer-small-container #contact .contact-qr-code {
    width: 40%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
  }
  .footer-small .footer-small-container #contact .contact-qr-code img {
    width: 80%;
    height: 80%;
  }
  .footer-small .footer-small-container #payment-method {
    width: 100%;
    height: 120px;
    padding: 20px 0;
    position: relative;
  }
  .footer-small .footer-small-container #payment-method::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.006rem;
    background-color: rgb(203, 203, 203);
  }
  .footer-small .footer-small-container #payment-method .payment-method-image {
    width: 90%;
    height: 30%;
    display: flex;
    align-items: center;
    margin: auto;
  }
  .footer-small .footer-small-container #payment-method .payment-method-image img {
    width: 100%;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-small .footer-small-container #payment-method .payment-method-corperate span {
    font-size: 3vw;
    font-weight: 600;
    font-family: var(--Montserrat);
  }
  .footer-small .footer-small-container #payment-method .payment-method-algoritim {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .product-detail {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-detail .product-detail-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 {
    display: block;
    width: 100%;
    margin-top: 5%;
  }
  .product-detail .product-detail-container .col-12 .product-name {
    width: 100%;
    padding: 10px 0;
  }
  .product-detail .product-detail-container .col-12 .product-name span {
    font-size: 5vw;
    font-weight: 700;
    font-family: var(--Montserrat);
  }
  .product-detail .product-detail-container .col-12 .product-category {
    width: 100%;
    padding: 0;
  }
  .product-detail .product-detail-container .col-12 .product-category span {
    font-size: 3vw;
    font-weight: 500;
    font-family: var(--Montserrat);
    color: grey;
  }
  .product-detail .product-detail-container .col-12 .product-star {
    width: 25%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-12 .product-star i {
    font-size: 16px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-price {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price {
    margin-right: 20px;
  }
  .product-detail .product-detail-container .col-12 .product-price .base-price span {
    color: var(--home-filter_3);
    font-size: 25px;
    font-family: var(--Inter);
    font-weight: 500;
    list-style: 30px;
    letter-spacing: 0.15px;
  }
  @keyframes glow {
    from {
      text-shadow: 0 0 5px 5px var(--home-filter_3);
    }
    to {
      text-shadow: 0 0 50px var(--home-filter_3), 0 0 20px var(--home-filter_3);
    }
  }
  .product-detail .product-detail-container .col-12 .product-bottom {
    width: 100%;
    height: 60px;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container {
    width: 100%;
    height: 100%;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order {
    width: 25%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-minus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input {
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid var(--home-filter_3);
    border-radius: 5px;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::-moz-placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-input input::placeholder {
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus {
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-order .product-order-plus i {
    font-size: 1rem;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn {
    width: 55%;
    height: 70%;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .basket-btn button {
    width: 100%;
    height: 100%;
    background-color: var(--home-filter_3);
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    color: white;
    font-family: var(--Montserrat);
    transition: 0.1s ease-in-out;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like {
    width: 15%;
    height: 70%;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--home-filter_3);
    border-radius: 5px;
    color: white;
  }
  .product-detail .product-detail-container .col-12 .product-bottom .product-bottom-container .product-bottom-row .product-like i {
    font-size: 26px;
  }
  .product-detail .product-detail-container .col-5 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-5 .mySwiper {
    display: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) {
    display: none;
  }
  .product-detail .product-detail-container .col-5 .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-property {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--new-product-bg);
  }
  .product-property .product-property-container {
    width: 95%;
    height: 90%;
    background-color: white;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-property .product-property-container .product-property-row {
    width: 90%;
    height: 95%;
  }
  .product-property .product-property-container .product-property-row .product-property-section {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    position: relative;
    /* Style the tab */
  }
  .product-property .product-property-container .product-property-row .product-property-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(197, 197, 197);
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    overflow: scroll;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab button {
    height: 100%;
    padding: 0 20px;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 17px;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active {
    background-color: transparent;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content {
    width: 100%;
    height: 90%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    /* Style the tab content */
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
    width: 100%;
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
    display: block;
    padding: 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
    width: 48%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
    width: 100%;
    height: 100%;
    background-color: var(--col-left-header-bg);
    padding: 10px 0;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 800;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
    width: 100%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(235, 235, 235);
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
    display: block;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-family: var(--Montserrat);
    font-weight: 400;
  }
  .category-products {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-header {
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .category-products .category-products-container .category-products-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row {
    width: 95%;
    height: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-bg);
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
    margin-left: 0px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
    width: 10px;
    height: 10px;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
    height: 50%;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--home-filter_3);
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select i:first-child {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser {
    width: 100%;
    height: 300px;
    background-color: white;
    position: fixed;
    bottom: -100%;
    left: 0;
    transition: bottom 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 9;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i {
    font-size: 1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section::-webkit-scrollbar {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .sort-chooser .sort-chooser-container .sort-chooser-section .sort-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-sort .category-sort-container .category-sort-row .bottom_to_top {
    bottom: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre {
    height: 80%;
    border: 0.1px solid rgb(217, 217, 217);
    border-radius: 5px;
    background-color: white;
    padding: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--Inter);
    font-weight: 500;
    color: var(--home-filter_3);
    flex-direction: row-reverse;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select span {
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-select i {
    margin-right: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser {
    width: 100%;
    height: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container {
    width: 95%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header {
    width: 100%;
    height: 15%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header:after {
    content: "";
    width: 100%;
    height: 0.1px;
    background-color: rgb(221, 221, 221);
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header span {
    font-family: var(--Montserrat);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i {
    font-size: 2rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-header i:hover {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--home-filter_3);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
    overflow: scroll;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul .active {
    font-size: 1.1rem;
    font-weight: 600;
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li {
    width: 100%;
    height: 40px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li a {
    text-decoration: none;
    font-family: var(--Montserrat);
    font-size: 0.99em;
    font-weight: 400;
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .filtre-chooser .filtre-chooser-container .filtre-chooser-section .filtre-chooser-section-container ul li .bg-red {
    color: red;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections .category-filtre .category-filtre-container .category-filtre-row .bottom_to_top {
    left: 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 10px 2%;
    margin-bottom: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 483px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 80%;
    height: 15%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
    display: flex;
  }
}
@media only screen and (max-width: 1439px) and (min-width: 960px) {
  .notification-products {
    width: 100vw;
    height: 100vh;
    background-color: rgba(115, 115, 115, 0.823);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: none;
  }
  .notification-products form {
    width: 80%;
    height: 80%;
    background-color: white;
    position: fixed;
    left: 10%;
    top: 10%;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container {
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
  .notification-products form .notification-products-container .notification-close-btn {
    padding: 1% 2%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--home-filter_3);
    border: none;
  }
  .notification-products form .notification-products-container .notification-close-btn i {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
  }
  .notification-products form .notification-products-container .notification-close-btn i:hover {
    cursor: pointer;
  }
  .notification-products form .notification-products-container .notification-products-content {
    width: 90%;
    height: 90%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-header span {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName label {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userName input {
    padding: 3%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone label {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userPhone input {
    padding: 3%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail label {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--Montserrat);
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-userEmail input {
    padding: 3%;
    border-radius: 5px;
    border: 0.1px solid rgb(208, 208, 208);
    outline: none;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law {
    width: 100%;
    margin-top: 3%;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law input {
    flex-direction: row;
    align-content: end;
  }
  .notification-products form .notification-products-container .notification-products-content .notification-products-KVKK-law a {
    font-size: 0.8rem;
    font-weight: 400;
    font-family: var(--Montserrat);
    color: black;
  }
  .notification-products form .notification-products-container .notification-products-content button {
    margin-top: 3%;
    padding: 10px 20px;
    background-color: var(--home-filter_3);
    color: white;
    border-radius: 5px;
    border: none;
  }
  .notification-products form .notification-products-container .notification-products-content button:hover {
    cursor: pointer;
  }
  #menu {
    width: 100vw;
    height: 51px;
    background-color: var(--menu-bg);
    display: flex;
    justify-content: center;
  }
  #menu .menu-section {
    width: 95%;
    height: 100%;
    max-width: 2000px;
  }
  #menu .menu-section .menu-row {
    width: 100%;
    height: 100%;
  }
  #menu .menu-section .menu-row ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
  }
  #menu .menu-section .menu-row ul li {
    height: 100%;
    list-style-type: none;
    display: inline-block;
  }
  #menu .menu-section .menu-row ul li:hover .otoYedekParcaItem {
    display: block;
  }
  #menu .menu-section .menu-row ul li a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-weight: 400;
    line-height: 24px;
    font-size: 1.2vw;
    font-family: var(--Inter);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s ease-in-out;
  }
  #menu .menu-section .menu-row ul li a:hover {
    color: grey;
    transition: 0.1s ease-in-out;
  }
  #menu .menu-section .menu-row ul li .otoYedekParcaItem {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 20px 33px;
    z-index: 99999;
    width: 100%;
    display: none;
  }
  #header {
    width: 100vw;
    height: 98px;
    display: flex;
    justify-content: center;
  }
  #header .header-section {
    max-width: 2000px;
    width: 95%;
    height: 100%;
    display: flex;
  }
  #header .header-section .small-menu {
    display: none;
  }
  #header .header-section .header-logo {
    width: 15%;
    display: flex;
    align-items: center;
  }
  #header .header-section .header-logo img {
    width: 70%;
  }
  #header .header-section .header-searchBox {
    width: 60%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
  }
  #header .header-section .header-searchBox .header-searchBox-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box {
    width: 80%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1px solid var(--basket-bg);
    border-radius: 5px;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box input {
    width: 90%;
    height: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 10px;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box i {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box {
    position: absolute;
    top: 100%;
    left: 10%;
    width: 80%;
    height: 300px;
    z-index: 1;
    display: none;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 9;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: auto;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li {
    padding: 5px 10px;
    cursor: pointer;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li:hover {
    background-color: #f0f0f0;
  }
  #header .header-section .header-right {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header-section .header-right .account {
    width: 128px;
    height: 50px;
    border: 0.1px solid var(--border-btn);
    padding: 2px 5px;
    border-radius: 5px;
  }
  #header .header-section .header-right .account a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    color: var(--black);
  }
  #header .header-section .header-right .account a .account-icon {
    width: 35%;
  }
  #header .header-section .header-right .account a .account-icon i {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-right .account a .account-desc {
    width: 65%;
    margin: auto;
  }
  #header .header-section .header-right .account a .account-desc #descTop {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--Montserrat);
    color: #000000;
  }
  #header .header-section .header-right .account a .account-desc #descBottom {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    font-family: var(--Montserrat);
  }
  #header .header-section .header-right .basket {
    width: 128px;
    height: 50px;
    border: 0.1px solid var(--border-btn);
    padding: 2px 5px;
    border-radius: 5px;
  }
  #header .header-section .header-right .basket a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    color: var(--black);
  }
  #header .header-section .header-right .basket a .basket-icon {
    width: 35%;
  }
  #header .header-section .header-right .basket a .basket-icon i {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-right .basket a .basket-icon .basket-count {
    top: 0;
    right: 0;
    background-color: var(--basket-bg);
    width: 10px;
  }
  #header .header-section .header-right .basket a .basket-desc {
    width: 65%;
    display: flex;
    align-items: center;
  }
  #header .header-section .header-right .basket a .basket-desc span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--Montserrat);
    color: #000000;
  }
  .header-small {
    display: none;
  }
  .advertise-slider {
    width: 100%;
    height: 350px;
    position: relative;
  }
  .advertise-slider .swiper {
    width: 100%;
    height: 100%;
    max-width: 2000px;
  }
  .advertise-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left {
    width: 649px;
    height: 100%;
    position: relative;
    background-color: var(--slider-bg);
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container {
    position: absolute;
    left: 40px;
    top: 50px;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content {
    width: 512px;
    height: 170px;
    position: relative;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header {
    width: 100%;
    height: 80px;
    position: relative;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header span {
    display: block;
    line-height: 34.32px;
    font-family: var(--Inter);
    font-size: 26.62px;
    font-weight: 600;
    color: var(--slider-content);
    text-align: left;
    text-transform: capitalize;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--slider-content);
    width: 10%;
    bottom: -20%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main {
    width: 80%;
    line-height: 10px;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main span {
    color: #8C8C8C;
    font-family: var(--Montserrat);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn {
    width: 100px;
    height: 40px;
    position: absolute;
    margin-top: 50px;
    top: 100%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn button {
    width: 100px;
    height: 40px;
    padding: 8px 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slider-button);
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    border-radius: 8px;
    border: none;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right {
    width: 790px;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .advertise-slider .swiper-pagination {
    position: absolute;
    top: 100%;
  }
  .home-filter {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
  }
  .home-filter .home-filter-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
    padding: 50px 0;
  }
  .home-filter .home-filter-container .home-filter-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home-filter .home-filter-container .home-filter-row::-webkit-scrollbar {
    display: none;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_1);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
    display: block;
    font-family: var(--Inter);
    font-size: 2vw;
    font-weight: 600;
    line-height: 29.05px;
    color: #FFFFFF;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_2);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
    display: block;
    color: var(--home-filter_3);
    font-family: var(--Inter);
    font-size: 1.8vw;
    font-weight: 600;
    line-height: 25.05px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--home-filter_3);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
    color: var(--home-filter_3);
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_3);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
    display: block;
    color: white;
    font-family: var(--Inter);
    font-size: 1.8vw;
    font-weight: 600;
    line-height: 25.05px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1px;
  }
  .new-product {
    width: 100%;
    height: 653px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--slider-bg);
  }
  .new-product .new-product-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
  }
  .new-product .new-product-container .new-product-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc {
    position: relative;
    height: 100%;
    width: 82%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 30%;
    background-color: var(--new-product-header);
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span {
    margin-left: 15px;
    font-size: 34px;
    font-family: var(--Inter);
    font-weight: 600;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn {
    height: 100%;
    width: 18%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
    margin: 0;
    width: 40%;
    height: 50%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 15%;
    border-radius: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
    font-size: 1rem !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
    margin: 0;
    width: 40%;
    height: 50%;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 15%;
    border-radius: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
    font-size: 1rem !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-container-bg);
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
    width: 227px;
    height: 77px;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
    display: block;
    font-size: 35px;
    font-family: var(--Inter);
    font-weight: 800;
    line-height: 42.2px;
    color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
    width: 90%;
    height: 75%;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
    width: 80%;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 5%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 80%;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .banner {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .banner .banner-container {
    width: 100%;
    height: 100%;
    max-width: 100%;
    padding: 0;
  }
  .banner .banner-container .banner-row {
    width: 95%;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .banner .banner-container .banner-row .col-6 {
    width: 50%;
    max-width: 500px;
    height: 80%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6 .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6 .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle {
    width: 220px;
    height: 220px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) {
    width: 50%;
    max-width: 500px;
    height: 80%;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 700;
    font-size: 24.87px;
    line-height: 25.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 18.98px;
    line-height: 20.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle {
    width: 220px;
    height: 220px;
    position: absolute;
    right: -5%;
    bottom: -10%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: 0%;
    left: -5%;
    transition: 0.1s ease-in-out;
  }
  .best-seller {
    width: 100%;
    height: 793px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .best-seller .best-seller-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .best-seller .best-seller-container .swiper-button-prev {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 55%;
    left: -2%;
    opacity: 1;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
    border-radius: 10px;
  }
  .best-seller .best-seller-container .swiper-button-prev::after {
    font-size: 16px;
    color: black;
  }
  .best-seller .best-seller-container .swiper-button-next {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 55%;
    right: -2%;
    opacity: 1;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
    border-radius: 10px;
  }
  .best-seller .best-seller-container .swiper-button-next::after {
    font-size: 16px;
    color: black;
  }
  .best-seller .best-seller-container .best-seller-header {
    width: 100%;
    height: 166px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 47px;
    background-color: var(--new-product-header);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
    margin-left: 15px;
    font-family: var(--Inter);
    font-weight: 600;
    line-height: 41.15px;
    font-size: 34px;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category::-webkit-scrollbar {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider {
    width: 100%;
    height: 570px;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
    width: 100%;
    height: 100%;
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
    display: block;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 311px;
    height: 570px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 5%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 80%;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .same-products {
    width: 100%;
    height: 550px;
    background-color: var(--same-products-bg);
    display: flex;
    justify-content: center;
  }
  .same-products .same-products-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .same-products .same-products-container .swiper-button-prev {
    display: none;
  }
  .same-products .same-products-container .swiper-button-next {
    display: none;
  }
  .same-products .same-products-container .same-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc::before {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .same-products .same-products-container .same-products-header .same-products-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
    width: 100%;
    height: 52%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
    display: none;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .partner {
    width: 100%;
    height: 547px;
    display: flex;
    justify-content: center;
  }
  .partner .partner-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
  }
  .partner .partner-container .partner-header {
    width: 100%;
    height: 166px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .partner .partner-container .partner-header::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 30%;
    background-color: var(--new-product-header);
  }
  .partner .partner-container .partner-header span {
    margin-left: 15px;
    font-size: 34px;
    font-family: var(--Inter);
    font-weight: 600;
  }
  .partner .partner-container .partner-header span:nth-child(2) {
    color: var(--home-filter_3);
  }
  .partner .partner-container .partner-slider {
    width: 100%;
    height: 95px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 {
    width: 100%;
    height: 100%;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img {
    display: block;
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img:hover {
    cursor: pointer;
    filter: none;
    -webkit-filter: grayscale(0);
  }
  .partner .partner-container .partner-desc {
    width: 100%;
    height: 286px;
    display: flex;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 {
    width: 33%;
    height: 130px;
    border: 0.1px solid var(--new-product-header);
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
    width: 40%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
    width: 70%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
    width: 60%;
    height: 55%;
    margin: auto 0;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
    width: 100%;
    margin-bottom: 8px;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
    font-family: var(--Inter);
    font-weight: 600;
    font-size: 16.94px;
    line-height: 18px;
    letter-spacing: 0.16px;
    color: var(--new-product-header);
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
    width: 90%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--new-product-header);
  }
  .footer-small {
    display: none;
  }
  .footer-small {
    display: none;
  }
  .footer-small {
    display: none;
  }
  .footer-small {
    display: none;
  }
  .footer {
    width: 100%;
  }
  .footer .footer-header {
    width: 100%;
    height: 81px;
    background-color: var(--footer-header-bg);
    display: flex;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .footer-header .footer-header-container .footer-header-logo {
    width: 138.19px;
    height: 61.21px;
    display: flex;
    align-items: center;
    margin: auto 0;
  }
  .footer .footer-header .footer-header-container .footer-header-logo img {
    width: 80%;
  }
  .footer .footer-header .footer-header-container .footer-header-contact {
    padding: 20px 0;
    width: 155px;
    height: 36px;
    display: flex;
    align-items: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon {
    width: 34.99px;
    height: 34.98px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon i {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--footer-header-icon);
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content {
    width: 115px;
    height: 17px;
    overflow: --Montserrat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content a {
    text-decoration: none;
    font-weight: 700;
    line-height: 19.54px;
    font-size: 16px;
    letter-spacing: 0.25px;
    color: var(--footer-header-icon);
    font-family: var(--Montserrat);
  }
  .footer .footer-section {
    padding: 30px 0;
    width: 100%;
    background-color: rgb(12, 50, 50);
    display: flex;
    justify-content: center;
  }
  .footer .footer-section .footer-section-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .footer .footer-section .footer-section-container .col-2 {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .footer .footer-section .footer-section-container .col-2:first-child {
    width: 20%;
    height: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container {
    width: 100%;
    height: 80%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--Roboto);
    line-height: 14.06px;
    color: var(--footer-header-icon);
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content {
    width: 100%;
    height: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon i {
    font-size: 1rem;
    color: white;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 15px 0;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author span {
    font-size: 11px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 13.12px;
    letter-spacing: 0.25px;
    font-family: var(--Montserrat);
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul {
    width: 100%;
    height: 100%;
    list-style: none;
    overflow: --Montserrat;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li {
    width: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a {
    width: 100%;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.1s ease-in;
    font-family: var(--Montserrat);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a:hover {
    color: var(--footer-header-icon);
    transition: 0.1s ease-in;
  }
  .footer .footer-payment {
    width: 100%;
    height: 42px;
    background-color: var(--footer-payment-bg);
  }
  .footer .footer-payment .footer-payment-container {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .footer .footer-payment .footer-payment-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer .footer-author {
    width: 100%;
    height: 42px;
    padding: 15px 0;
    background-color: var(--footer-payment-bg);
  }
  .footer .footer-author .footer-author-container {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-path .product-path-container {
    width: 95%;
    height: 100%;
  }
  .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .product-path .product-path-container .product-path-row .breadcrumb {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }
  .product-path .product-path-container .product-path-row .breadcrumb a {
    color: #666;
    text-decoration: none;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  .product-path .product-path-container .product-path-row .breadcrumb a:hover {
    text-decoration: underline;
  }
  .product-path .product-path-container .product-path-row .breadcrumb .separator {
    margin: 0 5px;
    color: #666;
  }
  .product-path .product-path-container .product-path-row .breadcrumb .current {
    color: #666;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.15px;
  }
  .product-detail {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-detail .product-detail-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-12 {
    display: none;
  }
  .product-detail .product-detail-container .col-5 {
    width: 49%;
    height: 435px;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    border-radius: 5px;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) {
    width: 49%;
    height: 435px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) ::-webkit-scrollbar {
    display: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container {
    width: 90%;
    height: 100%;
    padding: 27px 0 27px 0;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category {
    width: 100%;
    height: 17px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category a {
    text-decoration: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #5F5F5F;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name {
    width: 100%;
    height: 72px;
    margin-bottom: 17px;
    display: flex;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name span {
    font-family: var(--Inter);
    font-weight: 600;
    font-size: 24px;
    line-height: 41.15px;
    letter-spacing: 0.25px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc {
    width: 100%;
    height: 59px;
    margin-bottom: 30px;
    overflow: scroll;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc span {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    font-family: var(--Inter);
    color: #000000;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price {
    width: 100%;
    height: 23px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price span {
    font-family: var(--Inter);
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order {
    width: 100%;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus i {
    font-size: 18px;
    font-weight: 900;
    color: #394454;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 10px;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    letter-spacing: 0.25px;
    color: #000000;
    font-family: var(--Intere);
    outline: none;
    border: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::placeholder {
    color: black;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus i {
    font-size: 18px;
    font-weight: 900;
    color: #394454;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button {
    width: 85%;
    height: 41px;
    border-radius: 10px;
    border: none;
    background-color: var(--home-filter_3);
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Montserrat);
    letter-spacing: 0.1rem;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button:nth-child(2) {
    width: 10%;
    background-color: white;
    color: var(--home-filter_3);
    border: 0.1px solid var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    background: white;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
    display: block;
    width: 90%;
    height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .mySwiper2 {
    height: 100%;
    width: 100%;
  }
  .product-detail .product-detail-container .col-5 .mySwiper {
    display: none;
  }
  .product-property {
    width: 100%;
    height: 550px;
    padding: 51px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--new-product-bg);
  }
  .product-property .product-property-container {
    width: 95%;
    height: 499px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-property .product-property-container .product-property-row {
    width: 90%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section {
    width: 100%;
    height: 60px;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab {
    flex-wrap: wrap;
    overflow: scroll;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab button {
    width: 174px;
    padding: 20px 0;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-family: var(--Inter);
    font-weight: 400;
    letter-spacing: 0.15px;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active {
    width: 174px;
    padding: 20px 0;
    font-size: 16px;
    font-family: var(--Inter);
    font-weight: 600;
    letter-spacing: 0.15px;
    background-color: transparent;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content {
    width: 100%;
    height: 439px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content ::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    /* Style the tab content */
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
    width: 100%;
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
    display: block;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
    padding: 30px 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
    width: 48%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
    width: 100%;
    height: 100%;
    background-color: var(--col-left-header-bg);
    padding: 10px;
    border-radius: 5px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
    font-family: var(--Inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.15px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
    width: 100%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(235, 235, 235);
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
    display: block;
    display: flex;
    align-items: center;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.1px;
  }
  .category-products {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container {
    width: 95%;
    height: 100%;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-header {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name {
    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 36px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar {
    width: 35%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header {
    width: 100%;
    padding: 10px 0;
    border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container:last-child {
    border: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name {
    position: relative;
    padding: 15px 0;
    display: flex;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name i {
    text-align: center;
    width: 10%;
    font-weight: 400;
    padding: 0 0;
    font-size: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name span {
    width: 90%;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content {
    width: 100%;
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(225, 225, 225);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li a {
    text-decoration: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header {
    width: 100%;
    padding: 10px 0;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(225, 225, 225);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li a {
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    text-decoration: none;
    color: #5F5F5F;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header {
    width: 100%;
    padding: 10px 0;
    position: relative;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #5F5F5F;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row {
    width: 62%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
    margin-left: 20px;
    width: 110px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
    width: 200px;
    margin-right: 30px;
    height: 100%;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser {
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 9;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container {
    width: 80%;
    height: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul .active {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li a {
    text-decoration: none;
    font-size: 13px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
    gap: 30px;
    margin-bottom: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 570px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 31px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 80%;
    height: 15%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 266px;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
    display: flex;
  }
}
@media only screen and (max-width: 1599px) and (min-width: 1440px) {
  #menu {
    width: 100vw;
    height: 61px;
    background-color: var(--menu-bg);
    display: flex;
    justify-content: center;
  }
  #menu .menu-section {
    width: 95%;
    height: 100%;
    max-width: 2000px;
  }
  #menu .menu-section .menu-row {
    width: 100%;
    height: 100%;
  }
  #menu .menu-section .menu-row ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
  }
  #menu .menu-section .menu-row ul li {
    height: 100%;
    list-style-type: none;
    display: inline-block;
  }
  #menu .menu-section .menu-row ul li:hover .otoYedekParcaItem {
    display: block;
  }
  #menu .menu-section .menu-row ul li a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-weight: 400;
    line-height: 24px;
    font-size: 1vw;
    font-family: var(--Inter);
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.1s ease-in-out;
  }
  #menu .menu-section .menu-row ul li a:hover {
    color: grey;
    transition: 0.1s ease-in-out;
  }
  #menu .menu-section .menu-row ul li .otoYedekParcaItem {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 20px 33px;
    z-index: 99999;
    width: 100%;
    display: none;
  }
  #header {
    width: 100vw;
    height: 98px;
    display: flex;
    justify-content: center;
  }
  #header .header-section {
    max-width: 2000px;
    width: 95%;
    height: 100%;
    display: flex;
  }
  #header .header-section .small-menu {
    display: none;
  }
  #header .header-section .header-logo {
    width: 15%;
    display: flex;
    align-items: center;
  }
  #header .header-section .header-logo img {
    width: 70%;
  }
  #header .header-section .header-searchBox {
    width: 65%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;
  }
  #header .header-section .header-searchBox .header-searchBox-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box {
    width: 80%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1px solid var(--basket-bg);
    border-radius: 5px;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box input {
    width: 90%;
    height: 100%;
    border-radius: 5px;
    outline: none;
    border: none;
    padding: 10px;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box i {
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box {
    position: absolute;
    top: 100%;
    left: 10%;
    width: 80%;
    height: 300px;
    z-index: 1;
    display: none;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 9;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: auto;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li {
    padding: 5px 10px;
    cursor: pointer;
  }
  #header .header-section .header-searchBox .header-searchBox-container .search-box .result-box ul li:hover {
    background-color: #f0f0f0;
  }
  #header .header-section .header-right {
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header .header-section .header-right .account {
    width: 128px;
    height: 50px;
    border: 0.1px solid var(--border-btn);
    padding: 2px 5px;
    border-radius: 5px;
  }
  #header .header-section .header-right .account a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    color: var(--black);
  }
  #header .header-section .header-right .account a .account-icon {
    width: 35%;
  }
  #header .header-section .header-right .account a .account-icon i {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-right .account a .account-desc {
    width: 65%;
    margin: auto;
  }
  #header .header-section .header-right .account a .account-desc #descTop {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--Montserrat);
    color: #000000;
  }
  #header .header-section .header-right .account a .account-desc #descBottom {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    font-family: var(--Montserrat);
  }
  #header .header-section .header-right .basket {
    width: 128px;
    height: 50px;
    border: 0.1px solid var(--border-btn);
    padding: 2px 5px;
    border-radius: 5px;
  }
  #header .header-section .header-right .basket a {
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    color: var(--black);
  }
  #header .header-section .header-right .basket a .basket-icon {
    width: 35%;
  }
  #header .header-section .header-right .basket a .basket-icon i {
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #header .header-section .header-right .basket a .basket-icon .basket-count {
    top: 0;
    right: 0;
    background-color: var(--basket-bg);
    width: 10px;
  }
  #header .header-section .header-right .basket a .basket-desc {
    width: 65%;
    display: flex;
    align-items: center;
  }
  #header .header-section .header-right .basket a .basket-desc span {
    font-size: 14px;
    font-weight: 500;
    font-family: var(--Montserrat);
    color: #000000;
  }
  .header-small {
    display: none;
  }
  .home-filter {
    width: 100%;
    height: 460px;
    display: flex;
    justify-content: center;
  }
  .home-filter .home-filter-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
    padding: 50px 0;
  }
  .home-filter .home-filter-container .home-filter-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home-filter .home-filter-container .home-filter-row::-webkit-scrollbar {
    display: none;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_1);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-header span {
    display: block;
    font-family: var(--Inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    color: #FFFFFF;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_1 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_2);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-header span {
    display: block;
    color: var(--home-filter_3);
    font-family: var(--Inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--home-filter_3);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_2 .col-3-container .col-3-desc .desc-right span {
    color: var(--home-filter_3);
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 {
    width: 32.5%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    border: 0.1px solid var(--border-btn);
    background-color: var(--home-filter_3);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3:hover {
    transform: scale(1.02);
    transition: 0.1s ease-in-out;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container {
    width: 100%;
    height: 100%;
    padding: 40px 40px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header {
    width: 100%;
    height: 30%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-header span {
    display: block;
    color: white;
    font-family: var(--Inter);
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-icon img {
    max-width: 80%;
    height: 80%;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc {
    width: 100%;
    height: 30%;
    display: flex;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left {
    width: 10%;
    height: 100%;
    position: relative;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-left::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right {
    width: 90%;
    height: 100%;
    padding: 0 0 0 10px;
  }
  .home-filter .home-filter-container .home-filter-row .col-3_3 .col-3-container .col-3-desc .desc-right span {
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
  }
  .advertise-slider {
    width: 100%;
    height: 500px;
    position: relative;
  }
  .advertise-slider .swiper {
    width: 100%;
    height: 100%;
    max-width: 2000px;
  }
  .advertise-slider .swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left {
    width: 860px;
    height: 100%;
    position: relative;
    background-color: var(--slider-bg);
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container {
    position: absolute;
    left: 40px;
    top: 100px;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content {
    width: 312px;
    height: 217px;
    position: relative;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header {
    width: 100%;
    height: 80px;
    position: relative;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header span {
    display: block;
    line-height: 44.32px;
    font-family: var(--Inter);
    font-size: 36.62px;
    font-weight: 600;
    color: var(--slider-content);
    text-align: left;
    text-transform: capitalize;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-header::before {
    position: absolute;
    content: "";
    height: 2px;
    background-color: var(--slider-content);
    width: 10%;
    bottom: -40%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main {
    width: 100%;
    line-height: 10px;
    text-align: left;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content .slider-content-main span {
    color: #8C8C8C;
    font-family: var(--Montserrat);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn {
    width: 100px;
    height: 40px;
    position: absolute;
    margin-top: 50px;
    top: 100%;
    left: 0;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-left .slider-content-container .slider-content-btn button {
    width: 100px;
    height: 40px;
    padding: 8px 50px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--slider-button);
    color: white;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    border-radius: 8px;
    border: none;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right {
    width: 1060px;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .advertise-slide-right .slider-content-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-wrapper .swiper-slide .slider-content-img img {
    width: 100%;
    height: 100%;
  }
  .advertise-slider .swiper .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .advertise-slider .swiper-pagination {
    position: absolute;
    top: 100%;
  }
  .new-product {
    width: 100%;
    height: 753px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--slider-bg);
  }
  .new-product .new-product-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
  }
  .new-product .new-product-container .new-product-header {
    width: 100%;
    height: 166px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc {
    position: relative;
    height: 100%;
    width: 90%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 30%;
    background-color: var(--new-product-header);
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span {
    margin-left: 15px;
    font-size: 34px;
    font-family: var(--Inter);
    font-weight: 600;
  }
  .new-product .new-product-container .new-product-header .new-product-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn {
    height: 100%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev {
    margin: 0;
    width: 57px;
    height: 57px;
    background-color: rgb(255, 255, 255);
    padding: 15%;
    border-radius: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-prev::after {
    font-size: 1rem !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next {
    margin: 0;
    width: 57px;
    height: 57px;
    background-color: rgb(255, 255, 255);
    opacity: 1;
    padding: 15%;
    border-radius: 10px;
  }
  .new-product .new-product-container .new-product-header .new-product-header-btn .swiper-button-next::after {
    font-size: 1rem !important;
    color: grey;
  }
  .new-product .new-product-container .new-product-slider {
    width: 100%;
    height: 570px;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 {
    width: 100%;
    height: 100%;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container {
    width: 100%;
    height: 100%;
    background-color: var(--new-product-container-bg);
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header {
    width: 100%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content {
    width: 227px;
    height: 77px;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-slider-header .header-content span {
    display: block;
    font-size: 35px;
    font-family: var(--Inter);
    font-weight: 800;
    line-height: 42.2px;
    color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg {
    width: 90%;
    height: 75%;
    background-color: white;
    border-radius: 50%;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-content .new-product-content-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5:first-child .new-product-slider-container .new-product-bottom button {
    width: 266px;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--new-product-container-bg);
    background-color: white;
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 311px;
    height: 570px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 5%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .new-product .new-product-container .new-product-slider .swiper5 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 266px;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .banner {
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
  }
  .banner .banner-container {
    width: 95%;
    height: 100%;
    max-width: 100%;
    padding: 70px 0;
  }
  .banner .banner-container .banner-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .banner .banner-container .banner-row .col-6 {
    width: 646px;
    height: 387px;
    background-color: rgba(69, 155, 182, 0.1294117647);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:hover {
    cursor: pointer;
  }
  .banner .banner-container .banner-row .col-6:hover .banner-img img {
    transition: 0.1s ease-in-out;
    transform: scale(1.05);
  }
  .banner .banner-container .banner-row .col-6 .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-header span {
    display: block;
    color: var(--new-product-header);
    font-weight: 800;
    font-size: 34.87px;
    line-height: 42.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6 .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: var(--new-product-header);
    font-size: 28.98px;
    line-height: 35.07px;
    font-weight: 500;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn {
    width: 50%;
    height: 20%;
    position: absolute;
    top: 70%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6 .banner-btn button {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--home-filter_3);
    border-radius: 8px;
    border: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle {
    width: 400px;
    height: 400px;
    position: absolute;
    right: -6%;
    bottom: -30%;
    background-color: var(--new-product-container-bg);
    border-radius: 50%;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .banner .banner-container .banner-row .col-6 .banner-circle .banner-img img {
    width: 100%;
    position: absolute;
    top: -20%;
    left: -10%;
    transition: 0.1s ease-in-out;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) {
    width: 646px;
    height: 387px;
    background-color: rgba(0, 149, 219, 0.1098039216);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header {
    width: 50%;
    height: 25%;
    position: absolute;
    top: 10%;
    left: 8%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-header span {
    display: block;
    color: #68B9D5;
    font-weight: 800;
    font-size: 34.87px;
    line-height: 42.2px;
    font-family: var(--Inter);
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc {
    width: 50%;
    height: 35%;
    position: absolute;
    top: 35%;
    left: 8%;
    display: flex;
    align-items: center;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container {
    width: 100%;
    height: 50%;
  }
  .banner .banner-container .banner-row .col-6:nth-child(2) .banner-desc .banner-desc-container span {
    display: block;
    font-family: var(--Inter);
    color: #68B9D5;
    font-size: 28.98px;
    line-height: 35.07px;
    font-weight: 500;
  }
  .partner {
    width: 100%;
    height: 547px;
    display: flex;
    justify-content: center;
  }
  .partner .partner-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
  }
  .partner .partner-container .partner-header {
    width: 100%;
    height: 166px;
    position: relative;
    display: flex;
    align-items: center;
  }
  .partner .partner-container .partner-header::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 30%;
    background-color: var(--new-product-header);
  }
  .partner .partner-container .partner-header span {
    margin-left: 15px;
    font-size: 34px;
    font-family: var(--Inter);
    font-weight: 600;
  }
  .partner .partner-container .partner-header span:nth-child(2) {
    color: var(--home-filter_3);
  }
  .partner .partner-container .partner-slider {
    width: 100%;
    height: 95px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 {
    width: 100%;
    height: 100%;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img {
    display: block;
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }
  .partner .partner-container .partner-slider .swiper4 .swiper-slide img:hover {
    cursor: pointer;
    filter: none;
    -webkit-filter: grayscale(0);
  }
  .partner .partner-container .partner-desc {
    width: 100%;
    height: 286px;
    display: flex;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 {
    width: 424px;
    height: 130px;
    border: 0.1px solid var(--new-product-header);
    border-radius: 5px;
    overflow: hidden;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon {
    width: 40%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-icon img {
    width: 70%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc {
    width: 60%;
    height: 55%;
    margin: auto 0;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header {
    width: 100%;
    margin-bottom: 8px;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-header span {
    font-family: var(--Inter);
    font-weight: 600;
    font-size: 16.94px;
    line-height: 18px;
    letter-spacing: 0.16px;
    color: var(--new-product-header);
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content {
    width: 90%;
  }
  .partner .partner-container .partner-desc .partner-desc-container .col-4 .col-4-container .col-4-desc .col-4-desc-content span {
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--new-product-header);
  }
  .best-seller {
    width: 100%;
    height: 793px;
    background-color: var(--new-product-bg);
    display: flex;
    justify-content: center;
  }
  .best-seller .best-seller-container {
    width: 95%;
    height: 100%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .best-seller .best-seller-container .swiper-button-prev {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 55%;
    left: -2%;
    opacity: 1;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
    border-radius: 10px;
  }
  .best-seller .best-seller-container .swiper-button-prev::after {
    font-size: 16px;
    color: black;
  }
  .best-seller .best-seller-container .swiper-button-next {
    width: 55px;
    height: 55px;
    position: absolute;
    top: 55%;
    right: -2%;
    opacity: 1;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 0px 7px rgba(46, 57, 164, 0.11);
    border-radius: 10px;
  }
  .best-seller .best-seller-container .swiper-button-next::after {
    font-size: 16px;
    color: black;
  }
  .best-seller .best-seller-container .best-seller-header {
    width: 100%;
    height: 166px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .small-best-seller-all-category-btn {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 47px;
    background-color: var(--new-product-header);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span {
    margin-left: 15px;
    font-family: var(--Inter);
    font-weight: 600;
    line-height: 41.15px;
    font-size: 34px;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-header-desc span:nth-child(2) {
    color: var(--home-filter_3);
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category::-webkit-scrollbar {
    display: none;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-header .best-seller-category .best-seller-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider {
    width: 100%;
    height: 570px;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text {
    width: 100%;
    height: 100%;
    display: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text.active {
    display: block;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 {
    width: 100%;
    height: 100%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 311px;
    height: 570px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 5%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .best-seller .best-seller-container .best-seller-slider .best-seller-category-info .category-text .swiper3 .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 266px;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .same-products {
    width: 100%;
    height: 600px;
    background-color: var(--same-products-bg);
    display: flex;
    justify-content: center;
  }
  .same-products .same-products-container {
    width: 95%;
    height: 95%;
    max-width: 2000px;
    margin: auto;
    position: relative;
  }
  .same-products .same-products-container .swiper-button-prev {
    display: none;
  }
  .same-products .same-products-container .swiper-button-next {
    display: none;
  }
  .same-products .same-products-container .same-products-header {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc {
    position: relative;
    height: 60%;
    display: flex;
    align-items: center;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc::before {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span {
    margin-left: 0px;
    margin-right: 15px;
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.15px;
  }
  .same-products .same-products-container .same-products-header .same-products-header-desc span:first-child {
    color: var(--home-filter_3);
  }
  .same-products .same-products-container .same-products-header .same-products-category {
    width: 60%;
    height: 100%;
    overflow: scroll;
  }
  .same-products .same-products-container .same-products-header .same-products-category::-webkit-scrollbar {
    display: none;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul {
    width: 100%;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li {
    width: 184px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .category-link {
    width: 184px;
    height: 55px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #394454;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-header .same-products-category .same-products-category-list ul li .active {
    width: 184px;
    height: 55px;
    background-color: white;
    color: var(--home-filter_3);
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    /* or 106% */
    text-align: center;
    letter-spacing: 0.15px;
    color: #0057A8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider {
    width: 100%;
    height: 85%;
    overflow: hidden;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider {
    width: 100%;
    height: 100%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 100%;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image {
    width: 100%;
    height: 52%;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name {
    width: 90%;
    height: 15%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-name span {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-order {
    display: none;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .same-products .same-products-container .same-products-slider .same-products-category-info .sameProductsSlider .swiper-slide .same-products-item-container .same-products-item-bottom button {
    width: 90%;
    height: 70%;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 500;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .footer-small {
    display: none;
  }
  .footer-small {
    display: none;
  }
  .footer {
    width: 100%;
  }
  .footer .footer-header {
    width: 100%;
    height: 81px;
    background-color: var(--footer-header-bg);
    display: flex;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer .footer-header .footer-header-container .footer-header-logo {
    width: 138.19px;
    height: 61.21px;
    display: flex;
    align-items: center;
    margin: auto 0;
  }
  .footer .footer-header .footer-header-container .footer-header-logo img {
    width: 80%;
  }
  .footer .footer-header .footer-header-container .footer-header-contact {
    padding: 20px 0;
    width: 155px;
    height: 36px;
    display: flex;
    align-items: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon {
    width: 34.99px;
    height: 34.98px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-icon i {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--footer-header-icon);
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content {
    width: 115px;
    height: 17px;
    overflow: --Montserrat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .footer-header .footer-header-container .footer-header-contact .footer-header-contact-content a {
    text-decoration: none;
    font-weight: 700;
    line-height: 19.54px;
    font-size: 16px;
    letter-spacing: 0.25px;
    color: var(--footer-header-icon);
    font-family: var(--Montserrat);
  }
  .footer .footer-section {
    padding: 30px 0;
    width: 100%;
    background-color: rgb(12, 50, 50);
    display: flex;
    justify-content: center;
  }
  .footer .footer-section .footer-section-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .footer .footer-section .footer-section-container .col-2 {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .footer .footer-section .footer-section-container .col-2:first-child {
    width: 20%;
    height: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container {
    width: 100%;
    height: 80%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header {
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-header span {
    font-size: 12px;
    font-weight: 500;
    font-family: var(--Roboto);
    line-height: 14.06px;
    color: var(--footer-header-icon);
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content {
    width: 100%;
    height: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-social-icon i {
    font-size: 1rem;
    color: white;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    padding: 15px 0;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content .col-2-author span {
    font-size: 11px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 13.12px;
    letter-spacing: 0.25px;
    font-family: var(--Montserrat);
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul {
    width: 100%;
    height: 100%;
    list-style: none;
    overflow: --Montserrat;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li {
    width: 100%;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a {
    width: 100%;
    text-decoration: none;
    color: #FFFFFF;
    transition: 0.1s ease-in;
    font-family: var(--Montserrat);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    font-style: normal;
  }
  .footer .footer-section .footer-section-container .col-2 .col-2-container .col-2-content ul li a:hover {
    color: var(--footer-header-icon);
    transition: 0.1s ease-in;
  }
  .footer .footer-payment {
    width: 100%;
    height: 42px;
    background-color: var(--footer-payment-bg);
  }
  .footer .footer-payment .footer-payment-container {
    width: 70%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .footer .footer-payment .footer-payment-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer .footer-author {
    width: 100%;
    height: 42px;
    padding: 15px 0;
    background-color: var(--footer-payment-bg);
  }
  .footer .footer-author .footer-author-container {
    width: 95%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  .product-path {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .product-path .product-path-container .product-path-row {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }
  .product-path .product-path-container .product-path-row .breadcrumb {
    width: 95%;
    height: 100%;
    padding: 20px 0;
  }
  .product-detail {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .product-detail .product-detail-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-12 {
    display: none;
  }
  .product-detail .product-detail-container .col-5 {
    max-width: 600px;
    width: 50%;
    height: 435px;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    border-radius: 5px;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) {
    max-width: 800px;
    width: 50%;
    height: 435px;
    border-radius: 5px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) ::-webkit-scrollbar {
    display: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container {
    width: 90%;
    height: 100%;
    padding: 27px 0 27px 0;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category {
    width: 100%;
    height: 17px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-category a {
    text-decoration: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #5F5F5F;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name {
    width: 100%;
    height: 72px;
    margin-bottom: 17px;
    display: flex;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-name span {
    font-family: var(--Inter);
    font-weight: 600;
    font-size: 24px;
    line-height: 41.15px;
    letter-spacing: 0.25px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc {
    width: 100%;
    height: 59px;
    margin-bottom: 30px;
    overflow: scroll;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-desc span {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    font-family: var(--Inter);
    color: #000000;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price {
    width: 100%;
    height: 23px;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-price .base-price span {
    font-family: var(--Inter);
    font-weight: 800;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order {
    width: 100%;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-minus i {
    font-size: 18px;
    font-weight: 900;
    color: #394454;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input {
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 10px;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    letter-spacing: 0.25px;
    color: #000000;
    font-family: var(--Intere);
    outline: none;
    border: none;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-input input::placeholder {
    color: black;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-order .order-container .order-plus i {
    font-size: 18px;
    font-weight: 900;
    color: #394454;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button {
    width: 85%;
    height: 41px;
    border-radius: 10px;
    border: none;
    background-color: var(--home-filter_3);
    color: white;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--Montserrat);
    letter-spacing: 0.1rem;
  }
  .product-detail .product-detail-container .col-5:nth-child(2) .col-5-container .product-btn button:nth-child(2) {
    width: 10%;
    background-color: white;
    color: var(--home-filter_3);
    border: 0.1px solid var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 18px;
    background: white;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-slide img {
    display: block;
    width: 90%;
    height: 90%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--home-filter_3);
  }
  .product-detail .product-detail-container .col-5 .mySwiper2 {
    height: 100%;
    width: 100%;
  }
  .product-detail .product-detail-container .col-5 .mySwiper {
    display: none;
  }
  .product-property {
    width: 100%;
    height: 550px;
    padding: 51px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--new-product-bg);
  }
  .product-property .product-property-container {
    width: 95%;
    height: 499px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-property .product-property-container .product-property-row {
    width: 90%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section {
    width: 100%;
    height: 60px;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab {
    flex-wrap: wrap;
    overflow: scroll;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab button {
    width: 174px;
    padding: 20px 0;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    font-family: var(--Inter);
    font-weight: 400;
    letter-spacing: 0.15px;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active {
    width: 174px;
    padding: 20px 0;
    font-size: 16px;
    font-family: var(--Inter);
    font-weight: 600;
    letter-spacing: 0.15px;
    background-color: transparent;
    position: relative;
  }
  .product-property .product-property-container .product-property-row .product-property-section .tab .active::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: royalblue;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    border-radius: 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content {
    width: 100%;
    height: 439px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content ::-webkit-scrollbar {
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
    /* Style the tab content */
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent {
    width: 100%;
    display: none;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent:first-child {
    display: block;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container {
    padding: 30px 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col {
    width: 48%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header {
    width: 100%;
    height: 100%;
    background-color: var(--col-left-header-bg);
    padding: 10px;
    border-radius: 5px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-header span {
    font-family: var(--Inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.15px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail {
    width: 100%;
    height: 100%;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 10px;
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part::after {
    content: "";
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(235, 235, 235);
  }
  .product-property .product-property-container .product-property-row .product-property-section-content .product-property-section-content-container .tabcontent .tabcontent-container .urunGecisleri-col .col-left-detail .col-left-detail-part span {
    display: block;
    display: flex;
    align-items: center;
    font-family: var(--Inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0.1px;
  }
  .item-image {
    width: 100%;
    height: 50%;
  }
  .item-image .new-product-item-image {
    width: 100%;
    height: 100%;
  }
  .item-image .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container {
    width: 95%;
    height: 100%;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-header {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path {
    width: 100%;
    height: 82px;
    display: flex;
    justify-content: center;
    background-color: var(--new-product-bg);
  }
  .category-products .category-products-container .category-products-header .category-products-header-row .product-path .product-path-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name {
    width: 100%;
    height: 100%;
    padding: 0 0 10px 0;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container {
    width: 72%;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .category-products-category-name .category-products-category-name-container span {
    font-size: 24px;
    font-family: var(--Inter);
    font-weight: 500;
    line-height: 36px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar {
    width: 25%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header {
    width: 100%;
    padding: 10px 0;
    border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 0.025px solid rgba(196, 196, 196, 0.4784313725);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container:last-child {
    border: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name {
    position: relative;
    padding: 15px 0;
    display: flex;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name i {
    text-align: center;
    width: 10%;
    font-weight: 400;
    padding: 0 0;
    font-size: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-name span {
    width: 90%;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content {
    width: 100%;
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(225, 225, 225);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-category-section .product-category-section-full .product-category-section-wrapper .product-category-section-container .category-part .category-part-content ul li a {
    text-decoration: none;
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header {
    width: 100%;
    padding: 10px 0;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgb(225, 225, 225);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-group .product-group-full .product-group-wrapper .product-group-container .product-group-part .product-group-part-content ul li a {
    font-family: var(--Inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    text-decoration: none;
    color: #5F5F5F;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend {
    width: 100%;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full {
    width: 90%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header {
    width: 100%;
    padding: 10px 0;
    position: relative;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-header span {
    font-family: var(--Inter);
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container {
    width: 100%;
    margin-bottom: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content {
    width: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul {
    width: 100%;
    list-style-type: none;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li {
    width: 100%;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #C4C4C4;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li input {
    margin-right: 11px;
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .sidebar .product-brend .product-brend-full .product-brend-wrapper .product-brend-container .product-brend-part .product-brend-part-content ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.15px;
    color: #5F5F5F;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row {
    width: 72%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock {
    margin-left: 20px;
    width: 110px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock input {
    width: 10px;
    height: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu .category-products-InStock span {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections {
    width: 200px;
    margin-right: 30px;
    height: 100%;
    background-color: var(--new-product-bg);
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select {
    width: 90%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-select:hover {
    cursor: pointer;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser {
    width: 100%;
    background-color: white;
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 9;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container {
    width: 80%;
    height: 100%;
    margin: auto;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section {
    width: 100%;
    height: 85%;
    padding: 20px 0;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul {
    width: 100%;
    height: 100%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul .active {
    font-size: 14px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-large-sections .category-large-sort .category-large-sort-container .category-large-sort-row .large-sort-chooser .large-sort-chooser-container .large-sort-chooser-section .large-sort-chooser-section-container ul li a {
    text-decoration: none;
    font-size: 13px;
    font-family: var(--Inter);
    line-height: 28px;
    letter-spacing: 0.15px;
    font-weight: 400;
    color: #000000;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row .grid-menuu #category-small-sections {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    gap: 16px;
    margin-bottom: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 570px;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 4px rgba(46, 57, 164, 0.04);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container {
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image {
    width: 100%;
    height: 52%;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category {
    width: 100%;
    height: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-category span {
    color: #000000;
    font-size: 12px;
    line-height: 28px;
    font-weight: 300;
    letter-spacing: 0.15px;
    font-family: var(--Inter);
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name {
    width: 90%;
    height: 31px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-name span {
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    letter-spacing: 0.15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price {
    width: 100%;
    height: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price .base-price span {
    color: #0057A8;
    font-family: var(--Inter);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.15px;
    line-height: 28px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span {
    color: var(--home-filter_3);
    font-size: 1.5rem;
    font-family: var(--Montserrat);
    font-weight: 600;
    letter-spacing: 0.1rem;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-price span:nth-child(2) {
    margin-left: 4px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container {
    display: flex;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-minus i {
    color: #394454;
    font-size: 20px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.001px solid #C4C4C4;
    border-radius: 8px;
    overflow: hidden;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input {
    width: 51px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--Montserrat);
    font-weight: 500;
    outline: none;
    border: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::-moz-placeholder {
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-input input::placeholder {
    color: black;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-order .order-container .order-plus i {
    font-size: 20px;
    color: #394454;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom {
    width: 100%;
    height: 15%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .swiper-slide .new-product-item-container .new-product-item-bottom button {
    width: 266px;
    height: 51px;
    border-radius: 5px;
    border: none;
    color: var(--home-filter_3);
    background-color: white;
    border: 0.1px solid var(--home-filter_3);
    font-weight: 600;
    font-family: var(--Inter);
    font-size: 14px;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .hidden {
    display: none;
  }
  .category-products .category-products-container .category-products-wrapper .grid-row #product-container .d-flex {
    display: flex;
  }
}
@media only screen and (min-width: 1600px) {
  .header-small {
    display: none;
  }
  .list-badge-new {
    display: none;
  }
  .list-badge-discount {
    display: none;
  }
  .new-product-item-bottom button:nth-child(2) {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", sans-serif;
  font-family: "Inter", sans-serif;
  font-family: "Roboto", sans-serif;
}

body {
  overflow-x: hidden;
}

:root {
  --news: rgb(105, 185, 214);
  --news-background: linear-gradient(90deg, rgba(105, 185, 214, 1) 19%, rgba(105, 185, 214, 1) 72%);
  --border-btn: rgb(196, 196, 196);
  --Montserrat: "Helvetica Neue", sans-serif;
  --Inter: "Inter", sans-serif;
  --Roboto: "Roboto", sans-serif;
  --black: rgb(0, 0, 0);
  --basket-bg: #0057A6;
  --menu-bg: #F2F6F8;
  --slider-content: #449BB6;
  --slider-bg: #E5EAED;
  --slider-button: #0057A7;
  --home-filter_1: #68b9d6;
  --home-filter_2: #ffffff;
  --home-filter_3: #0057a7;
  --new-product-bg: #e5eaed;
  --same-products-bg: #e5eaed;
  --home-filter-bg: #e5f1f8;
  --new-product-header: #449bb6;
  --new-product-container-bg: #449bb6;
  --grey: grey;
  --black: black;
  --banner-item-bg: #d0f2ff;
  --footer-header-bg: #394555;
  --footer-header-icon: #68b9d6;
  --footer-content-bg: #2b3745;
  --footer-payment-bg: #eaebef;
  --col-left-header-bg: #f2f6f9;
  --item-number: 4;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--home-filter_1);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}/*# sourceMappingURL=style.css.map */